// acxtargets.h
WDFIOTARGET AcxTargetStreamGetWdfIoTarget(
ACXTARGETSTREAM TargetStream
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxTargetStreamGetWdfIoTarget function will return a WDFIOTARGET WDF object that is associated with the specified stream.
TargetStreamAn existing ACXTARGETSTREAM Object. For more information about ACX objects, see Summary of ACX Objects.
Returns the WDFIOTARGET WDF object that is associated with the specified target stream.
WDFIOTARGET
Aggregator_GetTarget(
_In_ ACXTARGETSTREAM Stream
)
{
PAGED_CODE();
return AcxTargetStreamGetWdfIoTarget(Stream);
}
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.