// acxtargets.h
WDFIOTARGET AcxTargetPinGetWdfIoTarget(
ACXTARGETPIN TargetPin
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxTargetPinGetWdfIoTarget given an existing ACXTARGETPIN object, returns its corresponding WDFIOTARGET object. For more information about WDF IO targets see Initializing a General I/O Target.
TargetPinAn existing ACXTARGETPIN object. For more information about ACX objects, see Summary of ACX Objects.
Returns the WDFIOTARGET object associated with the target pin target.
_In_ ACXTARGETPIN PinTarget;
...
WDFIOTARGET ioTarget;
ioTarget = AcxTargetPinGetWdfIoTarget(PinTarget);
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.