mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-15 20:19:41 +00:00
23 lines
751 B
C
23 lines
751 B
C
/**
|
|
* @file Callstack.h
|
|
* @author Sina Karvandi (sina@hyperdbg.org)
|
|
* @brief Kernel headers for callstacks
|
|
*
|
|
* @version 0.1
|
|
* @date 2022-03-05
|
|
*
|
|
* @copyright This project is released under the GNU Public License v3.
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
//////////////////////////////////////////////////
|
|
// Functions //
|
|
//////////////////////////////////////////////////
|
|
|
|
BOOLEAN
|
|
CallstackWalkthroughStack(PDEBUGGER_SINGLE_CALLSTACK_FRAME AddressToSaveFrames,
|
|
UINT32 * FrameCount,
|
|
UINT64 StackBaseAddress,
|
|
UINT32 Size,
|
|
BOOLEAN Is32Bit);
|