cannot convert wchar_t to const char*

答案转自

http://www.codeguru.com/forum/showthread.php?t=447827

 

 主要内容为:

 

WideCharToMultiByte()

 

使用这个函数进行转换、

 

 

char chBuf[MAXLENGTH];

 

WideCharToMultiByte(CP_ACP,0,src,-1,chBuf,length,NULL,NULL);

 

转换后就是char 字符了。

 

你可能感兴趣的:(cannot convert wchar_t to const char*)