RtlUpdateTimer (NTDLL.@)
NTSTATUS RtlUpdateTimer ( HANDLE TimerQueue, HANDLE Timer, DWORD DueTime, DWORD Period )
Changes the time at which a timer expires.
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. |
Success: STATUS_SUCCESS.
Failure: Any NTSTATUS code.
Declared in "include/winternl.h". gitlab.winehq.org/wine/wine/blob/master/include/winternl.h
Implemented in "dlls/ntdll/threadpool.c". gitlab.winehq.org/wine/wine/blob/master/dlls/ntdll/threadpool.c
Debug channel "threadpool".
Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Nov 2024.