NAME

RtlDeleteTimer  (NTDLL.@)

SYNOPSIS

 NTSTATUS RtlDeleteTimer
 (
  HANDLE TimerQueue,
  HANDLE Timer,
  HANDLE CompletionEvent
 )

DESCRIPTION

Cancels a timer-queue timer.

PARAMS

TimerQueue [In] The queue that holds the timer.
Timer [In] The timer to update.
CompletionEvent [In] If NULL, return immediately. If INVALID_HANDLE_VALUE, wait until the timer is finished firing all pending callbacks before returning. Otherwise, return immediately and set the timer is done.

RETURNS

Success: STATUS_SUCCESS if the timer is done, STATUS_PENDING if not, or if the completion event is NULL.

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.