摘要:
int Ansi_To_Unicode(string strSrc, wstring& strRet){ wchar_t wBuff[102400] = { 0 }; CHAR sBuff[102400] = { 0 }; int iRet = MultiByteToWideChar(CP_ACP, 阅读全文
摘要:
int Utf8_To_Unicode(string strSrc, wstring& strRet){ wchar_t wBuff[102400] = { 0 }; int iRet = MultiByteToWideChar(CP_UTF8, 0, strSrc.c_str(), -1, wBu 阅读全文