// acxcircuit.h
WDFSTRING AcxCircuitGetSymbolicLinkName(
[in] ACXCIRCUIT Circuit
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxCircuitGetSymbolicLinkName function retrieves the symbolic link name for the specified circuit object.
Circuit [in]The circuit object for which to get the symbolic link name.
Returns a string containing the symbolic link name for the object specified by the Circuit parameter.
The symbolic link is valid:
Example usage is shown below.
...
_In_ ACXCIRCUIT Circuit,
...
WDFSTRING wdfLink = AcxCircuitGetSymbolicLinkName(Circuit);
Minimum ACX version: 1.1
For more information about ACX versions, see ACX version overview.