pngusr.h 666 B

12345678910111213141516171819202122232425
  1. /* minrdpngconf.h: headers to make a minimal png-read-only library
  2. *
  3. * Copyright (c) 2007, 2010-2011 Glenn Randers-Pehrson
  4. *
  5. * This code is released under the libpng license.
  6. * For conditions of distribution and use, see the disclaimer
  7. * and license in png.h
  8. *
  9. * Derived from pngcrush.h, Copyright 1998-2007, Glenn Randers-Pehrson
  10. */
  11. #ifndef MINRDPNGCONF_H
  12. #define MINRDPNGCONF_H
  13. /* To include pngusr.h set -DPNG_USER_CONFIG in CPPFLAGS */
  14. /* List options to turn off features of the build that do not
  15. * affect the API (so are not recorded in pnglibconf.h)
  16. */
  17. #define PNG_NO_WARNINGS
  18. #define PNG_ALIGN_TYPE PNG_ALIGN_NONE
  19. #endif /* MINRDPNGCONF_H */