KsGateInitializeAnd - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ks.h

void KsGateInitializeAnd(
  [in]           PKSGATE AndGate,
  [in, optional] PKSGATE NextOrGate
);

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ks-ksgateinitializeand)

KsGateInitializeAnd function

Description

The KsGateInitializeAnd function initializes a KSGATE structure as an AND gate and attaches it to the OR gate specified by NextOrGate.

Parameters

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.

Remarks

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.

See also

KSGATE

KsGateInitialize

KsGateInitializeOr

KsGateTerminateAnd

KsGateTerminateOr