James Hawkins : mapi32: Add a stub implementation of MAPIOpenLocalFormContainer.

Alexandre Julliard julliard at wine.codeweavers.com
Thu Jun 22 06:16:48 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: 092166696d05f0d1358a2153846d0377c7d98502
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=092166696d05f0d1358a2153846d0377c7d98502

Author: James Hawkins <truiken at 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 at 8
- 31 stub MAPIOpenLocalFormContainer
- 32 stub MAPIOpenLocalFormContainer at 4
+ 31 stdcall MAPIOpenLocalFormContainer(ptr)
+ 32 stdcall MAPIOpenLocalFormContainer at 4(ptr) MAPIOpenLocalFormContainer
  33 stdcall ScInitMapiUtil at 4(long) ScInitMapiUtil
  34 stdcall DeinitMapiUtil at 0() DeinitMapiUtil
  35 stub ScGenerateMuid at 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");




More information about the wine-cvs mailing list