Mercurial > fife-parpg
comparison ext/libpng-1.2.29/contrib/pngminim/encoder/pngusr.h @ 89:fa33cda75471
* Reverting back to 2543 as requested by sleek
author | mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Sat, 19 Jul 2008 11:38:52 +0000 |
parents | 4a0efb7baf70 |
children |
comparison
equal
deleted
inserted
replaced
88:1c2842ebe393 | 89:fa33cda75471 |
---|---|
1 /* minwrpngconf.h: headers to make a minimal png-write-only library | |
2 * For conditions of distribution and use, see copyright notice in png.h | |
3 * Copyright (c) 2007 Glenn Randers-Pehrson | |
4 * Derived from pngcrush.h, Copyright 1998-2007, Glenn Randers-Pehrson | |
5 */ | |
6 | |
7 #ifndef MINWRPNGCONF_H | |
8 #define MINWRPNGCONF_H | |
9 | |
10 #define PNG_NO_GLOBAL_ARRAYS | |
11 | |
12 #define PNG_NO_READ_SUPPORTED | |
13 | |
14 #define PNG_NO_WARNINGS | |
15 #define png_warning(s1,s2) "" | |
16 #define png_chunk_warning(s1,s2) "" | |
17 #define PNG_NO_ERROR_TEXT | |
18 #define png_error(s1,s2) png_err(s1) | |
19 #define png_chunk_error(s1,s2) png_err(s1) | |
20 | |
21 #define PNG_NO_WRITE_BACKGROUND | |
22 #define PNG_NO_WRITE_GAMMA | |
23 #define PNG_NO_WRITE_DITHER | |
24 #define PNG_NO_WRITE_INVERT | |
25 #define PNG_NO_WRITE_SHIFT | |
26 #define PNG_NO_WRITE_PACK | |
27 #define PNG_NO_WRITE_PACKSWAP | |
28 #define PNG_NO_WRITE_FILLER | |
29 #define PNG_NO_WRITE_SWAP_ALPHA | |
30 #define PNG_NO_WRITE_INVERT_ALPHA | |
31 #define PNG_NO_WRITE_RGB_TO_GRAY | |
32 #define PNG_NO_WRITE_USER_TRANSFORM | |
33 #define PNG_NO_WRITE_bKGD | |
34 #define PNG_NO_WRITE_cHRM | |
35 #define PNG_NO_WRITE_gAMA | |
36 #define PNG_NO_WRITE_sRGB | |
37 #define PNG_NO_WRITE_hIST | |
38 #define PNG_NO_WRITE_iCCP | |
39 #define PNG_NO_WRITE_oFFs | |
40 #define PNG_NO_WRITE_pCAL | |
41 #define PNG_NO_WRITE_pHYs | |
42 #define PNG_NO_WRITE_sBIT | |
43 #define PNG_NO_WRITE_sCAL | |
44 #define PNG_NO_WRITE_sPLT | |
45 #define PNG_NO_WRITE_TEXT | |
46 #define PNG_NO_WRITE_tIME | |
47 #define PNG_NO_WRITE_UNKNOWN_CHUNKS | |
48 #define PNG_NO_WRITE_USER_CHUNKS | |
49 #define PNG_NO_WRITE_EMPTY_PLTE | |
50 #define PNG_NO_WRITE_OPT_PLTE | |
51 #define PNG_NO_WRITE_FILTER | |
52 #define PNG_NO_WRITE_WEIGHTED_FILTER | |
53 #define PNG_NO_WRITE_INTERLACING_SUPPORTED | |
54 | |
55 #define PNG_NO_INFO_IMAGE | |
56 #define PNG_NO_USER_MEM | |
57 #define PNG_NO_FIXED_POINT_SUPPORTED | |
58 #define PNG_NO_MNG_FEATURES | |
59 #define PNG_NO_USER_TRANSFORM_PTR | |
60 #define PNG_NO_HANDLE_AS_UNKNOWN | |
61 #define PNG_NO_CONSOLE_IO | |
62 #define PNG_NO_ZALLOC_ZERO | |
63 #define PNG_NO_ERROR_NUMBERS | |
64 #define PNG_NO_EASY_ACCESS | |
65 | |
66 #endif /* MINWRPNGCONF_H */ |