// usbioctl.h
typedef struct _USB_MI_PARENT_INFORMATION {
ULONG NumberOfInterfaces;
} USB_MI_PARENT_INFORMATION, *PUSB_MI_PARENT_INFORMATION;
View the official Windows Driver Kit DDI referenceNo description available.
The USB_MI_PARENT_INFORMATION structure contains information about a composite device.
NumberOfInterfacesThe number of interfaces on the composite device.
A composite device is a device with multiple interfaces (MI). The USB stack treats the interfaces of a composite device as child devices of the composite device and creates a separate PDO for each interface.