 |
Ardour
9.0
|
Go to the documentation of this file.
21 #if defined(COMPILER_MSVC)
22 #define LIBARDOUR_DLL_IMPORT __declspec(dllimport)
23 #define LIBARDOUR_DLL_EXPORT __declspec(dllexport)
24 #define LIBARDOUR_DLL_LOCAL
26 #define LIBARDOUR_DLL_IMPORT __attribute__ ((visibility ("default")))
27 #define LIBARDOUR_DLL_EXPORT __attribute__ ((visibility ("default")))
28 #define LIBARDOUR_DLL_LOCAL __attribute__ ((visibility ("hidden")))
31 #ifdef LIBARDOUR_STATIC
33 #define LIBARDOUR_LOCAL
35 #ifdef LIBARDOUR_DLL_EXPORTS
36 #define LIBARDOUR_API LIBARDOUR_DLL_EXPORT
38 #define LIBARDOUR_API LIBARDOUR_DLL_IMPORT
40 #define LIBARDOUR_LOCAL LIBARDOUR_DLL_LOCAL