BYTE name[1000];
In my visual c++
project there is a variable defined name
with the BYTE
data type. If i am not wrong then BYTE
is equivalent to unsigned char
. Now i want to convert this unsigned char *
to LPCTSTR
.
How should i do that?