摘要: wchar_t* AnsiToUnicode(const char* szStr){ int nLen = MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, szStr, -1, NULL, 0); if (nLen == 0) { return NULL; } 阅读全文