Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 82 of file timerqueue.c.
{ NTSTATUS Status; if (!TimerQueue) { /* Use the default timer queue */ TimerQueue = BasepDefaultTimerQueue; if (!TimerQueue) { /* A timer is being cancelled before one was created... fail */ SetLastError(ERROR_INVALID_PARAMETER); return FALSE; } } /* Delete the timer */ Status = RtlUpdateTimer(TimerQueue, Timer, DueTime, Period); if (!NT_SUCCESS(Status)) { BaseSetLastNTError(Status); return FALSE; } return TRUE; }