Add IsWindow to user32.odin

This is useful for checking if window has been closed without going through the WindowProc.
This commit is contained in:
Matias Fernandez
2023-04-22 17:49:16 -04:00
parent f2ec438166
commit 3b2864d8a6

View File

@@ -38,6 +38,7 @@ foreign user32 {
DestroyWindow :: proc(hWnd: HWND) -> BOOL ---
ShowWindow :: proc(hWnd: HWND, nCmdShow: c_int) -> BOOL ---
IsWindow :: proc(hWnd: HWND) -> BOOL ---
BringWindowToTop :: proc(hWnd: HWND) -> BOOL ---
GetTopWindow :: proc(hWnd: HWND) -> HWND ---
SetForegroundWindow :: proc(hWnd: HWND) -> BOOL ---