0
votes
3answers
90 views
how to convert TCHAR*[] to char*[] [closed]
Possible Duplicate:
What is the simplest way to convert char[] to/from tchar[] in C/C++(ms)?
hey guys,do any body know how to typecast a tchar pointer array(tchar*[]) to char pointer …
1
vote
2answers
80 views
convert tchar array to char array
how to convert to tchar[] to char[]..
0
votes
1answer
39 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 …
2
votes
4answers
345 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 …
1
vote
2answers
240 views
How to assign a value to a TCHAR array
I have a TCHAR array in my C++ code which I want to assign static strings to it.
I set an initial string to it via
TCHAR myVariable[260] = TEXT("initial value");
Everything works fine on this. …
2
votes
2answers
832 views
tchar.h on linux
I am trying to write cross platform i18n C++ code. Since most linux system prefer to use UTF-8 as the character encoding, I thought that I should use string on linux and wstring on Windows. Is tchar.h …
1
vote
3answers
100 views
Handling TCHARs in header files for libraries with different character sets.
I have a project that uses two third party libraries, both of which make use of TCHARs in their header files. Unfortunately one library is complied as multi-byte (call it library a), and the other is …
4
votes
5answers
4k 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.
