// usbfnbase.h
typedef struct _USBFN_BUS_CONFIGURATION_INFO {
WCHAR ConfigurationName[MAX_CONFIGURATION_NAME_LENGTH];
BOOLEAN IsCurrent;
BOOLEAN IsActive;
} USBFN_BUS_CONFIGURATION_INFO, *PUSBFN_BUS_CONFIGURATION_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
Configuration packet that stores information about an available USB configuration.
ConfigurationNameA NULL-terminated string that indicates the name of a configuration.
IsCurrentIndicates whether this configuration is the current configuration.
IsActiveIndicates whether the configuration is active. This is a read-only information that is returned by USB function class extension (UFX) and is ignored in requests sent to UFX.