44 lines
964 B
C
44 lines
964 B
C
|
|
||
|
#ifndef DROGON_EXPORT_H
|
||
|
#define DROGON_EXPORT_H
|
||
|
|
||
|
#ifdef DROGON_STATIC_DEFINE
|
||
|
# define DROGON_EXPORT
|
||
|
# define DROGON_NO_EXPORT
|
||
|
#else
|
||
|
# ifndef DROGON_EXPORT
|
||
|
# ifdef drogon_EXPORTS
|
||
|
/* We are building this library */
|
||
|
# define DROGON_EXPORT
|
||
|
# else
|
||
|
/* We are using this library */
|
||
|
# define DROGON_EXPORT
|
||
|
# endif
|
||
|
# endif
|
||
|
|
||
|
# ifndef DROGON_NO_EXPORT
|
||
|
# define DROGON_NO_EXPORT
|
||
|
# endif
|
||
|
#endif
|
||
|
|
||
|
#ifndef DROGON_DEPRECATED
|
||
|
# define DROGON_DEPRECATED __attribute__ ((__deprecated__))
|
||
|
#endif
|
||
|
|
||
|
#ifndef DROGON_DEPRECATED_EXPORT
|
||
|
# define DROGON_DEPRECATED_EXPORT DROGON_EXPORT DROGON_DEPRECATED
|
||
|
#endif
|
||
|
|
||
|
#ifndef DROGON_DEPRECATED_NO_EXPORT
|
||
|
# define DROGON_DEPRECATED_NO_EXPORT DROGON_NO_EXPORT DROGON_DEPRECATED
|
||
|
#endif
|
||
|
|
||
|
/* NOLINTNEXTLINE(readability-avoid-unconditional-preprocessor-if) */
|
||
|
#if 0 /* DEFINE_NO_DEPRECATED */
|
||
|
# ifndef DROGON_NO_DEPRECATED
|
||
|
# define DROGON_NO_DEPRECATED
|
||
|
# endif
|
||
|
#endif
|
||
|
|
||
|
#endif /* DROGON_EXPORT_H */
|