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_OLESELFREGISTER
20 #define WINE_FILEDESCRIPTION_STR "Wine DirectSound"
21 #define WINE_FILENAME_STR "dsound.dll"
22 #define WINE_FILEVERSION 5,3,1,904
23 #define WINE_FILEVERSION_STR "5.3.1.904"
24 #define WINE_PRODUCTVERSION 5,3,1,904
25 #define WINE_PRODUCTVERSION_STR "5.3.1.904"
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
51 Assign WINE_FILEVERSION and WINE_FILEVERSION_STR high enough number
52 to make sure that programs, relying on the version numbers, will
56 #ifndef WINE_FILEVERSION_MAJOR
57 #define WINE_FILEVERSION_MAJOR 10
60 #ifndef WINE_FILEVERSION_MINOR
61 #define WINE_FILEVERSION_MINOR 0
64 #ifndef WINE_FILEVERSION_BUILD
65 #define WINE_FILEVERSION_BUILD 0
68 #ifndef WINE_FILEVERSION_PLATFORMID
69 #define WINE_FILEVERSION_PLATFORMID 0
72 #ifndef WINE_FILEVERSION
73 #define WINE_FILEVERSION WINE_FILEVERSION_MAJOR,WINE_FILEVERSION_MINOR,\
74 WINE_FILEVERSION_BUILD,WINE_FILEVERSION_PLATFORMID
77 #define WINE_VER_STRINGIZE2(x) #x
78 #define WINE_VER_STRINGIZE(x) WINE_VER_STRINGIZE2(x)
80 #ifndef WINE_FILEVERSION_STR
81 #define WINE_FILEVERSION_STR WINE_VER_STRINGIZE(WINE_FILEVERSION_MAJOR.WINE_FILEVERSION_MINOR.WINE_FILEVERSION_BUILD.WINE_FILEVERSION_PLATFORMID)
84 #ifndef WINE_FILEDESCRIPTION_STR
85 #define WINE_FILEDESCRIPTION_STR "Wine core dll"
89 #define WINE_FILENAME ""
92 #ifndef WINE_FILENAME_STR
93 #define WINE_FILENAME_STR ""
97 #define WINE_FILETYPE VFT_DLL
100 #ifndef WINE_FILESUBTYPE
101 #define WINE_FILESUBTYPE VFT2_UNKNOWN
104 #ifndef WINE_PRODUCTVERSION
105 #define WINE_PRODUCTVERSION 1,0,0,0
108 #ifndef WINE_PRODUCTVERSION_STR
109 #define WINE_PRODUCTVERSION_STR "1.0"
112 #ifndef WINE_PRODUCTNAME_STR
113 #define WINE_PRODUCTNAME_STR "Wine"
116 VS_VERSION_INFO VERSIONINFO
117 FILEVERSION WINE_FILEVERSION
118 PRODUCTVERSION WINE_PRODUCTVERSION
122 FILETYPE WINE_FILETYPE
123 FILESUBTYPE WINE_FILESUBTYPE
125 BLOCK "StringFileInfo"
127 BLOCK "040904E4" /* LANG_ENGLISH/SUBLANG_DEFAULT, CP 1252 */
129 VALUE "CompanyName", "Microsoft Corporation" /* GameGuard depends on this */
130 VALUE "FileDescription", WINE_FILEDESCRIPTION_STR
131 VALUE "FileVersion", WINE_FILEVERSION_STR
132 VALUE "InternalName", WINE_FILENAME
133 VALUE "LegalCopyright", "Copyright (c) 1993-2009 the Wine project authors (see the file AUTHORS for a complete list)"
134 VALUE "OriginalFilename", WINE_FILENAME_STR
135 VALUE "ProductName", WINE_PRODUCTNAME_STR
136 VALUE "ProductVersion", WINE_PRODUCTVERSION_STR
137 #ifdef WINE_OLESELFREGISTER
138 VALUE "OLESelfRegister", ""
144 VALUE "Translation", 0x0409, 0x04E4 /* LANG_ENGLISH/SUBLANG_DEFAULT, CP 1252 */