AcxStreamResumeIoWithTag macro (acxstreams.h)
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.
Syntax
void AcxStreamResumeIoWithTag(
[in] Stream,
[in, optional] Tag
);
Parameters
[in] Stream
An existing ACXSTREAM object. For more information, see ACX - Summary of ACX Objects.
[in, optional] Tag
An optional tag that is a driver-defined value that the framework includes with diagnostic tracing.
Return value
None
Remarks
Example
Example usage is shown below.
//
// Resume stream IO after it was stopped with AcxStreamStopIoWithTag.
//
status = AcxStreamResumeIoWithTag(stream, (PVOID)this);
ACX requirements
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.
Requirements
Requirement | Value |
---|---|
Header | acxstreams.h |
IRQL | PASSIVE_LEVEL |