This seems like a pretty softball question, but I always have a hard time looking up this function because there seem there are so many variations regarding the referencing of char and tchar.
|
feedback
|
|
| |||||||
feedback
|
|
| |||||
feedback
|
|
TCHAR is a Microsoft-specific typedef for either char or wchar_t (a wide character). Conversion to char depends on which of these it actually is. If TCHAR is actually a char, then you can do a simple cast, but if it is truly a wchar_t, you'll need a routine to convert between character sets. See the function MultiByteToWideChar() | |||
feedback
|
|
There are a few answers in this post as well, especially if you're looking for a cross-platform solution: http://stackoverflow.com/questions/148403/utf8-tofrom-wide-char-conversion-in-stl | |||
feedback
|
|
Here is the CPP code that duplicates _TCHAR * argv[] to char * argn[]. If you adopting old code to Windows, simple use define mentioned in the code as optional. | |||
|
feedback
|
The cool thing about that is both sizes of the equals are constants, which means that the compiler will handle (and remove) the if(), and if they are equal, remove everything inside the braces | |||
|
feedback
|
|
I realize this is an old thread, but it didn't get me the "right" answer, so am adding it now. The way this appears to be done now is to use the TEXT macro. The example for FindFirstFile at msdn points this out. http://msdn.microsoft.com/en-us/library/windows/desktop/aa364418%28v=vs.85%29.aspx | |||
|
feedback
|