AcxCircuitGetPinById function (acxcircuit.h)

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.

Syntax

ACXPIN AcxCircuitGetPinById(
  ACXCIRCUIT Circuit,
  ULONG      PinId
);

Parameters

Circuit

An existing ACXCIRCUIT object.

PinId

A valid Pin ID number.

Return value

A reference to an existing ACXPIN object.

Remarks

Example

Example usage is shown below.

    const ULONG _BRIDGE_PIN_ID = 1;
    ACXPIN bridgePin = NULL;

    bridgePin = AcxCircuitGetPinById(Circuit, _BRIDGE_PIN_ID);

ACX requirements

Minimum ACX version: 1.0

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

Requirements

Requirement Value
Header acxcircuit.h
IRQL <= DISPATCH_LEVEL

See also