This repository has been archived on 2023-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
libpng/pngtypes.h

36 lines
664 B
C
Raw Normal View History

1999-11-27 16:22:33 +00:00
/* pngtypes.h - array of chunk-types for libpng
*
2000-02-05 05:40:16 +00:00
* libpng 1.0.5q - February 5, 2000
1999-11-27 16:22:33 +00:00
* For conditions of distribution and use, see copyright notice in png.h
* Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
* Copyright (c) 1996, 1997 Andreas Dilger
2000-02-05 05:40:16 +00:00
* Copyright (c) 1998, 1999, 2000 Glenn Randers-Pehrson
1999-11-27 16:22:33 +00:00
*/
/* Constant strings for known chunk types. If you need to add a chunk,
1999-11-29 05:32:18 +00:00
* define the string in png.h and invoke it here.
1999-11-27 16:22:33 +00:00
*/
1999-11-29 05:32:18 +00:00
PNG_IHDR;
PNG_IDAT;
PNG_IEND;
PNG_PLTE;
PNG_bKGD;
PNG_cHRM;
PNG_gAMA;
PNG_hIST;
1999-12-10 15:43:02 +00:00
PNG_iCCP;
PNG_iTXt;
1999-11-29 05:32:18 +00:00
PNG_oFFs;
PNG_pCAL;
PNG_pHYs;
PNG_sBIT;
2000-02-05 05:40:16 +00:00
PNG_sCAL;
1999-12-10 15:43:02 +00:00
PNG_sPLT;
1999-11-29 05:32:18 +00:00
PNG_sRGB;
PNG_tEXt;
PNG_tIME;
PNG_tRNS;
PNG_zTXt;
1999-11-27 16:22:33 +00:00