摘要: int Ansi_To_Unicode(string strSrc, wstring& strRet){ wchar_t wBuff[102400] = { 0 }; CHAR sBuff[102400] = { 0 }; int iRet = MultiByteToWideChar(CP_ACP, 阅读全文
posted @ 2020-11-04 22:37 龙马8586 阅读(950) 评论(0) 推荐(0) 编辑
摘要: int Utf8_To_Unicode(string strSrc, wstring& strRet){ wchar_t wBuff[102400] = { 0 }; int iRet = MultiByteToWideChar(CP_UTF8, 0, strSrc.c_str(), -1, wBu 阅读全文
posted @ 2020-11-04 22:30 龙马8586 阅读(697) 评论(0) 推荐(0) 编辑