From c5e507a44b893f4889ab61a768fd2dec3ae2545f Mon Sep 17 00:00:00 2001 From: Stefan Leichter Date: Wed, 31 Dec 2003 18:56:07 +0000 Subject: [PATCH] Added file version resource. --- dlls/cabinet/.cvsignore | 1 + dlls/cabinet/Makefile.in | 2 ++ dlls/cabinet/cabinet.rc | 28 ++++++++++++++++++++++++++++ 3 files changed, 31 insertions(+) create mode 100644 dlls/cabinet/cabinet.rc diff --git a/dlls/cabinet/.cvsignore b/dlls/cabinet/.cvsignore index b9e9164da01..3d3453c6870 100644 --- a/dlls/cabinet/.cvsignore +++ b/dlls/cabinet/.cvsignore @@ -1,4 +1,5 @@ Makefile cabinet.dll.dbg.c +cabinet.res cabinet.spec.c cabinet.spec.def diff --git a/dlls/cabinet/Makefile.in b/dlls/cabinet/Makefile.in index caa3bb63199..a14b4611e13 100644 --- a/dlls/cabinet/Makefile.in +++ b/dlls/cabinet/Makefile.in @@ -11,6 +11,8 @@ C_SRCS = \ fci.c \ fdi.c +RC_SRCS = cabinet.rc + @MAKE_DLL_RULES@ ### Dependencies: diff --git a/dlls/cabinet/cabinet.rc b/dlls/cabinet/cabinet.rc new file mode 100644 index 00000000000..77792217952 --- /dev/null +++ b/dlls/cabinet/cabinet.rc @@ -0,0 +1,28 @@ +/* Language neutral resources. + * + * Copyright 2003 Stefan Leichter + * + * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#define WINE_FILEDESCRIPTION_STR "Wine Cabinet File API" +#define WINE_FILENAME_STR "cabinet.dll" +#define WINE_FILEVERSION 5,0,2147,1 +#define WINE_FILEVERSION_STR "5.0.2147.1" + +#define WINE_PRODUCTVERSION 5,0,2147,1 +#define WINE_PRODUCTVERSION_STR "5.0" + +#include "wine/wine_common_ver.rc"