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
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".