RTL_SCP_CFG_COMMON_HEADER - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTMMAPI_H

/**
 * The RTL_SCP_CFG_COMMON_HEADER structure contains RVAs to dispatch and check
 * routines used by SCP/CFG configuration blocks.
 */
typedef struct _RTL_SCP_CFG_COMMON_HEADER
{
    ULONG CfgDispatchRva;         // RVA to CFG dispatch routine.
    ULONG CfgDispatchESRva;       // RVA to CFG dispatch exception stub.
    ULONG CfgCheckRva;            // RVA to CFG checking routine.
    ULONG CfgCheckESRva;          // RVA to CFG checking exception stub.
    ULONG InvalidCallHandlerRva;  // RVA to invalid-call handler.
    ULONG FnTableRva;             // RVA to function-pointer table.
} RTL_SCP_CFG_COMMON_HEADER, *PRTL_SCP_CFG_COMMON_HEADER;

#endif

View code on GitHub

NtDoc

No description available.