2024-02-07 20:59:24 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// main.h
|
|
|
|
// 8/23/2013 jichi
|
|
|
|
// Branch: ITH/IHF_DLL.h, rev 66
|
|
|
|
|
|
|
|
|
|
|
|
void TextOutput(ThreadParam tp, TextOutput_T (*buffer), int len);
|
|
|
|
void ConsoleOutput(LPCSTR text, ...);
|
|
|
|
void NotifyHookFound(HookParam hp, wchar_t* text);
|
|
|
|
void NotifyHookRemove(uint64_t addr, LPCSTR name);
|
|
|
|
bool NewHook(HookParam hp, LPCSTR name);
|
2024-03-31 19:00:26 +08:00
|
|
|
bool NewHookJit(HookParam hp, LPCSTR name);
|
|
|
|
|
2024-02-07 20:59:24 +08:00
|
|
|
void RemoveHook(uint64_t addr, int maxOffset = 9);
|
|
|
|
std::string LoadResData(LPCWSTR pszResID,LPCWSTR _type);
|
|
|
|
inline SearchParam spDefault;
|
|
|
|
|
|
|
|
// EOF
|
2024-03-31 19:00:26 +08:00
|
|
|
int HookStrLen(HookParam*,BYTE* data);
|
2024-04-01 13:56:20 +08:00
|
|
|
inline std::unordered_map<uintptr_t,std::pair<JITTYPE,uintptr_t>>emuaddr2jitaddr;
|
2024-03-31 19:00:26 +08:00
|
|
|
inline std::unordered_map<uintptr_t,std::pair<JITTYPE,uintptr_t>>jitaddr2emuaddr;
|
|
|
|
void jitaddraddr(uintptr_t em_addr,uintptr_t jitaddr,JITTYPE);
|
|
|
|
|
|
|
|
void context_get(hook_stack*,PCONTEXT);
|
|
|
|
void context_set(hook_stack*,PCONTEXT);
|
2024-04-01 13:42:59 +08:00
|
|
|
|
2024-04-01 13:56:20 +08:00
|
|
|
inline std::map<uintptr_t,std::pair<std::string,HookParam>>delayinserthook;
|
|
|
|
void delayinsertadd(HookParam,std::string);
|
2024-05-04 13:08:39 +08:00
|
|
|
void delayinsertNewHook(uintptr_t);
|
|
|
|
|
|
|
|
|
|
|
|
inline bool dont_detach=false;
|
|
|
|
inline bool host_connected=false;
|