KsPinGetNextSiblingPin - NtDoc

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

KSDDKAPI PKSPIN KsPinGetNextSiblingPin(
  [in] PKSPIN Pin
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

KsPinGetNextSiblingPin function

Description

The KsPinGetNextSiblingPin function returns the next instantiated pin of the same type and on the same filter as Pin.

Parameters

Pin [in]

A pointer to the KSPIN structure for which to find the next instantiated sibling pin.

Return value

KsPinGetNextSiblingPin returns a pointer to a KSPIN structure representing the next instantiated sibling pin of Pin. If no such pin exists, returns NULL.

Remarks

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

See also

KSPIN

KsFilterGetFirstChildPin

KsGetNextSibling