Commit 2ddcb295 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

kernel32: Added DeleteTimerQueue.

parent da5372be
...@@ -281,7 +281,7 @@ ...@@ -281,7 +281,7 @@
@ stdcall DeleteFiber(ptr) @ stdcall DeleteFiber(ptr)
@ stdcall DeleteFileA(str) @ stdcall DeleteFileA(str)
@ stdcall DeleteFileW(wstr) @ stdcall DeleteFileW(wstr)
# @ stub DeleteTimerQueue @ stdcall DeleteTimerQueue(long)
@ stdcall DeleteTimerQueueEx (long long) @ stdcall DeleteTimerQueueEx (long long)
@ stdcall DeleteTimerQueueTimer(long long long) @ stdcall DeleteTimerQueueTimer(long long long)
# @ stub DeleteVolumeMountPointA # @ stub DeleteVolumeMountPointA
......
...@@ -1330,6 +1330,14 @@ BOOL WINAPI DeleteTimerQueueEx(HANDLE TimerQueue, HANDLE CompletionEvent) ...@@ -1330,6 +1330,14 @@ BOOL WINAPI DeleteTimerQueueEx(HANDLE TimerQueue, HANDLE CompletionEvent)
} }
/*********************************************************************** /***********************************************************************
* DeleteTimerQueue (KERNEL32.@)
*/
BOOL WINAPI DeleteTimerQueue(HANDLE TimerQueue)
{
return DeleteTimerQueueEx(TimerQueue, NULL);
}
/***********************************************************************
* CreateTimerQueueTimer (KERNEL32.@) * CreateTimerQueueTimer (KERNEL32.@)
* *
* Creates a timer-queue timer. This timer expires at the specified due * Creates a timer-queue timer. This timer expires at the specified due
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment