|
|
@ -6,9 +6,10 @@ An inline hooking library for windows. Supports 64 bit and 32 bit applications.
|
|
|
|
|
|
|
|
|
|
|
|
Installing the hook/Init.
|
|
|
|
Installing the hook/Init.
|
|
|
|
```cpp
|
|
|
|
```cpp
|
|
|
|
hook::install(
|
|
|
|
hook::make_hook(
|
|
|
|
&WriteFile, //address to put inline hook at.
|
|
|
|
&WriteFile, //address to put inline hook at.
|
|
|
|
&HookWriteFile //address to jmp too.
|
|
|
|
&HookWriteFile, //address to jmp too.
|
|
|
|
|
|
|
|
false //you dont need to install the hook when you make one
|
|
|
|
);
|
|
|
|
);
|
|
|
|
```
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|