diff --git a/win32/src/win32gui.i b/win32/src/win32gui.i index 3c429c940f..0bb66da960 100644 --- a/win32/src/win32gui.i +++ b/win32/src/win32gui.i @@ -7699,3 +7699,9 @@ BOOLAPI UnregisterDeviceNotification(HANDLE); // @pyparm int|Modifiers||Control keys, combination of win32con.MOD_* // @pyparm int|vk||Virtual key code BOOLAPI RegisterHotKey(HWND, int, UINT, UINT); + +// @pyswig |UnregisterHotKey|Unregisters a previously registeredhotkey +// @pyseeapi UnregisterHotKey +// @pyparm |hWnd||A handle to the window associated with the hot key to be freed +// @pyparm int|id||The identifier of the hot key +BOOLAPI UnregisterHotKey(HWND, int);