// acxcircuit.h
NTSTATUS AcxFactoryCircuitInitAssignProperties(
PACXFACTORYCIRCUIT_INIT FactoryInit,
PACX_PROPERTY_ITEM Properties,
ULONG PropertiesCount
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxFactoryCircuitInitAssignProperties function assigns one or more ACX properties for the ACXFACTORYCIRCUIT.
FactoryInitAn 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.
PropertiesAn ACX_PROPERTY_ITEM structure that defines a set of properties that will be used for circuit initialization.
PropertiesCountA count of the properties that will be used for the circuit factory initialization. This is a one based count.
Returns STATUS_SUCCESS if the call was successful. Otherwise, it returns an appropriate error code. For more information, see Using NTSTATUS Values.
Drivers should only add driver owned properties.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.