winemapi: Add skeleton for new Wine MAPI provider.
diff --git a/dlls/winemapi/Makefile.in b/dlls/winemapi/Makefile.in
new file mode 100644
index 0000000..6a4ec21
--- /dev/null
+++ b/dlls/winemapi/Makefile.in
@@ -0,0 +1,13 @@
+TOPSRCDIR = @top_srcdir@
+TOPOBJDIR = ../..
+SRCDIR = @srcdir@
+VPATH = @srcdir@
+MODULE = winemapi.dll
+IMPORTS = shlwapi shell32 kernel32
+
+C_SRCS = \
+ main.c
+
+@MAKE_DLL_RULES@
+
+@DEPENDENCIES@ # everything below this line is overwritten by make depend
diff --git a/dlls/winemapi/main.c b/dlls/winemapi/main.c
new file mode 100644
index 0000000..e4d4e55
--- /dev/null
+++ b/dlls/winemapi/main.c
@@ -0,0 +1,39 @@
+/*
+ * Wine MAPI provider
+ *
+ * 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 <stdarg.h>
+
+#include "windef.h"
+#include "winbase.h"
+#include "winerror.h"
+#include "objbase.h"
+#include "mapi.h"
+#include "wine/debug.h"
+
+WINE_DEFAULT_DEBUG_CHANNEL(winemapi);
+
+/***********************************************************************
+ * DllMain (MAPI32.init)
+ */
+BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
+{
+ TRACE("(%p,%d,%p)\n", hinstDLL, fdwReason, fImpLoad);
+ return TRUE;
+}
diff --git a/dlls/winemapi/winemapi.spec b/dlls/winemapi/winemapi.spec
new file mode 100644
index 0000000..7091f72
--- /dev/null
+++ b/dlls/winemapi/winemapi.spec
@@ -0,0 +1,11 @@
+@ stub MAPIAddress
+@ stub MAPIDeleteMail
+@ stub MAPIDetails
+@ stub MAPIFindNext
+@ stub MAPILogon
+@ stub MAPILogoff
+@ stub MAPIReadMail
+@ stub MAPIResolveName
+@ stub MAPISaveMail
+@ stub MAPISendDocuments
+@ stub MAPISendMail