Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/minhook.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaMMicHaeL <leahcimmar@gmail.com>2013-05-10 00:50:50 +0400
committerRaMMicHaeL <leahcimmar@gmail.com>2013-05-10 01:27:56 +0400
commit538afe3c8e13ca263c6805c67e920cdbe43d4740 (patch)
tree77f53b32beb1fc63390e65daecb5413730954fa0 /README.md
parent0d01cc0bbf65ee8d5b73d3a79fe3ee9f4a7c7c86 (diff)
Updated readme.
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..15c93ce
--- /dev/null
+++ b/README.md
@@ -0,0 +1,12 @@
+# MinHook
+
+A windows api hooking library originally written by Tsuda Kageyu.
+
+http://www.codeproject.com/KB/winsdk/LibMinHook.aspx
+
+## Main differences from original v1.1
+
+* Removed boost dependency ([jarredholman](https://github.com/jarredholman/minhook)).
+* Fixed a small bug in the GetRelativeBranchDestination function ([pillbug99](http://www.codeproject.com/Messages/4058892/Small-Bug-Found.aspx)).
+* Added the `MH_RemoveHook` function, which removes a hook created with the `MH_CreateHook` function.
+* Added the following functions to enable or disable multiple hooks in one go: `MH_EnableAllHooks`, `MH_DisableAllHooks`, `MH_EnableMultipleHooks`, `MH_DisableMultipleHooks`. This is the preferred way of handling multiple hooks as every call to `MH_EnableHook` or `MH_DisableHook` suspends and resumes all threads.