// usbdlib.h
typedef struct _COMPOSITE_DEVICE_CAPABILITIES {
ULONG CapabilityFunctionSuspend : 1;
ULONG Reserved : 31;
} COMPOSITE_DEVICE_CAPABILITIES, *PCOMPOSITE_DEVICE_CAPABILITIES;
View the official Windows Driver Kit DDI referenceNo description available.
The COMPOSITE_DEVICE_CAPABILITIES structure specifies the capabilities of the driver of a USB multi-function device (composite driver). To initialize the structure, use the COMPOSITE_DEVICE_CAPABILITIES_INIT macro.
CapabilityFunctionSuspendIf set to 1, indicates that the composite driver supports the USB function suspend feature.
ReservedReserved.
COMPOSITE_DEVICE_CAPABILITIES_INIT
How to Register a Composite Device
IOCTL_INTERNAL_USB_REGISTER_COMPOSITE_DEVICE
USBD_BuildRegisterCompositeDevice