mirror of https://github.com/x64dbg/TitanEngine
13 lines
728 B
C
13 lines
728 B
C
#ifndef _GLOBAL_ENGINE_IMPORTER_H
|
|
#define _GLOBAL_ENGINE_IMPORTER_H
|
|
|
|
//EngineGetProcAddressRemote
|
|
ULONG_PTR EngineGetProcAddressRemote(HANDLE hProcess, const wchar_t* szDLLName, const char* szAPIName);
|
|
ULONG_PTR EngineGetProcAddressRemote(HANDLE hProcess, const char* szDLLName, const char* szAPIName);
|
|
ULONG_PTR EngineGetModuleBaseRemote(HANDLE hProcess, ULONG_PTR APIAddress);
|
|
ULONG_PTR EngineGetModuleBaseRemote(HANDLE hProcess, const wchar_t* szDLLName);
|
|
ULONG_PTR EngineGetModuleBaseRemote(HANDLE hProcess, const char* szDLLName);
|
|
ULONG_PTR EngineGetAddressRemote(HANDLE hProcess, ULONG_PTR APIAddress);
|
|
ULONG_PTR EngineGetAddressLocal(HANDLE hProcess, ULONG_PTR APIAddress);
|
|
|
|
#endif //_GLOBAL_ENGINE_IMPORTER_H
|