wchar

How to convert 'const wchar*' to 'const char*' on Mac OS X?

Hello, Is there a elegant way to convert 'const wchar *' to 'const char *' on Mac OS X? Kat ...

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 narrow strings. What is the easiest way to accomplish this goal? Eventually MultiByteToWideChar? (However, since it is a narrow string w...

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 when tracing into the function. ...

ruby link-grammar error in wchar.h

I'm trying to install the ruby link-parser as per http://deveiate.org/projects/Ruby-LinkParser Running through 'make' i get the following error /usr/include/wchar.h:53 error: parse error before '{' token /usr/include/wchar.h:63 error: parse error before '}' token make[2]: *** [analyze-linkage.lo] Error 1 make[2]: Leaving directory '/h...

How do I properly port Win-only function GetMultiByteString?

I'm porting code originally Windows-only to cross-platform friendly code; one particular stumbling block is trying to convert calls to the Windows Unicode function "GetMultiByteString" (and any related functions) to the more portable wchar-based functions. I'm having little success with it, as using wchar results in premature loop termin...