mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-24 06:15:35 +08:00
18 lines
248 B
C
18 lines
248 B
C
|
#pragma once
|
||
|
|
||
|
// pchooks.h
|
||
|
// 8/1/2014 jichi
|
||
|
|
||
|
#include <Windows.h>
|
||
|
|
||
|
namespace PcHooks {
|
||
|
|
||
|
void hookGDIFunctions();
|
||
|
void hookGDIPlusFunctions();
|
||
|
bool hookD3DXFunctions(HMODULE d3dxModule);
|
||
|
void hookOtherPcFunctions();
|
||
|
|
||
|
} // namespace PcHooks
|
||
|
|
||
|
// EOF
|