flu_export.h 808 B

123456789101112131415161718192021222324252627
  1. // $Id: flu_export.h,v 1.2 2003/08/20 16:29:44 jbryan Exp $
  2. /***************************************************************
  3. * FLU - FLTK Utility Widgets
  4. * Copyright (C) 2002 Ohio Supercomputer Center, Ohio State University
  5. *
  6. * This file and its content is protected by a software license.
  7. * You should have received a copy of this license with this file.
  8. * If not, please contact the Ohio Supercomputer Center immediately:
  9. * Attn: Jason Bryan Re: FLU 1224 Kinnear Rd, Columbus, Ohio 43212
  10. *
  11. ***************************************************************/
  12. #ifndef _FLU_EXPORT_H
  13. #define _FLU_EXPORT_H
  14. #ifdef FLU_DLL
  15. #ifdef FLU_LIBRARY
  16. #define FLU_EXPORT __declspec(dllexport)
  17. #else
  18. #define FLU_EXPORT __declspec(dllimport)
  19. #endif
  20. #else
  21. #define FLU_EXPORT
  22. #endif
  23. #endif