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.
nmWTAI-Platform/3rd/VTK7.1/include/vtkParallelCoreModule.h

38 lines
973 B
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 vtkParallelCore_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)
# define VTKPARALLELCORE_DEPRECATED_EXPORT VTKPARALLELCORE_EXPORT __declspec(deprecated)
# define VTKPARALLELCORE_DEPRECATED_NO_EXPORT VTKPARALLELCORE_NO_EXPORT __declspec(deprecated)
#endif
#define DEFINE_NO_DEPRECATED 0
#if DEFINE_NO_DEPRECATED
# define VTKPARALLELCORE_NO_DEPRECATED
#endif
#endif