KsGateInitializeOr - NtDoc

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

void KsGateInitializeOr(
  [in]           PKSGATE OrGate,
  [in, optional] PKSGATE NextAndGate
);

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

KsGateInitializeOr function

Description

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

Parameters

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.

Remarks

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.

See also

KSGATE

KsGateInitialize

KsGateInitializeAnd

KsGateTerminateAnd

KsGateTerminateOr