Export 1022 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #ifndef OSGQOPENGL_EXPORT_H
  2. #define OSGQOPENGL_EXPORT_H
  3. #ifdef OSGQOPENGL_STATIC_DEFINE
  4. # define OSGQOPENGL_EXPORT
  5. # define OSGQOPENGL_NO_EXPORT
  6. #else
  7. # ifndef OSGQOPENGL_EXPORT
  8. # ifdef osgQOpenGL_EXPORTS
  9. /* We are building this library */
  10. # define OSGQOPENGL_EXPORT __declspec(dllexport)
  11. # else
  12. /* We are using this library */
  13. # define OSGQOPENGL_EXPORT __declspec(dllimport)
  14. # endif
  15. # endif
  16. # ifndef OSGQOPENGL_NO_EXPORT
  17. # define OSGQOPENGL_NO_EXPORT
  18. # endif
  19. #endif
  20. #ifndef OSGQOPENGL_DEPRECATED
  21. # define OSGQOPENGL_DEPRECATED __declspec(deprecated)
  22. #endif
  23. #ifndef OSGQOPENGL_DEPRECATED_EXPORT
  24. # define OSGQOPENGL_DEPRECATED_EXPORT OSGQOPENGL_EXPORT OSGQOPENGL_DEPRECATED
  25. #endif
  26. #ifndef OSGQOPENGL_DEPRECATED_NO_EXPORT
  27. # define OSGQOPENGL_DEPRECATED_NO_EXPORT OSGQOPENGL_NO_EXPORT OSGQOPENGL_DEPRECATED
  28. #endif
  29. #if 0 /* DEFINE_NO_DEPRECATED */
  30. # ifndef OSGQOPENGL_NO_DEPRECATED
  31. # define OSGQOPENGL_NO_DEPRECATED
  32. # endif
  33. #endif
  34. #endif /* OSGQOPENGL_EXPORT_H */