RtlDeleteTimer(3w)
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
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".