Group: Keyboard Input - Library: user32
How to block the ALT+TAB shortcut (WinXP)
How to block the PrintScreen key
BOOL UnregisterHotKey(
HWND hWnd,
int id
); DECLARE INTEGER UnregisterHotKey IN user32;
INTEGER hWnd,;
INTEGER id
hWnd [in] Handle to the window associated with the hot key to be freed.
id [in] Specifies the identifier of the hot key to be freed.
If the function succeeds, the return value is nonzero.
See also: RegisterHotKey function.
Home