OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // The host plugin pulls in strings from remoting.gyp via the pre-processor. |
| 6 // The version resource is separate from the auto-generated resources so that |
| 7 // Visual Studio will not modify it when the resources are edited in the IDE. |
| 8 |
| 9 ///////////////////////////////////////////////////////////////////////////// |
| 10 // |
| 11 // Version |
| 12 // |
| 13 |
| 14 VS_VERSION_INFO VERSIONINFO |
| 15 FILEVERSION 1,0,0,1 |
| 16 PRODUCTVERSION 1,0,0,1 |
| 17 FILEFLAGSMASK 0x17L |
| 18 #ifdef _DEBUG |
| 19 FILEFLAGS 0x1L |
| 20 #else |
| 21 FILEFLAGS 0x0L |
| 22 #endif |
| 23 FILEOS 0x4L |
| 24 FILETYPE 0x2L |
| 25 FILESUBTYPE 0x0L |
| 26 BEGIN |
| 27 BLOCK "StringFileInfo" |
| 28 BEGIN |
| 29 BLOCK "040904b0" |
| 30 BEGIN |
| 31 VALUE "FileDescription", HOST_PLUGIN_DESCRIPTION |
| 32 VALUE "FileVersion", "1, 0, 0, 1" |
| 33 VALUE "InternalName", "remoting_host_plugin.dll" |
| 34 VALUE "LegalCopyright", "Copyright (C) 2011 The Chromium Authors. Al
l rights reserved." |
| 35 VALUE "MIMEType", HOST_PLUGIN_MIME_TYPE |
| 36 VALUE "OriginalFilename", "remoting_host_plugin.dll" |
| 37 VALUE "ProductName", HOST_PLUGIN_NAME |
| 38 VALUE "ProductVersion", "1, 0, 0, 1" |
| 39 END |
| 40 END |
| 41 BLOCK "VarFileInfo" |
| 42 BEGIN |
| 43 VALUE "Translation", 0x409, 1200 |
| 44 END |
| 45 END |
OLD | NEW |