mirror of https://github.com/x64dbg/GleeBug
fix
This commit is contained in:
parent
3bde590956
commit
1c9b5468a4
|
|
@ -30,6 +30,12 @@ protected:
|
|||
}));
|
||||
}
|
||||
|
||||
void cbStepSystem()
|
||||
{
|
||||
printf("Reached step after system breakpoint, GIP: 0x%p!\n",
|
||||
_registers->Gip());
|
||||
}
|
||||
|
||||
void cbCreateProcessEvent(const CREATE_PROCESS_DEBUG_INFO & createProcess, const ProcessInfo & process) override
|
||||
{
|
||||
ptr entry = ptr(createProcess.lpStartAddress);
|
||||
|
|
@ -109,12 +115,6 @@ protected:
|
|||
rip.dwError);
|
||||
}
|
||||
|
||||
void cbStepSystem()
|
||||
{
|
||||
printf("Reached step after system breakpoint, GIP: 0x%p!\n",
|
||||
_registers->Gip());
|
||||
}
|
||||
|
||||
void cbSystemBreakpoint() override
|
||||
{
|
||||
printf("System breakpoint reached, GIP: 0x%p\n",
|
||||
|
|
|
|||
Loading…
Reference in New Issue