主修改整合基本完成

This commit is contained in:
2022-03-08 12:57:35 +08:00
parent 0b2e30605a
commit 5ffa76fdef
14 changed files with 864 additions and 1301 deletions

19
test/hook.h Normal file
View File

@@ -0,0 +1,19 @@
#pragma once
class hook
{
private:
public:
//HOOK_NUT的替换函数
static uint32_t H_Register_Nut(uint32_t v, void* f, int freeVarsCnt);
//HOOK_收包的替换函数
static void H_Register_Pack(void* Ecx);
//总HOOK
static int RegisterHook();
};