// ks.h
typedef struct _KSPROCESSPIN_INDEXENTRY {
PKSPROCESSPIN *Pins;
ULONG Count;
} KSPROCESSPIN_INDEXENTRY, *PKSPROCESSPIN_INDEXENTRY;
View the official Windows Driver Kit DDI reference
No description available.
The KSPROCESSPIN_INDEXENTRY structure is used in Filter-Centric Processing to bring together all of the input and output pins in one context.
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.
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.