Please could someone explain why this does not work?

char *test = "test";
_TCHAR *szTest = CA2W(test);

And please tell me what I should be doing instead.

Instead of giving me equal text, it's giving me:

﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾﻾
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

According to MSDN, that is bad. So I have used this instead:

char *test = "test";
CA2W szTest(test);

From here, we can get an LPWSTR type if we really want:

LPWSTR test = szTest.m_psz;

It also seems better to use LPWSTR instead of _TCHAR * - but I'm not sure (I think they're essentially the same thing, but could be wrong).

link|improve this answer
LPWSTR and _TCHAR* aren't always the same. W in LPWSTR tells you it's a wide string (2 bytes per character). T in _TCHAR tells you the size depends on whether you're compiling your project with unicode or multibyte character sets (in project settings), in which cases there will be 1 or 2 bytes per character depending on your build settings. – Scott Langham Dec 15 '10 at 13:29
feedback

Your Answer

 
or
required, but never shown

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