#ifndef _NTMMAPI_H
/**
* The RTL_KSCP_ROUTINES structure contains the kernel-side
* SCP-related routine descriptors used for XFG/CFG/retpoline support.
*/
typedef struct _RTL_KSCP_ROUTINES
{
ULONG UnwindDataOffset; // Offset to unwind data for the routines.
RTL_RETPOLINE_ROUTINES RetpolineRoutines;
ULONG CfgDispatchSmep; // CFG dispatch variant when SMEP is enabled.
ULONG CfgDispatchNoSmep; // CFG dispatch variant when SMEP is not enabled.
} RTL_KSCP_ROUTINES, *PRTL_KSCP_ROUTINES;
View code on GitHubNo description available.