OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef BASE_BASE_API_H_ | 5 #ifndef BASE_BASE_API_H_ |
6 #define BASE_BASE_API_H_ | 6 #define BASE_BASE_API_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #if !defined(BASE_IMPLEMENTATION) | |
10 #define BASE_IMPLEMENTATION 0 | |
11 #endif | |
12 | |
13 #if defined(WIN32) && defined(BASE_DLL) | 9 #if defined(WIN32) && defined(BASE_DLL) |
14 #if BASE_IMPLEMENTATION | 10 #if defined(BASE_IMPLEMENTATION) |
15 #define BASE_API __declspec(dllexport) | 11 #define BASE_API __declspec(dllexport) |
16 #else | 12 #else |
17 #define BASE_API __declspec(dllimport) | 13 #define BASE_API __declspec(dllimport) |
18 #endif | 14 #endif // defined(BASE_IMPLEMENTATION) |
wtc
2011/03/28 22:24:33
Nit: for short ifdef blocks, I would omit these co
rvargas (doing something else)
2011/03/28 22:36:23
Yes, I do too. But I think it adds clarity in this
| |
19 #else | 15 #else |
20 #define BASE_API | 16 #define BASE_API |
21 #endif | 17 #endif |
22 | 18 |
23 #endif // BASE_BASE_API_H_ | 19 #endif // BASE_BASE_API_H_ |
OLD | NEW |