AcxCircuitGetWdfDevice - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// acxcircuit.h

WDFDEVICE AcxCircuitGetWdfDevice(
  ACXCIRCUIT Circuit
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-acxcircuit-acxcircuitgetwdfdevice)

Description

Given an existing ACX Circuit object, the AcxCircuitGetWdfDevice function returns the associated WDFDEVICE object.

Parameters

Circuit

An existing ACXCIRCUIT object. For more information, see ACX - Summary of ACX Objects.

Return value

A WDFDEVICE object (described in Summary of Framework Objects) that is associated with the ACX circuit object.

Remarks

Example

Example usage is shown below.

    ACXCIRCUIT  circuit = (ACXCIRCUIT)DriverContext;
    WDFDEVICE   device = nullptr;

    device = AcxCircuitGetWdfDevice(circuit);

ACX requirements

Minimum ACX version: 1.0

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

See also