AcxPinRemoveStreamBridges - NtDoc

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

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

NtDoc

No description available.

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

Description

The AcxPinRemoveStreamBridges function removes ACXSTREAMBRIDGE objects from the specified pin.

Parameters

Pin [in]

The ACXPIN handle from which to remove the stream bridges.

StreamBridges [in, reads(StreamBridgesCount)]

A pointer to an array of ACXSTREAMBRIDGE handles representing the steam bridges to remove from the Pin.

StreamBridgesCount

The number of steam bridges to remove from the Pin. This parameter must not equal zero.

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