Textractor_test/texthook/host.h

22 lines
557 B
C
Raw Normal View History

#pragma once
// host.h
// 8/23/2013 jichi
// Branch: ITH/IHF.h, rev 105
2018-07-19 12:46:52 +08:00
#define DLLEXPORT __declspec(dllexport)
2018-07-19 12:09:58 +08:00
#include "hookman.h"
2018-07-21 04:26:27 +08:00
#include "../vnrhook/include/types.h"
2018-07-13 01:59:05 +08:00
#include <string>
2018-07-18 05:01:56 +08:00
DLLEXPORT void OpenHost();
DLLEXPORT bool StartHost();
DLLEXPORT void CloseHost();
2018-07-22 02:09:07 +08:00
DLLEXPORT HookManager* GetHostHookManager();
DLLEXPORT bool InjectProcess(DWORD pid, DWORD timeout = 5000);
DLLEXPORT bool DetachProcess(DWORD pid);
DLLEXPORT bool InsertHook(DWORD pid, HookParam hp, std::string name = "");
2018-07-19 12:09:58 +08:00
DLLEXPORT bool RemoveHook(DWORD pid, DWORD addr);
// EOF