// ntddk.h
typedef union _WHEA_XPF_PROCINFO_VALIDBITS {
struct {
ULONGLONG CheckInfo : 1;
ULONGLONG TargetId : 1;
ULONGLONG RequesterId : 1;
ULONGLONG ResponderId : 1;
ULONGLONG InstructionPointer : 1;
ULONGLONG Reserved : 59;
} DUMMYSTRUCTNAME;
ULONGLONG ValidBits;
} WHEA_XPF_PROCINFO_VALIDBITS, *PWHEA_XPF_PROCINFO_VALIDBITS;
View the official Windows Driver Kit DDI referenceNo description available.
The WHEA_XPF_PROCINFO_VALIDBITS union describes which members of a WHEA_XPF_PROCINFO structure contain valid data.
DUMMYSTRUCTNAMEDUMMYSTRUCTNAME.CheckInfoA single bit that indicates that the CheckInfo member of the WHEA_XPF_PROCINFO structure contains valid data.
DUMMYSTRUCTNAME.TargetIdA single bit that indicates that the TargetId member of the WHEA_XPF_PROCINFO structure contains valid data.
DUMMYSTRUCTNAME.RequesterIdA single bit that indicates that the RequesterId member of the WHEA_XPF_PROCINFO structure contains valid data.
DUMMYSTRUCTNAME.ResponderIdA single bit that indicates that the ResponderId member of the WHEA_XPF_PROCINFO structure contains valid data.
DUMMYSTRUCTNAME.InstructionPointerA single bit that indicates that the InstructionPointer member of the WHEA_XPF_PROCINFO structure contains valid data.
DUMMYSTRUCTNAME.ReservedReserved for system use.
ValidBitsA ULONGLONG representation of the contents of the WHEA_XPF_PROCINFO_VALIDBITS union.
A WHEA_XPF_PROCINFO_VALIDBITS union is contained within the WHEA_XPF_PROCINFO structure.