VSCode: a value of type const char * cannot be assigned to an entity of type LPCWSTR
Добавить комментарий
Рассматриваю следующий пример кода WinAPI на C++, где создаётся простое окно: #include <windows.h> const char g_szClassName[] = "myWindowClass"; // Step 4: the Window Procedure LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) { switch(msg) { case WM_CLOSE: DestroyWin...