55 lines
1.6 KiB
C
55 lines
1.6 KiB
C
|
|
|
||
|
|
#ifndef VTKRENDERINGLICOPENGL2_EXPORT_H
|
||
|
|
#define VTKRENDERINGLICOPENGL2_EXPORT_H
|
||
|
|
|
||
|
|
#ifdef VTKRENDERINGLICOPENGL2_STATIC_DEFINE
|
||
|
|
# define VTKRENDERINGLICOPENGL2_EXPORT
|
||
|
|
# define VTKRENDERINGLICOPENGL2_NO_EXPORT
|
||
|
|
#else
|
||
|
|
# ifndef VTKRENDERINGLICOPENGL2_EXPORT
|
||
|
|
# ifdef RenderingLICOpenGL2_EXPORTS
|
||
|
|
/* We are building this library */
|
||
|
|
# define VTKRENDERINGLICOPENGL2_EXPORT __declspec(dllexport)
|
||
|
|
# else
|
||
|
|
/* We are using this library */
|
||
|
|
# define VTKRENDERINGLICOPENGL2_EXPORT __declspec(dllimport)
|
||
|
|
# endif
|
||
|
|
# endif
|
||
|
|
|
||
|
|
# ifndef VTKRENDERINGLICOPENGL2_NO_EXPORT
|
||
|
|
# define VTKRENDERINGLICOPENGL2_NO_EXPORT
|
||
|
|
# endif
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#ifndef VTKRENDERINGLICOPENGL2_DEPRECATED
|
||
|
|
# define VTKRENDERINGLICOPENGL2_DEPRECATED __declspec(deprecated)
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#ifndef VTKRENDERINGLICOPENGL2_DEPRECATED_EXPORT
|
||
|
|
# define VTKRENDERINGLICOPENGL2_DEPRECATED_EXPORT VTKRENDERINGLICOPENGL2_EXPORT VTKRENDERINGLICOPENGL2_DEPRECATED
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#ifndef VTKRENDERINGLICOPENGL2_DEPRECATED_NO_EXPORT
|
||
|
|
# define VTKRENDERINGLICOPENGL2_DEPRECATED_NO_EXPORT VTKRENDERINGLICOPENGL2_NO_EXPORT VTKRENDERINGLICOPENGL2_DEPRECATED
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#if 0 /* DEFINE_NO_DEPRECATED */
|
||
|
|
# ifndef VTKRENDERINGLICOPENGL2_NO_DEPRECATED
|
||
|
|
# define VTKRENDERINGLICOPENGL2_NO_DEPRECATED
|
||
|
|
# endif
|
||
|
|
#endif
|
||
|
|
/* AutoInit dependencies. */
|
||
|
|
#include "vtkRenderingOpenGL2Module.h"
|
||
|
|
|
||
|
|
|
||
|
|
/* AutoInit implementations. */
|
||
|
|
#ifdef vtkRenderingLICOpenGL2_AUTOINIT_INCLUDE
|
||
|
|
#include vtkRenderingLICOpenGL2_AUTOINIT_INCLUDE
|
||
|
|
#endif
|
||
|
|
#ifdef vtkRenderingLICOpenGL2_AUTOINIT
|
||
|
|
#include "vtkAutoInit.h"
|
||
|
|
VTK_MODULE_AUTOINIT(vtkRenderingLICOpenGL2)
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* VTKRENDERINGLICOPENGL2_EXPORT_H */
|