AcxPinAddStreamBridges - NtDoc

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

NTSTATUS AcxPinAddStreamBridges(
  [in]                            ACXPIN          Pin,
  [in, reads(StreamBridgesCount)] ACXSTREAMBRIDGE *StreamBridges,
  [in]                            ULONG           StreamBridgesCount
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-acxpin-acxpinaddstreambridges)

Description

The AcxPinAddStreamBridges function adds an array of stream bridges to the specified pin.

Parameters

Pin [in]

The pin to which the stream bridges are added.

StreamBridges [in, reads(StreamBridgesCount)]

A pointer to an array of ACXSTREAMBRIDGE objects to add to the specified Pin.

StreamBridgesCount [in]

The number of ACXSTREAMBRIDGE objects in the StreamBridges array.

Return value

The method returns STATUS_SUCCESS if the operation succeeds. Otherwise, this method might return an appropriate NTSTATUS error code.

Remarks

ACX requirements

Minimum ACX version: 1.0

For more information about ACX versions, see ACX version overview.

See also