Textractor/host/host.h

48 lines
1.4 KiB
C
Raw Normal View History

#pragma once
// host.h
// 8/23/2013 jichi
// Branch: ITH/IHF.h, rev 105
2018-08-22 12:24:55 -04:00
#include "common.h"
2018-07-23 12:25:02 -07:00
#include "textthread.h"
#include "../vnrhook/include/types.h"
2018-08-22 12:24:55 -04:00
#define DLLEXPORT __declspec(dllexport)
2018-07-23 12:25:02 -07:00
struct ProcessRecord
{
2018-08-22 21:31:15 -04:00
HANDLE processHandle;
HANDLE sectionMutex;
HANDLE section;
LPVOID sectionMap;
2018-07-23 12:25:02 -07:00
HANDLE hostPipe;
};
typedef std::function<void(DWORD)> ProcessEventCallback;
typedef std::function<void(TextThread*)> ThreadEventCallback;
2018-07-23 12:25:02 -07:00
namespace Host
{
2018-08-21 22:43:30 -04:00
DLLEXPORT void Start(ProcessEventCallback onAttach, ProcessEventCallback onDetach, ThreadEventCallback onCreate, ThreadEventCallback onRemove);
2018-07-23 12:25:02 -07:00
DLLEXPORT void Close();
DLLEXPORT bool InjectProcess(DWORD pid, DWORD timeout = 5000);
DLLEXPORT bool DetachProcess(DWORD pid);
DLLEXPORT bool InsertHook(DWORD pid, HookParam hp, std::string name = "");
DLLEXPORT bool RemoveHook(DWORD pid, DWORD addr);
DLLEXPORT HookParam GetHookParam(DWORD pid, DWORD addr);
2018-08-21 22:43:30 -04:00
DLLEXPORT HookParam GetHookParam(ThreadParameter tp);
2018-07-23 12:25:02 -07:00
DLLEXPORT std::wstring GetHookName(DWORD pid, DWORD addr);
2018-08-21 22:43:30 -04:00
DLLEXPORT TextThread* GetThread(ThreadParameter tp);
2018-07-23 12:25:02 -07:00
DLLEXPORT void AddConsoleOutput(std::wstring text);
}
2018-08-21 22:43:30 -04:00
void DispatchText(ThreadParameter tp, const BYTE *text, int len);
2018-07-23 12:25:02 -07:00
void RemoveThreads(bool(*RemoveIf)(ThreadParameter, ThreadParameter), ThreadParameter cmp);
void RegisterProcess(DWORD pid, HANDLE hostPipe);
void UnregisterProcess(DWORD pid);
// EOF