Ardour
9.0-pre0-582-g084a23a80d
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
#pragma once
20
21
#if defined(COMPILER_MSVC)
22
#define LIBEVORAL_DLL_IMPORT __declspec(dllimport)
23
#define LIBEVORAL_DLL_EXPORT __declspec(dllexport)
24
#define LIBEVORAL_DLL_LOCAL
25
#define LIBEVORAL_TEMPLATE_DLL_IMPORT __declspec(dllimport)
26
#define LIBEVORAL_TEMPLATE_DLL_EXPORT __declspec(dllexport)
27
#else
28
#define LIBEVORAL_DLL_IMPORT __attribute__ ((visibility ("default"
)))
29
#define LIBEVORAL_DLL_EXPORT __attribute__ ((visibility ("default"
)))
30
#define LIBEVORAL_DLL_LOCAL __attribute__ ((visibility ("hidden"
)))
31
#define LIBEVORAL_TEMPLATE_DLL_IMPORT __attribute__ ((visibility ("default"
)))
32
#define LIBEVORAL_TEMPLATE_DLL_EXPORT __attribute__ ((visibility ("default"
)))
33
#endif
34
35
#ifdef LIBEVORAL_STATIC
// libevoral is not a DLL
36
#define LIBEVORAL_API
37
#define LIBEVORAL_LOCAL
38
#else
39
#ifdef LIBEVORAL_DLL_EXPORTS
// defined if we are building the libevoral DLL (instead of using it)
40
#define LIBEVORAL_API LIBEVORAL_DLL_EXPORT
41
#define LIBEVORAL_TEMPLATE_API LIBEVORAL_TEMPLATE_DLL_EXPORT
42
#else
43
#define LIBEVORAL_API LIBEVORAL_DLL_IMPORT
44
#define LIBEVORAL_TEMPLATE_API LIBEVORAL_TEMPLATE_DLL_IMPORT
45
#endif
46
#define LIBEVORAL_LOCAL LIBEVORAL_DLL_LOCAL
47
#endif
48
libs
evoral
evoral
visibility.h
Generated on Wed Dec 25 2024 05:44:57 for Ardour by
1.9.1