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

Declared in "winternl.h". https://source.winehq.org/source/include/winternl.h

Implemented in "dlls/ntdll/threadpool.c". https://source.winehq.org/source/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 Apr 2024.