summaryrefslogtreecommitdiff
path: root/libs/audiographer/audiographer
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-10-17 15:46:16 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-10-17 15:46:16 -0400
commit5ba369918b07a4c0859f0e94537da7b5a11bb49f (patch)
tree4fb78b8a7f8387dfac56a4eec1065288f18d0613 /libs/audiographer/audiographer
parenta2d55d088ad0d3da829fd94151ec9adc2b19cf60 (diff)
add missing file
Diffstat (limited to 'libs/audiographer/audiographer')
-rw-r--r--libs/audiographer/audiographer/visibility.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/libs/audiographer/audiographer/visibility.h b/libs/audiographer/audiographer/visibility.h
new file mode 100644
index 0000000000..8c149f9efd
--- /dev/null
+++ b/libs/audiographer/audiographer/visibility.h
@@ -0,0 +1,56 @@
+/*
+ Copyright (C) 2013 Paul Davis
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#ifndef __libaudiographer_visibility_h__
+#define __libaudiographer_visibility_h__
+
+/* _WIN32 is defined by most compilers targetting Windows, but within the
+ * audiographer source tree, we also define COMPILER_MSVC or COMPILER_MINGW depending
+ * on how a Windows build is built.
+ */
+
+#if defined _WIN32 || defined __CYGWIN__ || defined(COMPILER_MSVC) || defined(COMPILER_MINGW)
+ #define LIBAUDIOGRAPHER_DLL_IMPORT __declspec(dllimport)
+ #define LIBAUDIOGRAPHER_DLL_EXPORT __declspec(dllexport)
+ #define LIBAUDIOGRAPHER_DLL_LOCAL
+#else
+ #if __GNUC__ >= 4
+ #define LIBAUDIOGRAPHER_DLL_IMPORT __attribute__ ((visibility ("default")))
+ #define LIBAUDIOGRAPHER_DLL_EXPORT __attribute__ ((visibility ("default")))
+ #define LIBAUDIOGRAPHER_DLL_LOCAL __attribute__ ((visibility ("hidden")))
+ #else
+ #define LIBAUDIOGRAPHER_DLL_IMPORT
+ #define LIBAUDIOGRAPHER_DLL_EXPORT
+ #define LIBAUDIOGRAPHER_DLL_LOCAL
+ #endif
+#endif
+
+#ifdef LIBAUDIOGRAPHER_DLL // libaudiographer is a DLL
+#ifdef LIBAUDIOGRAPHER_DLL_EXPORTS // defined if we are building the libaudiographer DLL (instead of using it)
+ #define LIBAUDIOGRAPHER_API LIBAUDIOGRAPHER_DLL_EXPORT
+#else
+ #define LIBAUDIOGRAPHER_API LIBAUDIOGRAPHER_DLL_IMPORT
+#endif
+#define LIBAUDIOGRAPHER_LOCAL LIBAUDIOGRAPHER_DLL_LOCAL
+#else /* static lib, not DLL */
+#define LIBAUDIOGRAPHER_API
+#define LIBAUDIOGRAPHER_LOCAL
+#endif
+
+#endif /* __libaudiographer_visibility_h__ */