// ksmedia.h
typedef struct _KSAUDIOMODULE_DESCRIPTOR {
GUID ClassId;
ULONG InstanceId;
ULONG VersionMajor;
ULONG VersionMinor;
WCHAR Name[AUDIOMODULE_MAX_NAME_CCH_SIZE];
} KSAUDIOMODULE_DESCRIPTOR, *PKSAUDIOMODULE_DESCRIPTOR;
View the official Windows Driver Kit DDI referenceNo description available.
The KSAUDIOMODULE_DESCRIPTOR structure describes the static, external properties of audio modules.
ClassIdThe ClassId of the audio module. The ClassId is an identifier that establishes what type of module this is. The value and mapping is established by the ISV and IHV.
InstanceIdThe InstanceId of the audio module. The InstanceId is a unique identifier that distinguishes this instance of a module from another instance of a module.
VersionMajorThe major version of the audio module. Usage is defined by the implementer.
VersionMinorThe minor version of the audio module. Usage is defined by the implementer.
NameThe friendly name of the audio module. The maximum length is AUDIOMODULE_MAX_NAME_CCH_SIZE wide characters. It is defined as 128 in KSMedia.h.
For more information about audio modules, see Implementing Audio Module Discovery.
KSPROPERTY_AUDIOMODULE_DESCRIPTORS