mapi32: Add a stub implementation of MAPIOpenLocalFormContainer.
This commit is contained in:
parent
d50ff220d0
commit
092166696d
|
@ -20,8 +20,8 @@
|
||||||
28 stdcall -private DllCanUnloadNow()
|
28 stdcall -private DllCanUnloadNow()
|
||||||
29 stub MAPIOpenFormMgr
|
29 stub MAPIOpenFormMgr
|
||||||
30 stub MAPIOpenFormMgr@8
|
30 stub MAPIOpenFormMgr@8
|
||||||
31 stub MAPIOpenLocalFormContainer
|
31 stdcall MAPIOpenLocalFormContainer(ptr)
|
||||||
32 stub MAPIOpenLocalFormContainer@4
|
32 stdcall MAPIOpenLocalFormContainer@4(ptr) MAPIOpenLocalFormContainer
|
||||||
33 stdcall ScInitMapiUtil@4(long) ScInitMapiUtil
|
33 stdcall ScInitMapiUtil@4(long) ScInitMapiUtil
|
||||||
34 stdcall DeinitMapiUtil@0() DeinitMapiUtil
|
34 stdcall DeinitMapiUtil@0() DeinitMapiUtil
|
||||||
35 stub ScGenerateMuid@4
|
35 stub ScGenerateMuid@4
|
||||||
|
|
|
@ -100,6 +100,12 @@ HRESULT WINAPI MAPILogonEx(ULONG_PTR uiparam, LPWSTR profile,
|
||||||
return SUCCESS_SUCCESS;
|
return SUCCESS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
HRESULT WINAPI MAPIOpenLocalFormContainer(LPVOID *ppfcnt)
|
||||||
|
{
|
||||||
|
FIXME("(%p) Stub\n", ppfcnt);
|
||||||
|
return E_FAIL;
|
||||||
|
}
|
||||||
|
|
||||||
VOID WINAPI MAPIUninitialize(void)
|
VOID WINAPI MAPIUninitialize(void)
|
||||||
{
|
{
|
||||||
FIXME("Stub\n");
|
FIXME("Stub\n");
|
||||||
|
|
Loading…
Reference in New Issue