Module: wine
Branch: master
Commit: c0dbcbab5276ac06287cc71893f153c77773efd8
URL: http://source.winehq.org/git/wine.git/?a=commit;h=c0dbcbab5276ac06287cc7189…
Author: Vincent Povirk <vincent(a)codeweavers.com>
Date: Tue Feb 24 16:36:41 2009 -0600
mapi32: Add version resource.
---
dlls/mapi32/Makefile.in | 2 ++
dlls/mapi32/version.rc | 22 ++++++++++++++++++++++
2 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/dlls/mapi32/Makefile.in b/dlls/mapi32/Makefile.in
index 26ebf06..3e311de 100644
--- a/dlls/mapi32/Makefile.in
+++ b/dlls/mapi32/Makefile.in
@@ -13,6 +13,8 @@ C_SRCS = \
sendmail.c \
util.c
+RC_SRCS = version.rc
+
@MAKE_DLL_RULES@
@DEPENDENCIES@ # everything below this line is overwritten by make depend
diff --git a/dlls/mapi32/version.rc b/dlls/mapi32/version.rc
new file mode 100644
index 0000000..0f95516
--- /dev/null
+++ b/dlls/mapi32/version.rc
@@ -0,0 +1,22 @@
+/*
+ * Copyright 2009 Vincent Povirk 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
+ */
+
+#define WINE_FILEDESCRIPTION_STR "Wine Messaging API"
+#define WINE_FILENAME_STR "mapi32.dll"
+
+#include "wine/wine_common_ver.rc"