// acxtargets.h
WDFIOTARGET AcxTargetElementGetWdfIoTarget(
ACXTARGETELEMENT TargetElement
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxTargetElementGetWdfIoTarget function given an existing ACXTARGETELEMENT object, returns its corresponding WDFIOTARGET object. For more information about WDF IO targets see Initializing a General I/O Target.
TargetElementAn existing ACXTARGETELEMENT Object. For more information about ACX objects, see Summary of ACX Objects.
The WDFIOTARGET object associated with the target element.
WDFIOTARGET ioTarget;
ioTarget = AcxTargetElementGetWdfIoTarget(targetElement);
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.