RtlUpdateTimer(3w)
NAME
RtlUpdateTimer (NTDLL.@)
SYNOPSIS
NTSTATUS RtlUpdateTimer ( HANDLE TimerQueue, HANDLE Timer, DWORD DueTime, DWORD Period )
DESCRIPTION
Changes the time at which a timer expires.
PARAMS
TimerQueue [In] The queue that holds the timer.
Timer [In] The timer to update.
DueTime [In] The delay, in milliseconds, before next firing the timer.
Period [In] The period, in milliseconds, at which to fire the timer
after the first callback. If zero, the timer will not refire once. It
still needs to be deleted with RtlDeleteTimer.
RETURNS
Success: STATUS_SUCCESS.
Failure: Any NTSTATUS code.
IMPLEMENTATION
Defined in "winternl.h".
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/ntdll/threadpool.c".
- Debug channel "threadpool".