BcdOSLoader_NxPolicy - NtDoc

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

/**
 * @brief Specifies the no-execute page protection policies.
 */
typedef enum _BcdOSLoader_NxPolicy
{
    /**
     * @brief The no-execute page protection is off by default.
     */
    NxPolicyOptIn = 0,
    /**
     * @brief The no-execute page protection is on by default.
     */
    NxPolicyOptOut = 1,
    /**
     * @brief The no-execute page protection is always off.
     */
    NxPolicyAlwaysOff = 2,
    /**
     * @brief The no-execute page protection is always on.
     */
    NxPolicyAlwaysOn = 3
} BcdOSLoader_NxPolicy;

#endif

View code on GitHub

No description available.