// ucxusbdevice.h
typedef struct _USBDEVICE_RESET {
USBDEVICE_MGMT_HEADER Header;
UCXENDPOINT DefaultEndpoint;
ULONG EndpointsToDisableCount;
UCXENDPOINT *EndpointsToDisable;
} USBDEVICE_RESET, *PUSBDEVICE_RESET;
View the official Windows Driver Kit DDI referenceNo description available.
Contains parameters for a request to reset the specified device. This structure is passed by UCX in request parameters (Parameters.Others.Arg1) of a framework request object of the EVT_UCX_USBDEVICE_RESET callback function.
HeaderA USBDEVICE_MGMT_HEADER structure that contains the handle for the USB hub or device.
DefaultEndpointThe default endpoint for the USB hub or device.
EndpointsToDisableCountThe number of endpoints to disable.
EndpointsToDisableA pointer to an array of handles to endpoints to disable.