EVT_ACX_PIN_CONNECTED - NtDoc

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

EVT_ACX_PIN_CONNECTED EvtAcxPinConnected;

VOID EvtAcxPinConnected(
  ACXPIN Pin,
  ACXTARGETCIRCUIT TargetCircuit,
  ULONG TargetPinId
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-acxpin-evt_acx_pin_connected)

Description

The EVT_ACX_PIN_CONNECTED callback function is implemented by the driver and is called when the circuit bridge pin is connected to bridge pin of another circuit.

Parameters

Pin

An ACXPIN object representing the specific pin that was connected.

TargetCircuit

An ACXTARGETCIRCUIT object representing the circuit to which the Pin was connected.

TargetPinId

The identifier of the pin in the TargetCircuit to which the Pin was connected.

Remarks

This event happens when the composite circuit is fully initialized. From this point on, the TargetCircuit can be used to send kernel streaming properties and kernel streaming methods requests.

ACX requirements

Minimum ACX version: 1.0

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

See also