// wdfusb.h
typedef enum _WDF_USB_PIPE_TYPE {
WdfUsbPipeTypeInvalid = 0,
WdfUsbPipeTypeControl,
WdfUsbPipeTypeIsochronous,
WdfUsbPipeTypeBulk,
WdfUsbPipeTypeInterrupt
} WDF_USB_PIPE_TYPE;
View the official Windows Driver Kit DDI reference
No description available.
[Applies to KMDF and UMDF]
The WDF_USB_PIPE_TYPE enumeration identifies the types of USB pipes.
WdfUsbPipeTypeInvalid:0
Reserved for internal use.
WdfUsbPipeTypeControl
The pipe is a control pipe.
WdfUsbPipeTypeIsochronous
The pipe is an isochronous pipe.
WdfUsbPipeTypeBulk
The pipe is a bulk pipe.
WdfUsbPipeTypeInterrupt
The pipe is an interrupt pipe.
The WDF_USB_PIPE_TYPE enumeration is used in the WDF_USB_PIPE_INFORMATION structure.