inital commit of the tester

This commit is contained in:
2017-12-27 13:47:10 +01:00
parent c7b6246025
commit 3d1dddba12
9 changed files with 136 additions and 4 deletions

11
tester/mhook.h Normal file
View File

@@ -0,0 +1,11 @@
#pragma once
class MHook : public AbstractHookEngine {
public:
bool hook_all();
bool unhook_all();
bool all_hooked();
MHook() : AbstractHookEngine("MHook") {
}
};