// acxcircuit.h
ACXPIN AcxCircuitGetPinById(
ACXCIRCUIT Circuit,
ULONG PinId
);
View the official Windows Driver Kit DDI referenceNo description available.
When provided a valid PinID number, the AcxCircuitGetPinById function returns the AcxCircuitGetPinById function returns the corresponding ACXPIN object. For more information about ACX objects, see Summary of ACX Objects.
CircuitAn existing ACXCIRCUIT object.
PinIdA valid Pin ID number.
A reference to an existing ACXPIN object.
Example usage is shown below.
const ULONG _BRIDGE_PIN_ID = 1;
ACXPIN bridgePin = NULL;
bridgePin = AcxCircuitGetPinById(Circuit, _BRIDGE_PIN_ID);
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.