mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 15:18:49 +00:00
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:
@@ -38,6 +38,7 @@ foreign user32 {
|
|||||||
DestroyWindow :: proc(hWnd: HWND) -> BOOL ---
|
DestroyWindow :: proc(hWnd: HWND) -> BOOL ---
|
||||||
|
|
||||||
ShowWindow :: proc(hWnd: HWND, nCmdShow: c_int) -> BOOL ---
|
ShowWindow :: proc(hWnd: HWND, nCmdShow: c_int) -> BOOL ---
|
||||||
|
IsWindow :: proc(hWnd: HWND) -> BOOL ---
|
||||||
BringWindowToTop :: proc(hWnd: HWND) -> BOOL ---
|
BringWindowToTop :: proc(hWnd: HWND) -> BOOL ---
|
||||||
GetTopWindow :: proc(hWnd: HWND) -> HWND ---
|
GetTopWindow :: proc(hWnd: HWND) -> HWND ---
|
||||||
SetForegroundWindow :: proc(hWnd: HWND) -> BOOL ---
|
SetForegroundWindow :: proc(hWnd: HWND) -> BOOL ---
|
||||||
|
|||||||
Reference in New Issue
Block a user