2002-01-29 19:10:53 +01:00
|
|
|
/*
|
|
|
|
* MAPI basics
|
|
|
|
*
|
2003-09-08 21:38:45 +02:00
|
|
|
* Copyright 2001 CodeWeavers Inc.
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-01-29 19:10:53 +01:00
|
|
|
*/
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2002-01-29 19:10:53 +01:00
|
|
|
#include "windef.h"
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "winbase.h"
|
2002-01-29 19:10:53 +01:00
|
|
|
#include "winerror.h"
|
2004-04-24 01:28:27 +02:00
|
|
|
#include "objbase.h"
|
2008-02-19 20:09:19 +01:00
|
|
|
#include "initguid.h"
|
2004-04-24 01:28:27 +02:00
|
|
|
#include "mapix.h"
|
2007-08-04 03:25:15 +02:00
|
|
|
#include "mapiform.h"
|
2006-02-22 12:02:46 +01:00
|
|
|
#include "mapi.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
2002-01-29 19:10:53 +01:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(mapi);
|
2002-01-29 19:10:53 +01:00
|
|
|
|
2004-11-30 18:38:52 +01:00
|
|
|
LONG MAPI_ObjectCount = 0;
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* DllMain (MAPI32.init)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
|
|
|
|
{
|
2006-10-09 21:27:58 +02:00
|
|
|
TRACE("(%p,%d,%p)\n", hinstDLL, fdwReason, fImpLoad);
|
2004-11-30 18:38:52 +01:00
|
|
|
|
|
|
|
switch (fdwReason)
|
|
|
|
{
|
|
|
|
case DLL_PROCESS_ATTACH:
|
|
|
|
DisableThreadLibraryCalls(hinstDLL);
|
|
|
|
break;
|
|
|
|
case DLL_PROCESS_DETACH:
|
2006-10-09 21:27:58 +02:00
|
|
|
TRACE("DLL_PROCESS_DETACH: %d objects remaining\n", MAPI_ObjectCount);
|
2004-11-30 18:38:52 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2007-11-15 19:50:19 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* DllGetClassObject (MAPI32.27)
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
|
|
|
|
{
|
|
|
|
*ppv = NULL;
|
|
|
|
FIXME("\n\tCLSID:\t%s,\n\tIID:\t%s\n", debugstr_guid(rclsid), debugstr_guid(iid));
|
|
|
|
return CLASS_E_CLASSNOTAVAILABLE;
|
|
|
|
}
|
|
|
|
|
2004-11-30 18:38:52 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* DllCanUnloadNow (MAPI32.28)
|
|
|
|
*
|
|
|
|
* Determine if this dll can be unloaded from the callers address space.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* None.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* S_OK, if the dll can be unloaded,
|
|
|
|
* S_FALSE, otherwise.
|
|
|
|
*/
|
2005-08-08 19:35:28 +02:00
|
|
|
HRESULT WINAPI DllCanUnloadNow(void)
|
2004-11-30 18:38:52 +01:00
|
|
|
{
|
|
|
|
return MAPI_ObjectCount == 0 ? S_OK : S_FALSE;
|
|
|
|
}
|
|
|
|
|
2006-02-06 14:12:05 +01:00
|
|
|
HRESULT WINAPI MAPIInitialize(LPVOID init)
|
2002-01-29 19:10:53 +01:00
|
|
|
{
|
2006-02-06 14:12:05 +01:00
|
|
|
FIXME("(%p) Stub\n", init);
|
|
|
|
return SUCCESS_SUCCESS;
|
2002-01-29 19:10:53 +01:00
|
|
|
}
|
|
|
|
|
2006-05-25 04:41:27 +02:00
|
|
|
ULONG WINAPI MAPILogon(ULONG_PTR uiparam, LPSTR profile, LPSTR password,
|
2006-02-06 14:12:05 +01:00
|
|
|
FLAGS flags, ULONG reserved, LPLHANDLE session)
|
2002-01-29 19:10:53 +01:00
|
|
|
{
|
2006-10-09 21:27:58 +02:00
|
|
|
FIXME("(0x%08lx %s %p 0x%08lx 0x%08x %p) Stub\n", uiparam,
|
2006-02-06 14:12:05 +01:00
|
|
|
debugstr_a(profile), password, flags, reserved, session);
|
|
|
|
|
|
|
|
if (session) *session = 1;
|
|
|
|
return SUCCESS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2006-05-25 04:41:27 +02:00
|
|
|
ULONG WINAPI MAPILogoff(LHANDLE session, ULONG_PTR uiparam, FLAGS flags,
|
2006-02-06 14:12:05 +01:00
|
|
|
ULONG reserved )
|
|
|
|
{
|
2006-10-09 21:27:58 +02:00
|
|
|
FIXME("(0x%08lx 0x%08lx 0x%08lx 0x%08x) Stub\n", session,
|
2006-02-06 14:12:05 +01:00
|
|
|
uiparam, flags, reserved);
|
|
|
|
return SUCCESS_SUCCESS;
|
2002-01-29 19:10:53 +01:00
|
|
|
}
|
|
|
|
|
2006-02-06 14:12:05 +01:00
|
|
|
HRESULT WINAPI MAPILogonEx(ULONG_PTR uiparam, LPWSTR profile,
|
|
|
|
LPWSTR password, ULONG flags, LPMAPISESSION *session)
|
2002-01-29 19:10:53 +01:00
|
|
|
{
|
2006-10-09 21:27:58 +02:00
|
|
|
FIXME("(0x%08lx %s %p 0x%08x %p) Stub\n", uiparam,
|
2006-02-06 14:12:05 +01:00
|
|
|
debugstr_w(profile), password, flags, session);
|
|
|
|
return SUCCESS_SUCCESS;
|
2002-01-29 19:10:53 +01:00
|
|
|
}
|
|
|
|
|
2006-06-21 20:08:53 +02:00
|
|
|
HRESULT WINAPI MAPIOpenLocalFormContainer(LPVOID *ppfcnt)
|
|
|
|
{
|
|
|
|
FIXME("(%p) Stub\n", ppfcnt);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
2002-08-14 23:00:57 +02:00
|
|
|
VOID WINAPI MAPIUninitialize(void)
|
|
|
|
{
|
2006-02-06 14:12:05 +01:00
|
|
|
FIXME("Stub\n");
|
2002-08-14 23:00:57 +02:00
|
|
|
}
|
2007-04-16 10:44:19 +02:00
|
|
|
|
|
|
|
HRESULT WINAPI MAPIAdminProfiles(ULONG ulFlags, LPPROFADMIN *lppProfAdmin)
|
|
|
|
{
|
|
|
|
FIXME("(%u, %p): stub\n", ulFlags, lppProfAdmin);
|
|
|
|
*lppProfAdmin = NULL;
|
|
|
|
return E_FAIL;
|
|
|
|
}
|