Hans Leidekker : mapi32: Add a stub implementation of HrDispatchNotifications.

Alexandre Julliard julliard at winehq.org
Fri Jan 27 14:12:23 CST 2017


Module: wine
Branch: master
Commit: 454bccd63ebde54c88395e3917db8d7b58ff33aa
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=454bccd63ebde54c88395e3917db8d7b58ff33aa

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Fri Jan 27 10:28:40 2017 +0100

mapi32: Add a stub implementation of HrDispatchNotifications.

Signed-off-by: Hans Leidekker <hans at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/mapi32/mapi32.spec | 2 +-
 dlls/mapi32/util.c      | 9 +++++++++
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/dlls/mapi32/mapi32.spec b/dlls/mapi32/mapi32.spec
index f5a1bef..560784c 100644
--- a/dlls/mapi32/mapi32.spec
+++ b/dlls/mapi32/mapi32.spec
@@ -175,7 +175,7 @@
 236 stub cmc_read
 237 stub cmc_send
 238 stub cmc_send_documents
-239 stub HrDispatchNotifications at 4
+239 stdcall HrDispatchNotifications at 4(long) HrDispatchNotifications
 241 stub HrValidateParameters at 8
 244 stub ScCreateConversationIndex at 16
 246 stub HrGetOmiProvidersFlags
diff --git a/dlls/mapi32/util.c b/dlls/mapi32/util.c
index 1d16a33..13e4aff 100644
--- a/dlls/mapi32/util.c
+++ b/dlls/mapi32/util.c
@@ -239,6 +239,15 @@ HRESULT WINAPI WrapProgress(PVOID unk1, PVOID unk2, PVOID unk3, PVOID unk4, PVOI
 }
 
 /*************************************************************************
+ * HrDispatchNotifications at 4 (MAPI32.239)
+ */
+HRESULT WINAPI HrDispatchNotifications(ULONG flags)
+{
+    FIXME("(%08x)\n", flags);
+    return S_OK;
+}
+
+/*************************************************************************
  * HrThisThreadAdviseSink at 8 (MAPI32.42)
  *
  * Ensure that an advise sink is only notified in its originating thread.




More information about the wine-cvs mailing list