AcxCircuitGetPinById - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// acxcircuit.h

ACXPIN AcxCircuitGetPinById(
  ACXCIRCUIT Circuit,
  ULONG      PinId
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-acxcircuit-acxcircuitgetpinbyid)

Description

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.

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.

See also