wine-staging/patches/user32-SetCoalescableTimer/0001-user32-add-SetCoalescableTimer-stub.patch
2015-10-31 16:52:00 +01:00

44 lines
1.5 KiB
Diff

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