RtlCaptureStackBackTrace - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTRTL_H
// begin_msdn:"Winternl"

NTSYSAPI
_Success_(return != 0)
USHORT  
NTAPI
RtlCaptureStackBackTrace(
    _In_ ULONG FramesToSkip,
    _In_ ULONG FramesToCapture,
    _Out_writes_to_(FramesToCapture,return) PVOID* BackTrace,
    _Out_opt_ PULONG BackTraceHash
    );

// end_msdn
#endif

View code on GitHub

No description available.