AcxPinCreate function (acxpin.h)

The AcxPinCreate function creates and initializes a new ACXPIN object.

Syntax

NTSTATUS AcxPinCreate(
  [in]  ACXCIRCUIT             Circuit,
  [in]  PWDF_OBJECT_ATTRIBUTES Attributes,
  [in]  PACX_PIN_CONFIG        Config,
  [out] ACXPIN                 *Pin
);

Parameters

[in] Circuit

The ACXCIRCUIT to which the new pin is added.

[in] Attributes

Pointer to a WDF_OBJECT_ATTRIBUTES structure for configuration of the pin.

[in] Config

Pointer to an ACX_PIN_CONFIG structure for configuration of the pin.

[out] Pin

The newly created and initialized ACXPIN object.

Return value

The method returns STATUS_SUCCESS if the operation succeeds. Otherwise, this method might return an appropriate NTSTATUS error code.

Remarks

ACX requirements

Minimum ACX version: 1.0

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

Requirements

Requirement Value
Header acxpin.h
IRQL PASSIVE_LEVEL

See also