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