I have a little annoying problem and I really need help.
I need to convert a char* to TCHAR* and I can't... I have tried everything and nothing seems to help...
TCHAR text1[ ] = "";
char *key;
key[0] = 'a';
key[1] = '\0';
text1 = _T(key); //Does not work
can anyone help me here? I'm stuck