#ifndef _NTBCD_H
/**
* Enumeration for UX Display Message Types in the Boot Configuration Data (BCD) library.
* This enumeration defines the different UX display message types that can be specified in the BCD library.
*/
typedef enum _BcdLibrary_UxDisplayMessageType
{
DisplayMessageTypeDefault = 0, // Default display message type.
DisplayMessageTypeResume = 1, // Display message type for resume.
DisplayMessageTypeHyperV = 2, // Display message type for Hyper-V.
DisplayMessageTypeRecovery = 3, // Display message type for recovery.
DisplayMessageTypeStartupRepair = 4, // Display message type for startup repair.
DisplayMessageTypeSystemImageRecovery = 5, // Display message type for system image recovery.
DisplayMessageTypeCommandPrompt = 6, // Display message type for command prompt.
DisplayMessageTypeSystemRestore = 7, // Display message type for system restore.
DisplayMessageTypePushButtonReset = 8 // Display message type for push button reset.
} BcdLibrary_UxDisplayMessageType;
View code on GitHubNo description available.