// ucxusbdevice.h
typedef struct _USBDEVICE_ENABLE_FAILURE_FLAGS {
ULONG InsufficientHardwareResourcesForDefaultEndpoint : 1;
ULONG InsufficientHardwareResourcesForDevice : 1;
ULONG Reserved : 30;
} USBDEVICE_ENABLE_FAILURE_FLAGS;
View the official Windows Driver Kit DDI referenceNo description available.
The flags that are set by the client driver in the EVT_UCX_USBDEVICE_ENABLE callback function. Indicate errors, if any, that might have occurred while enabling the device.
InsufficientHardwareResourcesForDefaultEndpointInsufficient hardware resources for transfers to the default endpoint.
InsufficientHardwareResourcesForDeviceInsufficient hardware resources to enable transfers.
ReservedDo not use.