// wdfusb.h
typedef struct _WDF_USB_INTERFACE_SETTING_PAIR {
WDFUSBINTERFACE UsbInterface;
UCHAR SettingIndex;
} WDF_USB_INTERFACE_SETTING_PAIR, *PWDF_USB_INTERFACE_SETTING_PAIR;
View the official Windows Driver Kit DDI reference
No description available.
[Applies to KMDF and UMDF]
The WDF_USB_INTERFACE_SETTING_PAIR structure specifies an alternate setting for a specified USB interface.
UsbInterface
A handle to a framework USB interface object.
SettingIndex
A device-specific index value that identifies an alternate setting for the interface. Alternate settings are described in the USB specification.
The WDF_USB_INTERFACE_SETTING_PAIR structure is used in the WDF_USB_DEVICE_SELECT_CONFIG_PARAMS structure.
WDF_USB_DEVICE_SELECT_CONFIG_PARAMS