OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <verrsrc.h> | 5 #ifdef APSTUDIO_INVOKED |
6 # error Do not open this in the GUI, it will be massacred on save. Do not do it. | |
7 #endif // APSTUDIO_INVOKED | |
6 | 8 |
7 ///////////////////////////////////////////////////////////////////////////// | 9 ///////////////////////////////////////////////////////////////////////////// |
8 // | 10 // |
9 // Version | 11 // Version |
10 // | 12 // |
11 | 13 |
12 VS_VERSION_INFO VERSIONINFO | 14 1 VERSIONINFO |
13 FILEVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@ | 15 FILEVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@ |
14 PRODUCTVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@ | 16 PRODUCTVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@ |
15 FILEFLAGSMASK 0x17L | 17 FILEFLAGSMASK 0x17L |
16 #ifdef _DEBUG | 18 #ifdef _DEBUG |
17 FILEFLAGS 0x1L | 19 FILEFLAGS 0x1L |
18 #else | 20 #else |
19 FILEFLAGS 0x0L | 21 FILEFLAGS 0x0L |
20 #endif | 22 #endif |
21 FILEOS 0x4L | 23 FILEOS 0x4L |
22 FILETYPE 0x1L | 24 FILETYPE 0x2L |
23 FILESUBTYPE 0x0L | 25 FILESUBTYPE 0x0L |
24 BEGIN | 26 BEGIN |
25 BLOCK "StringFileInfo" | 27 BLOCK "StringFileInfo" |
26 BEGIN | 28 BEGIN |
27 BLOCK "040904b0" | 29 // Note that Firefox 3.0 requires the charset to be 04e4 (multi-lingual) . |
robertshield
2012/10/15 13:58:14
> 80
grt (UTC plus 2)
2012/10/15 14:43:24
Done.
| |
30 BLOCK "040904e4" | |
28 BEGIN | 31 BEGIN |
29 VALUE "CompanyName", "@COMPANY_FULLNAME@" | 32 VALUE "CompanyName", "@COMPANY_FULLNAME@" |
30 VALUE "FileDescription", "@PRODUCT_FULLNAME@" | 33 VALUE "FileDescription", "@PRODUCT_DESCRIPTION@" |
31 VALUE "FileVersion", "@MAJOR@.@MINOR@.@BUILD@.@PATCH@" | 34 VALUE "FileVersion", "@MAJOR@.@MINOR@.@BUILD@.@PATCH@" |
32 VALUE "InternalName", "@INTERNAL_NAME@" | 35 VALUE "InternalName", "@INTERNAL_NAME@" |
33 VALUE "LegalCopyright", "@COPYRIGHT@" | 36 VALUE "LegalCopyright", "@COPYRIGHT@" |
34 VALUE "OriginalFilename", "@ORIGINAL_FILENAME@" | 37 VALUE "OriginalFilename", "@ORIGINAL_FILENAME@" |
35 VALUE "ProductName", "@PRODUCT_FULLNAME@" | 38 VALUE "ProductName", "@PRODUCT_FULLNAME@" |
36 VALUE "ProductVersion", "@MAJOR@.@MINOR@.@BUILD@.@PATCH@" | 39 VALUE "ProductVersion", "@MAJOR@.@MINOR@.@BUILD@.@PATCH@" |
37 VALUE "CompanyShortName", "@COMPANY_SHORTNAME@" | 40 VALUE "CompanyShortName", "@COMPANY_SHORTNAME@" |
38 VALUE "ProductShortName", "@PRODUCT_SHORTNAME@" | 41 VALUE "ProductShortName", "@PRODUCT_SHORTNAME@" |
39 VALUE "LastChange", "@LASTCHANGE@" | 42 VALUE "LastChange", "@LASTCHANGE@" |
40 VALUE "Official Build", "@OFFICIAL_BUILD@" | 43 VALUE "Official Build", "@OFFICIAL_BUILD@" |
44 VALUE "MIMEType", "application/chromeframe" | |
45 VALUE "FileExtents", "chromeframe" | |
46 VALUE "FileOpenName", "chromeframe" | |
41 END | 47 END |
42 END | 48 END |
43 BLOCK "VarFileInfo" | 49 BLOCK "VarFileInfo" |
44 BEGIN | 50 BEGIN |
45 VALUE "Translation", 0x409, 1200 | 51 // Note that Firefox 3.0 requires the charset to be 1252 (multi-lingual) . |
robertshield
2012/10/15 13:58:14
> 80
grt (UTC plus 2)
2012/10/15 14:43:24
Done.
| |
52 VALUE "Translation", 0x409, 1252 | |
46 END | 53 END |
47 END | 54 END |
OLD | NEW |