Added patch for SetCoalescableTimer stub function.

This commit is contained in:
Sebastian Lackner
2015-10-31 16:50:11 +01:00
parent b03c54797e
commit 2e4d11137f
5 changed files with 66 additions and 1 deletions

View File

@@ -0,0 +1,43 @@
From 763a849b4702851cc1536cbc719a870d693935fe Mon Sep 17 00:00:00 2001
From: Austin English <austinenglish@gmail.com>
Date: Tue, 27 Oct 2015 11:51:39 -0500
Subject: user32: add SetCoalescableTimer stub
Signed-off-by: Austin English <austinenglish@gmail.com>
---
dlls/user32/message.c | 9 +++++++++
dlls/user32/user32.spec | 1 +
2 files changed, 10 insertions(+)
diff --git a/dlls/user32/message.c b/dlls/user32/message.c
index d122980..ce92bac 100644
--- a/dlls/user32/message.c
+++ b/dlls/user32/message.c
@@ -4620,3 +4620,12 @@ BOOL WINAPI ChangeWindowMessageFilterEx( HWND hwnd, UINT message, DWORD action,
FIXME( "%p %x %d %p\n", hwnd, message, action, changefilter );
return TRUE;
}
+
+/******************************************************************
+ * SetCoalescableTimer (USER32.@)
+ */
+UINT_PTR WINAPI SetCoalescableTimer( HWND hwnd, UINT_PTR id, UINT timeout, TIMERPROC proc, ULONG tolerance )
+{
+ FIXME( "%p %lx %u %p %u: semi-stub\n", hwnd, id, timeout, proc, tolerance );
+ return SetTimer( hwnd, id, timeout, proc );
+}
diff --git a/dlls/user32/user32.spec b/dlls/user32/user32.spec
index 9b409df..163ae46 100644
--- a/dlls/user32/user32.spec
+++ b/dlls/user32/user32.spec
@@ -620,6 +620,7 @@
@ stdcall SetClassWord(long long long)
@ stdcall SetClipboardData(long long)
@ stdcall SetClipboardViewer(long)
+@ stdcall SetCoalescableTimer(long long long ptr long)
# @ stub SetConsoleReserveKeys
@ stdcall SetCursor(long)
@ stub SetCursorContents
--
2.6.1

View File

@@ -0,0 +1 @@
Fixes: [39509] Add stub for SetCoalescableTimer