 |
Ardour
8.12
|
Go to the documentation of this file.
20 #ifndef __libwidgets_visibility_h__
21 #define __libwidgets_visibility_h__
23 #if defined(COMPILER_MSVC)
24 #define LIBWIDGETS_DLL_IMPORT __declspec(dllimport)
25 #define LIBWIDGETS_DLL_EXPORT __declspec(dllexport)
26 #define LIBWIDGETS_DLL_LOCAL
28 #define LIBWIDGETS_DLL_IMPORT __attribute__ ((visibility ("default")))
29 #define LIBWIDGETS_DLL_EXPORT __attribute__ ((visibility ("default")))
30 #define LIBWIDGETS_DLL_LOCAL __attribute__ ((visibility ("hidden")))
33 #ifdef LIBWIDGETS_STATIC
34 #define LIBWIDGETS_API
35 #define LIBWIDGETS_LOCAL
37 #ifdef LIBWIDGETS_DLL_EXPORTS
38 #define LIBWIDGETS_API LIBWIDGETS_DLL_EXPORT
40 #define LIBWIDGETS_API LIBWIDGETS_DLL_IMPORT
42 #define LIBWIDGETS_LOCAL LIBWIDGETS_DLL_LOCAL