// poscx.h
typedef struct _POS_CX_ATTRIBUTES {
PFN_POS_CX_DEVICE_OWNERSHIP_CHANGE EvtDeviceOwnershipChange;
PFN_POS_CX_DEVICE_REMOTE_CLAIM EvtDeviceRemoteClaim;
PFN_POS_CX_DEVICE_REMOTE_RELEASE EvtDeviceRemoteRelease;
PFN_POS_CX_DEVICE_REMOTE_RETAIN EvtDeviceRemoteRetain;
} POS_CX_ATTRIBUTES;
View the official Windows Driver Kit DDI referenceNo description available.
The POS_CX_ATTRIBUTES structure contains pointers to event callback functions implemented by the client driver.
Use POS_CX_ATTRIBUTES_INIT to initialize this structure.
EvtDeviceOwnershipChangeA pointer to an EVT_POS_CX_DEVICE_OWNERSHIP_CHANGE callback function.
EvtDeviceRemoteClaimA pointer to an EVT_POS_CX_DEVICE_REMOTE_CLAIM callback function.
EvtDeviceRemoteReleaseA pointer to an EVT_POS_CX_DEVICE_REMOTE_RELEASE callback function.
EvtDeviceRemoteRetainA pointer to an EVT_POS_CX_DEVICE_REMOTE_RETAIN callback function.