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.
48 lines
1.2 KiB
C
48 lines
1.2 KiB
C
|
3 weeks ago
|
|
||
|
|
#ifndef VTKRENDERINGLIC_EXPORT_H
|
||
|
|
#define VTKRENDERINGLIC_EXPORT_H
|
||
|
|
|
||
|
|
#ifdef VTKRENDERINGLIC_STATIC_DEFINE
|
||
|
|
# define VTKRENDERINGLIC_EXPORT
|
||
|
|
# define VTKRENDERINGLIC_NO_EXPORT
|
||
|
|
#else
|
||
|
|
# ifndef VTKRENDERINGLIC_EXPORT
|
||
|
|
# ifdef vtkRenderingLIC_EXPORTS
|
||
|
|
/* We are building this library */
|
||
|
|
# define VTKRENDERINGLIC_EXPORT __declspec(dllexport)
|
||
|
|
# else
|
||
|
|
/* We are using this library */
|
||
|
|
# define VTKRENDERINGLIC_EXPORT __declspec(dllimport)
|
||
|
|
# endif
|
||
|
|
# endif
|
||
|
|
|
||
|
|
# ifndef VTKRENDERINGLIC_NO_EXPORT
|
||
|
|
# define VTKRENDERINGLIC_NO_EXPORT
|
||
|
|
# endif
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#ifndef VTKRENDERINGLIC_DEPRECATED
|
||
|
|
# define VTKRENDERINGLIC_DEPRECATED __declspec(deprecated)
|
||
|
|
# define VTKRENDERINGLIC_DEPRECATED_EXPORT VTKRENDERINGLIC_EXPORT __declspec(deprecated)
|
||
|
|
# define VTKRENDERINGLIC_DEPRECATED_NO_EXPORT VTKRENDERINGLIC_NO_EXPORT __declspec(deprecated)
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#define DEFINE_NO_DEPRECATED 0
|
||
|
|
#if DEFINE_NO_DEPRECATED
|
||
|
|
# define VTKRENDERINGLIC_NO_DEPRECATED
|
||
|
|
#endif
|
||
|
|
|
||
|
|
/* AutoInit dependencies. */
|
||
|
|
#include "vtkRenderingOpenGLModule.h"
|
||
|
|
|
||
|
|
/* AutoInit implementations. */
|
||
|
|
#if defined(vtkRenderingLIC_INCLUDE)
|
||
|
|
# include vtkRenderingLIC_INCLUDE
|
||
|
|
#endif
|
||
|
|
#if defined(vtkRenderingLIC_AUTOINIT)
|
||
|
|
# include "vtkAutoInit.h"
|
||
|
|
VTK_AUTOINIT(vtkRenderingLIC)
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|