blob: 6a658f9145fb37c85748e342c9853347f84f087c [file] [log] [blame]
Vitaly Buka4615e0d2015-10-14 15:35:12 -07001// Copyright 2015 The Weave Authors. All rights reserved.
Vitaly Bukaec6083b2015-08-03 13:51:50 -07002// 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 Vakulenkoec9d8482015-12-10 10:16:21 -080011#define LIBWEAVE_DEPRECATED __attribute__((deprecated))
Alex Vakulenko88e9d122015-12-04 16:50:32 -080012
Vitaly Bukaec6083b2015-08-03 13:51:50 -070013#endif // LIBWEAVE_INCLUDE_WEAVE_EXPORT_H_