// acxstreams.h
void AcxStreamResumeIoWithTag(
[in] Stream,
[in, optional] Tag
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxStreamResumeIoWithTag function is used to resume IO for a stream after stream IO has been stopped. It is similar to AcxStreamResumeIo function, but provides the ability to use a Tag that provides additional diagnostic information.
Stream [in]An existing ACXSTREAM object. For more information, see ACX - Summary of ACX Objects.
Tag [in, optional]An optional tag that is a driver-defined value that the framework includes with diagnostic tracing.
Example usage is shown below.
//
// Resume stream IO after it was stopped with AcxStreamStopIoWithTag.
//
status = AcxStreamResumeIoWithTag(stream, (PVOID)this);
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.