mapi32: Add a stub implementation of MAPIOpenLocalFormContainer.
This commit is contained in:
parent
d50ff220d0
commit
092166696d
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue