// 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 referenceNo description available.
The AcxPinCreate function creates and initializes a new ACXPIN object.
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.
The method returns STATUS_SUCCESS if the operation succeeds. Otherwise, this method might return an appropriate NTSTATUS error code.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.