Ardour  8.12
evoral/evoral/visibility.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2013-2015 Paul Davis <paul@linuxaudiosystems.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18 
19 #ifndef __libevoral_visibility_h__
20 #define __libevoral_visibility_h__
21 
22 #if defined(COMPILER_MSVC)
23  #define LIBEVORAL_DLL_IMPORT __declspec(dllimport)
24  #define LIBEVORAL_DLL_EXPORT __declspec(dllexport)
25  #define LIBEVORAL_DLL_LOCAL
26  #define LIBEVORAL_TEMPLATE_DLL_IMPORT __declspec(dllimport)
27  #define LIBEVORAL_TEMPLATE_DLL_EXPORT __declspec(dllexport)
28 #else
29  #define LIBEVORAL_DLL_IMPORT __attribute__ ((visibility ("default")))
30  #define LIBEVORAL_DLL_EXPORT __attribute__ ((visibility ("default")))
31  #define LIBEVORAL_DLL_LOCAL __attribute__ ((visibility ("hidden")))
32  #define LIBEVORAL_TEMPLATE_DLL_IMPORT __attribute__ ((visibility ("default")))
33  #define LIBEVORAL_TEMPLATE_DLL_EXPORT __attribute__ ((visibility ("default")))
34 #endif
35 
36 #ifdef LIBEVORAL_STATIC // libevoral is not a DLL
37  #define LIBEVORAL_API
38  #define LIBEVORAL_LOCAL
39 #else
40  #ifdef LIBEVORAL_DLL_EXPORTS // defined if we are building the libevoral DLL (instead of using it)
41  #define LIBEVORAL_API LIBEVORAL_DLL_EXPORT
42  #define LIBEVORAL_TEMPLATE_API LIBEVORAL_TEMPLATE_DLL_EXPORT
43  #else
44  #define LIBEVORAL_API LIBEVORAL_DLL_IMPORT
45  #define LIBEVORAL_TEMPLATE_API LIBEVORAL_TEMPLATE_DLL_IMPORT
46  #endif
47  #define LIBEVORAL_LOCAL LIBEVORAL_DLL_LOCAL
48 #endif
49 
50 #endif /* __libevoral_visibility_h__ */