// ntddk.h
typedef enum _WHEA_ERROR_SEVERITY {
WheaErrSevRecoverable,
WheaErrSevFatal,
WheaErrSevCorrected,
WheaErrSevInformational
} WHEA_ERROR_SEVERITY, *PWHEA_ERROR_SEVERITY;
View the official Windows Driver Kit DDI referenceNo description available.
The WHEA_ERROR_SEVERITY enumeration defines the possible severity levels of a hardware error condition.
WheaErrSevRecoverableThe error has not been corrected but might be recoverable.
WheaErrSevFatalThe error has not been corrected and is fatal.
WheaErrSevCorrectedThe error has been corrected by the hardware or firmware.
WheaErrSevInformationalAn error has not occurred.
The WHEA_ERROR_PACKET, WHEA_ERROR_RECORD_HEADER, WHEA_ERROR_RECORD_SECTION_DESCRIPTOR, and WHEA_GENERIC_ERROR structures each contain a member of type WHEA_ERROR_SEVERITY that specifies the severity of the error that is described by the structure.
WHEA_ERROR_RECORD_SECTION_DESCRIPTOR