AcxStreamResumeIoWithTag - NtDoc

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

void AcxStreamResumeIoWithTag(
  [in]           Stream,
  [in, optional] Tag
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-acxstreams-acxstreamresumeiowithtag)

Description

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.

Parameters

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.

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.

See also