 |
Ardour
9.0-rc4
|
Go to the documentation of this file.
22 #if defined(COMPILER_MSVC)
23 #define LIBWAVEVIEW_DLL_IMPORT __declspec(dllimport)
24 #define LIBWAVEVIEW_DLL_EXPORT __declspec(dllexport)
25 #define LIBWAVEVIEW_DLL_LOCAL
27 #define LIBWAVEVIEW_DLL_IMPORT __attribute__ ((visibility ("default")))
28 #define LIBWAVEVIEW_DLL_EXPORT __attribute__ ((visibility ("default")))
29 #define LIBWAVEVIEW_DLL_LOCAL __attribute__ ((visibility ("hidden")))
32 #ifdef LIBWAVEVIEW_STATIC
33 #define LIBWAVEVIEW_API
34 #define LIBWAVEVIEW_LOCAL
36 #ifdef LIBWAVEVIEW_DLL_EXPORTS
37 #define LIBWAVEVIEW_API LIBWAVEVIEW_DLL_EXPORT
39 #define LIBWAVEVIEW_API LIBWAVEVIEW_DLL_IMPORT
41 #define LIBWAVEVIEW_LOCAL LIBWAVEVIEW_DLL_LOCAL