Vitaly Buka | 4615e0d | 2015-10-14 15:35:12 -0700 | [diff] [blame] | 1 | // Copyright 2015 The Weave Authors. All rights reserved. |
Vitaly Buka | ec6083b | 2015-08-03 13:51:50 -0700 | [diff] [blame] | 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 LIBWEAVE_INCLUDE_WEAVE_EXPORT_H_ |
| 6 | #define LIBWEAVE_INCLUDE_WEAVE_EXPORT_H_ |
| 7 | |
| 8 | #define LIBWEAVE_EXPORT __attribute__((__visibility__("default"))) |
| 9 | #define LIBWEAVE_PRIVATE __attribute__((__visibility__("hidden"))) |
| 10 | |
Alex Vakulenko | ec9d848 | 2015-12-10 10:16:21 -0800 | [diff] [blame] | 11 | #define LIBWEAVE_DEPRECATED __attribute__((deprecated)) |
Alex Vakulenko | 88e9d12 | 2015-12-04 16:50:32 -0800 | [diff] [blame] | 12 | |
Vitaly Buka | ec6083b | 2015-08-03 13:51:50 -0700 | [diff] [blame] | 13 | #endif // LIBWEAVE_INCLUDE_WEAVE_EXPORT_H_ |