WDF_USB_DEVICE_CREATE_CONFIG - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdfusb.h

typedef struct _WDF_USB_DEVICE_CREATE_CONFIG {
  ULONG Size;
  ULONG USBDClientContractVersion;
} WDF_USB_DEVICE_CREATE_CONFIG, *PWDF_USB_DEVICE_CREATE_CONFIG;

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wdfusb-_wdf_usb_device_create_config)

_WDF_USB_DEVICE_CREATE_CONFIG structure

Description

[Applies to KMDF and UMDF]

The WDF_USB_DEVICE_CREATE_CONFIG structure contains information that the framework uses to configure a framework USB device object.

Members

Size

The size, in bytes, of this structure.

USBDClientContractVersion

The contract version that the client driver supports. USBDClientContractVersion must be USBD_CLIENT_CONTRACT_VERSION_602.

Remarks

The WDF_USB_DEVICE_CREATE_CONFIG structure is used as input to the WdfUsbTargetDeviceCreateWithParameters method. To initialize a WDF_USB_DEVICE_CREATE_CONFIG structure, the driver must call WDF_USB_DEVICE_CREATE_CONFIG_INIT.

See also

WDF_USB_DEVICE_CREATE_CONFIG_INIT

WdfUsbTargetDeviceCreateWithParameters