Add missing file
[dsound-openal.git] / version.rc
blob867396247e285996200c0cde987a378ae61e236e
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_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
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 #ifndef RC_INVOKED
47 #include "windef.h"
48 #include "winbase.h"
49 #endif
50 #include "winver.h"
54 Assign WINE_FILEVERSION and WINE_FILEVERSION_STR high enough number
55 to make sure that programs, relying on the version numbers, will
56 never complain.
59 #ifndef WINE_FILEVERSION_MAJOR
60 #define WINE_FILEVERSION_MAJOR 10
61 #endif
63 #ifndef WINE_FILEVERSION_MINOR
64 #define WINE_FILEVERSION_MINOR 0
65 #endif
67 #ifndef WINE_FILEVERSION_BUILD
68 #define WINE_FILEVERSION_BUILD 0
69 #endif
71 #ifndef WINE_FILEVERSION_PLATFORMID
72 #define WINE_FILEVERSION_PLATFORMID 0
73 #endif
75 #ifndef WINE_FILEVERSION
76 #define WINE_FILEVERSION WINE_FILEVERSION_MAJOR,WINE_FILEVERSION_MINOR,\
77                          WINE_FILEVERSION_BUILD,WINE_FILEVERSION_PLATFORMID
78 #endif
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)
85 #endif
87 #ifndef WINE_FILEDESCRIPTION_STR
88 #define WINE_FILEDESCRIPTION_STR "Wine core dll"
89 #endif
91 #ifndef WINE_FILENAME
92 #define WINE_FILENAME ""
93 #endif
95 #ifndef WINE_FILENAME_STR
96 #define WINE_FILENAME_STR ""
97 #endif
99 #ifndef WINE_FILETYPE
100 #define WINE_FILETYPE VFT_DLL
101 #endif
103 #ifndef WINE_FILESUBTYPE
104 #define WINE_FILESUBTYPE VFT2_UNKNOWN
105 #endif
107 #ifndef WINE_PRODUCTVERSION
108 #define WINE_PRODUCTVERSION 1,0,0,0
109 #endif
111 #ifndef WINE_PRODUCTVERSION_STR
112 #define WINE_PRODUCTVERSION_STR "1.0"
113 #endif
115 #ifndef WINE_PRODUCTNAME_STR
116 #define WINE_PRODUCTNAME_STR "Wine"
117 #endif
119 #ifndef WINE_EXTRAVALUES
120 #define WINE_EXTRAVALUES
121 #endif
123 VS_VERSION_INFO VERSIONINFO
124 FILEVERSION    WINE_FILEVERSION
125 PRODUCTVERSION WINE_PRODUCTVERSION
126 FILEFLAGSMASK  63
127 FILEFLAGS      0
128 FILEOS         VOS_UNKNOWN
129 FILETYPE       WINE_FILETYPE
130 FILESUBTYPE    WINE_FILESUBTYPE
132     BLOCK "StringFileInfo"
133     {
134         BLOCK "040904E4" /* LANG_ENGLISH/SUBLANG_DEFAULT, CP 1252 */
135         {
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
144             WINE_EXTRAVALUES
145         }
146     }
147     BLOCK "VarFileInfo"
148     {
149         VALUE "Translation", 0x0409, 0x04E4 /* LANG_ENGLISH/SUBLANG_DEFAULT, CP 1252 */
150     }