Let stop notifies get triggered when the thread notices the buffer is stopped
[dsound-openal.git] / version.rc
blobca706cdcf5f6f993c20ac02a3e139e8fb0caeaf5
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 #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 #ifndef WINE_EXTRAVALUES
117 #define WINE_EXTRAVALUES
118 #endif
120 VS_VERSION_INFO VERSIONINFO
121 FILEVERSION    WINE_FILEVERSION
122 PRODUCTVERSION WINE_PRODUCTVERSION
123 FILEFLAGSMASK  63
124 FILEFLAGS      0
125 FILEOS         VOS_UNKNOWN
126 FILETYPE       WINE_FILETYPE
127 FILESUBTYPE    WINE_FILESUBTYPE
129     BLOCK "StringFileInfo"
130     {
131         BLOCK "040904E4" /* LANG_ENGLISH/SUBLANG_DEFAULT, CP 1252 */
132         {
133             VALUE "CompanyName", "Microsoft Corporation"  /* GameGuard depends on this */
134             VALUE "FileDescription", WINE_FILEDESCRIPTION_STR
135             VALUE "FileVersion", WINE_FILEVERSION_STR
136             VALUE "InternalName", WINE_FILENAME
137             VALUE "LegalCopyright", "Copyright (c) 1993-2011 the Wine project authors (see the file AUTHORS for a complete list)"
138             VALUE "OriginalFilename", WINE_FILENAME_STR
139             VALUE "ProductName", WINE_PRODUCTNAME_STR
140             VALUE "ProductVersion", WINE_PRODUCTVERSION_STR
141             WINE_EXTRAVALUES
142         }
143     }
144     BLOCK "VarFileInfo"
145     {
146         VALUE "Translation", 0x0409, 0x04E4 /* LANG_ENGLISH/SUBLANG_DEFAULT, CP 1252 */
147     }