vote up 4 vote down star

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.

flag

58% accept rate

5 Answers

vote up 2 vote down check

MultiByteToWideChar but also see "A few of the gotchas of MultiByteToWideChar".

link|flag
What happens if TCHAR is CHAR? – Martin York Oct 1 '08 at 20:46
I read the question as stipulating that a conversion was necessary, but point taken. – jeffm Oct 1 '08 at 20:57
vote up 1 vote down

Although in this particular situation I think the TChar is a wide character I'll only need to do the conversion if it isn't. which I gotta check somehow.

if (sizeof(TCHAR) != sizeof(wchar_t))
{  .... }

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

link|flag
vote up 5 vote down

The simplest way is to use the conversion macros:

  • CW2A
  • CA2W
  • etc...

MSDN

link|flag
we should not use these conversions, because if we call these in recursion, it won't release the memory – Vinay Nov 18 '08 at 15:52
@Vinay Create a helper function that calls one of these, then copies the result into the heap or into another buffer. Once the helper function returns, the stack memory is released. – bdonlan Aug 2 at 23:26
vote up 2 vote down

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

link|flag
How can it be crosss platform there is no TCHAR anyware else. Its windows specific. – Martin York Oct 1 '08 at 20:43
vote up 4 vote down

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()

link|flag
You bring up an excellent point. Although in this particular situation I think the TChar is a wide character I'll only need to do the conversion if it isn't. which I gotta check somehow. – CrashCodes Oct 1 '08 at 20:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.