Scroll to navigation

RtlDeleteTimer(3w) Wine API 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

Declared in "winternl.h".
Implemented in "dlls/ntdll/threadpool.c".
Debug channel "threadpool".
Oct 2012 Wine API