mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-02-15 18:08:40 +00:00
fix
This commit is contained in:
parent
9ce5b19678
commit
9c486a0e2f
|
|
@ -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);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user