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.3 KiB
C
43 lines
1.3 KiB
C
|
|
#ifndef VTKRENDERINGSCENEGRAPH_EXPORT_H
|
|
#define VTKRENDERINGSCENEGRAPH_EXPORT_H
|
|
|
|
#ifdef VTKRENDERINGSCENEGRAPH_STATIC_DEFINE
|
|
# define VTKRENDERINGSCENEGRAPH_EXPORT
|
|
# define VTKRENDERINGSCENEGRAPH_NO_EXPORT
|
|
#else
|
|
# ifndef VTKRENDERINGSCENEGRAPH_EXPORT
|
|
# ifdef RenderingSceneGraph_EXPORTS
|
|
/* We are building this library */
|
|
# define VTKRENDERINGSCENEGRAPH_EXPORT __declspec(dllexport)
|
|
# else
|
|
/* We are using this library */
|
|
# define VTKRENDERINGSCENEGRAPH_EXPORT __declspec(dllimport)
|
|
# endif
|
|
# endif
|
|
|
|
# ifndef VTKRENDERINGSCENEGRAPH_NO_EXPORT
|
|
# define VTKRENDERINGSCENEGRAPH_NO_EXPORT
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef VTKRENDERINGSCENEGRAPH_DEPRECATED
|
|
# define VTKRENDERINGSCENEGRAPH_DEPRECATED __declspec(deprecated)
|
|
#endif
|
|
|
|
#ifndef VTKRENDERINGSCENEGRAPH_DEPRECATED_EXPORT
|
|
# define VTKRENDERINGSCENEGRAPH_DEPRECATED_EXPORT VTKRENDERINGSCENEGRAPH_EXPORT VTKRENDERINGSCENEGRAPH_DEPRECATED
|
|
#endif
|
|
|
|
#ifndef VTKRENDERINGSCENEGRAPH_DEPRECATED_NO_EXPORT
|
|
# define VTKRENDERINGSCENEGRAPH_DEPRECATED_NO_EXPORT VTKRENDERINGSCENEGRAPH_NO_EXPORT VTKRENDERINGSCENEGRAPH_DEPRECATED
|
|
#endif
|
|
|
|
#if 0 /* DEFINE_NO_DEPRECATED */
|
|
# ifndef VTKRENDERINGSCENEGRAPH_NO_DEPRECATED
|
|
# define VTKRENDERINGSCENEGRAPH_NO_DEPRECATED
|
|
# endif
|
|
#endif
|
|
|
|
#endif /* VTKRENDERINGSCENEGRAPH_EXPORT_H */
|