// pointofservicecommontypes.h
typedef enum DriverUnifiedPosErrorSeverity {
UnknownErrorSeverity,
Warning,
Recoverable,
Unrecoverable,
AssistanceRequired,
Fatal
} ;
View the official Windows Driver Kit DDI referenceNo description available.
This enumeration indicates the severity of the error.
UnknownErrorSeverityThe severity of the error is not known.
WarningThe error or warning is informational.
RecoverableThe device can recover from the error without closing the application or rebooting.
UnrecoverableThe device is still working, but it must close the application to recover from the error.
AssistanceRequiredIntervention is needed to respond to the error.
FatalThe error requires that the device be rebooted.