摘要: 多字节转宽字节 1 #include<Windows.h> 2 3 wchar_t* MultiCharToWideChar(char* str) 4 { 5 auto len = MultiByteToWideChar(CP_ACP, 0, str, strlen(str), NULL, 0); 阅读全文
posted @ 2020-04-19 21:11 zhaotianff 阅读(573) 评论(0) 推荐(0) 编辑