4 Assign WINE_FILEVERSION and WINE_FILEVERSION_STR high enough number
5 to make sure that programs, relying on the version numbers, will
9 #ifndef WINE_FILEVERSION
10 #define WINE_FILEVERSION 10,0,0,0
13 #ifndef WINE_FILEVERSION_STR
14 #define WINE_FILEVERSION_STR "10.0"
17 #ifndef WINE_FILEDESCRIPTION_STR
18 #define WINE_FILEDESCRIPTION_STR "Wine core dll"
21 #ifndef WINE_FILENAME_STR
22 #define WINE_FILENAME_STR ""
25 #ifndef WINE_PRODUCTVERSION
26 #define WINE_PRODUCTVERSION 1,0,0,0
29 #ifndef WINE_PRODUCTVERSION_STR
30 #define WINE_PRODUCTVERSION_STR "1.0"
33 #ifndef WINE_PRODUCTNAME_STR
34 #define WINE_PRODUCTNAME_STR "Wine"
37 VS_VERSION_INFO VERSIONINFO
38 FILEVERSION WINE_FILEVERSION
39 PRODUCTVERSION WINE_PRODUCTVERSION
44 FILESUBTYPE VFT2_UNKNOWN
46 BLOCK "StringFileInfo"
48 BLOCK "040904E4" /* LANG_ENGLISH/SUBLANG_DEFAULT, CP 1252 */
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
63 VALUE "Translation", 0x0409, 0x04E4 /* LANG_ENGLISH/SUBLANG_DEFAULT, CP 1252 */