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
926 B
43 lines
926 B
|
|
#ifndef ZYCORE_EXPORT_H
|
|
#define ZYCORE_EXPORT_H
|
|
|
|
#ifdef ZYCORE_STATIC_DEFINE
|
|
# define ZYCORE_EXPORT
|
|
# define ZYCORE_NO_EXPORT
|
|
#else
|
|
# ifndef ZYCORE_EXPORT
|
|
# ifdef Zycore_EXPORTS
|
|
/* We are building this library */
|
|
# define ZYCORE_EXPORT __declspec(dllexport)
|
|
# else
|
|
/* We are using this library */
|
|
# define ZYCORE_EXPORT __declspec(dllimport)
|
|
# endif
|
|
# endif
|
|
|
|
# ifndef ZYCORE_NO_EXPORT
|
|
# define ZYCORE_NO_EXPORT
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef ZYCORE_DEPRECATED
|
|
# define ZYCORE_DEPRECATED __declspec(deprecated)
|
|
#endif
|
|
|
|
#ifndef ZYCORE_DEPRECATED_EXPORT
|
|
# define ZYCORE_DEPRECATED_EXPORT ZYCORE_EXPORT ZYCORE_DEPRECATED
|
|
#endif
|
|
|
|
#ifndef ZYCORE_DEPRECATED_NO_EXPORT
|
|
# define ZYCORE_DEPRECATED_NO_EXPORT ZYCORE_NO_EXPORT ZYCORE_DEPRECATED
|
|
#endif
|
|
|
|
#if 0 /* DEFINE_NO_DEPRECATED */
|
|
# ifndef ZYCORE_NO_DEPRECATED
|
|
# define ZYCORE_NO_DEPRECATED
|
|
# endif
|
|
#endif
|
|
|
|
#endif /* ZYCORE_EXPORT_H */
|