OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 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 #ifndef CLOUD_PRINT_SERVICE_CLOUD_PRINT_SERVICE_H_ |
| 6 #define CLOUD_PRINT_SERVICE_CLOUD_PRINT_SERVICE_H_ |
| 7 #pragma once |
| 8 |
| 9 #ifndef STRICT |
| 10 #define STRICT |
| 11 #endif |
| 12 |
| 13 #define _ATL_FREE_THREADED |
| 14 |
| 15 #define _ATL_NO_AUTOMATIC_NAMESPACE |
| 16 |
| 17 // some CString constructors will be explicit |
| 18 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS |
| 19 |
| 20 #define ATL_NO_ASSERT_ON_DESTROY_NONEXISTENT_WINDOW |
| 21 |
| 22 #include <atlbase.h> |
| 23 #include <atlcom.h> |
| 24 #include <atlctl.h> |
| 25 |
| 26 #endif // CLOUD_PRINT_SERVICE_CLOUD_PRINT_SERVICE_H_ |
| 27 |
OLD | NEW |