AcxTargetStreamGetWdfIoTarget - NtDoc

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

WDFIOTARGET AcxTargetStreamGetWdfIoTarget(
  ACXTARGETSTREAM TargetStream
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-acxtargets-acxtargetstreamgetwdfiotarget)

Description

The AcxTargetStreamGetWdfIoTarget function will return a WDFIOTARGET WDF object that is associated with the specified stream.

Parameters

TargetStream

An existing ACXTARGETSTREAM Object. For more information about ACX objects, see Summary of ACX Objects.

Return value

Returns the WDFIOTARGET WDF object that is associated with the specified target stream.

Remarks

Example

WDFIOTARGET
Aggregator_GetTarget(
    _In_ ACXTARGETSTREAM Stream
)
{
    PAGED_CODE();
    return AcxTargetStreamGetWdfIoTarget(Stream);
}

ACX requirements

Minimum ACX version: 1.0

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

See also