// pointofservicecommontypes.h
typedef enum DriverUnifiedPosHealthCheckLevel {
UnknownHealthCheckLevel,
POSInternal,
External,
Interactive
} ;
View the official Windows Driver Kit DDI referenceNo description available.
This enumeration indicates the type of health check to be performed when CheckHealthAsync is called on a POS device.
UnknownHealthCheckLevelThe type of health check is not known.
POSInternalPerforms a health check without altering the device. The device is tested by internal tests as far as possible.
ExternalPerforms a more thorough test which may affect the device. For example, a printer may produce some output.
InteractiveMay display a dialog box that displays test options and results so that you can test the device interactively.