From 6c0f85c8a629f914dcce094c12af7ed9cb1abd14 Mon Sep 17 00:00:00 2001 From: Detlef Riekenberg Date: Mon, 3 Dec 2007 05:41:33 +0100 Subject: [PATCH] rsabase: Add version resource. --- .gitignore | 1 + dlls/rsabase/Makefile.in | 2 ++ dlls/rsabase/version.rc | 26 ++++++++++++++++++++++++++ 3 files changed, 29 insertions(+) create mode 100644 dlls/rsabase/version.rc diff --git a/.gitignore b/.gitignore index b442c453c8d..4cff5df6ec7 100644 --- a/.gitignore +++ b/.gitignore @@ -405,6 +405,7 @@ dlls/rpcrt4/version.res dlls/rsabase/tests/*.ok dlls/rsabase/tests/rsabase_crosstest.exe dlls/rsabase/tests/testlist.c +dlls/rsabase/version.res dlls/rsaenh/librsaenh.def dlls/rsaenh/tests/*.ok dlls/rsaenh/tests/rsaenh_crosstest.exe diff --git a/dlls/rsabase/Makefile.in b/dlls/rsabase/Makefile.in index 00c1dad7fb0..033c2034b41 100644 --- a/dlls/rsabase/Makefile.in +++ b/dlls/rsabase/Makefile.in @@ -6,6 +6,8 @@ VPATH = @srcdir@ MODULE = rsabase.dll IMPORTS = rsaenh kernel32 +RC_SRCS = version.rc + @MAKE_DLL_RULES@ @DEPENDENCIES@ # everything below this line is overwritten by make depend diff --git a/dlls/rsabase/version.rc b/dlls/rsabase/version.rc new file mode 100644 index 00000000000..56c7502458f --- /dev/null +++ b/dlls/rsabase/version.rc @@ -0,0 +1,26 @@ +/* + * Copyright (c) 2007 Detlef Riekenberg + * + * 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 rsabase" +#define WINE_FILENAME_STR "rsabase.dll" +#define WINE_FILEVERSION 5,1,2600,2180 +#define WINE_FILEVERSION_STR "5.1.2600.2180" +#define WINE_PRODUCTVERSION 5,1,2600,2180 +#define WINE_PRODUCTVERSION_STR "5.1.2600.2180" + +#include "wine/wine_common_ver.rc" -- 2.11.4.GIT