| 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_consts.h" | |
| 6 #include <windows.h> | |
| 7 #include "cloud_print/virtual_driver/win/virtual_driver_helpers.h" | |
| 8 | |
| 9 namespace cloud_print { | |
| 10 const wchar_t kPortMonitorDllName64[] = L"gcp_portmon64.dll"; | |
| 11 const wchar_t kPortMonitorDllName32[] = L"gcp_portmon.dll"; | |
| 12 const wchar_t kPortName[] = L"GCP:"; | |
| 13 const size_t kPortNameSize = sizeof(kPortName); | |
| 14 | |
| 15 // The driver name is user visible so it SHOULD be localized, BUT | |
| 16 // the name is used as a key to find both the driver and printer. | |
| 17 // We'll need to be careful. If the name changes for the | |
| 18 // driver it could create bugs. | |
| 19 const wchar_t kVirtualDriverName[] = L"Google Cloud Print Virtual Printer"; | |
| 20 } | |
| 21 | |
| OLD | NEW |