KsFilterGetNextSiblingFilter - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ks.h

PKSFILTER KsFilterGetNextSiblingFilter(
  [in] PKSFILTER Filter
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ks-ksfiltergetnextsiblingfilter)

KsFilterGetNextSiblingFilter function

Description

The KsFilterGetNextSiblingFilter function returns the next instantiated filter belonging to the parent filter factory of Filter.

Parameters

Filter [in]

A pointer to the KSFILTER structure for which to find the next sibling filter.

Return value

KsFilterGetNextSiblingFilter returns a pointer to the next sibling KSFILTER structure of Filter. If no such instantiated filter exists, it returns NULL.

Remarks

This call is an inline function call to KsGetNextSibling. Note that the object hierarchy is only guaranteed stable while the appropriate mutex is held, in this case the device mutex. For more information, see Mutexes in AVStream.

See also

KSFILTER

KsFilterFactoryGetFirstChildFilter

KsGetNextSibling