// acxpin.h
EVT_ACX_PIN_DISCONNECTED EvtAcxPinDisconnected;
VOID EvtAcxPinDisconnected(
ACXPIN Pin,
ACXTARGETCIRCUIT TargetCircuit,
ULONG TargetPinId
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The EVT_ACX_PIN_DISCONNECTED callback function is implemented by the driver and is called when the circuit bridge pin is disconnected from the pin of another circuit.
PinAn ACXPIN object representing the specific pin that was disconnected.
TargetCircuitAn ACXTARGETCIRCUIT object representing the circuit from which the Pin was disconnected.
TargetPinIdThe identifier of the pin in the TargetCircuit from which the Pin was disconnected.
This callback is not guaranteed to be called in the following scenarios:
A driver must not rely on this callback as its only resource cleanup.
The specified ACXTARGETCIRCUIT may be already in its stop state b/c the target circuit may already be gone.
Driver can still access its ACXTARGETCIRCUIT context.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.