// ntddk.h
typedef enum _WHEA_ERROR_SOURCE_STATE {
WheaErrSrcStateStopped,
WheaErrSrcStateStarted,
WheaErrSrcStateRemoved,
WheaErrSrcStateRemovePending
} WHEA_ERROR_SOURCE_STATE, *PWHEA_ERROR_SOURCE_STATE;
View the official Windows Driver Kit DDI referenceNo description available.
The WHEA_ERROR_SOURCE_STATE enumeration defines the different runtime states for an error source.
WheaErrSrcStateStoppedThe error source is stopped.
WheaErrSrcStateStartedThe error source is started.
WheaErrSrcStateRemovedThe error source is removed.
WheaErrSrcStateRemovePendingThe error source is pending.
The WHEA_ERROR_SOURCE_DESCRIPTOR structure contains a member of type WHEA_ERROR_SOURCE_STATE that indicates the runtime state of the error source.