11
This commit is contained in:
44
test/pch.h
44
test/pch.h
@@ -10,4 +10,48 @@
|
||||
// 添加要在此处预编译的标头
|
||||
#include "framework.h"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
//获取EXE使用头 号位数据
|
||||
int GetExeNutWrtNum(int Pos);
|
||||
|
||||
//写EXE使用头 号位数据
|
||||
void SetExeNutWrtNum(int Pos, int num);
|
||||
|
||||
//获取Nut头 号位数据
|
||||
int GetNutArrNum(int Nut头地址, int Pos);
|
||||
|
||||
//写Nut头 号位数据
|
||||
void SetNutArrNum(int Nut头地址, int Pos, int num);
|
||||
|
||||
//读内存偏移地址
|
||||
int GetHook(int Addr, std::string 地址);
|
||||
|
||||
|
||||
//发包函数 地址
|
||||
typedef DWORD SendPacks();
|
||||
static SendPacks* _SendPacks = (SendPacks*)0x1127EC0;
|
||||
|
||||
//发包Class this地址
|
||||
typedef DWORD SendClass;
|
||||
static SendClass* _SendClass = (SendClass*)0x1AEB6E4;
|
||||
|
||||
//发包类型 地址
|
||||
typedef int(__fastcall* SendPacksType)(DWORD thisc, int Seat, int Parm);
|
||||
static SendPacksType _SendpacksType = (SendPacksType)0x1127D60;
|
||||
|
||||
//发包参数 BYTE
|
||||
typedef int(__fastcall* SendPacksByte)(DWORD thisc, int Seat, int Parm);
|
||||
static SendPacksByte _SendPacksByte = (SendPacksByte)0x1128550;
|
||||
|
||||
//发包参数 WORD
|
||||
typedef int(__fastcall* SendPacksWORD)(DWORD thisc, int Seat, int Parm);
|
||||
static SendPacksWORD _SendPacksWord = (SendPacksWORD)0x1128580;
|
||||
|
||||
//发包参数 DWORD
|
||||
typedef int(__fastcall* SendPacksDWORD)(DWORD thisc, int Seat, int Parm);
|
||||
static SendPacksDWORD _SendPacksDWord = (SendPacksDWORD)0x11285B0;
|
||||
|
||||
#endif //PCH_H
|
||||
|
||||
Reference in New Issue
Block a user