Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2ddcb295
Commit
2ddcb295
authored
Jan 22, 2009
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jan 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Added DeleteTimerQueue.
parent
da5372be
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
sync.c
dlls/kernel32/sync.c
+8
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
2ddcb295
...
@@ -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
...
...
dlls/kernel32/sync.c
View file @
2ddcb295
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment