// acxcircuit.h
PACXCIRCUIT_INIT AcxCircuitInitAllocate(
WDFDEVICE Device
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxCircuitInitAllocate function is used to initialize the opaque ACXCIRCUIT_INIT structure that is used by the AcxCircuitCreate function.
DeviceA WDFDEVICE object (described in Summary of Framework Objects) that is associated with the ACX circuit.
The driver is responsible for deleting the ACXCIRCUIT_INIT object using AcxCircuitInitFree if the AcxCircuitCreate is not invoked or returns an error.
Example usage is shown below.
PACXCIRCUIT_INIT circuitInit = NULL;
circuitInit = AcxCircuitInitAllocate(Device);
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.