// ntifs.h
VOID IoStartTimer(
[in] PDEVICE_OBJECT DeviceObject
);
View the official Windows Driver Kit DDI reference
// wdm.h
VOID IoStartTimer(
[in] PDEVICE_OBJECT DeviceObject
);
View the official Windows Driver Kit DDI reference
No description available.
The IoStartTimer routine enables the timer associated with a given device object so the driver-supplied IoTimer routine is called once per second.
DeviceObject
[in]Pointer to a device object whose timer routine is to be called.
The driver must already have set up the IoTimer routine for the DeviceObject by calling IoInitializeTimer.
The IoStartTimer routine enables the timer associated with a given device object so the driver-supplied IoTimer routine is called once per second.
DeviceObject
[in]Pointer to a device object whose timer routine is to be called.
The driver must already have set up the IoTimer routine for the DeviceObject by calling IoInitializeTimer.