summaryrefslogtreecommitdiff
path: root/libs/temporal/temporal/visibility.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2017-09-24 10:48:00 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2017-09-24 10:48:00 -0400
commit48d402c960e13556e8608a36d00d0338c733b5e4 (patch)
tree047ef913480f7cdc1b6648adb6e649a387a8e355 /libs/temporal/temporal/visibility.h
parentb62c305f200351b2cbae70de8327fa235ff515dc (diff)
part two of initial libtemporal creation
Diffstat (limited to 'libs/temporal/temporal/visibility.h')
-rw-r--r--libs/temporal/temporal/visibility.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/libs/temporal/temporal/visibility.h b/libs/temporal/temporal/visibility.h
index 8de8cb7ffa..6c9dc97946 100644
--- a/libs/temporal/temporal/visibility.h
+++ b/libs/temporal/temporal/visibility.h
@@ -21,20 +21,20 @@
#define __libtimecode_visibility_h__
#if defined(COMPILER_MSVC)
- #define LIBTIMECODE_DLL_IMPORT __declspec(dllimport)
- #define LIBTIMECODE_DLL_EXPORT __declspec(dllexport)
- #define LIBTIMECODE_DLL_LOCAL
+ #define LIBTEMPORAL_DLL_IMPORT __declspec(dllimport)
+ #define LIBTEMPORAL_DLL_EXPORT __declspec(dllexport)
+ #define LIBTEMPORAL_DLL_LOCAL
#else
- #define LIBTIMECODE_DLL_IMPORT __attribute__ ((visibility ("default")))
- #define LIBTIMECODE_DLL_EXPORT __attribute__ ((visibility ("default")))
- #define LIBTIMECODE_DLL_LOCAL __attribute__ ((visibility ("hidden")))
+ #define LIBTEMPORAL_DLL_IMPORT __attribute__ ((visibility ("default")))
+ #define LIBTEMPORAL_DLL_EXPORT __attribute__ ((visibility ("default")))
+ #define LIBTEMPORAL_DLL_LOCAL __attribute__ ((visibility ("hidden")))
#endif
-#ifdef LIBTIMECODE_DLL_EXPORTS // defined if we are building the libtimecode DLL (instead of using it)
- #define LIBTIMECODE_API LIBTIMECODE_DLL_EXPORT
+#ifdef LIBTEMPORAL_DLL_EXPORTS // defined if we are building the libtimecode DLL (instead of using it)
+ #define LIBTEMPORAL_API LIBTEMPORAL_DLL_EXPORT
#else
- #define LIBTIMECODE_API LIBTIMECODE_DLL_IMPORT
+ #define LIBTEMPORAL_API LIBTEMPORAL_DLL_IMPORT
#endif
-#define LIBTIMECODE_LOCAL LIBTIMECODE_DLL_LOCAL
+#define LIBTEMPORAL_LOCAL LIBTEMPORAL_DLL_LOCAL
#endif /* __libtimecode_visibility_h__ */