// usbfnbase.h
typedef struct _USBFN_CLASS_INTERFACE {
UINT8 InterfaceNumber;
UINT8 PipeCount;
USBFN_PIPE_INFORMATION PipeArr[MAX_NUM_USBFN_PIPES];
} USBFN_CLASS_INTERFACE, *PUSBFN_CLASS_INTERFACE;
View the official Windows Driver Kit DDI referenceNo description available.
Describes an interface and its endpoints.
InterfaceNumberThe index number of the interface.
PipeCountThe number of endpoints contained in the interface.
PipeArrAn array of USBFN_PIPE_INFORMATION structures that describes the endpoints in the interface.