Tagged Questions

0
votes
2answers
46 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 …
0
votes
3answers
122 views

C++, WCHAR[] to std::cout and comparision

Hi, I need to put WCHAR[] to std::cout ... It is a part of PWLAN_CONNECTION_NOTIFICATION_DATA passed from Native Wifi API callback. I tried simply std::cout << var; but it prints out the …
0
votes
1answer
82 views

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
1
vote
4answers
311 views

static_cast wchar_t* to int* or short* - why is it illegal?

In both Microsoft VC2005 and g++ compilers, the following results in an error: On win32 VC2005: *sizeof(wchar_t) is 2* wchar_t *foo = 0; static_cast<unsigned short *>(foo); Results in error …
10
votes
4answers
2k views

is TCHAR still relevant?

Hello, I'm new to Windows programming and after reading the Petzold book I wonder whether it's still good practice to use the TCHAR type and the _T() function to declare strings or if I should just …
1
vote
2answers
190 views

Win32: Determine whether stdout handle is char or wchar stream

I'm writing a win32 utility function for our product that needs to call an arbitrary program via the shell and log its output. We do this by redirecting the stdout from the child process into a pipe: …