From 63eab8cca47b9919aae41f952219de04233da8f2 Mon Sep 17 00:00:00 2001 From: Tom Wickline Date: Wed, 31 Mar 2004 20:06:40 +0000 Subject: [PATCH] Set version to Win XP Service patch 2. --- dlls/opengl32/.cvsignore | 1 + dlls/opengl32/Makefile.in | 2 ++ dlls/opengl32/version.rc | 27 +++++++++++++++++++++++++++ 3 files changed, 30 insertions(+) create mode 100644 dlls/opengl32/version.rc diff --git a/dlls/opengl32/.cvsignore b/dlls/opengl32/.cvsignore index cb3c70219eb..e2460baeae2 100644 --- a/dlls/opengl32/.cvsignore +++ b/dlls/opengl32/.cvsignore @@ -1,3 +1,4 @@ Makefile opengl32.dll.dbg.c opengl32.spec.def +version.res diff --git a/dlls/opengl32/Makefile.in b/dlls/opengl32/Makefile.in index 0be5c22f23e..c76478ba819 100644 --- a/dlls/opengl32/Makefile.in +++ b/dlls/opengl32/Makefile.in @@ -13,6 +13,8 @@ C_SRCS = \ wgl.c \ wgl_ext.c +RC_SRCS = version.rc + @MAKE_DLL_RULES@ ### Dependencies: diff --git a/dlls/opengl32/version.rc b/dlls/opengl32/version.rc new file mode 100644 index 00000000000..77c6d6d89ad --- /dev/null +++ b/dlls/opengl32/version.rc @@ -0,0 +1,27 @@ +/* + * Copyright 2004 Tom Wickline + * + * 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 OpenGL Client" +#define WINE_FILENAME_STR "opengl32.dll" +#define WINE_FILEVERSION 5,1,2600,2082 +#define WINE_FILEVERSION_STR "5.1.2600.2082" +#define WINE_PRODUCTVERSION 5,1,2600,2082 +#define WINE_PRODUCTVERSION_STR "5.1" +#define WINE_PRODUCTNAME_STR "DirectX" + +#include "wine/wine_common_ver.rc"