intprefix.c 644 B

1234567891011121314151617181920212223
  1. /* intprefix.c - generate an unprefixed internal symbol list
  2. *
  3. * Last changed in libpng version 1.6.16 [December 22, 2014]
  4. * Copyright (c) 2013-2014 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. #define PNG_INTERNAL_DATA(type, name, array)\
  11. PNG_DFN "@" name "@"
  12. #define PNG_INTERNAL_FUNCTION(type, name, args, attributes)\
  13. PNG_DFN "@" name "@"
  14. #define PNG_INTERNAL_CALLBACK(type, name, args, attributes)\
  15. PNG_DFN "@" name "@"
  16. #define PNGPREFIX_H /* self generation */
  17. #include "../pngpriv.h"