OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "resource.h" | 5 #include "resource.h" |
6 | 6 |
7 #define APSTUDIO_READONLY_SYMBOLS | 7 #define APSTUDIO_READONLY_SYMBOLS |
8 #include "winres.h" | 8 #include "winres.h" |
9 #include "verrsrc.h" | 9 #include "verrsrc.h" |
10 #include "version.h" | 10 #include "version.h" |
11 #undef APSTUDIO_READONLY_SYMBOLS | 11 #undef APSTUDIO_READONLY_SYMBOLS |
12 | 12 |
13 #ifdef APSTUDIO_INVOKED | 13 #ifdef APSTUDIO_INVOKED |
14 # error Don't open this in the GUI, it'll be massacred on save. | 14 # error Don't open this in the GUI, it'll be massacred on save. |
15 #endif // APSTUDIO_INVOKED | 15 #endif // APSTUDIO_INVOKED |
16 | 16 |
17 #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) | 17 #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) |
18 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US | 18 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US |
19 | 19 |
20 IDR_CLOUDPRINTSERVICE REGISTRY "resources\\cloud_print_service.
rgs" | 20 IDR_CLOUDPRINTSERVICE REGISTRY "resources\\cloud_print_service.
rgs" |
21 IDI_ICON ICON "resources\\cloudprint.ico" | 21 IDI_ICON ICON "resources\\cloudprint.ico" |
22 | 22 |
23 STRINGTABLE | 23 STRINGTABLE |
24 BEGIN | 24 BEGIN |
25 IDS_SERVICENAME "CloudPrintService" | 25 IDS_SERVICENAME "CloudPrintService" |
26 END | 26 END |
27 | 27 |
28 #endif // English (United States) resources | 28 #endif // English (United States) resources |
OLD | NEW |