AcxTargetStreamGetWdfIoTarget function (acxtargets.h)
The AcxTargetStreamGetWdfIoTarget function will return a WDFIOTARGET WDF object that is associated with the specified stream.
Syntax
WDFIOTARGET AcxTargetStreamGetWdfIoTarget(
ACXTARGETSTREAM TargetStream
);
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.
Requirements
Requirement | Value |
---|---|
Header | acxtargets.h |
IRQL | <= DISPATCH_LEVEL |