Skip to content

Latest commit

 

History

History
81 lines (61 loc) · 1.78 KB

nf-acxtargets-acxtargetpingetwdfiotarget.md

File metadata and controls

81 lines (61 loc) · 1.78 KB
UID tech.root title ms.date targetos description prerelease req.assembly req.construct-type req.ddi-compliance req.dll req.header req.idl req.include-header req.irql req.kmdf-ver req.lib req.max-support req.namespace req.redist req.target-min-winverclnt req.target-min-winversvr req.target-type req.type-library req.umdf-ver req.unicode-ansi topic_type api_type api_location api_name f1_keywords dev_langs
NF:acxtargets.AcxTargetPinGetWdfIoTarget
audio
AcxTargetPinGetWdfIoTarget
12/16/2022
Windows
The AcxTargetPinGetWdfIoTarget function given an existing ACXTARGETPIN object, returns its corresponding WDFIOTARGET object.
false
function
acxtargets.h
<= DISPATCH_LEVEL
apiref
HeaderDef
acxtargets.h
AcxTargetPinGetWdfIoTarget
AcxTargetPinGetWdfIoTarget
acxtargets/AcxTargetPinGetWdfIoTarget
c++

-description

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.

-parameters

-param TargetPin

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

-returns

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.

-see-also