Use LIB_SUFFIX when installing
[dsound-openal.git] / version.rc
blob281624de837b0d93ed6e6939837aff71d1358f84
1 /*
2  * Copyright 2001 Ove Kaaven
3  *
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.
8  *
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.
13  *
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
17  */
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
30  *
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.
35  *
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.
40  *
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
44  */
46 #include "windef.h"
47 #include "winbase.h"
48 #include "winver.h"
51 Assign WINE_FILEVERSION and WINE_FILEVERSION_STR high enough number
52 to make sure that programs, relying on the version numbers, will
53 never complain.
56 #ifndef WINE_FILEVERSION_MAJOR
57 #define WINE_FILEVERSION_MAJOR 10
58 #endif
60 #ifndef WINE_FILEVERSION_MINOR
61 #define WINE_FILEVERSION_MINOR 0
62 #endif
64 #ifndef WINE_FILEVERSION_BUILD
65 #define WINE_FILEVERSION_BUILD 0
66 #endif
68 #ifndef WINE_FILEVERSION_PLATFORMID
69 #define WINE_FILEVERSION_PLATFORMID 0
70 #endif
72 #ifndef WINE_FILEVERSION
73 #define WINE_FILEVERSION WINE_FILEVERSION_MAJOR,WINE_FILEVERSION_MINOR,\
74                          WINE_FILEVERSION_BUILD,WINE_FILEVERSION_PLATFORMID
75 #endif
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)
82 #endif
84 #ifndef WINE_FILEDESCRIPTION_STR
85 #define WINE_FILEDESCRIPTION_STR "Wine core dll"
86 #endif
88 #ifndef WINE_FILENAME
89 #define WINE_FILENAME ""
90 #endif
92 #ifndef WINE_FILENAME_STR
93 #define WINE_FILENAME_STR ""
94 #endif
96 #ifndef WINE_FILETYPE
97 #define WINE_FILETYPE VFT_DLL
98 #endif
100 #ifndef WINE_FILESUBTYPE
101 #define WINE_FILESUBTYPE VFT2_UNKNOWN
102 #endif
104 #ifndef WINE_PRODUCTVERSION
105 #define WINE_PRODUCTVERSION 1,0,0,0
106 #endif
108 #ifndef WINE_PRODUCTVERSION_STR
109 #define WINE_PRODUCTVERSION_STR "1.0"
110 #endif
112 #ifndef WINE_PRODUCTNAME_STR
113 #define WINE_PRODUCTNAME_STR "Wine"
114 #endif
116 VS_VERSION_INFO VERSIONINFO
117 FILEVERSION    WINE_FILEVERSION
118 PRODUCTVERSION WINE_PRODUCTVERSION
119 FILEFLAGSMASK  63
120 FILEFLAGS      0
121 FILEOS         VOS_UNKNOWN
122 FILETYPE       WINE_FILETYPE
123 FILESUBTYPE    WINE_FILESUBTYPE
125     BLOCK "StringFileInfo"
126     {
127         BLOCK "040904E4" /* LANG_ENGLISH/SUBLANG_DEFAULT, CP 1252 */
128         {
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", ""
139 #endif
140         }
141     }
142     BLOCK "VarFileInfo"
143     {
144         VALUE "Translation", 0x0409, 0x04E4 /* LANG_ENGLISH/SUBLANG_DEFAULT, CP 1252 */
145     }