From 62b0f81c6e05147de98f9bc40b5822c372f3ba54 Mon Sep 17 00:00:00 2001 From: xerox Date: Sat, 11 Apr 2020 09:02:30 +0000 Subject: [PATCH] Update README.md --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 58f019a..4a6c11c 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,10 @@ An inline hooking library for windows. Supports 64 bit and 32 bit applications. Installing the hook/Init. ```cpp -hook::install( - &WriteFile, //address to put inline hook at. - &HookWriteFile //address to jmp too. +hook::make_hook( + &WriteFile, //address to put inline hook at. + &HookWriteFile, //address to jmp too. + false //you dont need to install the hook when you make one ); ```