KSPROCESSPIN_INDEXENTRY - NtDoc

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

typedef struct _KSPROCESSPIN_INDEXENTRY {
  PKSPROCESSPIN *Pins;
  ULONG         Count;
} KSPROCESSPIN_INDEXENTRY, *PKSPROCESSPIN_INDEXENTRY;

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ks-_ksprocesspin_indexentry)

_KSPROCESSPIN_INDEXENTRY structure

Description

The KSPROCESSPIN_INDEXENTRY structure is used in Filter-Centric Processing to bring together all of the input and output pins in one context.

Members

Pins

A pointer to an array of KSPROCESSPIN structures. The array contains a listing of the instances of the given pin.

Count

This member specifies the number of process pins in Pins that are currently instantiated.

Remarks

This pointer table is indexed in order of the pins described in the pin descriptor table for the corresponding filter. The first pin described in the descriptor table has the first entry in the index table passed to the processing dispatch. See the processing dispatch in KSPIN_DISPATCH.

For more information, see Filter-Centric Processing.

See also

KSPROCESSPIN