// poscx.h
typedef enum _POS_CX_EVENT_ATTRIBUTES {
POS_CX_EVENT_ATTR_DATA,
POS_CX_EVENT_ATTR_CONTROL,
POS_CX_EVENT_ATTR_BCAST_CONTROL
} POS_CX_EVENT_ATTRIBUTES;
View the official Windows Driver Kit DDI referenceNo description available.
The POS_CX_EVENT_ATTRIBUTES enumeration describes the priority and access rights for the POS events coming from the device. The values are a combination of the values defined in POS_CX_EVENT_DEST and POS_CX_EVENT_PRIORITY.
POS_CX_EVENT_ATTR_DATAData level priority delivered in FIFO to the claim owner handle.
POS_CX_EVENT_ATTR_CONTROLControl level priority delivered in FIFO to the claim owner handle.
POS_CX_EVENT_ATTR_BCAST_CONTROLControl level priority delivered in FIFO to ALL open handles on the driver.
PosCx will deliver all Control level events before Data level events.