RTL_SCP_CFG_PAGE_TYPE - NtDoc

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

/**
 * The RTL_SCP_CFG_PAGE_TYPE enumeration describes page types used by SCP/CFG image extensions.
 */
typedef enum _RTL_SCP_CFG_PAGE_TYPE
{
    RtlScpCfgPageTypeNop,                 // No-op / placeholder page.
    RtlScpCfgPageTypeDefault,             // Default handling page.
    RtlScpCfgPageTypeExportSuppression,   // Export-suppression descriptor page.
    RtlScpCfgPageTypeFptr,                // Page that contains function pointers.
    RtlScpCfgPageTypeMax,                 // Upper bound for the enum.
    RtlScpCfgPageTypeNone                 // Explicit 'none' value.
} RTL_SCP_CFG_PAGE_TYPE;

#endif

View code on GitHub

NtDoc

No description available.