// acxstreams.h
NTSTATUS AcxStreamStopIoActual(
ACXSTREAM Stream,
ULONG Flags,
PVOID ObjectTag,
LONG Line,
PCCH File
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxStreamStopIoActual function is used to signal to the operating system to temporarily stop stream IO. This allows the driver a short period of time to run time sensitive tasks, and then resume IO after the execution of time sensitive code is complete.
StreamAn existing ACXSTREAM Object. For more information, see ACX - Summary of ACX Objects.
FlagsSet to AcxStopIoNoFlags.
ObjectTagAn optional Tag that is a driver-defined value that the framework includes with diagnostic tracing.
LineThe Line number in the driver code that can be displayed for diagnostic purposes.
FileThe file name in the driver code that can be displayed for diagnostic purposes.
Returns STATUS_SUCCESS if the call was successful. Otherwise, it returns an appropriate error code. For more information, see Using NTSTATUS Values.
It is not recommended to use this version of the stop IO call, but rather AcxStreamStopIoWithTag.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.
acxstreams.h header AcxStreamStopIoWithTag