// ntifs.h
VOID IoStopTimer(
[in] PDEVICE_OBJECT DeviceObject
);
View the official Windows Driver Kit DDI reference
// wdm.h
VOID IoStopTimer(
[in] PDEVICE_OBJECT DeviceObject
);
View the official Windows Driver Kit DDI reference
No description available.
The IoStopTimer routine disables the timer for a specified device object so the driver-supplied IoTimer routine is not called.
DeviceObject
[in]Pointer to the device object with which the IoTimer routine is associated.
The driver-supplied IoTimer routine can be reenabled with a call to IoStartTimer.
Do not call IoStopTimer from within the IoTimer routine.
The IoStopTimer routine disables the timer for a specified device object so the driver-supplied IoTimer routine is not called.
DeviceObject
[in]Pointer to the device object with which the IoTimer routine is associated.
The driver-supplied IoTimer routine can be reenabled with a call to IoStartTimer.
Do not call IoStopTimer from within the IoTimer routine.