This commit is contained in:
Dennis Eichhorn 2024-04-27 19:04:58 +02:00
parent 9ce5b19678
commit 9c486a0e2f

View File

@ -11,8 +11,8 @@
namespace UI namespace UI
{ {
typedef struct { typedef struct {
unsigned int width = 0; unsigned int width;
unsigned int height = 0; unsigned int height;
#ifdef _WIN32 #ifdef _WIN32
HWND hwnd; HWND hwnd;
@ -40,7 +40,7 @@ namespace UI
wc.hInstance = hinstance; wc.hInstance = hinstance;
wc.hCursor = LoadCursor(NULL, IDC_ARROW); wc.hCursor = LoadCursor(NULL, IDC_ARROW);
wc.hbrBackground = (HBRUSH)COLOR_WINDOW; wc.hbrBackground = (HBRUSH)COLOR_WINDOW;
wc.lpszClassName = "WindowClass1"; wc.lpszClassName = L"WindowClass1";
RegisterClassEx(&wc); RegisterClassEx(&wc);