Commit 44784356 authored by Owen Rudge's avatar Owen Rudge Committed by Alexandre Julliard

winemapi: Add Simple MAPI functions.

parent 38cb7be4
...@@ -6,7 +6,8 @@ MODULE = winemapi.dll ...@@ -6,7 +6,8 @@ MODULE = winemapi.dll
IMPORTS = shlwapi shell32 kernel32 IMPORTS = shlwapi shell32 kernel32
C_SRCS = \ C_SRCS = \
main.c main.c \
sendmail.c
@MAKE_DLL_RULES@ @MAKE_DLL_RULES@
......
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
#include "winbase.h" #include "winbase.h"
#include "winerror.h" #include "winerror.h"
#include "objbase.h" #include "objbase.h"
#include "mapidefs.h"
#include "mapi.h" #include "mapi.h"
#include "wine/debug.h" #include "wine/debug.h"
...@@ -37,3 +38,74 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad) ...@@ -37,3 +38,74 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
TRACE("(%p,%d,%p)\n", hinstDLL, fdwReason, fImpLoad); TRACE("(%p,%d,%p)\n", hinstDLL, fdwReason, fImpLoad);
return TRUE; return TRUE;
} }
ULONG WINAPI MAPIAddress(LHANDLE session, ULONG_PTR uiparam, LPSTR caption,
ULONG editfields, LPSTR labels, ULONG nRecips, lpMapiRecipDesc lpRecips,
FLAGS flags, ULONG reserved, LPULONG newRecips, lpMapiRecipDesc * lppNewRecips)
{
FIXME("(stub)");
return MAPI_E_NOT_SUPPORTED;
}
ULONG WINAPI MAPIDeleteMail(LHANDLE session, ULONG_PTR uiparam, LPSTR msg_id,
FLAGS flags, ULONG reserved)
{
FIXME("(stub)");
return MAPI_E_NOT_SUPPORTED;
}
ULONG WINAPI MAPIDetails(LHANDLE session, ULONG_PTR uiparam, lpMapiRecipDesc recip,
FLAGS flags, ULONG reserved)
{
FIXME("(stub)");
return MAPI_E_NOT_SUPPORTED;
}
ULONG WINAPI MAPIFindNext(LHANDLE session, ULONG_PTR uiparam, LPSTR msg_type,
LPSTR seed_msg_id, FLAGS flags, ULONG reserved, LPSTR msg_id)
{
FIXME("(stub)");
return MAPI_E_NOT_SUPPORTED;
}
ULONG WINAPI MAPILogon(ULONG_PTR uiparam, LPSTR profile, LPSTR password,
FLAGS flags, ULONG reserved, LPLHANDLE session)
{
TRACE("(0x%08lx %s %p 0x%08x 0x%08x %p)\n", uiparam,
debugstr_a(profile), password, flags, reserved, session);
if (session)
*session = 1;
return SUCCESS_SUCCESS;
}
ULONG WINAPI MAPILogoff(LHANDLE session, ULONG_PTR uiparam, FLAGS flags,
ULONG reserved)
{
TRACE("(0x%08lx 0x%08lx 0x%08x 0x%08x)\n", session,
uiparam, flags, reserved);
return SUCCESS_SUCCESS;
}
ULONG WINAPI MAPIReadMail(LHANDLE session, ULONG_PTR uiparam, LPSTR msg_id,
FLAGS flags, ULONG reserved, lpMapiMessage msg)
{
FIXME("(stub)");
return MAPI_E_NOT_SUPPORTED;
}
ULONG WINAPI MAPIResolveName(LHANDLE session, ULONG_PTR uiparam, LPSTR name,
FLAGS flags, ULONG reserved, lpMapiRecipDesc *recip)
{
FIXME("(stub)");
return MAPI_E_NOT_SUPPORTED;
}
ULONG WINAPI MAPISaveMail(LHANDLE session, ULONG_PTR uiparam, lpMapiMessage msg,
FLAGS flags, ULONG reserved, LPSTR msg_id)
{
FIXME("(stub)");
return MAPI_E_NOT_SUPPORTED;
}
/*
* MAPISendMail implementation
*
* Copyright 2005 Hans Leidekker
* Copyright 2009 Owen Rudge for CodeWeavers
*
* 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
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include <stdio.h>
#include <stdarg.h>
#define COBJMACROS
#include "windef.h"
#include "winbase.h"
#include "winerror.h"
#include "mapi.h"
#include "winreg.h"
#include "shellapi.h"
#include "shlwapi.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(winemapi);
/**************************************************************************
* MAPISendMail
*
* Send a mail.
*
* PARAMS
* session [I] Handle to a MAPI session.
* uiparam [I] Parent window handle.
* message [I] Pointer to a MAPIMessage structure.
* flags [I] Flags.
* reserved [I] Reserved, pass 0.
*
* RETURNS
* Success: SUCCESS_SUCCESS
* Failure: MAPI_E_FAILURE
*
*/
ULONG WINAPI MAPISendMail(LHANDLE session, ULONG_PTR uiparam,
lpMapiMessage message, FLAGS flags, ULONG reserved)
{
FIXME("(0x%08x 0x%08lx %p 0x%08x 0x%08x): stub\n", session, uiparam,
message, flags, reserved);
return MAPI_E_NOT_SUPPORTED;
}
ULONG WINAPI MAPISendDocuments(ULONG_PTR uiparam, LPSTR delim, LPSTR paths,
LPSTR filenames, ULONG reserved)
{
return MAPI_E_NOT_SUPPORTED;
}
@ stub MAPIAddress @ stdcall MAPIAddress(ptr ptr str long str long ptr long long ptr ptr)
@ stub MAPIDeleteMail @ stdcall MAPIDeleteMail(ptr ptr str long long)
@ stub MAPIDetails @ stdcall MAPIDetails(ptr ptr ptr long long)
@ stub MAPIFindNext @ stdcall MAPIFindNext(ptr ptr str str long long ptr)
@ stub MAPILogon @ stdcall MAPILogon(ptr str str long long ptr)
@ stub MAPILogoff @ stdcall MAPILogoff(ptr ptr long long)
@ stub MAPIReadMail @ stdcall MAPIReadMail(ptr ptr str long long ptr)
@ stub MAPIResolveName @ stdcall MAPIResolveName(ptr ptr str long long ptr)
@ stub MAPISaveMail @ stdcall MAPISaveMail(ptr ptr ptr long long str)
@ stub MAPISendDocuments @ stdcall MAPISendDocuments(ptr str str str long)
@ stub MAPISendMail @ stdcall MAPISendMail(ptr ptr ptr long long)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment