diff options
| author | hikari <ftphikari@gmail.com> | 2022-03-25 16:17:53 +0200 |
|---|---|---|
| committer | hikari <ftphikari@gmail.com> | 2022-03-25 16:17:53 +0200 |
| commit | f8d3f86d8b79cc0ee811490455452423fae0fc88 (patch) | |
| tree | 19b5b1637c60d48384c01b364296f0c659062457 /core/sys | |
| parent | 2f9a410a45bc6f8c0610417e8406793989177a7a (diff) | |
sys/windows: fix build
Diffstat (limited to 'core/sys')
| -rw-r--r-- | core/sys/windows/types.odin | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/sys/windows/types.odin b/core/sys/windows/types.odin index 0c6327cc2..5e1aa2503 100644 --- a/core/sys/windows/types.odin +++ b/core/sys/windows/types.odin @@ -418,10 +418,10 @@ SWP_NOREPOSITION :: SWP_NOOWNERZORDER SWP_DEFERERASE :: 0x2000 // same as SWP_DEFERDRAWING SWP_ASYNCWINDOWPOS :: 0x4000 // same as SWP_CREATESPB -HWND_TOP : HWND : 0 -HWND_BOTTOM : HWND : 1 -HWND_TOPMOST : HWND : -1 -HWND_NOTOPMOST : HWND : -2 +HWND_TOP :: 0 +HWND_BOTTOM :: 1 +HWND_TOPMOST :: -1 +HWND_NOTOPMOST :: -2 CW_USEDEFAULT : c_int : -2147483648 |