2016-01-06 00:01:17 +09:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// pchooks.h
|
|
|
|
// 8/1/2014 jichi
|
|
|
|
|
2019-01-27 03:39:33 -05:00
|
|
|
#include <Windows.h>
|
|
|
|
|
2016-01-06 00:01:17 +09:00
|
|
|
namespace PcHooks {
|
|
|
|
|
|
|
|
void hookGDIFunctions();
|
|
|
|
void hookGDIPlusFunctions();
|
2019-01-27 03:04:16 -05:00
|
|
|
void hookD3DXFunctions(HMODULE d3dxModule);
|
2018-09-17 19:44:29 -04:00
|
|
|
void hookOtherPcFunctions();
|
2016-01-06 00:01:17 +09:00
|
|
|
|
|
|
|
} // namespace PcHooks
|
|
|
|
|
|
|
|
// EOF
|