IoStartTimer - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ntifs-iostarttimer)

IoStartTimer function (ntifs.h)

Description

The IoStartTimer routine enables the timer associated with a given device object so the driver-supplied IoTimer routine is called once per second.

Parameters

DeviceObject [in]

Pointer to a device object whose timer routine is to be called.

Remarks

The driver must already have set up the IoTimer routine for the DeviceObject by calling IoInitializeTimer.

See also

IoInitializeTimer

IoStopTimer

IoTimer

KeInitializeDpc

KeInitializeTimer

KeSetTimer


Windows Driver Kit DDI reference (nf-wdm-iostarttimer)

IoStartTimer function (wdm.h)

Description

The IoStartTimer routine enables the timer associated with a given device object so the driver-supplied IoTimer routine is called once per second.

Parameters

DeviceObject [in]

Pointer to a device object whose timer routine is to be called.

Remarks

The driver must already have set up the IoTimer routine for the DeviceObject by calling IoInitializeTimer.

See also

IoInitializeTimer

IoStopTimer

IoTimer

KeInitializeDpc

KeInitializeTimer

KeSetTimer