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
|
void cbCreateProcessEvent(const CREATE_PROCESS_DEBUG_INFO & createProcess, const ProcessInfo & process) override
|
||||||
{
|
{
|
||||||
ptr entry = ptr(createProcess.lpStartAddress);
|
ptr entry = ptr(createProcess.lpStartAddress);
|
||||||
|
|
@ -109,12 +115,6 @@ protected:
|
||||||
rip.dwError);
|
rip.dwError);
|
||||||
}
|
}
|
||||||
|
|
||||||
void cbStepSystem()
|
|
||||||
{
|
|
||||||
printf("Reached step after system breakpoint, GIP: 0x%p!\n",
|
|
||||||
_registers->Gip());
|
|
||||||
}
|
|
||||||
|
|
||||||
void cbSystemBreakpoint() override
|
void cbSystemBreakpoint() override
|
||||||
{
|
{
|
||||||
printf("System breakpoint reached, GIP: 0x%p\n",
|
printf("System breakpoint reached, GIP: 0x%p\n",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue