4 * Copyright 2001, 2009 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
31 #include "wine/debug.h"
34 WINE_DEFAULT_DEBUG_CHANNEL(mapi
);
36 LONG MAPI_ObjectCount
= 0;
38 /***********************************************************************
39 * DllMain (MAPI32.init)
41 BOOL WINAPI
DllMain(HINSTANCE hinstDLL
, DWORD fdwReason
, LPVOID fImpLoad
)
43 TRACE("(%p,%d,%p)\n", hinstDLL
, fdwReason
, fImpLoad
);
47 case DLL_PROCESS_ATTACH
:
48 DisableThreadLibraryCalls(hinstDLL
);
49 load_mapi_providers();
51 case DLL_PROCESS_DETACH
:
52 TRACE("DLL_PROCESS_DETACH: %d objects remaining\n", MAPI_ObjectCount
);
53 unload_mapi_providers();
59 /***********************************************************************
60 * DllGetClassObject (MAPI32.27)
62 HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid
, REFIID iid
, LPVOID
*ppv
)
65 FIXME("\n\tCLSID:\t%s,\n\tIID:\t%s\n", debugstr_guid(rclsid
), debugstr_guid(iid
));
66 return CLASS_E_CLASSNOTAVAILABLE
;
69 /***********************************************************************
70 * DllCanUnloadNow (MAPI32.28)
72 * Determine if this dll can be unloaded from the callers address space.
78 * S_OK, if the dll can be unloaded,
81 HRESULT WINAPI
DllCanUnloadNow(void)
83 return MAPI_ObjectCount
== 0 ? S_OK
: S_FALSE
;
86 /***********************************************************************
89 * Initialises the MAPI library. In our case, we pass through to the
90 * loaded Extended MAPI provider.
92 HRESULT WINAPI
MAPIInitialize(LPVOID init
)
94 TRACE("(%p)\n", init
);
96 if (mapiFunctions
.MAPIInitialize
)
97 return mapiFunctions
.MAPIInitialize(init
);
99 return MAPI_E_NOT_INITIALIZED
;
102 /***********************************************************************
105 * Logs on to a MAPI provider. If available, we pass this through to a
106 * Simple MAPI provider. Otherwise, we maintain basic functionality
109 ULONG WINAPI
MAPILogon(ULONG_PTR uiparam
, LPSTR profile
, LPSTR password
,
110 FLAGS flags
, ULONG reserved
, LPLHANDLE session
)
112 TRACE("(0x%08lx %s %p 0x%08x 0x%08x %p)\n", uiparam
,
113 debugstr_a(profile
), password
, flags
, reserved
, session
);
115 if (mapiFunctions
.MAPILogon
)
116 return mapiFunctions
.MAPILogon(uiparam
, profile
, password
, flags
, reserved
, session
);
118 if (session
) *session
= 1;
119 return SUCCESS_SUCCESS
;
122 /***********************************************************************
125 * Logs off from a MAPI provider. If available, we pass this through to a
126 * Simple MAPI provider. Otherwise, we maintain basic functionality
129 ULONG WINAPI
MAPILogoff(LHANDLE session
, ULONG_PTR uiparam
, FLAGS flags
,
132 TRACE("(0x%08lx 0x%08lx 0x%08x 0x%08x)\n", session
,
133 uiparam
, flags
, reserved
);
135 if (mapiFunctions
.MAPILogoff
)
136 return mapiFunctions
.MAPILogoff(session
, uiparam
, flags
, reserved
);
138 return SUCCESS_SUCCESS
;
141 /***********************************************************************
144 * Logs on to a MAPI provider. If available, we pass this through to an
145 * Extended MAPI provider. Otherwise, we return an error.
147 HRESULT WINAPI
MAPILogonEx(ULONG_PTR uiparam
, LPWSTR profile
,
148 LPWSTR password
, ULONG flags
, LPMAPISESSION
*session
)
150 TRACE("(0x%08lx %s %p 0x%08x %p)\n", uiparam
,
151 debugstr_w(profile
), password
, flags
, session
);
153 if (mapiFunctions
.MAPILogonEx
)
154 return mapiFunctions
.MAPILogonEx(uiparam
, profile
, password
, flags
, session
);
159 HRESULT WINAPI
MAPIOpenLocalFormContainer(LPVOID
*ppfcnt
)
161 FIXME("(%p) Stub\n", ppfcnt
);
165 /***********************************************************************
168 * Uninitialises the MAPI library. In our case, we pass through to the
169 * loaded Extended MAPI provider.
172 VOID WINAPI
MAPIUninitialize(void)
176 /* Try to uninitialise the Extended MAPI library */
177 if (mapiFunctions
.MAPIUninitialize
)
178 mapiFunctions
.MAPIUninitialize();
181 HRESULT WINAPI
MAPIAdminProfiles(ULONG ulFlags
, LPPROFADMIN
*lppProfAdmin
)
183 FIXME("(%u, %p): stub\n", ulFlags
, lppProfAdmin
);
184 *lppProfAdmin
= NULL
;