Scroll to navigation

RtlDeleteTimerQueueEx(3w) Wine API RtlDeleteTimerQueueEx(3w)

NAME

RtlDeleteTimerQueueEx (NTDLL.@)

SYNOPSIS

NTSTATUS RtlDeleteTimerQueueEx
(
HANDLE TimerQueue,
HANDLE CompletionEvent
)
 

DESCRIPTION

Deletes a timer queue object.
 

PARAMS

TimerQueue [In] The timer queue to destroy.
CompletionEvent [In] If NULL, return immediately. If INVALID_HANDLE_VALUE, wait until all timers are finished firing before returning. Otherwise, return immediately and set the event when all timers are done.
 

RETURNS

Success: STATUS_SUCCESS if synchronous, STATUS_PENDING if not.
Failure: Any NTSTATUS code.
 

IMPLEMENTATION

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