I am working on very old C++ project. When building my C++ code in Visual Studio 6 I am getting error "cannot convert from 'unsigned short [9]' to 'char []'".
for code below:
char variable[] = _T("something");
I googled and tried to understand the issue. It could be the way I am building it.
I've already tried the step written in https://mihai-nita.net/2006/07/23/visual-studio-unicode-projects/ (adding UNICODE
& _UNICODE
in preprocessor). It would be very helpful if someone can suggest a solution to correct this error.