mapi32: Add a stub implementation of HrDispatchNotifications.
Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
3715ae1f2d
commit
454bccd63e
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue