// wdfusb.h
typedef enum _WdfUsbTargetDeviceSelectSettingType {
WdfUsbInterfaceSelectSettingTypeDescriptor = 0x10,
WdfUsbInterfaceSelectSettingTypeSetting = 0x11,
WdfUsbInterfaceSelectSettingTypeUrb = 0x12
} WdfUsbTargetDeviceSelectSettingType;
View the official Windows Driver Kit DDI reference
No description available.
[Applies to KMDF and UMDF]
The WdfUsbTargetDeviceSelectSettingType enumeration defines techniques for specifying an alternate setting for a USB interface.
WdfUsbInterfaceSelectSettingTypeDescriptor:0x10
Specify an interface's alternate setting by providing a USB_INTERFACE_DESCRIPTOR structure.
WdfUsbInterfaceSelectSettingTypeSetting:0x11
Specify an interface's alternate setting by providing a setting index value.
WdfUsbInterfaceSelectSettingTypeUrb:0x12
Specify an interface's alternate setting by providing a URB.
The WdfUsbTargetDeviceSelectSettingType enumeration is used in the WDF_USB_INTERFACE_SELECT_SETTING_PARAMS structure.
WDF_USB_INTERFACE_SELECT_SETTING_PARAMS