mirror of
https://github.com/Artikash/Textractor.git
synced 2024-12-26 10:24:11 +08:00
25 lines
553 B
C
25 lines
553 B
C
|
#pragma once
|
||
|
|
||
|
// engine/match.h
|
||
|
// 8/23/2013 jichi
|
||
|
// TODO: Clean up the interface to match game engines.
|
||
|
// Split the engine match logic out of hooks.
|
||
|
// Modify the game hook to allow replace functions for arbitary purpose
|
||
|
// instead of just extracting text.
|
||
|
|
||
|
#include "config.h"
|
||
|
|
||
|
namespace Engine {
|
||
|
|
||
|
void match(LPVOID lpThreadParameter);
|
||
|
|
||
|
// jichi 10/21/2014: Return whether found the engine
|
||
|
bool IdentifyEngine();
|
||
|
|
||
|
// jichi 10/21/2014: Return 0 if failed
|
||
|
DWORD InsertDynamicHook(LPVOID addr, DWORD frame, DWORD stack);
|
||
|
|
||
|
} // namespace Engine
|
||
|
|
||
|
// EOF
|