pngusr.h 873 字节
Newer Older
1
/* minwrpngconf.h: headers to make a minimal png-write-only library
2
 *
3
 * Copyright (c) 2007, 2010 Glenn Randers-Pehrson
4
 *
5 6
 * This code is released under the libpng license.
 * For conditions of distribution and use, see the disclaimer
7
 * and license in png.h
8
 *
9 10 11 12 13 14
 * Derived from pngcrush.h, Copyright 1998-2007, Glenn Randers-Pehrson
 */

#ifndef MINWRPNGCONF_H
#define MINWRPNGCONF_H

15 16 17 18 19 20 21
/* If pngusr.h is included during the build the following must
 * be defined either here or in the .dfa file (pngusr.dfa in
 * this case).  To include pngusr.h set -DPNG_USER_CONFIG in
 * CPPFLAGS
 */
#define PNG_USER_PRIVATEBUILD "libpng minimal conformant PNG encoder"
#define PNG_USER_DLLFNAME_POSTFIX "me"
22

23 24 25
/* List options to turn off features of the build that do not
 * affect the API (so are not recorded in pnglibconf.h)
 */
26 27 28
#define PNG_NO_WARNINGS

#endif /* MINWRPNGCONF_H */