Day to day work issues we find with windows, mac, unix and internet, software apps etc. we get many many questions and find out some weird things tips and tricks about windows OS that might help others, some of these will help others and help our clients setup software to there requirements.
Saturday, 28 January 2012
How to convert CString to std::wstring or usigned short * c++
CString str = "Hello World";
wchar_t buffer[255];
// convert the text
mbstowcs(buffer,(LPCSTR)str,str.GetLength()+1);
No comments:
Post a Comment