Store window properties in the server. Moved property.c to dlls/user.
[wine] / include / wine / wine_common_ver.rc
1 #include "winver.h"
2
3 /*
4 Assign WINE_FILEVERSION and WINE_FILEVERSION_STR high enough number
5 to make sure that programs, relying on the version numbers, will
6 never complain.
7 */
8
9 #ifndef WINE_FILEVERSION
10 #define WINE_FILEVERSION 10,0,0,0
11 #endif
12
13 #ifndef WINE_FILEVERSION_STR
14 #define WINE_FILEVERSION_STR "10.0"
15 #endif
16
17 #ifndef WINE_FILEDESCRIPTION_STR
18 #define WINE_FILEDESCRIPTION_STR "Wine core dll"
19 #endif
20
21 #ifndef WINE_FILENAME_STR
22 #define WINE_FILENAME_STR ""
23 #endif
24
25 #ifndef WINE_PRODUCTVERSION
26 #define WINE_PRODUCTVERSION 1,0,0,0
27 #endif
28
29 #ifndef WINE_PRODUCTVERSION_STR
30 #define WINE_PRODUCTVERSION_STR "1.0"
31 #endif
32
33 #ifndef WINE_PRODUCTNAME_STR
34 #define WINE_PRODUCTNAME_STR "Wine"
35 #endif
36
37 VS_VERSION_INFO VERSIONINFO
38 FILEVERSION    WINE_FILEVERSION
39 PRODUCTVERSION WINE_PRODUCTVERSION
40 FILEFLAGSMASK  0
41 FILEFLAGS      0
42 FILEOS         VOS_UNKNOWN
43 FILETYPE       VFT_DLL
44 FILESUBTYPE    VFT2_UNKNOWN
45 {
46     BLOCK "StringFileInfo"
47     {
48         BLOCK "040904E4" /* LANG_ENGLISH/SUBLANG_DEFAULT, CP 1252 */
49         {
50             VALUE "CompanyName", "Wine Team"
51             VALUE "FileDescription", WINE_FILEDESCRIPTION_STR
52             VALUE "FileVersion", WINE_FILEVERSION_STR
53             VALUE "InternalName", WINE_FILENAME_STR
54             VALUE "LegalCopyright", "Copyright (c) 1993-2001 the Wine project authors " \
55                                     "(see the file AUTHORS for a complete list)"
56             VALUE "OriginalFilename", WINE_FILENAME_STR
57             VALUE "ProductName", WINE_PRODUCTNAME_STR
58             VALUE "ProductVersion", WINE_PRODUCTVERSION_STR
59         }
60     }
61     BLOCK "VarFileInfo"
62     {
63         VALUE "Translation", 0x0409, 0x04E4 /* LANG_ENGLISH/SUBLANG_DEFAULT, CP 1252 */
64     }
65 }