// pointofservicecommontypes.h
typedef enum _PosDeviceType {
PosDeviceType_Unknown,
PosDeviceType_BarcodeScanner,
PosDeviceType_MagneticStripeReader,
PosDeviceType_Max
} PosDeviceType;
View the official Windows Driver Kit DDI referenceNo description available.
This enumeration defines values used in the PosDeviceBasicsType structure to indicate the type of device (for instance, barcode scanner or magnetic stripe reader).
PosDeviceType_UnknownIndicates that the type of device is not known.
PosDeviceType_BarcodeScannerIndicates that the type of device is a barcode scanner.
PosDeviceType_MagneticStripeReaderIndicates that the type of device is a magnetic stripe reader.
PosDeviceType_MaxUnused.