#ifndef _NTRTL_H
// rev
DECLSPEC_DEPRECATED
NTSYSAPI
VOID
NTAPI
RtlGetCallersAddress( // Use the intrinsic _ReturnAddress instead.
_Out_ PVOID *CallersAddress,
_Out_ PVOID *CallersCaller
);
View code on GitHubNo description available.
Routine RtlGetCallersAddress is useful in program debugging or exceptions control. It returns address of calling instruction.
Returns address in body of function that call RtlGetCallersAddress.
Returns address in function's calling function that call RtlGetCallersAddress body.