#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;
View code on GitHub
No description available.