// usb.h
typedef enum _USBD_PIPE_TYPE {
UsbdPipeTypeControl,
UsbdPipeTypeIsochronous,
UsbdPipeTypeBulk,
UsbdPipeTypeInterrupt
} USBD_PIPE_TYPE;
View the official Windows Driver Kit DDI reference
No description available.
The USBD_PIPE_TYPE enumerator indicates the type of pipe.
UsbdPipeTypeControl
Indicates that the pipe is a control pipe.
UsbdPipeTypeIsochronous
Indicates that the pipe is an isochronous transfer pipe.
UsbdPipeTypeBulk
Indicates that the pipe is a bulk transfer pipe.
UsbdPipeTypeInterrupt
Indicates that the pipe is an interrupt pipe.
USB Constants and Enumerations