OLD | NEW |
1 /* png.h - header file for PNG reference library | 1 /* png.h - header file for PNG reference library |
2 * | 2 * |
3 * libpng version 1.2.43 - February 25, 2010 | 3 * libpng version 1.2.43 - February 25, 2010 |
4 * Copyright (c) 1998-2010 Glenn Randers-Pehrson | 4 * Copyright (c) 1998-2010 Glenn Randers-Pehrson |
5 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) | 5 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) |
6 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) | 6 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) |
7 * | 7 * |
8 * This code is released under the libpng license (See LICENSE, below) | 8 * This code is released under the libpng license (See LICENSE, below) |
9 * | 9 * |
10 * Authors and maintainers: | 10 * Authors and maintainers: |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 * 1.2.41 13 10241 12.so.0.41[.0] | 252 * 1.2.41 13 10241 12.so.0.41[.0] |
253 * 1.2.42beta01-02 13 10242 12.so.0.42[.0] | 253 * 1.2.42beta01-02 13 10242 12.so.0.42[.0] |
254 * 1.2.42rc01-05 13 10242 12.so.0.42[.0] | 254 * 1.2.42rc01-05 13 10242 12.so.0.42[.0] |
255 * 1.0.52 10 10052 10.so.0.52[.0] | 255 * 1.0.52 10 10052 10.so.0.52[.0] |
256 * 1.2.42 13 10242 12.so.0.42[.0] | 256 * 1.2.42 13 10242 12.so.0.42[.0] |
257 * 1.2.43beta01-05 13 10243 12.so.0.43[.0] | 257 * 1.2.43beta01-05 13 10243 12.so.0.43[.0] |
258 * 1.0.53rc01-02 10 10053 10.so.0.53[.0] | 258 * 1.0.53rc01-02 10 10053 10.so.0.53[.0] |
259 * 1.2.43rc01-02 13 10243 12.so.0.43[.0] | 259 * 1.2.43rc01-02 13 10243 12.so.0.43[.0] |
260 * 1.0.53 10 10053 10.so.0.53[.0] | 260 * 1.0.53 10 10053 10.so.0.53[.0] |
261 * 1.2.43 13 10243 12.so.0.43[.0] | 261 * 1.2.43 13 10243 12.so.0.43[.0] |
| 262 * 1.2.44beta01-03 13 10244 12.so.0.44[.0] |
| 263 * 1.2.44rc01-03 13 10244 12.so.0.44[.0] |
| 264 * 1.2.44 13 10244 12.so.0.44[.0] |
262 * | 265 * |
263 * Henceforth the source version will match the shared-library major | 266 * Henceforth the source version will match the shared-library major |
264 * and minor numbers; the shared-library major version number will be | 267 * and minor numbers; the shared-library major version number will be |
265 * used for changes in backward compatibility, as it is intended. The | 268 * used for changes in backward compatibility, as it is intended. The |
266 * PNG_LIBPNG_VER macro, which is not used within libpng but is available | 269 * PNG_LIBPNG_VER macro, which is not used within libpng but is available |
267 * for applications, is an unsigned integer of the form xyyzz corresponding | 270 * for applications, is an unsigned integer of the form xyyzz corresponding |
268 * to the source version x.y.z (leading zeros in y and z). Beta versions | 271 * to the source version x.y.z (leading zeros in y and z). Beta versions |
269 * were given the previous public release number plus a letter, until | 272 * were given the previous public release number plus a letter, until |
270 * version 1.0.6j; from then on they were given the upcoming public | 273 * version 1.0.6j; from then on they were given the upcoming public |
271 * release number plus "betaNN" or "rcNN". | 274 * release number plus "betaNN" or "rcNN". |
(...skipping 3504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3776 | 3779 |
3777 #endif /* PNG_INTERNAL */ | 3780 #endif /* PNG_INTERNAL */ |
3778 | 3781 |
3779 #ifdef __cplusplus | 3782 #ifdef __cplusplus |
3780 } | 3783 } |
3781 #endif | 3784 #endif |
3782 | 3785 |
3783 #endif /* PNG_VERSION_INFO_ONLY */ | 3786 #endif /* PNG_VERSION_INFO_ONLY */ |
3784 /* Do not put anything past this line */ | 3787 /* Do not put anything past this line */ |
3785 #endif /* PNG_H */ | 3788 #endif /* PNG_H */ |
OLD | NEW |