I'm trying to use the Windows API in Visual Studio 2019. The problem is that when I'm trying to create a wide string, using something like this: L"Hello World!"
, I get an error: 'L': identifier not found
Then, I tried using the TEXT()
function, which, from what I understand, is supposed to convert a string to a wide string:
char test[1024]; /// contains some text
SetWindowText(DMG_LABEL, TEXT(test));
Here I get this error: 'Ltest': undeclared identifier
This worked on CodeBlocks using MinGW, so I don't see why it wouldn't work in VS. (Tested this in C++, but I'm pretty sure in C it's the same thing).
What exactly am I doing wrong?
EDIT: Thanks to @anastaciu , I didn't realize that I wasn't using wchar_t
project properties->Advanced->Character Set = Use Unicode Character Set
or before adding <windows.h>