mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-23 22:05:36 +08:00
19 lines
490 B
C
19 lines
490 B
C
|
#pragma once
|
||
|
|
||
|
// main.h
|
||
|
// 8/23/2013 jichi
|
||
|
// Branch: ITH/IHF_DLL.h, rev 66
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
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);
|
||
|
void RemoveHook(uint64_t addr, int maxOffset = 9);
|
||
|
std::string LoadResData(LPCWSTR pszResID,LPCWSTR _type);
|
||
|
inline SearchParam spDefault;
|
||
|
|
||
|
// EOF
|