 |
Ardour
8.12
|
Go to the documentation of this file.
19 #ifndef __libaudiographer_visibility_h__
20 #define __libaudiographer_visibility_h__
22 #if defined(COMPILER_MSVC)
23 #define LIBAUDIOGRAPHER_DLL_IMPORT __declspec(dllimport)
24 #define LIBAUDIOGRAPHER_DLL_EXPORT __declspec(dllexport)
25 #define LIBAUDIOGRAPHER_DLL_LOCAL
27 #define LIBAUDIOGRAPHER_DLL_IMPORT __attribute__ ((visibility ("default")))
28 #define LIBAUDIOGRAPHER_DLL_EXPORT __attribute__ ((visibility ("default")))
29 #define LIBAUDIOGRAPHER_DLL_LOCAL __attribute__ ((visibility ("hidden")))
32 #ifdef LIBAUDIOGRAPHER_STATIC
33 #define LIBAUDIOGRAPHER_API
34 #define LIBAUDIOGRAPHER_LOCAL
36 #ifdef LIBAUDIOGRAPHER_DLL_EXPORTS
37 #define LIBAUDIOGRAPHER_API LIBAUDIOGRAPHER_DLL_EXPORT
39 #define LIBAUDIOGRAPHER_API LIBAUDIOGRAPHER_DLL_IMPORT
41 #define LIBAUDIOGRAPHER_LOCAL LIBAUDIOGRAPHER_DLL_LOCAL