// acxpin.h
EVT_ACX_PIN_CONNECTED EvtAcxPinConnected;
VOID EvtAcxPinConnected(
ACXPIN Pin,
ACXTARGETCIRCUIT TargetCircuit,
ULONG TargetPinId
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
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.
PinAn ACXPIN object representing the specific pin that was connected.
TargetCircuitAn ACXTARGETCIRCUIT object representing the circuit to which the Pin was connected.
TargetPinIdThe identifier of the pin in the TargetCircuit to which the Pin was connected.
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.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.