// udecxusbendpoint.h
typedef struct _UDECX_USB_ENDPOINT_CALLBACKS {
ULONG Size;
PFN_UDECX_USB_ENDPOINT_RESET EvtUsbEndpointReset;
PFN_UDECX_USB_ENDPOINT_START EvtUsbEndpointStart;
PFN_UDECX_USB_ENDPOINT_PURGE EvtUsbEndpointPurge;
} UDECX_USB_ENDPOINT_CALLBACKS, *PUDECX_USB_ENDPOINT_CALLBACKS;
View the official Windows Driver Kit DDI referenceNo description available.
Contains function pointers to endpoint callback functions implemented by the UDE client driver. Initialize this structure by calling UDECX_USB_ENDPOINT_CALLBACKS_INIT.
SizeThe size of this structure.
EvtUsbEndpointResetRequired. A pointer to an EVT_UDECX_USB_ENDPOINT_RESET callback function implemented by a UDE client driver.
EvtUsbEndpointStartOptional. A pointer to an EVT_UDECX_USB_ENDPOINT_START callback function implemented by a UDE client driver.
EvtUsbEndpointPurgeOptional. A pointer to an EVT_UDECX_USB_ENDPOINT_PURGE callback function implemented by a UDE client driver.
UdecxUsbEndpointInitSetCallbacks