摘要:
``` #include wchar_t *UTF8ToUnicode(const char *str) { static wchar_t result[1024]; int len = MultiByteToWideChar(CP_UTF8, 0, str, -1, NULL, 0); MultiByteToWideChar(CP_UTF8, 0, str, -1, result, l... 阅读全文
posted @ 2017-03-02 20:31
纯白、色
阅读(324)
评论(0)
推荐(0)