mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-16 12:39:35 +00:00
31 lines
626 B
C
31 lines
626 B
C
/**
|
|
* @file steppings.h
|
|
* @author Sina Karvandi (sina@hyperdbg.org)
|
|
* @brief headers for stepping instructions
|
|
* @details
|
|
* @version 0.11
|
|
* @date 2024-09-06
|
|
*
|
|
* @copyright This project is released under the GNU Public License v3.
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
//////////////////////////////////////////////////
|
|
// Functions //
|
|
//////////////////////////////////////////////////
|
|
|
|
BOOLEAN
|
|
SteppingInstrumentationStepIn();
|
|
|
|
BOOLEAN
|
|
SteppingRegularStepIn();
|
|
|
|
BOOLEAN
|
|
SteppingStepOver();
|
|
|
|
BOOLEAN
|
|
SteppingInstrumentationStepInForTracking();
|
|
|
|
BOOLEAN
|
|
SteppingStepOverForGu(BOOLEAN LastInstruction);
|