POS_CX_ATTRIBUTES - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-poscx-_pos_cx_attributes)

_POS_CX_ATTRIBUTES structure

Description

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.

Members

EvtDeviceOwnershipChange

A pointer to an EVT_POS_CX_DEVICE_OWNERSHIP_CHANGE callback function.

EvtDeviceRemoteClaim

A pointer to an EVT_POS_CX_DEVICE_REMOTE_CLAIM callback function.

EvtDeviceRemoteRelease

A pointer to an EVT_POS_CX_DEVICE_REMOTE_RELEASE callback function.

EvtDeviceRemoteRetain

A pointer to an EVT_POS_CX_DEVICE_REMOTE_RETAIN callback function.

See also

POS_CX_ATTRIBUTES_INIT

PosCxInit