// ntddk.h
typedef union _WHEA_REVISION {
struct {
UCHAR MinorRevision;
UCHAR MajorRevision;
} DUMMYSTRUCTNAME;
USHORT AsUSHORT;
} WHEA_REVISION, *PWHEA_REVISION;
View the official Windows Driver Kit DDI referenceNo description available.
The WHEA_REVISION union describes the revision of the error record data structures.
DUMMYSTRUCTNAMEDUMMYSTRUCTNAME.MinorRevisionThe minor revision number.
DUMMYSTRUCTNAME.MajorRevisionThe major revision number.
AsUSHORTA USHORT representation of the contents of the WHEA_REVISION union.
A WHEA_REVISION union is contained within the WHEA_ERROR_RECORD_HEADER and the WHEA_ERROR_RECORD_SECTION_DESCRIPTOR structures.
WHEA_ERROR_RECORD_SECTION_DESCRIPTOR