// ks.h
typedef struct {
ULONG Count;
PKSATTRIBUTE *Attributes;
} KSATTRIBUTE_LIST, *PKSATTRIBUTE_LIST;
View the official Windows Driver Kit DDI reference
No description available.
The KSATTRIBUTE_LIST structure contains an attribute defined in a KSATTRIBUTE structure.
This structure is used to by mode aware drivers with KSDATARANGE. The KSATTRIBUTE_LIST has a single element, which is a KSATTRIBUTE. The Attribute member of the KSATTRIBUTE structure is set to KSATTRIBUTEID_AUDIOSIGNALPROCESSING_MODE.
Count
Specifies the number of attributes in the list.
Attributes
A KSATTRIBUTE structure who's Attribute member is set to KSATTRIBUTEID_AUDIOSIGNALPROCESSING_MODE. For more information, see Audio Signal Processing Modes.