wince编程CString2Char
摘要:
在写代码过程中,经常需要把CString类型数据转换成CHAR*(CAHR[])型的。在网上有很多种方法实现这种转换,但本人还是喜欢用WideCharToMultiByte。void CString2Char(CString csIn,CHAR *ucOut,int nOutLen){ WideCharToMultiByte(CP_ACP,NULL,csIn,_tcslen(csIn),ucOut,nOutLen,NULL,FALSE);}函数原型:int WideCharToMultiByte(UINTCodePage, DWORDdwFlags, LPWSTRlpWideCharStr, 阅读全文
posted @ 2011-09-23 12:54 and_tt 阅读(460) 评论(0) 推荐(0) 编辑