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