Chromium Code Reviews| 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 #include "cloud_print/virtual_driver/win/virtual_driver_common_resources.h" | |
| 6 | |
| 7 #ifdef APSTUDIO_INVOKED | |
| 8 # error Don't open this in the GUI, it'll be massacred on save. | |
| 9 #endif // APSTUDIO_INVOKED | |
| 10 | |
| 11 1 VERSIONINFO | |
| 12 FILEVERSION 0,1,0,1 | |
| 13 PRODUCTVERSION 0,1,0,1 | |
| 14 FILEFLAGSMASK 0x17L | |
| 15 #ifdef _DEBUG | |
| 16 FILEFLAGS 0x1L | |
| 17 #else | |
| 18 FILEFLAGS 0x0L | |
| 19 #endif | |
| 20 FILEOS 0x4L | |
| 21 FILETYPE 0x1L | |
| 22 FILESUBTYPE 0x0L | |
| 23 BEGIN | |
| 24 BLOCK "StringFileInfo" | |
| 25 BEGIN | |
| 26 BLOCK "040904b0" | |
| 27 BEGIN | |
| 28 VALUE "CompanyName", "Google Inc." | |
| 29 VALUE "FileDescription", "GCP Virtual Driver" | |
| 30 VALUE "FileVersion", "0, 1, 0, 1" | |
| 31 VALUE "InternalName", "GCP Virtual Driver" | |
| 32 VALUE "ProductName", "GCP Virtual Driver" | |
| 33 VALUE "ProductVersion", "0, 1, 0, 1" | |
| 34 VALUE "LegalCopyright", "Copyright (c) 2011 The Chromium Authors. Al l rights reserved." | |
| 35 END | |
| 36 END | |
| 37 BLOCK "VarFileInfo" | |
| 38 BEGIN | |
| 39 VALUE "Translation", 0x409, 1200 | |
| 40 END | |
| 41 END | |
| 42 | |
| 43 // Common strings that don't require translation. They are NOT included | |
| 44 // in the GRD file in order to prevent duplicate resources. | |
| 45 STRINGTABLE | |
| 46 BEGIN | |
| 47 IDS_GCP_URL "http://www.google.com/cloudprint" | |
|
sanjeevr
2011/05/09 19:39:11
I am not sure why these need to be in a resource f
| |
| 48 IDS_GCP_DRIVER "gcp.gpd" | |
| 49 IDS_XPS_DRIVER "mxdwdrv.dll" | |
| 50 IDS_UI_DRIVER "unidrvui.dll" | |
| 51 IDS_UI_HELP "unidrv.hlp" | |
| 52 IDS_DATA_TYPE "RAW" | |
| 53 IDS_PRINT_PROCESSOR "winprint" | |
| 54 IDS_PORT_NAME "GCP:" | |
| 55 IDS_PORT_MON_DLL_NAME_64 "gcp_portmon64.dll" | |
| 56 IDS_PORT_MON_DLL_NAME_32 "gcp_portmon32.dll" | |
| 57 END | |
| 58 | |
| OLD | NEW |