AcxTargetPinGetId function (acxtargets.h)

The AcxTargetPinGetId function given an existing ACXTARGETPIN object returns its associated ID value.

Syntax

ULONG AcxTargetPinGetId(
  ACXTARGETPIN TargetPin
);

Parameters

TargetPin

An existing ACXTARGETPIN Object. For more information about ACX objects, see Summary of ACX Objects.

Return value

Returns the ID associated with the specified target pin.

Remarks

Example


     ACXTARGETPIN targetPin = AcxTargetCircuitGetTargetPin(TargetCircuit, pinIndex);
     ULONG pinId = AcxTargetPinGetId(targetPin);

ACX requirements

Minimum ACX version: 1.0

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

Requirements

Requirement Value
Header acxtargets.h
IRQL <= DISPATCH_LEVEL

See also