You cannot 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
1.1 KiB
C
43 lines
1.1 KiB
C
|
|
#ifndef VTKPARALLELCORE_EXPORT_H
|
|
#define VTKPARALLELCORE_EXPORT_H
|
|
|
|
#ifdef VTKPARALLELCORE_STATIC_DEFINE
|
|
# define VTKPARALLELCORE_EXPORT
|
|
# define VTKPARALLELCORE_NO_EXPORT
|
|
#else
|
|
# ifndef VTKPARALLELCORE_EXPORT
|
|
# ifdef ParallelCore_EXPORTS
|
|
/* We are building this library */
|
|
# define VTKPARALLELCORE_EXPORT __declspec(dllexport)
|
|
# else
|
|
/* We are using this library */
|
|
# define VTKPARALLELCORE_EXPORT __declspec(dllimport)
|
|
# endif
|
|
# endif
|
|
|
|
# ifndef VTKPARALLELCORE_NO_EXPORT
|
|
# define VTKPARALLELCORE_NO_EXPORT
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef VTKPARALLELCORE_DEPRECATED
|
|
# define VTKPARALLELCORE_DEPRECATED __declspec(deprecated)
|
|
#endif
|
|
|
|
#ifndef VTKPARALLELCORE_DEPRECATED_EXPORT
|
|
# define VTKPARALLELCORE_DEPRECATED_EXPORT VTKPARALLELCORE_EXPORT VTKPARALLELCORE_DEPRECATED
|
|
#endif
|
|
|
|
#ifndef VTKPARALLELCORE_DEPRECATED_NO_EXPORT
|
|
# define VTKPARALLELCORE_DEPRECATED_NO_EXPORT VTKPARALLELCORE_NO_EXPORT VTKPARALLELCORE_DEPRECATED
|
|
#endif
|
|
|
|
#if 0 /* DEFINE_NO_DEPRECATED */
|
|
# ifndef VTKPARALLELCORE_NO_DEPRECATED
|
|
# define VTKPARALLELCORE_NO_DEPRECATED
|
|
# endif
|
|
#endif
|
|
|
|
#endif /* VTKPARALLELCORE_EXPORT_H */
|