42 lines
958 B
C++
42 lines
958 B
C++
|
|
#ifndef LIBPROCESS_EXPORT_H
|
|
#define LIBPROCESS_EXPORT_H
|
|
|
|
#ifdef LIBPROCESS_STATIC_DEFINE
|
|
# define LIBPROCESS_EXPORT
|
|
# define LIBPROCESS_NO_EXPORT
|
|
#else
|
|
# ifndef LIBPROCESS_EXPORT
|
|
# ifdef libprocess_EXPORTS
|
|
/* We are building this library */
|
|
# define LIBPROCESS_EXPORT
|
|
# else
|
|
/* We are using this library */
|
|
# define LIBPROCESS_EXPORT
|
|
# endif
|
|
# endif
|
|
|
|
# ifndef LIBPROCESS_NO_EXPORT
|
|
# define LIBPROCESS_NO_EXPORT
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef LIBPROCESS_DEPRECATED
|
|
# define LIBPROCESS_DEPRECATED
|
|
#endif
|
|
|
|
#ifndef LIBPROCESS_DEPRECATED_EXPORT
|
|
# define LIBPROCESS_DEPRECATED_EXPORT LIBPROCESS_EXPORT LIBPROCESS_DEPRECATED
|
|
#endif
|
|
|
|
#ifndef LIBPROCESS_DEPRECATED_NO_EXPORT
|
|
# define LIBPROCESS_DEPRECATED_NO_EXPORT LIBPROCESS_NO_EXPORT LIBPROCESS_DEPRECATED
|
|
#endif
|
|
|
|
#if 0 /* DEFINE_NO_DEPRECATED */
|
|
# ifndef LIBPROCESS_NO_DEPRECATED
|
|
# define LIBPROCESS_NO_DEPRECATED
|
|
# endif
|
|
#endif
|
|
|
|
#endif /* LIBPROCESS_EXPORT_H */
|