diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-05-05 10:17:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-05 10:17:29 +0100 |
| commit | bc2a4dfe9dabdf55d63eddc540385b942d8b6810 (patch) | |
| tree | b1891ba49105d128801b357767b3838fdf7ac087 | |
| parent | 93f80f60fbebf28c4c40a71908452611e524b53c (diff) | |
| parent | 1b8a65c327a5bb010a24773d6f4994f46270037f (diff) | |
Merge pull request #5110 from omark96/feat/get_window_thread_process_id
win/sys: Add GetWindowThreadProcessId
| -rw-r--r-- | core/sys/windows/user32.odin | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/sys/windows/user32.odin b/core/sys/windows/user32.odin index 94cd57811..49ebb49cb 100644 --- a/core/sys/windows/user32.odin +++ b/core/sys/windows/user32.odin @@ -47,6 +47,8 @@ foreign user32 { lpParam: LPVOID, ) -> HWND --- + GetWindowThreadProcessId :: proc(hwnd: HWND, lpdwProcessId: LPDWORD) -> DWORD --- + DestroyWindow :: proc(hWnd: HWND) -> BOOL --- ShowWindow :: proc(hWnd: HWND, nCmdShow: INT) -> BOOL --- |