码迷,mamicode.com
首页 > 其他好文 > 详细

char与TCHAR相互转化

时间:2014-11-21 20:09:06      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   strong   on   div   art   log   

char与TCHAR相互转化

char strUsr[10] = "Hello";
TCHAR Name[100];
#ifdef UNICODE
    MultiByteToWideChar(CP_ACP, 0, strUsr, -1, Name, 100);
#else
    strcpy(Name, strUsr);
#endif

  TCHAR转char

char* ConvertLPWSTRToLPSTR (LPWSTR lpwszStrIn)
{
	LPSTR pszOut = NULL;
	if (lpwszStrIn != NULL)
	{
		int nInputStrLen = wcslen (lpwszStrIn);

		// Double NULL Termination
		int nOutputStrLen = WideCharToMultiByte (CP_ACP, 0, lpwszStrIn, nInputStrLen, NULL, 0, 0, 0) + 2;
		pszOut = new char [nOutputStrLen];

		if (pszOut)
		{
			memset (pszOut, 0x00, nOutputStrLen);
			WideCharToMultiByte(CP_ACP, 0, lpwszStrIn, nInputStrLen, pszOut, nOutputStrLen, 0, 0);
		}
	}
	return pszOut;
}

  

char与TCHAR相互转化

标签:blog   http   io   ar   strong   on   div   art   log   

原文地址:http://www.cnblogs.com/meizixiong/p/4113477.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!