// ks.h
void KsGateAddOnInputToOr(
[in] PKSGATE OrGate
);
View the official Windows Driver Kit DDI referenceNo description available.
The KsGateAddOnInputToOr function adds a new input in the ON state to a given OR gate.
OrGate [in]A pointer to a KSGATE structure representing the OR gate to which to add a new ON input.
Adding an ON input to an OR gate in the OFF or closed state results in the gate opening and the transition being propagated to any gates attached to OrGate. Use this function only with gates that were specifically created as OR gates. AVStream does not verify that the given gate is an OR gate.
This call is an inline function call to KsGateTurnInputOn. Minidrivers should call KsGateAddOnInputToOr rather than KsGateTurnInputOn if conceptually adding a new input to the gate.