From 4f84f90e9041e80c2ffcbd3e797e6abc7afccb31 Mon Sep 17 00:00:00 2001 From: xerox Date: Fri, 20 Dec 2019 01:29:21 -0800 Subject: [PATCH] Update README.md --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a6c2c01..73d556b 100644 --- a/README.md +++ b/README.md @@ -15,4 +15,15 @@ Hook::Install( Disabling the hook so you can call the original function. ```cpp Hook::Disable((uintptr_t)&WriteFile); -``` \ No newline at end of file + WriteFile..... +``` + +Enabling the hook. +``` +Hook::Enable((uintptr_t)&WriteFile); +``` + +# info + +All hooks are stored inside of a `std::map>` for quick and easy access to each object. All functions +interacting with this vector will use the address of the inline hook as the key so mak sure the address is easy to access in your code! \ No newline at end of file