Skip to content

Latest commit

 

History

History
82 lines (63 loc) · 1.68 KB

nf-acxcircuit-acxcircuitgetpinbyid.md

File metadata and controls

82 lines (63 loc) · 1.68 KB
UID tech.root title ms.date targetos description prerelease req.assembly req.construct-type req.ddi-compliance req.dll req.header req.idl req.include-header req.irql req.kmdf-ver req.lib req.max-support req.namespace req.redist req.target-min-winverclnt req.target-min-winversvr req.target-type req.type-library req.umdf-ver req.unicode-ansi topic_type api_type api_location api_name f1_keywords dev_langs
NF:acxcircuit.AcxCircuitGetPinById
audio
AcxCircuitGetPinById
12/14/2022
Windows
When provided a valid PinID number, the AcxCircuitGetPinById function returns the corresponding ACXPIN object.
false
function
acxcircuit.h
<= DISPATCH_LEVEL
apiref
HeaderDef
acxcircuit.h
AcxCircuitGetPinById
AcxCircuitGetPinById
acxcircuit/AcxCircuitGetPinById
c++

-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

-param Circuit

An existing ACXCIRCUIT object.

-param PinId

A valid Pin ID number.

-returns

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