diff options
| author | Lion Schitik <schitiklion@gmail.com> | 2025-01-08 01:47:36 +0100 |
|---|---|---|
| committer | Lion Schitik <schitiklion@gmail.com> | 2025-01-08 01:47:36 +0100 |
| commit | cdef798fbc11df248a20e46447aaf014e7c690d2 (patch) | |
| tree | 8db27933df9853f9dd279057daa850de6270639e /core/sys/windows/user32.odin | |
| parent | b136aa26c8269c08c94380578dad0c2dcdcbfec1 (diff) | |
Add SetWindowSubclass and RegisterHotKey functions
Diffstat (limited to 'core/sys/windows/user32.odin')
| -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 da979a3e3..9ebd86201 100644 --- a/core/sys/windows/user32.odin +++ b/core/sys/windows/user32.odin @@ -32,6 +32,8 @@ foreign user32 { RegisterClassExW :: proc(^WNDCLASSEXW) -> ATOM --- UnregisterClassW :: proc(lpClassName: LPCWSTR, hInstance: HINSTANCE) -> BOOL --- + RegisterHotKey :: proc(hnwd: HWND, id: int, fsModifiers: UINT, vk: UINT) -> BOOL --- + CreateWindowExW :: proc( dwExStyle: DWORD, lpClassName: LPCWSTR, |