mirror of https://github.com/x64dbg/GleeBug
remove unused exports
This commit is contained in:
parent
2e835e23ff
commit
61cf4e8672
|
|
@ -152,16 +152,6 @@ public:
|
||||||
mSetDebugPrivilege = VariableSet;
|
mSetDebugPrivilege = VariableSet;
|
||||||
}
|
}
|
||||||
|
|
||||||
PROCESS_INFORMATION* TitanGetProcessInformation()
|
|
||||||
{
|
|
||||||
return &mMainProcess;
|
|
||||||
}
|
|
||||||
|
|
||||||
STARTUPINFOW* TitanGetStartupInformation()
|
|
||||||
{
|
|
||||||
return &mMainStartupInfo;
|
|
||||||
}
|
|
||||||
|
|
||||||
//Misc
|
//Misc
|
||||||
void* GetPEBLocation(HANDLE hProcess)
|
void* GetPEBLocation(HANDLE hProcess)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -81,27 +81,12 @@ __declspec(dllexport) void TITCALL SetEngineVariable(DWORD VariableId, bool Vari
|
||||||
emu.SetEngineVariable(VariableId, VariableSet);
|
emu.SetEngineVariable(VariableId, VariableSet);
|
||||||
}
|
}
|
||||||
|
|
||||||
__declspec(dllexport) PROCESS_INFORMATION* TITCALL TitanGetProcessInformation()
|
|
||||||
{
|
|
||||||
return emu.TitanGetProcessInformation();
|
|
||||||
}
|
|
||||||
|
|
||||||
__declspec(dllexport) STARTUPINFOW* TITCALL TitanGetStartupInformation()
|
|
||||||
{
|
|
||||||
return emu.TitanGetStartupInformation();
|
|
||||||
}
|
|
||||||
|
|
||||||
//Misc
|
//Misc
|
||||||
__declspec(dllexport) void* TITCALL GetPEBLocation(HANDLE hProcess)
|
__declspec(dllexport) void* TITCALL GetPEBLocation(HANDLE hProcess)
|
||||||
{
|
{
|
||||||
return emu.GetPEBLocation(hProcess);
|
return emu.GetPEBLocation(hProcess);
|
||||||
}
|
}
|
||||||
|
|
||||||
__declspec(dllexport) void* TITCALL GetPEBLocation64(HANDLE hProcess)
|
|
||||||
{
|
|
||||||
return emu.GetPEBLocation64(hProcess);
|
|
||||||
}
|
|
||||||
|
|
||||||
__declspec(dllexport) void* TITCALL GetTEBLocation(HANDLE hThread)
|
__declspec(dllexport) void* TITCALL GetTEBLocation(HANDLE hThread)
|
||||||
{
|
{
|
||||||
return emu.GetTEBLocation(hThread);
|
return emu.GetTEBLocation(hThread);
|
||||||
|
|
@ -128,11 +113,6 @@ __declspec(dllexport) ULONG_PTR TITCALL GetContextDataEx(HANDLE hActiveThread, D
|
||||||
return emu.GetContextDataEx(hActiveThread, IndexOfRegister);
|
return emu.GetContextDataEx(hActiveThread, IndexOfRegister);
|
||||||
}
|
}
|
||||||
|
|
||||||
__declspec(dllexport) ULONG_PTR TITCALL GetContextData(DWORD IndexOfRegister)
|
|
||||||
{
|
|
||||||
return GetContextDataEx(nullptr, IndexOfRegister);
|
|
||||||
}
|
|
||||||
|
|
||||||
__declspec(dllexport) bool TITCALL SetContextDataEx(HANDLE hActiveThread, DWORD IndexOfRegister, ULONG_PTR NewRegisterValue)
|
__declspec(dllexport) bool TITCALL SetContextDataEx(HANDLE hActiveThread, DWORD IndexOfRegister, ULONG_PTR NewRegisterValue)
|
||||||
{
|
{
|
||||||
return emu.SetContextDataEx(hActiveThread, IndexOfRegister, NewRegisterValue);
|
return emu.SetContextDataEx(hActiveThread, IndexOfRegister, NewRegisterValue);
|
||||||
|
|
@ -179,11 +159,6 @@ __declspec(dllexport) ULONG_PTR TITCALL ConvertVAtoFileOffsetEx(ULONG_PTR FileMa
|
||||||
return emu.ConvertVAtoFileOffsetEx(FileMapVA, FileSize, ImageBase, AddressToConvert, AddressIsRVA, ReturnType);
|
return emu.ConvertVAtoFileOffsetEx(FileMapVA, FileSize, ImageBase, AddressToConvert, AddressIsRVA, ReturnType);
|
||||||
}
|
}
|
||||||
|
|
||||||
__declspec(dllexport) ULONG_PTR TITCALL ConvertVAtoFileOffset(ULONG_PTR FileMapVA, ULONG_PTR AddressToConvert, bool ReturnType)
|
|
||||||
{
|
|
||||||
return ConvertVAtoFileOffsetEx(FileMapVA, 0, 0, AddressToConvert, false, ReturnType);
|
|
||||||
}
|
|
||||||
|
|
||||||
__declspec(dllexport) ULONG_PTR TITCALL GetPE32DataFromMappedFile(ULONG_PTR FileMapVA, DWORD WhichSection, DWORD WhichData)
|
__declspec(dllexport) ULONG_PTR TITCALL GetPE32DataFromMappedFile(ULONG_PTR FileMapVA, DWORD WhichSection, DWORD WhichData)
|
||||||
{
|
{
|
||||||
return emu.GetPE32DataFromMappedFile(FileMapVA, WhichSection, WhichData);
|
return emu.GetPE32DataFromMappedFile(FileMapVA, WhichSection, WhichData);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue