def.dfn 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* def.dfn - define format of libpng.def
  2. *
  3. * Last changed in libpng version 1.5.7 [December 15, 2011]
  4. * Copyright (c) 2010-2011 Glenn Randers-Pehrson
  5. *
  6. * This code is released under the libpng license.
  7. * For conditions of distribution and use, see the disclaimer
  8. * and license in png.h
  9. */
  10. /* These macros exist to make the header and trailer shorter below: */
  11. #define S PNG_DEFN_MAGIC
  12. #define E PNG_DEFN_END
  13. /* Write the export file header: */
  14. S-;---------------------------------------------------------------E
  15. S-; LIBPNG module definition file for OS/2-E
  16. S-;---------------------------------------------------------------E
  17. S--E
  18. S-; If you give the library an explicit name one or other files-E
  19. S-; may need modifying to support the new name on one or more-E
  20. S-; systems.-E
  21. S-LIBRARY-E
  22. S-OS2 DESCRIPTION "PNG image compression library"-E
  23. S-OS2 CODE PRELOAD MOVEABLE DISCARDABLE-E
  24. S--E
  25. S-EXPORTS-E
  26. S-;Version 1.5.0beta58-E
  27. /* NOTE: PNG_JOIN is interpreted by the calling script as a signal to
  28. * join the two things on either side, so we can do symbol
  29. * substitution within the name, regular C ## joins the pp-tokens,
  30. * not their final values.
  31. */
  32. #define PNG_EXPORTA(ordinal, type, name, args, attributes)\
  33. PNG_DEFN_MAGIC- SYMBOL_PREFIX PNG_JOIN name-PNG_DEFN_END
  34. #include "../png.h"