Commit 09216669 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

mapi32: Add a stub implementation of MAPIOpenLocalFormContainer.

parent d50ff220
......@@ -20,8 +20,8 @@
28 stdcall -private DllCanUnloadNow()
29 stub MAPIOpenFormMgr
30 stub MAPIOpenFormMgr@8
31 stub MAPIOpenLocalFormContainer
32 stub MAPIOpenLocalFormContainer@4
31 stdcall MAPIOpenLocalFormContainer(ptr)
32 stdcall MAPIOpenLocalFormContainer@4(ptr) MAPIOpenLocalFormContainer
33 stdcall ScInitMapiUtil@4(long) ScInitMapiUtil
34 stdcall DeinitMapiUtil@0() DeinitMapiUtil
35 stub ScGenerateMuid@4
......
......@@ -100,6 +100,12 @@ HRESULT WINAPI MAPILogonEx(ULONG_PTR uiparam, LPWSTR profile,
return SUCCESS_SUCCESS;
}
HRESULT WINAPI MAPIOpenLocalFormContainer(LPVOID *ppfcnt)
{
FIXME("(%p) Stub\n", ppfcnt);
return E_FAIL;
}
VOID WINAPI MAPIUninitialize(void)
{
FIXME("Stub\n");
......
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