RtlDeleteTimer (NTDLL.@)
NTSTATUS RtlDeleteTimer ( HANDLE TimerQueue, HANDLE Timer, HANDLE CompletionEvent )
Cancels a timer-queue timer.
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. |
Success: STATUS_SUCCESS if the timer is done, STATUS_PENDING if not, or if the completion event is NULL.
Failure: Any NTSTATUS code.
Declared in "include/winternl.h". gitlab.winehq.org/wine/wine/blob/master/include/winternl.h
Implemented in "dlls/ntdll/threadpool.c". gitlab.winehq.org/wine/wine/blob/master/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 Nov 2024.