// ntddk.h
typedef union _WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_VALIDBITS {
struct {
UCHAR FRUId : 1;
UCHAR FRUText : 1;
UCHAR Reserved : 6;
} DUMMYSTRUCTNAME;
UCHAR AsUCHAR;
} WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_VALIDBITS, *PWHEA_ERROR_RECORD_SECTION_DESCRIPTOR_VALIDBITS;
View the official Windows Driver Kit DDI referenceNo description available.
The WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_VALIDBITS union describes which members of a WHEA_ERROR_RECORD_SECTION_DESCRIPTOR structure contain valid data.
DUMMYSTRUCTNAMEDefines the DUMMYSTRUCTNAME structure.
DUMMYSTRUCTNAME.FRUIdA single bit that indicates that the FRUId member of the WHEA_ERROR_RECORD_SECTION_DESCRIPTOR structure contains valid data.
DUMMYSTRUCTNAME.FRUTextA single bit that indicates that the FRUText member of the WHEA_ERROR_RECORD_SECTION_DESCRIPTOR structure contains valid data.
DUMMYSTRUCTNAME.ReservedReserved for system use.
AsUCHARA UCHAR representation of the contents of the WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_VALIDBITS union.
A WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_VALIDBITS union is contained within the WHEA_ERROR_RECORD_SECTION_DESCRIPTOR structure.
WHEA_ERROR_RECORD_SECTION_DESCRIPTOR