Initial version

This commit is contained in:
Alexander Kobjolke 2022-02-26 00:23:43 +01:00
commit 04b878f078
28 changed files with 1771 additions and 0 deletions

View file

@ -0,0 +1,42 @@
#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 */