// acxcircuit.h
WDFDEVICE AcxCircuitGetWdfDevice(
ACXCIRCUIT Circuit
);
View the official Windows Driver Kit DDI referenceNo description available.
Given an existing ACX Circuit object, the AcxCircuitGetWdfDevice function returns the associated WDFDEVICE object.
CircuitAn existing ACXCIRCUIT object. For more information, see ACX - Summary of ACX Objects.
A WDFDEVICE object (described in Summary of Framework Objects) that is associated with the ACX circuit object.
Example usage is shown below.
ACXCIRCUIT circuit = (ACXCIRCUIT)DriverContext;
WDFDEVICE device = nullptr;
device = AcxCircuitGetWdfDevice(circuit);
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.