mirror of
https://github.com/monoxgas/sRDI
synced 2026-06-06 16:14:36 +00:00
10 lines
208 B
C
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 |