hal: Add version resource.
authorHans Leidekker <hans@codeweavers.com>
Mon, 15 Dec 2008 10:54:16 +0000 (11:54 +0100)
committerAlexandre Julliard <julliard@winehq.org>
Tue, 16 Dec 2008 12:59:03 +0000 (13:59 +0100)
dlls/hal/Makefile.in
dlls/hal/version.rc [new file with mode: 0644]

index 4f3cf1cfb45505379559c7ea0b05471376a50de3..026268adc4ea0557d1a80b72f1c27f9e78a15c95 100644 (file)
@@ -8,6 +8,8 @@ IMPORTS   = kernel32 ntdll
 C_SRCS = \
        hal.c
 
+RC_SRCS = version.rc
+
 @MAKE_DLL_RULES@
 
 @DEPENDENCIES@  # everything below this line is overwritten by make depend
diff --git a/dlls/hal/version.rc b/dlls/hal/version.rc
new file mode 100644 (file)
index 0000000..126fe31
--- /dev/null
@@ -0,0 +1,26 @@
+/*
+ * Copyright 2008 Hans Leidekker
+ *
+ * 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_FILENAME_STR "hal.dll"
+
+#define WINE_FILEVERSION 5,1,2600,5512
+#define WINE_FILEVERSION_STR "5.1.2600.5512"
+#define WINE_PRODUCTVERSION 5,1,2600,5512
+#define WINE_PRODUCTVERSION_STR "5.1.2600.5512"
+
+#include "wine/wine_common_ver.rc"