#ifndef _NTRTL_H
// rev
NTSYSAPI
VOID
NTAPI
RtlGetCallersAddress( // Use the intrinsic _ReturnAddress instead.
_Out_ PVOID *CallersAddress,
_Out_ PVOID *CallersCaller
);
View code on GitHub
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.