diff options
| author | 2026-04-13 16:24:21 -0400 | |
|---|---|---|
| committer | 2026-04-13 16:39:12 -0400 | |
| commit | 0d027c466c199f9857b0872ed76ebab2ed501e43 (patch) | |
| tree | 17a88480e7dac721902d21611e2d2834f2344c27 /src/window_win32.h | |
| parent | cbad92b78cb9901314dd3304d61bcee3b56312eb (diff) | |
| download | stela-0d027c466c199f9857b0872ed76ebab2ed501e43.tar.gz stela-0d027c466c199f9857b0872ed76ebab2ed501e43.tar.bz2 stela-0d027c466c199f9857b0872ed76ebab2ed501e43.zip | |
Lots of win32 window tweaks, partially unfinished
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'src/window_win32.h')
| -rw-r--r-- | src/window_win32.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/window_win32.h b/src/window_win32.h index 317916e..7e639f0 100644 --- a/src/window_win32.h +++ b/src/window_win32.h @@ -3,9 +3,6 @@ #include <al/wstr.h> #include <al/array.h> #include <nnwt/windows.h> -// All extra Windows headers come after <nnwt/windows.h>. -#include <windowsx.h> -#include <winuser.h> #include "window.h" @@ -45,9 +42,12 @@ struct stl_window_win32 { s32 Width; s32 Height; LONG Style; + LONG ExStyle; } Prev; + BOOL Closed; BOOL Decorated; BOOL UserDecorated; + BOOL DragCapture; BOOL WindowMoving; POINTS LastMousePos; u32 MouseButtonMask; |