BoxedAppSDK_EnableHook
Description
Activates or deactivates the hook. If the hook was created with bEnable = FALSE (see the function BoxedAppSDK_HookFunction), the hook is created but not activated. With the function BoxedAppSDK_EnableHook, you can do both activate a hook and deactivate it.
For more information on using hooks, please see "Intercepting Functions".
Syntax
C++
BOOL __stdcall BoxedAppSDK_EnableHook(HANDLE hHook, BOOL bEnable);
Delphi
function BoxedAppSDK_EnableHook(hHook: THandle; bEnable: BOOL): BOOL; stdcall;
Parameters
hHook
The handle of the hook returned by BoxedAppSDK_HookFunction.
bEnable
If TRUE, the hook is activated. Otherwise, the hook is deactivated.