Tagged Questions

8
votes
7answers
20k views

What is the simplest way to convert char[] to/from tchar[] in C/C++(ms)?

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.
4
votes
4answers
8k views

How do I convert from _TCHAR * to char * when using C++ variable-length args?

We need to pass a format _TCHAR * string, and a number of char * strings into a function with variable-length args: inline void FooBar(const _TCHAR *szFmt, const char *cArgs, ...) { //... } So ...
0
votes
1answer
853 views

How am I using CA2W incorrectly?

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 ...