1 // Copyright 2015 The Weave 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 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 11 #define LIBWEAVE_DEPRECATED __attribute__((deprecated)) 12 13 #endif // LIBWEAVE_INCLUDE_WEAVE_EXPORT_H_ 14