2017年1月11日

摘要: 1 std::wstring ANSIToUnicode(const std::string& str) 2 { 3 int len = MultiByteToWideChar(CP_ACP, 0, str.c_str(), -1, NULL, 0); 4 std::vector unicode(len); 5 MultiByteToWideChar(CP_AC... 阅读全文
posted @ 2017-01-11 17:40 dev_ptr 阅读(258) 评论(0) 推荐(0)

导航