| OLD | NEW |
| (Empty) |
| 1 // Copyright 2013 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 "resource.h" | |
| 6 | |
| 7 #define APSTUDIO_READONLY_SYMBOLS | |
| 8 #include "winres.h" | |
| 9 #include "verrsrc.h" | |
| 10 #include "version.h" | |
| 11 #undef APSTUDIO_READONLY_SYMBOLS | |
| 12 | |
| 13 #ifdef APSTUDIO_INVOKED | |
| 14 # error Don't open this in the GUI, it'll be massacred on save. | |
| 15 #endif // APSTUDIO_INVOKED | |
| 16 | |
| 17 #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) | |
| 18 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US | |
| 19 | |
| 20 IDR_CLOUDPRINTSERVICE REGISTRY "resources\\cloud_print_service.
rgs" | |
| 21 IDI_ICON ICON "resources\\cloudprint.ico" | |
| 22 | |
| 23 STRINGTABLE | |
| 24 BEGIN | |
| 25 IDS_SERVICENAME "CloudPrintService" | |
| 26 END | |
| 27 | |
| 28 #endif // English (United States) resources | |
| OLD | NEW |