Move CompareString implementation to libwine_unicode, add a bunch of
[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_PRODUCTVERSION
46 #define WINE_PRODUCTVERSION 1,0,0,0
47 #endif
48
49 #ifndef WINE_PRODUCTVERSION_STR
50 #define WINE_PRODUCTVERSION_STR "1.0"
51 #endif
52
53 #ifndef WINE_PRODUCTNAME_STR
54 #define WINE_PRODUCTNAME_STR "Wine"
55 #endif
56
57 VS_VERSION_INFO VERSIONINFO
58 FILEVERSION    WINE_FILEVERSION
59 PRODUCTVERSION WINE_PRODUCTVERSION
60 FILEFLAGSMASK  0
61 FILEFLAGS      0
62 FILEOS         VOS_UNKNOWN
63 FILETYPE       VFT_DLL
64 FILESUBTYPE    VFT2_UNKNOWN
65 {
66     BLOCK "StringFileInfo"
67     {
68         BLOCK "040904E4" /* LANG_ENGLISH/SUBLANG_DEFAULT, CP 1252 */
69         {
70             VALUE "CompanyName", "Wine Team"
71             VALUE "FileDescription", WINE_FILEDESCRIPTION_STR
72             VALUE "FileVersion", WINE_FILEVERSION_STR
73             VALUE "InternalName", WINE_FILENAME_STR
74             VALUE "LegalCopyright", "Copyright (c) 1993-2001 the Wine project authors " \
75                                     "(see the file AUTHORS for a complete list)"
76             VALUE "OriginalFilename", WINE_FILENAME_STR
77             VALUE "ProductName", WINE_PRODUCTNAME_STR
78             VALUE "ProductVersion", WINE_PRODUCTVERSION_STR
79 #ifdef WINE_OLESELFREGISTER
80             VALUE "OLESelfRegister", ""
81 #endif
82         }
83     }
84     BLOCK "VarFileInfo"
85     {
86         VALUE "Translation", 0x0409, 0x04E4 /* LANG_ENGLISH/SUBLANG_DEFAULT, CP 1252 */
87     }
88 }