Tagged Questions
12
votes
1answer
428 views
What is the fate of wchar_t in c++0x?
What is the fate of wchar_t in c++0x considering the new character types char8_t, char16_t, and char32_t?
More importantly, what about std::wstring, std::wcout, etc?
Are the w* family classes ...
4
votes
5answers
824 views
WideCharToMultiByte() vs. wcstombs()
What is the difference between WideCharToMultiByte() and wcstombs()
When to use which one?
2
votes
1answer
133 views
Converting string macros/constants to wide characters/Unicode
I have a Unicode Win32 application that uses 3rd party libraries, some of which provide constants for their version information as #defined (narrow) strings. For instance, libpng has the following:
...
1
vote
1answer
537 views
Display WCHAR Strings in Xcode Debugger
I'd like to preview WCHAR strings in the variable display of the Xcode 3.2 debugger.
Bascially if I have
WCHAR wtext[128];
wcscpy(wtext, L"Hello World");
I'd like to see "Hello World" for wtext ...
0
votes
3answers
2k views
Convert char* to wchar* in C
I would like to convert a char* string to a wchar* string in C.
I have found many answers, but most of them are for C++. Could you help me?
Thanks.
0
votes
2answers
282 views
What is the easiest way to convert a char array to a WCHAR array?
In my code, I receive a const char array like the following:
const char * myString = someFunction();
Now I want to postprocess it as a wchar array since the functions I use afterwards don't handle ...