// ks.h
void KsGateInitializeOr(
[in] PKSGATE OrGate,
[in, optional] PKSGATE NextAndGate
);
View the official Windows Driver Kit DDI reference
No description available.
The KsGateInitializeOr function initializes a KSGATE structure as an OR gate and attaches it to the AND gate specified by NextAndGate.
OrGate
[in]A pointer to the KSGATE structure to initialize as a new OR gate.
NextAndGate
[in, optional]A pointer to an existing KSGATE structure to which OrGate attaches. Optional.
The next gate (following OrGate) must be an AND gate, whether it is specified in this call or later. If you need to connect an OR gate to another OR gate, use KsGateInitialize. For more information, see Flow Control Gates in AVStream.
This function is an inline call to KsGateInitialize.