mirror of https://github.com/x64dbg/TitanEngine
- fixed ImporterGetRemoteDLLBase
This commit is contained in:
parent
085e6ae7a9
commit
96d726d156
|
|
@ -151,6 +151,10 @@ __declspec(dllexport) long long TITCALL ImporterGetRemoteDLLBaseEx(HANDLE hProce
|
|||
return EngineGetModuleBaseRemote(hProcess, szModuleName);
|
||||
}
|
||||
|
||||
__declspec(dllexport) long long TITCALL ImporterGetRemoteDLLBase(HANDLE hProcess, HMODULE LocalModuleBase)
|
||||
{
|
||||
return EngineGetAPIAddressRemote(hProcess, (ULONG_PTR)LocalModuleBase);
|
||||
}
|
||||
|
||||
__declspec(dllexport) void* TITCALL ImporterGetAPIName(ULONG_PTR APIAddress)
|
||||
{
|
||||
|
|
@ -180,10 +184,6 @@ __declspec(dllexport) long TITCALL ImporterGetDLLIndex(HANDLE hProcess, ULONG_PT
|
|||
{
|
||||
return((DWORD)EngineGlobalAPIHandler(hProcess, DLLBasesList, APIAddress, NULL, UE_OPTION_IMPORTER_RETURN_DLLINDEX));
|
||||
}
|
||||
__declspec(dllexport) long long TITCALL ImporterGetRemoteDLLBase(HANDLE hProcess, HMODULE LocalModuleBase)
|
||||
{
|
||||
return((ULONG_PTR)EngineGlobalAPIHandler(hProcess, NULL, (ULONG_PTR)LocalModuleBase, NULL, UE_OPTION_IMPORTER_RETURN_DLLBASE));
|
||||
}
|
||||
|
||||
__declspec(dllexport) bool TITCALL ImporterIsForwardedAPI(HANDLE hProcess, ULONG_PTR APIAddress)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue