// acxtargets.h
NTSTATUS AcxTargetFactoryCircuitCreate(
WDFDEVICE Device,
PWDF_OBJECT_ATTRIBUTES Attributes,
PACX_TARGET_FACTORY_CIRCUIT_CONFIG Config,
ACXTARGETFACTORYCIRCUIT *TargetFactoryCircuit
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxTargetFactoryCircuitCreate function returns a handle to a new ACXTARGETFACTORYCIRCUIT ACX object.
DeviceA WDFDEVICE object (described in Summary of Framework Objects) that is associated with the specified ACXCIRCUIT.
AttributesAdditional Attributes defined using a WDF_OBJECT_ATTRIBUTES structure that are used to set various object's values: cleanup and destroy callbacks, context type, and to specify its parent object.
ConfigAn initialized ACX_TARGET_FACTORY_CIRCUIT_CONFIG structure that describes the configuration of the target factory circuit.
TargetFactoryCircuitA pointer to a location that receives a handle to the new ACXTARGETFACTORYCIRCUIT Object. For more information about ACX objects, see Summary of ACX Objects.
Returns STATUS_SUCCESS if the call was successful. Otherwise, it returns an appropriate error code. For more information, see Using NTSTATUS Values.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.