Alex Vakulenko | 89d9d5e | 2014-09-12 10:27:23 -0700 | [diff] [blame] | 1 | // Copyright 2014 The Chromium OS 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 BUFFET_LIBBUFFET_EXPORT_H_ |
| 6 | #define BUFFET_LIBBUFFET_EXPORT_H_ |
| 7 | |
| 8 | // See detailed explanation of the purpose of LIBBUFFET_EXPORT in |
| 9 | // chromeos/chromeos_export.h for similar attribute - CHROMEOS_EXPORT. |
| 10 | #define LIBBUFFET_EXPORT __attribute__((__visibility__("default"))) |
| 11 | #define LIBBUFFET_PRIVATE __attribute__((__visibility__("hidden"))) |
| 12 | |
| 13 | #endif // BUFFET_LIBBUFFET_EXPORT_H_ |