Get rid of a W->A crosscall (ResetDCA->ResetDCW).
[wine] / include / wine / wine_common_ver.rc
1 /*
2  * Copyright 2001 Dmitry Timoshkov
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 #include "windef.h"
20 #include "winbase.h"
21 #include "winver.h"
22
23 /*
24 Assign WINE_FILEVERSION and WINE_FILEVERSION_STR high enough number
25 to make sure that programs, relying on the version numbers, will
26 never complain.
27 */
28
29 #ifndef WINE_FILEVERSION
30 #define WINE_FILEVERSION 10,0,0,0
31 #endif
32
33 #ifndef WINE_FILEVERSION_STR
34 #define WINE_FILEVERSION_STR "10.0"
35 #endif
36
37 #ifndef WINE_FILEDESCRIPTION_STR
38 #define WINE_FILEDESCRIPTION_STR "Wine core dll"
39 #endif
40
41 #ifndef WINE_FILENAME_STR
42 #define WINE_FILENAME_STR ""
43 #endif
44
45 #ifndef WINE_FILETYPE
46 #define WINE_FILETYPE VFT_DLL
47 #endif
48
49 #ifndef WINE_PRODUCTVERSION
50 #define WINE_PRODUCTVERSION 1,0,0,0
51 #endif
52
53 #ifndef WINE_PRODUCTVERSION_STR
54 #define WINE_PRODUCTVERSION_STR "1.0"
55 #endif
56
57 #ifndef WINE_PRODUCTNAME_STR
58 #define WINE_PRODUCTNAME_STR "Wine"
59 #endif
60
61 VS_VERSION_INFO VERSIONINFO
62 FILEVERSION    WINE_FILEVERSION
63 PRODUCTVERSION WINE_PRODUCTVERSION
64 FILEFLAGSMASK  0
65 FILEFLAGS      0
66 FILEOS         VOS_UNKNOWN
67 FILETYPE       WINE_FILETYPE
68 FILESUBTYPE    VFT2_UNKNOWN
69 {
70     BLOCK "StringFileInfo"
71     {
72         BLOCK "040904E4" /* LANG_ENGLISH/SUBLANG_DEFAULT, CP 1252 */
73         {
74             VALUE "CompanyName", "Wine Team"
75             VALUE "FileDescription", WINE_FILEDESCRIPTION_STR
76             VALUE "FileVersion", WINE_FILEVERSION_STR
77             VALUE "InternalName", WINE_FILENAME_STR
78             VALUE "LegalCopyright", "Copyright (c) 1993-2003 the Wine project authors " \
79                                     "(see the file AUTHORS for a complete list)"
80             VALUE "OriginalFilename", WINE_FILENAME_STR
81             VALUE "ProductName", WINE_PRODUCTNAME_STR
82             VALUE "ProductVersion", WINE_PRODUCTVERSION_STR
83 #ifdef WINE_OLESELFREGISTER
84             VALUE "OLESelfRegister", ""
85 #endif
86         }
87     }
88     BLOCK "VarFileInfo"
89     {
90         VALUE "Translation", 0x0409, 0x04E4 /* LANG_ENGLISH/SUBLANG_DEFAULT, CP 1252 */
91     }
92 }