// ks.h
typedef struct _KSNODE_DESCRIPTOR {
const KSAUTOMATION_TABLE *AutomationTable;
const GUID *Type;
const GUID *Name;
PVOID Alignment;
} KSNODE_DESCRIPTOR, *PKSNODE_DESCRIPTOR;
View the official Windows Driver Kit DDI reference
No description available.
The KSNODE_DESCRIPTOR structure describes a topology node within a filter.
AutomationTable
A pointer to a KSAUTOMATION_TABLE structure for this topology node. The automation table contains the properties, methods, and events supported by this topology node.
Type
A pointer to a GUID defining the topology node.
Name
A pointer to a GUID that represents the name of this topology node. This is used to return information about a KSPROPERTY_TOPOLOGY_NAME query.
Alignment