Files
monoxgas-sRDI/ShellcodeRDI/64BitHelper.h
T
Nick Landers d19ff41682 Initial Code
2017-07-28 14:00:59 -06:00

10 lines
208 B
C

#if defined(_WIN64)
extern VOID AlignRSP( VOID );
VOID Begin( VOID )
{
// Call the ASM stub that will guarantee 16-byte stack alignment.
// The stub will then call the ExecutePayload.
AlignRSP();
}
#endif