BcdLibrary_FirstMegabytePolicy - NtDoc

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

/**
 * Specifies the policy for using the first megabyte of memory.
 */
typedef enum _BcdLibrary_FirstMegabytePolicy
{
    /* Use none of the first megabyte of memory. */
    FirstMegabytePolicyUseNone,
    /* Use all of the first megabyte of memory. */
    FirstMegabytePolicyUseAll,
    /* Reserved for future use. */
    FirstMegabytePolicyUsePrivate
} BcdLibrary_FirstMegabytePolicy;

#endif

View code on GitHub

No description available.