// usbscan.h
typedef struct _USBSCAN_PIPE_CONFIGURATION {
ULONG NumberOfPipes;
USBSCAN_PIPE_INFORMATION PipeInfo[MAX_NUM_PIPES];
} USBSCAN_PIPE_CONFIGURATION, *PUSBSCAN_PIPE_CONFIGURATION;
View the official Windows Driver Kit DDI referenceNo description available.
The USBSCAN_PIPE_CONFIGURATION structure is used as a parameter to DeviceIoControl, when the specified I/O control code is IOCTL_GET_PIPE_CONFIGURATION.
NumberOfPipesThe number of transfer pipes supported for the device.
PipeInfoPointer to a NumberOfPipes-sized array of USBSCAN_PIPE_INFORMATION structures.