Merge pull request #7264 from LucasCzerny/missing_unregisterhotkey

Added UnregisterHotKey to user32.odin
This commit is contained in:
Jeroen van Rijn
2026-08-09 17:20:30 +02:00
committed by GitHub

View File

@@ -34,6 +34,7 @@ foreign user32 {
UnregisterClassW :: proc(lpClassName: LPCWSTR, hInstance: HINSTANCE) -> BOOL ---
RegisterHotKey :: proc(hnwd: HWND, id: c_int, fsModifiers: UINT, vk: UINT) -> BOOL ---
UnregisterHotKey :: proc(hnwd: HWND, id: c_int) -> BOOL ---
CreateWindowExW :: proc(
dwExStyle: DWORD,