Commit 454bccd6 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

mapi32: Add a stub implementation of HrDispatchNotifications.

parent 3715ae1f
......@@ -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
......
......@@ -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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment