You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.5 KiB
43 lines
1.5 KiB
|
|
#ifndef AIWARE_RUNTIME_UTILS_LIB_CPP_EXPORT_H
|
|
#define AIWARE_RUNTIME_UTILS_LIB_CPP_EXPORT_H
|
|
|
|
#ifdef AIWARE_RUNTIME_UTILS_LIB_CPP_STATIC_DEFINE
|
|
# define AIWARE_RUNTIME_UTILS_LIB_CPP_EXPORT
|
|
# define AIWARE_RUNTIME_UTILS_LIB_CPP_NO_EXPORT
|
|
#else
|
|
# ifndef AIWARE_RUNTIME_UTILS_LIB_CPP_EXPORT
|
|
# ifdef aiware_runtime_utils_lib_cpp_EXPORTS
|
|
/* We are building this library */
|
|
# define AIWARE_RUNTIME_UTILS_LIB_CPP_EXPORT __attribute__((visibility("default")))
|
|
# else
|
|
/* We are using this library */
|
|
# define AIWARE_RUNTIME_UTILS_LIB_CPP_EXPORT __attribute__((visibility("default")))
|
|
# endif
|
|
# endif
|
|
|
|
# ifndef AIWARE_RUNTIME_UTILS_LIB_CPP_NO_EXPORT
|
|
# define AIWARE_RUNTIME_UTILS_LIB_CPP_NO_EXPORT __attribute__((visibility("hidden")))
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef AIWARE_RUNTIME_UTILS_LIB_CPP_DEPRECATED
|
|
# define AIWARE_RUNTIME_UTILS_LIB_CPP_DEPRECATED __attribute__ ((__deprecated__))
|
|
#endif
|
|
|
|
#ifndef AIWARE_RUNTIME_UTILS_LIB_CPP_DEPRECATED_EXPORT
|
|
# define AIWARE_RUNTIME_UTILS_LIB_CPP_DEPRECATED_EXPORT AIWARE_RUNTIME_UTILS_LIB_CPP_EXPORT AIWARE_RUNTIME_UTILS_LIB_CPP_DEPRECATED
|
|
#endif
|
|
|
|
#ifndef AIWARE_RUNTIME_UTILS_LIB_CPP_DEPRECATED_NO_EXPORT
|
|
# define AIWARE_RUNTIME_UTILS_LIB_CPP_DEPRECATED_NO_EXPORT AIWARE_RUNTIME_UTILS_LIB_CPP_NO_EXPORT AIWARE_RUNTIME_UTILS_LIB_CPP_DEPRECATED
|
|
#endif
|
|
|
|
#if 0 /* DEFINE_NO_DEPRECATED */
|
|
# ifndef AIWARE_RUNTIME_UTILS_LIB_CPP_NO_DEPRECATED
|
|
# define AIWARE_RUNTIME_UTILS_LIB_CPP_NO_DEPRECATED
|
|
# endif
|
|
#endif
|
|
|
|
#endif /* AIWARE_RUNTIME_UTILS_LIB_CPP_EXPORT_H */
|