 |
Ardour
9.0-rc4
|
Go to the documentation of this file.
22 #if defined(COMPILER_MSVC)
23 #define LIBWIDGETS_DLL_IMPORT __declspec(dllimport)
24 #define LIBWIDGETS_DLL_EXPORT __declspec(dllexport)
25 #define LIBWIDGETS_DLL_LOCAL
27 #define LIBWIDGETS_DLL_IMPORT __attribute__ ((visibility ("default")))
28 #define LIBWIDGETS_DLL_EXPORT __attribute__ ((visibility ("default")))
29 #define LIBWIDGETS_DLL_LOCAL __attribute__ ((visibility ("hidden")))
32 #ifdef LIBWIDGETS_STATIC
33 #define LIBWIDGETS_API
34 #define LIBWIDGETS_LOCAL
36 #ifdef LIBWIDGETS_DLL_EXPORTS
37 #define LIBWIDGETS_API LIBWIDGETS_DLL_EXPORT
39 #define LIBWIDGETS_API LIBWIDGETS_DLL_IMPORT
41 #define LIBWIDGETS_LOCAL LIBWIDGETS_DLL_LOCAL