AcxTargetPinGetWdfIoTarget function (acxtargets.h)

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.

Syntax

WDFIOTARGET AcxTargetPinGetWdfIoTarget(
  ACXTARGETPIN TargetPin
);

Parameters

TargetPin

An existing ACXTARGETPIN object. For more information about ACX objects, see Summary of ACX Objects.

Return value

Returns the WDFIOTARGET object associated with the target pin target.

Remarks

Example


    _In_ ACXTARGETPIN PinTarget;

...

    WDFIOTARGET ioTarget;

    ioTarget = AcxTargetPinGetWdfIoTarget(PinTarget);

ACX requirements

Minimum ACX version: 1.0

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

Requirements

Requirement Value
Header acxtargets.h
IRQL <= DISPATCH_LEVEL

See also