Introduction - If you have any usage issues, please Google them yourself
Small hook library. It contain three methods of hooking:
- IAT hooks - import table hooks, functions are hooked only in one module (IAT
owner module)
- EAT hooks - export table hooks, functions are hooked for all modules
(modules loaded after setting EAT hook). EAT hooks works also
with GetProcAddress.
- HP hooks - it is kind of detours hooks, HP hooks are based on Hot Patching
mechanism, functions are hooked for all modules (loaded before
and after setting hook)