mirror of https://github.com/x64dbg/TitanEngine
GetProcessInformation -> TitanGetProcessInformation + GetStartupInformation -> TitanGetStartupInformation (windows 8 SDK contains GetProcessInformation already)
This commit is contained in:
parent
978361df33
commit
4b54b7bcea
|
|
@ -735,8 +735,8 @@ __declspec(dllexport) bool TITCALL SetHardwareBreakPointEx(HANDLE hActiveThread,
|
||||||
__declspec(dllexport) bool TITCALL SetHardwareBreakPoint(ULONG_PTR bpxAddress, DWORD IndexOfRegister, DWORD bpxType, DWORD bpxSize, LPVOID bpxCallBack);
|
__declspec(dllexport) bool TITCALL SetHardwareBreakPoint(ULONG_PTR bpxAddress, DWORD IndexOfRegister, DWORD bpxType, DWORD bpxSize, LPVOID bpxCallBack);
|
||||||
__declspec(dllexport) bool TITCALL DeleteHardwareBreakPoint(DWORD IndexOfRegister);
|
__declspec(dllexport) bool TITCALL DeleteHardwareBreakPoint(DWORD IndexOfRegister);
|
||||||
__declspec(dllexport) bool TITCALL RemoveAllBreakPoints(DWORD RemoveOption);
|
__declspec(dllexport) bool TITCALL RemoveAllBreakPoints(DWORD RemoveOption);
|
||||||
__declspec(dllexport) void* TITCALL GetProcessInformation();
|
__declspec(dllexport) PROCESS_INFORMATION* TITCALL TitanGetProcessInformation();
|
||||||
__declspec(dllexport) void* TITCALL GetStartupInformation();
|
__declspec(dllexport) STARTUPINFOW* TITCALL TitanGetStartupInformation();
|
||||||
__declspec(dllexport) void TITCALL DebugLoop();
|
__declspec(dllexport) void TITCALL DebugLoop();
|
||||||
__declspec(dllexport) void TITCALL SetDebugLoopTimeOut(DWORD TimeOut);
|
__declspec(dllexport) void TITCALL SetDebugLoopTimeOut(DWORD TimeOut);
|
||||||
__declspec(dllexport) void TITCALL SetNextDbgContinueStatus(DWORD SetDbgCode);
|
__declspec(dllexport) void TITCALL SetNextDbgContinueStatus(DWORD SetDbgCode);
|
||||||
|
|
|
||||||
|
|
@ -734,8 +734,8 @@ __declspec(dllimport) bool TITCALL SetHardwareBreakPointEx(HANDLE hActiveThread,
|
||||||
__declspec(dllimport) bool TITCALL SetHardwareBreakPoint(ULONG_PTR bpxAddress, DWORD IndexOfRegister, DWORD bpxType, DWORD bpxSize, LPVOID bpxCallBack);
|
__declspec(dllimport) bool TITCALL SetHardwareBreakPoint(ULONG_PTR bpxAddress, DWORD IndexOfRegister, DWORD bpxType, DWORD bpxSize, LPVOID bpxCallBack);
|
||||||
__declspec(dllimport) bool TITCALL DeleteHardwareBreakPoint(DWORD IndexOfRegister);
|
__declspec(dllimport) bool TITCALL DeleteHardwareBreakPoint(DWORD IndexOfRegister);
|
||||||
__declspec(dllimport) bool TITCALL RemoveAllBreakPoints(DWORD RemoveOption);
|
__declspec(dllimport) bool TITCALL RemoveAllBreakPoints(DWORD RemoveOption);
|
||||||
__declspec(dllimport) void* TITCALL GetProcessInformation();
|
__declspec(dllexport) PROCESS_INFORMATION* TITCALL TitanGetProcessInformation();
|
||||||
__declspec(dllimport) void* TITCALL GetStartupInformation();
|
__declspec(dllexport) STARTUPINFOW* TITCALL TitanGetStartupInformation();
|
||||||
__declspec(dllimport) void TITCALL DebugLoop();
|
__declspec(dllimport) void TITCALL DebugLoop();
|
||||||
__declspec(dllimport) void TITCALL SetDebugLoopTimeOut(DWORD TimeOut);
|
__declspec(dllimport) void TITCALL SetDebugLoopTimeOut(DWORD TimeOut);
|
||||||
__declspec(dllimport) void TITCALL SetNextDbgContinueStatus(DWORD SetDbgCode);
|
__declspec(dllimport) void TITCALL SetNextDbgContinueStatus(DWORD SetDbgCode);
|
||||||
|
|
|
||||||
|
|
@ -1434,11 +1434,11 @@ protected:
|
||||||
}
|
}
|
||||||
static const PROCESS_INFORMATION* GetProcessInformation()
|
static const PROCESS_INFORMATION* GetProcessInformation()
|
||||||
{
|
{
|
||||||
return (const PROCESS_INFORMATION*)UE::GetProcessInformation();
|
return (const PROCESS_INFORMATION*)UE::TitanGetProcessInformation();
|
||||||
}
|
}
|
||||||
static const STARTUPINFOW* GetStartupInformation()
|
static const STARTUPINFOW* GetStartupInformation()
|
||||||
{
|
{
|
||||||
return (const STARTUPINFOW*)UE::GetStartupInformation();
|
return (const STARTUPINFOW*)UE::TitanGetStartupInformation();
|
||||||
}
|
}
|
||||||
static void DebugLoop()
|
static void DebugLoop()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -144,12 +144,12 @@ __declspec(dllexport) void TITCALL SetCustomHandler(DWORD ExceptionId, LPVOID Ca
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
__declspec(dllexport) void* TITCALL GetProcessInformation()
|
__declspec(dllexport) PROCESS_INFORMATION* TITCALL TitanGetProcessInformation()
|
||||||
{
|
{
|
||||||
return(&dbgProcessInformation);
|
return(&dbgProcessInformation);
|
||||||
}
|
}
|
||||||
|
|
||||||
__declspec(dllexport) void* TITCALL GetStartupInformation()
|
__declspec(dllexport) STARTUPINFOW* TITCALL TitanGetStartupInformation()
|
||||||
{
|
{
|
||||||
return(&dbgStartupInfo);
|
return(&dbgStartupInfo);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -153,8 +153,8 @@ GetJumpDestinationEx
|
||||||
IsJumpGoingToExecuteEx
|
IsJumpGoingToExecuteEx
|
||||||
IsJumpGoingToExecute
|
IsJumpGoingToExecute
|
||||||
SetDebugLoopTimeOut
|
SetDebugLoopTimeOut
|
||||||
GetProcessInformation
|
TitanGetProcessInformation
|
||||||
GetStartupInformation
|
TitanGetStartupInformation
|
||||||
AutoDebugEx
|
AutoDebugEx
|
||||||
AutoDebugExW
|
AutoDebugExW
|
||||||
IsFileBeingDebugged
|
IsFileBeingDebugged
|
||||||
|
|
|
||||||
|
|
@ -218,8 +218,8 @@ __declspec(dllexport) bool TITCALL SetHardwareBreakPointEx(HANDLE hActiveThread,
|
||||||
__declspec(dllexport) bool TITCALL SetHardwareBreakPoint(ULONG_PTR bpxAddress, DWORD IndexOfRegister, DWORD bpxType, DWORD bpxSize, LPVOID bpxCallBack);
|
__declspec(dllexport) bool TITCALL SetHardwareBreakPoint(ULONG_PTR bpxAddress, DWORD IndexOfRegister, DWORD bpxType, DWORD bpxSize, LPVOID bpxCallBack);
|
||||||
__declspec(dllexport) bool TITCALL DeleteHardwareBreakPoint(DWORD IndexOfRegister);
|
__declspec(dllexport) bool TITCALL DeleteHardwareBreakPoint(DWORD IndexOfRegister);
|
||||||
__declspec(dllexport) bool TITCALL RemoveAllBreakPoints(DWORD RemoveOption);
|
__declspec(dllexport) bool TITCALL RemoveAllBreakPoints(DWORD RemoveOption);
|
||||||
__declspec(dllexport) void* TITCALL GetProcessInformation();
|
__declspec(dllexport) PROCESS_INFORMATION* TITCALL TitanGetProcessInformation();
|
||||||
__declspec(dllexport) void* TITCALL GetStartupInformation();
|
__declspec(dllexport) STARTUPINFOW* TITCALL TitanGetStartupInformation();
|
||||||
__declspec(dllexport) void TITCALL DebugLoop();
|
__declspec(dllexport) void TITCALL DebugLoop();
|
||||||
__declspec(dllexport) void TITCALL SetDebugLoopTimeOut(DWORD TimeOut);
|
__declspec(dllexport) void TITCALL SetDebugLoopTimeOut(DWORD TimeOut);
|
||||||
__declspec(dllexport) void TITCALL SetNextDbgContinueStatus(DWORD SetDbgCode);
|
__declspec(dllexport) void TITCALL SetNextDbgContinueStatus(DWORD SetDbgCode);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue