From 3a329d0ce5412cacf57721251ea17d25a890f5ef Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Tue, 24 Feb 2009 16:36:41 -0600 Subject: [PATCH] mapi32: add version resource --- dlls/mapi32/Makefile.in | 2 ++ dlls/mapi32/version.rc | 22 ++++++++++++++++++++++ 2 files changed, 24 insertions(+), 0 deletions(-) create mode 100644 dlls/mapi32/version.rc 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" -- 1.5.4.3