J
jc
Hello,
This compiles OK using Multi-Byte character set,
but when I switch to Unicode I get an error.
char reply[256] = _T("olleh");
I know this will fix the error with the Unicode compile,
wchar_t reply[256] = _T("olleh");
but this causes many other conversion problems in the program.
Is there some other conversion macro that I could use instead of _T(),
instead of having to change from char to a wchar_t?
Thanks,
-JC
This compiles OK using Multi-Byte character set,
but when I switch to Unicode I get an error.
char reply[256] = _T("olleh");
I know this will fix the error with the Unicode compile,
wchar_t reply[256] = _T("olleh");
but this causes many other conversion problems in the program.
Is there some other conversion macro that I could use instead of _T(),
instead of having to change from char to a wchar_t?
Thanks,
-JC