发新帖

[C/VC/C++] C++ tchar转char,string

零下一度 2019-8-12 910

tchar2char

void tchar2char(tchar* input,char* output){
    int length = WideCharToMultiByte(CP_ACP, 0, input, -1, NULL, 0, NULL, NULL);
    WideCharToMultiByte(CP_ACP, 0, input, -1, output, length, NULL, NULL);
}

tchar2string

void tchar2string(tchar* input,string& output){
   int length = WideCharToMultiByte(CP_ACP, 0, szDir, -1, NULL, 0, NULL, NULL);
   char ch[] = "";
   WideCharToMultiByte(CP_ACP, 0, szDir, -1, ch, length, NULL, NULL);
   output = string(ch);
}


最新回复 (0)
返回
零下一度
主题数
928
帖子数
0
注册排名
1