// ntddk.h
typedef union _WHEA_XPF_PROCESSOR_ERROR_SECTION_VALIDBITS {
struct {
ULONGLONG LocalAPICId : 1;
ULONGLONG CpuId : 1;
ULONGLONG ProcInfoCount : 6;
ULONGLONG ContextInfoCount : 6;
ULONGLONG Reserved : 50;
} DUMMYSTRUCTNAME;
ULONGLONG ValidBits;
} WHEA_XPF_PROCESSOR_ERROR_SECTION_VALIDBITS, *PWHEA_XPF_PROCESSOR_ERROR_SECTION_VALIDBITS;
View the official Windows Driver Kit DDI referenceNo description available.
The WHEA_XPF_PROCESSOR_ERROR_SECTION_VALIDBITS union describes which members of a WHEA_XPF_PROCESSOR_ERROR_SECTION structure contain valid data and the number of structures that are contained in the WHEA_XPF_PROCESSOR_ERROR_SECTION structure's VariableInfo member.
DUMMYSTRUCTNAMEDUMMYSTRUCTNAME.LocalAPICIdA single bit that indicates that the LocalAPICId member of the WHEA_XPF_PROCESSOR_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.CpuIdA single bit that indicates that the CpuId member of the WHEA_XPF_PROCESSOR_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.ProcInfoCountThe number of WHEA_XPF_PROCINFO structures that are contained in the WHEA_XPF_PROCESSOR_ERROR_SECTION structure's VariableInfo member.
DUMMYSTRUCTNAME.ContextInfoCountThe number of WHEA_XPF_CONTEXT_INFO structures that are contained in the WHEA_XPF_PROCESSOR_ERROR_SECTION structure's VariableInfo member.
DUMMYSTRUCTNAME.ReservedReserved for system use.
ValidBitsA ULONGLONG representation of the contents of the WHEA_XPF_PROCESSOR_ERROR_SECTION_VALIDBITS union.
A WHEA_XPF_PROCESSOR_ERROR_SECTION_VALIDBITS union is contained within the WHEA_XPF_PROCESSOR_ERROR_SECTION structure.