// ks.h
KSDDKAPI BOOLEAN KsProcessPinUpdate(
[in] PKSPROCESSPIN ProcessPin
);
View the official Windows Driver Kit DDI referenceNo description available.
The KsProcessPinUpdate function is called from within a filter-centric filter's AVStrMiniFilterProcess dispatch to update a process pin.
ProcessPin [in]A pointer to a KSPROCESSPIN structure that represents the process pin to update.
KsProcessPinUpdate returns TRUE if ProcessPin's conditions for processing are met; otherwise, it returns FALSE. (These conditions are set in the pin descriptor within the Pin member of ProcessPin.) If the minidriver's dispatch calls this routine while the filter is in the STOP state, KsProcessPinUpdate returns FALSE since no pipe exists.
For more information, see Filter-Centric Processing.