Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: cloud_print/virtual_driver/win/virtual_driver_common_resources.rc

Issue 6930019: Added resources. (Closed)
Patch Set: Fixed lint errors Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: cloud_print/virtual_driver/win/virtual_driver_common_resources.rc
diff --git a/cloud_print/virtual_driver/win/virtual_driver_common_resources.rc b/cloud_print/virtual_driver/win/virtual_driver_common_resources.rc
new file mode 100644
index 0000000000000000000000000000000000000000..5bcc8ea9fa097803f847e283a8aae0f2dd1cb87d
--- /dev/null
+++ b/cloud_print/virtual_driver/win/virtual_driver_common_resources.rc
@@ -0,0 +1,58 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "cloud_print/virtual_driver/win/virtual_driver_common_resources.h"
+
+#ifdef APSTUDIO_INVOKED
+# error Don't open this in the GUI, it'll be massacred on save.
+#endif // APSTUDIO_INVOKED
+
+1 VERSIONINFO
+ FILEVERSION 0,1,0,1
+ PRODUCTVERSION 0,1,0,1
+ FILEFLAGSMASK 0x17L
+#ifdef _DEBUG
+ FILEFLAGS 0x1L
+#else
+ FILEFLAGS 0x0L
+#endif
+ FILEOS 0x4L
+ FILETYPE 0x1L
+ FILESUBTYPE 0x0L
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904b0"
+ BEGIN
+ VALUE "CompanyName", "Google Inc."
+ VALUE "FileDescription", "GCP Virtual Driver"
+ VALUE "FileVersion", "0, 1, 0, 1"
+ VALUE "InternalName", "GCP Virtual Driver"
+ VALUE "ProductName", "GCP Virtual Driver"
+ VALUE "ProductVersion", "0, 1, 0, 1"
+ VALUE "LegalCopyright", "Copyright (c) 2011 The Chromium Authors. All rights reserved."
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x409, 1200
+ END
+END
+
+// Common strings that don't require translation. They are NOT included
+// in the GRD file in order to prevent duplicate resources.
+STRINGTABLE
+BEGIN
+ 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
+ IDS_GCP_DRIVER "gcp.gpd"
+ IDS_XPS_DRIVER "mxdwdrv.dll"
+ IDS_UI_DRIVER "unidrvui.dll"
+ IDS_UI_HELP "unidrv.hlp"
+ IDS_DATA_TYPE "RAW"
+ IDS_PRINT_PROCESSOR "winprint"
+ IDS_PORT_NAME "GCP:"
+ IDS_PORT_MON_DLL_NAME_64 "gcp_portmon64.dll"
+ IDS_PORT_MON_DLL_NAME_32 "gcp_portmon32.dll"
+END
+

Powered by Google App Engine
This is Rietveld 408576698