// ntddk.h
typedef union _WHEA_PCIXBUS_ERROR_SECTION_VALIDBITS {
struct {
ULONGLONG ErrorStatus : 1;
ULONGLONG ErrorType : 1;
ULONGLONG BusId : 1;
ULONGLONG BusAddress : 1;
ULONGLONG BusData : 1;
ULONGLONG BusCommand : 1;
ULONGLONG RequesterId : 1;
ULONGLONG CompleterId : 1;
ULONGLONG TargetId : 1;
ULONGLONG Reserved : 55;
} DUMMYSTRUCTNAME;
ULONGLONG ValidBits;
} WHEA_PCIXBUS_ERROR_SECTION_VALIDBITS, *PWHEA_PCIXBUS_ERROR_SECTION_VALIDBITS;
View the official Windows Driver Kit DDI referenceNo description available.
The WHEA_PCIXBUS_ERROR_SECTION_VALIDBITS union describes which members of a WHEA_PCIXBUS_ERROR_SECTION structure contain valid data.
DUMMYSTRUCTNAMEDUMMYSTRUCTNAME.ErrorStatusA single bit that indicates that the ErrorStatus member of the WHEA_PCIXBUS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.ErrorTypeA single bit that indicates that the ErrorType member of the WHEA_PCIXBUS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.BusIdA single bit that indicates that the BusId member of the WHEA_PCIXBUS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.BusAddressA single bit that indicates that the BusAddress member of the WHEA_PCIXBUS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.BusDataA single bit that indicates that the BusData member of the WHEA_PCIXBUS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.BusCommandA single bit that indicates that the BusCommand member of the WHEA_PCIXBUS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.RequesterIdA single bit that indicates that the RequesterId member of the WHEA_PCIXBUS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.CompleterIdA single bit that indicates that the CompleterId member of the WHEA_PCIXBUS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.TargetIdA single bit that indicates that the TargetId member of the WHEA_PCIXBUS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.ReservedReserved for system use.
ValidBitsA ULONGLONG representation of the contents of the WHEA_PCIXBUS_ERROR_SECTION_VALIDBITS union.
A WHEA_PCIXBUS_ERROR_SECTION_VALIDBITS union is contained within the WHEA_PCIXBUS_ERROR_SECTION structure.