2 * Copyright 2001 Ove Kaaven
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #define WINE_FILEDESCRIPTION_STR "Wine DirectSound"
20 #define WINE_FILENAME_STR "dsound.dll"
21 #define WINE_FILEVERSION 5,3,1,904
22 #define WINE_FILEVERSION_STR "5.3.1.904"
23 #define WINE_PRODUCTVERSION 5,3,1,904
24 #define WINE_PRODUCTVERSION_STR "5.3.1.904"
25 #define WINE_EXTRAVALUES VALUE "OLESelfRegister",""
28 * Copyright 2001 Dmitry Timoshkov
29 * Copyright 2004 Ivan Leo Puoti
31 * This library is free software; you can redistribute it and/or
32 * modify it under the terms of the GNU Lesser General Public
33 * License as published by the Free Software Foundation; either
34 * version 2.1 of the License, or (at your option) any later version.
36 * This library is distributed in the hope that it will be useful,
37 * but WITHOUT ANY WARRANTY; without even the implied warranty of
38 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
39 * Lesser General Public License for more details.
41 * You should have received a copy of the GNU Lesser General Public
42 * License along with this library; if not, write to the Free Software
43 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
54 Assign WINE_FILEVERSION and WINE_FILEVERSION_STR high enough number
55 to make sure that programs, relying on the version numbers, will
59 #ifndef WINE_FILEVERSION_MAJOR
60 #define WINE_FILEVERSION_MAJOR 10
63 #ifndef WINE_FILEVERSION_MINOR
64 #define WINE_FILEVERSION_MINOR 0
67 #ifndef WINE_FILEVERSION_BUILD
68 #define WINE_FILEVERSION_BUILD 0
71 #ifndef WINE_FILEVERSION_PLATFORMID
72 #define WINE_FILEVERSION_PLATFORMID 0
75 #ifndef WINE_FILEVERSION
76 #define WINE_FILEVERSION WINE_FILEVERSION_MAJOR,WINE_FILEVERSION_MINOR,\
77 WINE_FILEVERSION_BUILD,WINE_FILEVERSION_PLATFORMID
80 #define WINE_VER_STRINGIZE2(x) #x
81 #define WINE_VER_STRINGIZE(x) WINE_VER_STRINGIZE2(x)
83 #ifndef WINE_FILEVERSION_STR
84 #define WINE_FILEVERSION_STR WINE_VER_STRINGIZE(WINE_FILEVERSION_MAJOR.WINE_FILEVERSION_MINOR.WINE_FILEVERSION_BUILD.WINE_FILEVERSION_PLATFORMID)
87 #ifndef WINE_FILEDESCRIPTION_STR
88 #define WINE_FILEDESCRIPTION_STR "Wine core dll"
92 #define WINE_FILENAME ""
95 #ifndef WINE_FILENAME_STR
96 #define WINE_FILENAME_STR ""
100 #define WINE_FILETYPE VFT_DLL
103 #ifndef WINE_FILESUBTYPE
104 #define WINE_FILESUBTYPE VFT2_UNKNOWN
107 #ifndef WINE_PRODUCTVERSION
108 #define WINE_PRODUCTVERSION 1,0,0,0
111 #ifndef WINE_PRODUCTVERSION_STR
112 #define WINE_PRODUCTVERSION_STR "1.0"
115 #ifndef WINE_PRODUCTNAME_STR
116 #define WINE_PRODUCTNAME_STR "Wine"
119 #ifndef WINE_EXTRAVALUES
120 #define WINE_EXTRAVALUES
123 VS_VERSION_INFO VERSIONINFO
124 FILEVERSION WINE_FILEVERSION
125 PRODUCTVERSION WINE_PRODUCTVERSION
129 FILETYPE WINE_FILETYPE
130 FILESUBTYPE WINE_FILESUBTYPE
132 BLOCK "StringFileInfo"
134 BLOCK "040904E4" /* LANG_ENGLISH/SUBLANG_DEFAULT, CP 1252 */
136 VALUE "CompanyName", "Microsoft Corporation" /* GameGuard depends on this */
137 VALUE "FileDescription", WINE_FILEDESCRIPTION_STR
138 VALUE "FileVersion", WINE_FILEVERSION_STR
139 VALUE "InternalName", WINE_FILENAME
140 VALUE "LegalCopyright", "Copyright (c) 1993-2011 the Wine project authors (see the file AUTHORS for a complete list)"
141 VALUE "OriginalFilename", WINE_FILENAME_STR
142 VALUE "ProductName", WINE_PRODUCTNAME_STR
143 VALUE "ProductVersion", WINE_PRODUCTVERSION_STR
149 VALUE "Translation", 0x0409, 0x04E4 /* LANG_ENGLISH/SUBLANG_DEFAULT, CP 1252 */