 |
Ardour
8.12
|
Go to the documentation of this file.
19 #ifndef __libardour_libardour_visibility_h__
20 #define __libardour_libardour_visibility_h__
22 #if defined(COMPILER_MSVC)
23 #define LIBARDOUR_DLL_IMPORT __declspec(dllimport)
24 #define LIBARDOUR_DLL_EXPORT __declspec(dllexport)
25 #define LIBARDOUR_DLL_LOCAL
27 #define LIBARDOUR_DLL_IMPORT __attribute__ ((visibility ("default")))
28 #define LIBARDOUR_DLL_EXPORT __attribute__ ((visibility ("default")))
29 #define LIBARDOUR_DLL_LOCAL __attribute__ ((visibility ("hidden")))
32 #ifdef LIBARDOUR_STATIC
34 #define LIBARDOUR_LOCAL
36 #ifdef LIBARDOUR_DLL_EXPORTS
37 #define LIBARDOUR_API LIBARDOUR_DLL_EXPORT
39 #define LIBARDOUR_API LIBARDOUR_DLL_IMPORT
41 #define LIBARDOUR_LOCAL LIBARDOUR_DLL_LOCAL