Module: wine Branch: master Commit: 4e92e29ce91ea4f99b4b9903c931255abe03d4ff URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=4e92e29ce91ea4f99b4b9903...
Author: Louis Lenders xerox_xerox2000@yahoo.co.uk Date: Thu Aug 24 22:13:21 2006 +0100
riched32: Add version resource.
---
dlls/riched32/Makefile.in | 2 ++ dlls/riched32/version.rc | 24 ++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 0 deletions(-) create mode 100644 dlls/riched32/version.rc
diff --git a/dlls/riched32/Makefile.in b/dlls/riched32/Makefile.in index 2ac1aea..4aa587c 100644 --- a/dlls/riched32/Makefile.in +++ b/dlls/riched32/Makefile.in @@ -8,6 +8,8 @@ IMPORTS = riched20 user32 kernel32 C_SRCS = \ richedit.c
+RC_SRCS = version.rc + @MAKE_DLL_RULES@
### Dependencies: diff --git a/dlls/riched32/version.rc b/dlls/riched32/version.rc new file mode 100644 index 0000000..f17a783 --- /dev/null +++ b/dlls/riched32/version.rc @@ -0,0 +1,24 @@ +/* + * 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 "Wrapper Dll for Richedit" +#define WINE_FILENAME_STR "riched32.dll" +#define WINE_FILEVERSION 5,1,2600,0 +#define WINE_FILEVERSION_STR "5,1,2600,0" +#define WINE_PRODUCTVERSION 5,1,2600,0 +#define WINE_PRODUCTVERSION_STR "5,1,2600,0" + +#include "wine/wine_common_ver.rc"