.\" -*- nroff -*- .\" Generated file - DO NOT EDIT! .TH RtlDeleteTimer 3w "Oct 2012" "Wine API" "Wine API" .SH NAME \fBRtlDeleteTimer\fR (NTDLL.@) .SH SYNOPSIS NTSTATUS RtlDeleteTimer ( HANDLE \fITimerQueue\fR, HANDLE \fITimer\fR, HANDLE \fICompletionEvent\fR ) .SH DESCRIPTION .PP Cancels a timer-queue timer. .SH PARAMS \fITimerQueue\fR \fB[In]\fR The queue that holds the timer. .PP \fITimer\fR \fB[In]\fR The timer to update. .PP \fICompletionEvent\fR \fB[In]\fR If \fBNULL\fR, return immediately. If \fBINVALID_HANDLE_VALUE\fR, wait until the timer is finished firing all pending callbacks before returning. Otherwise, return immediately and set the timer is done. .PP .SH RETURNS .PP \fBSuccess:\fR \fBSTATUS_SUCCESS\fR if the timer is done, \fBSTATUS_PENDING\fR if not, or if the completion event is \fBNULL\fR. .PP \fBFailure:\fR Any \fBNTSTATUS\fR code. .SH IMPLEMENTATION .PP Declared in \fB"winternl.h"\fR. .PP Implemented in \fB"dlls/ntdll/threadpool.c"\fR. .PP Debug channel \fB"threadpool"\fR.