Fix compilation

This commit is contained in:
momo5502
2025-05-17 12:04:32 +02:00
parent ab4ee84339
commit 549d9e4625
2 changed files with 3 additions and 2 deletions

View File

@@ -22,6 +22,7 @@ using ULONG = DWORD;
using DWORD64 = std::uint64_t;
using ULONGLONG = DWORD64;
using LONGLONG = std::int64_t;
using UINT = std::uint32_t;
typedef union _ULARGE_INTEGER
{

View File

@@ -7,7 +7,7 @@ typedef struct tagPOINT
{
LONG x;
LONG y;
} POINT, *PPOINT, NEAR *NPPOINT, FAR *LPPOINT;
} POINT;
#endif
using wparam = pointer;
@@ -28,7 +28,7 @@ using hinstance = pointer;
struct msg
{
hwnd hwnd;
hwnd window;
UINT message;
wparam wParam;
lparam lParam;