USBDEVICE_ENABLE_FAILURE_FLAGS - NtDoc

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

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ucxusbdevice-_usbdevice_enable_failure_flags)

_USBDEVICE_ENABLE_FAILURE_FLAGS structure

Description

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.

Members

InsufficientHardwareResourcesForDefaultEndpoint

Insufficient hardware resources for transfers to the default endpoint.

InsufficientHardwareResourcesForDevice

Insufficient hardware resources to enable transfers.

Reserved

Do not use.

See also

EVT_UCX_USBDEVICE_ENABLE

USBDEVICE_ENABLE