Module: wine Branch: master Commit: 454bccd63ebde54c88395e3917db8d7b58ff33aa URL: http://source.winehq.org/git/wine.git/?a=commit;h=454bccd63ebde54c88395e3917...
Author: Hans Leidekker hans@codeweavers.com Date: Fri Jan 27 10:28:40 2017 +0100
mapi32: Add a stub implementation of HrDispatchNotifications.
Signed-off-by: Hans Leidekker hans@codeweavers.com Signed-off-by: Alexandre Julliard julliard@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@4 +239 stdcall HrDispatchNotifications@4(long) HrDispatchNotifications 241 stub HrValidateParameters@8 244 stub ScCreateConversationIndex@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@4 (MAPI32.239) + */ +HRESULT WINAPI HrDispatchNotifications(ULONG flags) +{ + FIXME("(%08x)\n", flags); + return S_OK; +} + +/************************************************************************* * HrThisThreadAdviseSink@8 (MAPI32.42) * * Ensure that an advise sink is only notified in its originating thread.