AcxPinCreate - NtDoc

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

NTSTATUS AcxPinCreate(
  [in]  ACXCIRCUIT             Circuit,
  [in]  PWDF_OBJECT_ATTRIBUTES Attributes,
  [in]  PACX_PIN_CONFIG        Config,
  [out] ACXPIN                 *Pin
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-acxpin-acxpincreate)

Description

The AcxPinCreate function creates and initializes a new ACXPIN object.

Parameters

Circuit [in]

The ACXCIRCUIT to which the new pin is added.

Attributes [in]

Pointer to a WDF_OBJECT_ATTRIBUTES structure for configuration of the pin.

Config [in]

Pointer to an ACX_PIN_CONFIG structure for configuration of the pin.

Pin [out]

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.

See also