// ntddk.h
typedef union _WHEA_PCIXDEVICE_ERROR_SECTION_VALIDBITS {
struct {
ULONGLONG ErrorStatus : 1;
ULONGLONG IdInfo : 1;
ULONGLONG MemoryNumber : 1;
ULONGLONG IoNumber : 1;
ULONGLONG RegisterDataPairs : 1;
ULONGLONG Reserved : 59;
} DUMMYSTRUCTNAME;
ULONGLONG ValidBits;
} WHEA_PCIXDEVICE_ERROR_SECTION_VALIDBITS, *PWHEA_PCIXDEVICE_ERROR_SECTION_VALIDBITS;
View the official Windows Driver Kit DDI referenceNo description available.
The WHEA_PCIXDEVICE_ERROR_SECTION_VALIDBITS union describes which members of a WHEA_PCIXDEVICE_ERROR_SECTION structure contain valid data.
DUMMYSTRUCTNAMEDUMMYSTRUCTNAME.ErrorStatusA single bit that indicates that the ErrorStatus member of the WHEA_PCIXDEVICE_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.IdInfoA single bit that indicates that the IdInfo member of the WHEA_PCIXDEVICE_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.MemoryNumberA single bit that indicates that the MemoryNumber member of the WHEA_PCIXDEVICE_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.IoNumberA single bit that indicates that the IoNumber member of the WHEA_PCIXDEVICE_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.RegisterDataPairsA single bit that indicates that the RegisterDataPairs member of the WHEA_PCIXDEVICE_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.ReservedReserved for system use.
ValidBitsA ULONGLONG representation of the contents of the WHEA_PCIXDEVICE_ERROR_SECTION_VALIDBITS union.
A WHEA_PCIXDEVICE_ERROR_SECTION_VALIDBITS union is contained within the WHEA_PCIXDEVICE_ERROR_SECTION structure.