mapi32: Add a stub implementation of MAPIOpenLocalFormContainer.

This commit is contained in:
James Hawkins 2006-06-21 11:08:53 -07:00 committed by Alexandre Julliard
parent d50ff220d0
commit 092166696d
2 changed files with 8 additions and 2 deletions

View File

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

View File

@ -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");