James Hawkins : mapi32: Add a stub implementation of MAPIOpenLocalFormContainer.
Module: wine Branch: refs/heads/master Commit: 092166696d05f0d1358a2153846d0377c7d98502 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=092166696d05f0d1358a2153... Author: James Hawkins <truiken(a)gmail.com> Date: Wed Jun 21 11:08:53 2006 -0700 mapi32: Add a stub implementation of MAPIOpenLocalFormContainer. --- dlls/mapi32/mapi32.spec | 4 ++-- dlls/mapi32/mapi32_main.c | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/dlls/mapi32/mapi32.spec b/dlls/mapi32/mapi32.spec index ab134cd..4798e69 100644 --- a/dlls/mapi32/mapi32.spec +++ b/dlls/mapi32/mapi32.spec @@ -20,8 +20,8 @@ 28 stdcall -private DllCanUnloadNow() 29 stub MAPIOpenFormMgr 30 stub MAPIOpenFormMgr(a)8 - 31 stub MAPIOpenLocalFormContainer - 32 stub MAPIOpenLocalFormContainer(a)4 + 31 stdcall MAPIOpenLocalFormContainer(ptr) + 32 stdcall MAPIOpenLocalFormContainer(a)4(ptr) MAPIOpenLocalFormContainer 33 stdcall ScInitMapiUtil(a)4(long) ScInitMapiUtil 34 stdcall DeinitMapiUtil(a)0() DeinitMapiUtil 35 stub ScGenerateMuid(a)4 diff --git a/dlls/mapi32/mapi32_main.c b/dlls/mapi32/mapi32_main.c index 8b74999..d6a8c1c 100644 --- a/dlls/mapi32/mapi32_main.c +++ b/dlls/mapi32/mapi32_main.c @@ -100,6 +100,12 @@ HRESULT WINAPI MAPILogonEx(ULONG_PTR uip return SUCCESS_SUCCESS; } +HRESULT WINAPI MAPIOpenLocalFormContainer(LPVOID *ppfcnt) +{ + FIXME("(%p) Stub\n", ppfcnt); + return E_FAIL; +} + VOID WINAPI MAPIUninitialize(void) { FIXME("Stub\n");
participants (1)
-
Alexandre Julliard