// wdfusb.h
typedef enum _WDF_USB_BMREQUEST_TYPE {
BmRequestStandard = 0,
BmRequestClass,
BmRequestVendor
} WDF_USB_BMREQUEST_TYPE;
View the official Windows Driver Kit DDI reference
No description available.
[Applies to KMDF and UMDF]
The WDF_USB_BMREQUEST_TYPE enumeration identifies the data transfer type for a USB control transfer.
BmRequestStandard:0
The data transfer is a standard USB control transfer.
BmRequestClass
The data transfer is a device class-specific USB control transfer.
BmRequestVendor
The data transfer is a vendor-specific USB control transfer.
The WDF_USB_BMREQUEST_TYPE enumeration is used in the WDF_USB_CONTROL_SETUP_PACKET structure.
For more information about data transfer types for a USB control transfer, see the USB specification.