mapi32: Add a stub implementation of HrDispatchNotifications.

Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Hans Leidekker 2017-01-27 10:28:40 +01:00 committed by Alexandre Julliard
parent 3715ae1f2d
commit 454bccd63e
2 changed files with 10 additions and 1 deletions

View File

@ -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

View File

@ -238,6 +238,15 @@ HRESULT WINAPI WrapProgress(PVOID unk1, PVOID unk2, PVOID unk3, PVOID unk4, PVOI
return MAPI_E_NO_SUPPORT;
}
/*************************************************************************
* HrDispatchNotifications@4 (MAPI32.239)
*/
HRESULT WINAPI HrDispatchNotifications(ULONG flags)
{
FIXME("(%08x)\n", flags);
return S_OK;
}
/*************************************************************************
* HrThisThreadAdviseSink@8 (MAPI32.42)
*