AcxFactoryCircuitInitAssignProperties function (acxcircuit.h)

The AcxFactoryCircuitInitAssignProperties function assigns one or more ACX properties for the ACXFACTORYCIRCUIT.

Syntax

NTSTATUS AcxFactoryCircuitInitAssignProperties(
  PACXFACTORYCIRCUIT_INIT FactoryInit,
  PACX_PROPERTY_ITEM      Properties,
  ULONG                   PropertiesCount
);

Parameters

FactoryInit

An ACXFACTORYCIRCUIT_INIT structure that is used for circuit factory initialization. This is an opaque structure that is used to store ACX Circuit factory initialization information and associate the factory with a WDF device.

Use the AcxFactoryCircuitInitAllocate function to initialize the ACXFACTORYCIRCUIT_INIT structure.

Properties

An ACX_PROPERTY_ITEM structure that defines a set of properties that will be used for circuit initialization.

PropertiesCount

A count of the properties that will be used for the circuit factory initialization. This is a one based count.

Return value

Returns STATUS_SUCCESS if the call was successful. Otherwise, it returns an appropriate error code. For more information, see Using NTSTATUS Values.

Remarks

Drivers should only add driver owned properties.

ACX requirements

Minimum ACX version: 1.0

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

Requirements

Requirement Value
Header acxcircuit.h
IRQL PASSIVE_LEVEL

See also