2014-03-15 16:59:03 +00:00
|
|
|
/* minrdpngconf.h: headers to make a minimal png-read-only library
|
|
|
|
*
|
2019-10-30 09:59:02 +00:00
|
|
|
* Copyright (c) 2007, 2010-2013 Glenn Randers-Pehrson
|
2014-03-15 16:59:03 +00:00
|
|
|
*
|
|
|
|
* This code is released under the libpng license.
|
|
|
|
* For conditions of distribution and use, see the disclaimer
|
|
|
|
* and license in png.h
|
|
|
|
*
|
|
|
|
* Derived from pngcrush.h, Copyright 1998-2007, Glenn Randers-Pehrson
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MINRDPNGCONF_H
|
|
|
|
#define MINRDPNGCONF_H
|
|
|
|
|
2019-10-30 09:59:02 +00:00
|
|
|
/* To include pngusr.h set -DPNG_USER_CONFIG in CPPFLAGS */
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2019-10-30 09:59:02 +00:00
|
|
|
/* List options to turn off features of the build that do not
|
|
|
|
* affect the API (so are not recorded in pnglibconf.h)
|
|
|
|
*/
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2019-10-30 09:59:02 +00:00
|
|
|
#define PNG_ALIGN_TYPE PNG_ALIGN_NONE
|
2014-03-15 16:59:03 +00:00
|
|
|
|
|
|
|
#endif /* MINRDPNGCONF_H */
|