4 * Copyright 2001 CodeWeavers Inc.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
30 #include "wine/debug.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(mapi);
34 LONG MAPI_ObjectCount = 0;
36 /***********************************************************************
37 * DllMain (MAPI32.init)
39 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
41 TRACE("(%p,%d,%p)\n", hinstDLL, fdwReason, fImpLoad);
45 case DLL_PROCESS_ATTACH:
46 DisableThreadLibraryCalls(hinstDLL);
48 case DLL_PROCESS_DETACH:
49 TRACE("DLL_PROCESS_DETACH: %d objects remaining\n", MAPI_ObjectCount);
55 /***********************************************************************
56 * DllCanUnloadNow (MAPI32.28)
58 * Determine if this dll can be unloaded from the callers address space.
64 * S_OK, if the dll can be unloaded,
67 HRESULT WINAPI DllCanUnloadNow(void)
69 return MAPI_ObjectCount == 0 ? S_OK : S_FALSE;
72 HRESULT WINAPI MAPIInitialize(LPVOID init)
74 FIXME("(%p) Stub\n", init);
75 return SUCCESS_SUCCESS;
78 ULONG WINAPI MAPILogon(ULONG_PTR uiparam, LPSTR profile, LPSTR password,
79 FLAGS flags, ULONG reserved, LPLHANDLE session)
81 FIXME("(0x%08lx %s %p 0x%08lx 0x%08x %p) Stub\n", uiparam,
82 debugstr_a(profile), password, flags, reserved, session);
84 if (session) *session = 1;
85 return SUCCESS_SUCCESS;
88 ULONG WINAPI MAPILogoff(LHANDLE session, ULONG_PTR uiparam, FLAGS flags,
91 FIXME("(0x%08lx 0x%08lx 0x%08lx 0x%08x) Stub\n", session,
92 uiparam, flags, reserved);
93 return SUCCESS_SUCCESS;
96 HRESULT WINAPI MAPILogonEx(ULONG_PTR uiparam, LPWSTR profile,
97 LPWSTR password, ULONG flags, LPMAPISESSION *session)
99 FIXME("(0x%08lx %s %p 0x%08x %p) Stub\n", uiparam,
100 debugstr_w(profile), password, flags, session);
101 return SUCCESS_SUCCESS;
104 HRESULT WINAPI MAPIOpenLocalFormContainer(LPVOID *ppfcnt)
106 FIXME("(%p) Stub\n", ppfcnt);
110 VOID WINAPI MAPIUninitialize(void)
115 HRESULT WINAPI MAPIAdminProfiles(ULONG ulFlags, LPPROFADMIN *lppProfAdmin)
117 FIXME("(%u, %p): stub\n", ulFlags, lppProfAdmin);
118 *lppProfAdmin = NULL;