Spaces:
Build error
Build error
File size: 956 Bytes
f8c5b0d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
#ifndef UTILS_EXPORT_H
#define UTILS_EXPORT_H
#ifdef OPENCLUTILS_STATIC_DEFINE
# define UTILS_EXPORT
# define OPENCLUTILS_NO_EXPORT
#else
# ifndef UTILS_EXPORT
# ifdef OpenCLUtils_EXPORTS
/* We are building this library */
# define UTILS_EXPORT
# else
/* We are using this library */
# define UTILS_EXPORT
# endif
# endif
# ifndef OPENCLUTILS_NO_EXPORT
# define OPENCLUTILS_NO_EXPORT
# endif
#endif
#ifndef OPENCLUTILS_DEPRECATED
# define OPENCLUTILS_DEPRECATED __declspec(deprecated)
#endif
#ifndef OPENCLUTILS_DEPRECATED_EXPORT
# define OPENCLUTILS_DEPRECATED_EXPORT UTILS_EXPORT OPENCLUTILS_DEPRECATED
#endif
#ifndef OPENCLUTILS_DEPRECATED_NO_EXPORT
# define OPENCLUTILS_DEPRECATED_NO_EXPORT OPENCLUTILS_NO_EXPORT OPENCLUTILS_DEPRECATED
#endif
#if 0 /* DEFINE_NO_DEPRECATED */
# ifndef OPENCLUTILS_NO_DEPRECATED
# define OPENCLUTILS_NO_DEPRECATED
# endif
#endif
#endif /* UTILS_EXPORT_H */
|