摘要: TCHAR* char2tchar(const char* str) { int iLen = strlen(str); TCHAR* chRtn = new TCHAR[iLen + 1]; size_t converted = 0; mbstowcs_s(&converted, chRtn, i 阅读全文
posted @ 2021-04-29 16:05 wolbo 阅读(297) 评论(0) 推荐(0)