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