Skip to content

Latest commit

 

History

History
46 lines (30 loc) · 820 Bytes

UnhookWindowsHookEx.md

File metadata and controls

46 lines (30 loc) · 820 Bytes

Home

Function name : UnhookWindowsHookEx

Group: Hook - Library: user32


Removes a hook procedure installed in a hook chain by the SetWindowsHookEx function.


Declaration:

BOOL UnhookWindowsHookEx(
	HHOOK hhk
);  

FoxPro declaration:

DECLARE INTEGER UnhookWindowsHookEx IN user32;
	INTEGER hhk  

Parameters:

hhk [in] Handle to the hook to be removed.


Return value:

If the function succeeds, the return value is nonzero.


Comments:

To be called from FLL or DLL rather then declared in VFP code.

See also: SetWindowsHookEx.