// ucxendpoint.h
typedef struct _ENDPOINTS_CONFIGURE_FAILURE_FLAGS {
ULONG InsufficientBandwidth : 1;
ULONG InsufficientHardwareResourcesForEndpoints : 1;
ULONG MaxExitLatencyTooLarge : 1;
ULONG Reserved : 29;
} ENDPOINTS_CONFIGURE_FAILURE_FLAGS;
View the official Windows Driver Kit DDI referenceNo description available.
This structure provides failure flags to indicate errors, if any, that might have occurred during a request to an EVT_UCX_USBDEVICE_ENDPOINTS_CONFIGURE callback function.
InsufficientBandwidthInsufficient bandwidth to configure the specified endpoints.
InsufficientHardwareResourcesForEndpointsInsufficient hardware resources to configure the specified endpoints.
MaxExitLatencyTooLargeThe maximum exit latency is too large to configure the specified endpoints.
ReservedDo not use.