added GetTEBLocation to emulate (now works in x64dbg again!)

This commit is contained in:
mrexodia 2016-07-06 07:45:33 +02:00
parent 76c5b7359a
commit 688fe89439
No known key found for this signature in database
GPG Key ID: D72F9A4FAA0073B4
2 changed files with 11 additions and 0 deletions

View File

@ -154,6 +154,12 @@ public:
return nullptr;
}
void* GetTEBLocation(HANDLE hProcess)
{
//TODO
return nullptr;
}
bool HideDebugger(HANDLE hProcess, DWORD PatchAPILevel)
{
//TODO

View File

@ -92,6 +92,11 @@ __declspec(dllexport) void* TITCALL GetPEBLocation(HANDLE hProcess)
return emu.GetPEBLocation(hProcess);
}
__declspec(dllexport) void* TITCALL GetTEBLocation(HANDLE hProcess)
{
return emu.GetTEBLocation(hProcess);
}
__declspec(dllexport) bool TITCALL HideDebugger(HANDLE hProcess, DWORD PatchAPILevel)
{
return emu.HideDebugger(hProcess, PatchAPILevel);