// usbscan.h
typedef struct _CHANNEL_INFO {
unsigned EventChannelSize;
unsigned uReadDataAlignment;
unsigned uWriteDataAlignment;
} CHANNEL_INFO, *PCHANNEL_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
The CHANNEL_INFO structure is used as a parameter to DeviceIoControl, when the specified I/O control code is IOCTL_GET_CHANNEL_ALIGN_RQST.
EventChannelSizeMaximum packet size for the interrupt transfer pipe.
uReadDataAlignmentMaximum packet size for the bulk IN transfer pipe.
uWriteDataAlignmentMaximum packet size for the bulk OUT transfer pipe.