Module hook manager
Type: Reference type
| Declaration | Description |
|---|---|
| bool RegisterHook(uint uiHookCode, ?& in pHookFunction) | Registers a hook. Pass in a hook function or delegate. |
| void RemoveHook(uint uiHookCode) | Removes all functions hooked into the given hook. |
| void RemoveHook(uint uiHookCode, ?& in pHookFunction) | Removes a hook. Pass in the hook function or delegate to remove. |