 |
Ardour
9.3
|
Go to the documentation of this file.
21 #if defined(COMPILER_MSVC)
22 #define LIBMIDIPP_DLL_IMPORT __declspec(dllimport)
23 #define LIBMIDIPP_DLL_EXPORT __declspec(dllexport)
24 #define LIBMIDIPP_DLL_LOCAL
26 #define LIBMIDIPP_DLL_IMPORT __attribute__ ((visibility ("default")))
27 #define LIBMIDIPP_DLL_EXPORT __attribute__ ((visibility ("default")))
28 #define LIBMIDIPP_DLL_LOCAL __attribute__ ((visibility ("hidden")))
31 #ifdef LIBMIDIPP_STATIC
33 #define LIBMIDIPP_LOCAL
35 #ifdef LIBMIDIPP_DLL_EXPORTS
36 #define LIBMIDIPP_API LIBMIDIPP_DLL_EXPORT
38 #define LIBMIDIPP_API LIBMIDIPP_DLL_IMPORT
40 #define LIBMIDIPP_LOCAL LIBMIDIPP_DLL_LOCAL