// 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
No description available.
[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.
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.
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.
WDF_USB_DEVICE_CREATE_CONFIG_INIT
WdfUsbTargetDeviceCreateWithParameters