Fl_Export.H 995 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * "$Id: Fl_Export.H 8864 2011-07-19 04:49:30Z greg.ercolano $"
  3. *
  4. * WIN32 DLL export .
  5. *
  6. * Copyright 1998-2010 by Bill Spitzak and others.
  7. *
  8. * This library is free software. Distribution and use rights are outlined in
  9. * the file "COPYING" which should have been included with this file. If this
  10. * file is missing or damaged, see the license at:
  11. *
  12. * http://www.fltk.org/COPYING.php
  13. *
  14. * Please report all bugs and problems on the following page:
  15. *
  16. * http://www.fltk.org/str.php
  17. */
  18. #ifndef Fl_Export_H
  19. # define Fl_Export_H
  20. /*
  21. * The following is only used when building DLLs under WIN32...
  22. */
  23. # if defined(FL_DLL)
  24. # ifdef FL_LIBRARY
  25. # define FL_EXPORT __declspec(dllexport)
  26. # else
  27. # define FL_EXPORT __declspec(dllimport)
  28. # endif /* FL_LIBRARY */
  29. # else
  30. # define FL_EXPORT
  31. # endif /* FL_DLL */
  32. #endif /* !Fl_Export_H */
  33. /*
  34. * End of "$Id: Fl_Export.H 8864 2011-07-19 04:49:30Z greg.ercolano $".
  35. */