pngconf.h
上传用户:hmc_gdtv
上传日期:2013-08-04
资源大小:798k
文件大小:44k
源码类别:

Windows Mobile

开发平台:

Visual C++

  1. /* pngconf.h - machine configurable file for libpng
  2.  *
  3.  * libpng version 1.2.8 - December 3, 2004
  4.  * For conditions of distribution and use, see copyright notice in png.h
  5.  * Copyright (c) 1998-2004 Glenn Randers-Pehrson
  6.  * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
  7.  * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
  8.  */
  9. /* Any machine specific code is near the front of this file, so if you
  10.  * are configuring libpng for a machine, you may want to read the section
  11.  * starting here down to where it starts to typedef png_color, png_text,
  12.  * and png_info.
  13.  */
  14. #ifndef PNGCONF_H
  15. #define PNGCONF_H
  16. #define PNG_1_2_X
  17. #define PNG_NO_WRITE_SUPPORTED
  18. #define PNG_NO_MNG_FEATURES
  19. #define PNG_NO_FLOATING_POINT_SUPPORTED
  20. #define PNG_NO_PROGRESSIVE_READ
  21. #define PNG_NO_ASSEMBLER_CODE
  22. #define PNG_NO_STDIO
  23. #define PNG_NO_READ_DITHER
  24. /* 
  25.  * PNG_USER_CONFIG has to be defined on the compiler command line. This
  26.  * includes the resource compiler for Windows DLL configurations.
  27.  */
  28. #ifdef PNG_USER_CONFIG
  29. #include "pngusr.h"
  30. #endif
  31. /*
  32.  * Added at libpng-1.2.8
  33.  *  
  34.  * If you create a private DLL you need to define in "pngusr.h" the followings:
  35.  * #define PNG_USER_PRIVATEBUILD <Describes by whom and why this version of
  36.  *        the DLL was built>
  37.  *  e.g. #define PNG_USER_PRIVATEBUILD "Build by MyCompany for xyz reasons."
  38.  * #define PNG_USER_DLLFNAME_POSTFIX <two-letter postfix that serve to
  39.  *        distinguish your DLL from those of the official release. These
  40.  *        correspond to the trailing letters that come after the version
  41.  *        number and must match your private DLL name>
  42.  *  e.g. // private DLL "libpng13gx.dll"
  43.  *       #define PNG_USER_DLLFNAME_POSTFIX "gx"
  44.  * 
  45.  * The following macros are also at your disposal if you want to complete the 
  46.  * DLL VERSIONINFO structure.
  47.  * - PNG_USER_VERSIONINFO_COMMENTS
  48.  * - PNG_USER_VERSIONINFO_COMPANYNAME
  49.  * - PNG_USER_VERSIONINFO_LEGALTRADEMARKS
  50.  */
  51. #ifdef __STDC__
  52. #ifdef SPECIALBUILD
  53. #  pragma message("PNG_LIBPNG_SPECIALBUILD (and deprecated SPECIALBUILD)
  54.  are now LIBPNG reserved macros. Use PNG_USER_PRIVATEBUILD instead.")
  55. #endif
  56. #ifdef PRIVATEBUILD
  57. # pragma message("PRIVATEBUILD is deprecated. Use
  58.  PNG_USER_PRIVATEBUILD instead.")
  59. # define PNG_USER_PRIVATEBUILD PRIVATEBUILD
  60. #endif
  61. #endif /* __STDC__ */
  62. #ifndef PNG_VERSION_INFO_ONLY
  63. /* End of material added to libpng-1.2.8 */
  64. /* This is the size of the compression buffer, and thus the size of
  65.  * an IDAT chunk.  Make this whatever size you feel is best for your
  66.  * machine.  One of these will be allocated per png_struct.  When this
  67.  * is full, it writes the data to the disk, and does some other
  68.  * calculations.  Making this an extremely small size will slow
  69.  * the library down, but you may want to experiment to determine
  70.  * where it becomes significant, if you are concerned with memory
  71.  * usage.  Note that zlib allocates at least 32Kb also.  For readers,
  72.  * this describes the size of the buffer available to read the data in.
  73.  * Unless this gets smaller than the size of a row (compressed),
  74.  * it should not make much difference how big this is.
  75.  */
  76. #ifndef PNG_ZBUF_SIZE
  77. #  define PNG_ZBUF_SIZE 8192
  78. #endif
  79. /* Enable if you want a write-only libpng */
  80. #ifndef PNG_NO_READ_SUPPORTED
  81. #  define PNG_READ_SUPPORTED
  82. #endif
  83. /* Enable if you want a read-only libpng */
  84. #ifndef PNG_NO_WRITE_SUPPORTED
  85. #  define PNG_WRITE_SUPPORTED
  86. #endif
  87. /* Enabled by default in 1.2.0.  You can disable this if you don't need to
  88.    support PNGs that are embedded in MNG datastreams */
  89. #if !defined(PNG_1_0_X) && !defined(PNG_NO_MNG_FEATURES)
  90. #  ifndef PNG_MNG_FEATURES_SUPPORTED
  91. #    define PNG_MNG_FEATURES_SUPPORTED
  92. #  endif
  93. #endif
  94. #ifndef PNG_NO_FLOATING_POINT_SUPPORTED
  95. #  ifndef PNG_FLOATING_POINT_SUPPORTED
  96. #    define PNG_FLOATING_POINT_SUPPORTED
  97. #  endif
  98. #endif
  99. /* If you are running on a machine where you cannot allocate more
  100.  * than 64K of memory at once, uncomment this.  While libpng will not
  101.  * normally need that much memory in a chunk (unless you load up a very
  102.  * large file), zlib needs to know how big of a chunk it can use, and
  103.  * libpng thus makes sure to check any memory allocation to verify it
  104.  * will fit into memory.
  105. #define PNG_MAX_MALLOC_64K
  106.  */
  107. #if defined(MAXSEG_64K) && !defined(PNG_MAX_MALLOC_64K)
  108. #  define PNG_MAX_MALLOC_64K
  109. #endif
  110. /* Special munging to support doing things the 'cygwin' way:
  111.  * 'Normal' png-on-win32 defines/defaults:
  112.  *   PNG_BUILD_DLL -- building dll
  113.  *   PNG_USE_DLL   -- building an application, linking to dll
  114.  *   (no define)   -- building static library, or building an
  115.  *                    application and linking to the static lib
  116.  * 'Cygwin' defines/defaults:
  117.  *   PNG_BUILD_DLL -- (ignored) building the dll
  118.  *   (no define)   -- (ignored) building an application, linking to the dll
  119.  *   PNG_STATIC    -- (ignored) building the static lib, or building an 
  120.  *                    application that links to the static lib.
  121.  *   ALL_STATIC    -- (ignored) building various static libs, or building an 
  122.  *                    application that links to the static libs.
  123.  * Thus,
  124.  * a cygwin user should define either PNG_BUILD_DLL or PNG_STATIC, and
  125.  * this bit of #ifdefs will define the 'correct' config variables based on
  126.  * that. If a cygwin user *wants* to define 'PNG_USE_DLL' that's okay, but
  127.  * unnecessary.
  128.  *
  129.  * Also, the precedence order is:
  130.  *   ALL_STATIC (since we can't #undef something outside our namespace)
  131.  *   PNG_BUILD_DLL
  132.  *   PNG_STATIC
  133.  *   (nothing) == PNG_USE_DLL
  134.  * 
  135.  * CYGWIN (2002-01-20): The preceding is now obsolete. With the advent
  136.  *   of auto-import in binutils, we no longer need to worry about 
  137.  *   __declspec(dllexport) / __declspec(dllimport) and friends.  Therefore,
  138.  *   we don't need to worry about PNG_STATIC or ALL_STATIC when it comes
  139.  *   to __declspec() stuff.  However, we DO need to worry about 
  140.  *   PNG_BUILD_DLL and PNG_STATIC because those change some defaults
  141.  *   such as CONSOLE_IO and whether GLOBAL_ARRAYS are allowed.
  142.  */
  143. #if defined(__CYGWIN__)
  144. #  if defined(ALL_STATIC)
  145. #    if defined(PNG_BUILD_DLL)
  146. #      undef PNG_BUILD_DLL
  147. #    endif
  148. #    if defined(PNG_USE_DLL)
  149. #      undef PNG_USE_DLL
  150. #    endif
  151. #    if defined(PNG_DLL)
  152. #      undef PNG_DLL
  153. #    endif
  154. #    if !defined(PNG_STATIC)
  155. #      define PNG_STATIC
  156. #    endif
  157. #  else
  158. #    if defined (PNG_BUILD_DLL)
  159. #      if defined(PNG_STATIC)
  160. #        undef PNG_STATIC
  161. #      endif
  162. #      if defined(PNG_USE_DLL)
  163. #        undef PNG_USE_DLL
  164. #      endif
  165. #      if !defined(PNG_DLL)
  166. #        define PNG_DLL
  167. #      endif
  168. #    else
  169. #      if defined(PNG_STATIC)
  170. #        if defined(PNG_USE_DLL)
  171. #          undef PNG_USE_DLL
  172. #        endif
  173. #        if defined(PNG_DLL)
  174. #          undef PNG_DLL
  175. #        endif
  176. #      else
  177. #        if !defined(PNG_USE_DLL)
  178. #          define PNG_USE_DLL
  179. #        endif
  180. #        if !defined(PNG_DLL)
  181. #          define PNG_DLL
  182. #        endif
  183. #      endif  
  184. #    endif  
  185. #  endif
  186. #endif
  187. /* This protects us against compilers that run on a windowing system
  188.  * and thus don't have or would rather us not use the stdio types:
  189.  * stdin, stdout, and stderr.  The only one currently used is stderr
  190.  * in png_error() and png_warning().  #defining PNG_NO_CONSOLE_IO will
  191.  * prevent these from being compiled and used. #defining PNG_NO_STDIO
  192.  * will also prevent these, plus will prevent the entire set of stdio
  193.  * macros and functions (FILE *, printf, etc.) from being compiled and used,
  194.  * unless (PNG_DEBUG > 0) has been #defined.
  195.  *
  196.  * #define PNG_NO_CONSOLE_IO
  197.  * #define PNG_NO_STDIO
  198.  */
  199. #if defined(_WIN32_WCE)
  200. #  include <windows.h>
  201.    /* Console I/O functions are not supported on WindowsCE */
  202. #  define PNG_NO_CONSOLE_IO
  203. #  ifdef PNG_DEBUG
  204. #    undef PNG_DEBUG
  205. #  endif
  206. #endif
  207. #ifdef PNG_BUILD_DLL
  208. #  ifndef PNG_CONSOLE_IO_SUPPORTED
  209. #    ifndef PNG_NO_CONSOLE_IO
  210. #      define PNG_NO_CONSOLE_IO
  211. #    endif
  212. #  endif
  213. #endif
  214. #  ifdef PNG_NO_STDIO
  215. #    ifndef PNG_NO_CONSOLE_IO
  216. #      define PNG_NO_CONSOLE_IO
  217. #    endif
  218. #    ifdef PNG_DEBUG
  219. #      if (PNG_DEBUG > 0)
  220. #        include <stdio.h>
  221. #      endif
  222. #    endif
  223. #  else
  224. #    if !defined(_WIN32_WCE)
  225. /* "stdio.h" functions are not supported on WindowsCE */
  226. #      include <stdio.h>
  227. #    endif
  228. #  endif
  229. /* This macro protects us against machines that don't have function
  230.  * prototypes (ie K&R style headers).  If your compiler does not handle
  231.  * function prototypes, define this macro and use the included ansi2knr.
  232.  * I've always been able to use _NO_PROTO as the indicator, but you may
  233.  * need to drag the empty declaration out in front of here, or change the
  234.  * ifdef to suit your own needs.
  235.  */
  236. #ifndef PNGARG
  237. #ifdef OF /* zlib prototype munger */
  238. #  define PNGARG(arglist) OF(arglist)
  239. #else
  240. #ifdef _NO_PROTO
  241. #  define PNGARG(arglist) ()
  242. #  ifndef PNG_TYPECAST_NULL
  243. #     define PNG_TYPECAST_NULL
  244. #  endif
  245. #else
  246. #  define PNGARG(arglist) arglist
  247. #endif /* _NO_PROTO */
  248. #endif /* OF */
  249. #endif /* PNGARG */
  250. /* Try to determine if we are compiling on a Mac.  Note that testing for
  251.  * just __MWERKS__ is not good enough, because the Codewarrior is now used
  252.  * on non-Mac platforms.
  253.  */
  254. #ifndef MACOS
  255. #  if (defined(__MWERKS__) && defined(macintosh)) || defined(applec) || 
  256.       defined(THINK_C) || defined(__SC__) || defined(TARGET_OS_MAC)
  257. #    define MACOS
  258. #  endif
  259. #endif
  260. /* enough people need this for various reasons to include it here */
  261. #if !defined(MACOS) && !defined(RISCOS) && !defined(_WIN32_WCE)
  262. #  include <sys/types.h>
  263. #endif
  264. #if !defined(PNG_SETJMP_NOT_SUPPORTED) && !defined(PNG_NO_SETJMP_SUPPORTED)
  265. #  define PNG_SETJMP_SUPPORTED
  266. #endif
  267. #ifdef PNG_SETJMP_SUPPORTED
  268. /* This is an attempt to force a single setjmp behaviour on Linux.  If
  269.  * the X config stuff didn't define _BSD_SOURCE we wouldn't need this.
  270.  */
  271. #  ifdef __linux__
  272. #    ifdef _BSD_SOURCE
  273. #      define PNG_SAVE_BSD_SOURCE
  274. #      undef _BSD_SOURCE
  275. #    endif
  276. #    ifdef _SETJMP_H
  277.      /* If you encounter a compiler error here, see the explanation
  278.       * near the end of INSTALL.
  279.       */
  280.          __png.h__ already includes setjmp.h;
  281.          __dont__ include it again.;
  282. #    endif
  283. #  endif /* __linux__ */
  284.    /* include setjmp.h for error handling */
  285. #  include <setjmp.h>
  286. #  ifdef __linux__
  287. #    ifdef PNG_SAVE_BSD_SOURCE
  288. #      define _BSD_SOURCE
  289. #      undef PNG_SAVE_BSD_SOURCE
  290. #    endif
  291. #  endif /* __linux__ */
  292. #endif /* PNG_SETJMP_SUPPORTED */
  293. #ifdef BSD
  294. #  include <strings.h>
  295. #else
  296. #  include <string.h>
  297. #endif
  298. /* Other defines for things like memory and the like can go here.  */
  299. #ifdef PNG_INTERNAL
  300. #include <stdlib.h>
  301. /* The functions exported by PNG_EXTERN are PNG_INTERNAL functions, which
  302.  * aren't usually used outside the library (as far as I know), so it is
  303.  * debatable if they should be exported at all.  In the future, when it is
  304.  * possible to have run-time registry of chunk-handling functions, some of
  305.  * these will be made available again.
  306. #define PNG_EXTERN extern
  307.  */
  308. #define PNG_EXTERN
  309. /* Other defines specific to compilers can go here.  Try to keep
  310.  * them inside an appropriate ifdef/endif pair for portability.
  311.  */
  312. #if defined(PNG_FLOATING_POINT_SUPPORTED)
  313. #  if defined(MACOS)
  314.      /* We need to check that <math.h> hasn't already been included earlier
  315.       * as it seems it doesn't agree with <fp.h>, yet we should really use
  316.       * <fp.h> if possible.
  317.       */
  318. #    if !defined(__MATH_H__) && !defined(__MATH_H) && !defined(__cmath__)
  319. #      include <fp.h>
  320. #    endif
  321. #  else
  322. #    include <math.h>
  323. #  endif
  324. #  if defined(_AMIGA) && defined(__SASC) && defined(_M68881)
  325.      /* Amiga SAS/C: We must include builtin FPU functions when compiling using
  326.       * MATH=68881
  327.       */
  328. #    include <m68881.h>
  329. #  endif
  330. #endif
  331. /* Codewarrior on NT has linking problems without this. */
  332. #if (defined(__MWERKS__) && defined(WIN32)) || defined(__STDC__)
  333. #  define PNG_ALWAYS_EXTERN
  334. #endif
  335. /* This provides the non-ANSI (far) memory allocation routines. */
  336. #if defined(__TURBOC__) && defined(__MSDOS__)
  337. #  include <mem.h>
  338. #  include <alloc.h>
  339. #endif
  340. /* I have no idea why is this necessary... */
  341. #if defined(_MSC_VER) && (defined(WIN32) || defined(_Windows) || 
  342.     defined(_WINDOWS) || defined(_WIN32) || defined(__WIN32__))
  343. #  include <malloc.h>
  344. #endif
  345. /* This controls how fine the dithering gets.  As this allocates
  346.  * a largish chunk of memory (32K), those who are not as concerned
  347.  * with dithering quality can decrease some or all of these.
  348.  */
  349. #ifndef PNG_DITHER_RED_BITS
  350. #  define PNG_DITHER_RED_BITS 5
  351. #endif
  352. #ifndef PNG_DITHER_GREEN_BITS
  353. #  define PNG_DITHER_GREEN_BITS 5
  354. #endif
  355. #ifndef PNG_DITHER_BLUE_BITS
  356. #  define PNG_DITHER_BLUE_BITS 5
  357. #endif
  358. /* This controls how fine the gamma correction becomes when you
  359.  * are only interested in 8 bits anyway.  Increasing this value
  360.  * results in more memory being used, and more pow() functions
  361.  * being called to fill in the gamma tables.  Don't set this value
  362.  * less then 8, and even that may not work (I haven't tested it).
  363.  */
  364. #ifndef PNG_MAX_GAMMA_8
  365. #  define PNG_MAX_GAMMA_8 11
  366. #endif
  367. /* This controls how much a difference in gamma we can tolerate before
  368.  * we actually start doing gamma conversion.
  369.  */
  370. #ifndef PNG_GAMMA_THRESHOLD
  371. #  define PNG_GAMMA_THRESHOLD 0.05
  372. #endif
  373. #endif /* PNG_INTERNAL */
  374. /* The following uses const char * instead of char * for error
  375.  * and warning message functions, so some compilers won't complain.
  376.  * If you do not want to use const, define PNG_NO_CONST here.
  377.  */
  378. #ifndef PNG_NO_CONST
  379. #  define PNG_CONST const
  380. #else
  381. #  define PNG_CONST
  382. #endif
  383. /* The following defines give you the ability to remove code from the
  384.  * library that you will not be using.  I wish I could figure out how to
  385.  * automate this, but I can't do that without making it seriously hard
  386.  * on the users.  So if you are not using an ability, change the #define
  387.  * to and #undef, and that part of the library will not be compiled.  If
  388.  * your linker can't find a function, you may want to make sure the
  389.  * ability is defined here.  Some of these depend upon some others being
  390.  * defined.  I haven't figured out all the interactions here, so you may
  391.  * have to experiment awhile to get everything to compile.  If you are
  392.  * creating or using a shared library, you probably shouldn't touch this,
  393.  * as it will affect the size of the structures, and this will cause bad
  394.  * things to happen if the library and/or application ever change.
  395.  */
  396. /* Any features you will not be using can be undef'ed here */
  397. /* GR-P, 0.96a: Set "*TRANSFORMS_SUPPORTED as default but allow user
  398.  * to turn it off with "*TRANSFORMS_NOT_SUPPORTED" or *PNG_NO_*_TRANSFORMS
  399.  * on the compile line, then pick and choose which ones to define without
  400.  * having to edit this file. It is safe to use the *TRANSFORMS_NOT_SUPPORTED
  401.  * if you only want to have a png-compliant reader/writer but don't need
  402.  * any of the extra transformations.  This saves about 80 kbytes in a
  403.  * typical installation of the library. (PNG_NO_* form added in version
  404.  * 1.0.1c, for consistency)
  405.  */
  406. /* The size of the png_text structure changed in libpng-1.0.6 when
  407.  * iTXt is supported.  It is turned off by default, to support old apps
  408.  * that malloc the png_text structure instead of calling png_set_text()
  409.  * and letting libpng malloc it.  It will be turned on by default in
  410.  * libpng-1.3.0.
  411.  */
  412. #ifndef PNG_iTXt_SUPPORTED
  413. #  if !defined(PNG_READ_iTXt_SUPPORTED) && !defined(PNG_NO_READ_iTXt)
  414. #    define PNG_NO_READ_iTXt
  415. #  endif
  416. #  if !defined(PNG_WRITE_iTXt_SUPPORTED) && !defined(PNG_NO_WRITE_iTXt)
  417. #    define PNG_NO_WRITE_iTXt
  418. #  endif
  419. #endif
  420. /* The following support, added after version 1.0.0, can be turned off here en
  421.  * masse by defining PNG_LEGACY_SUPPORTED in case you need binary compatibility
  422.  * with old applications that require the length of png_struct and png_info
  423.  * to remain unchanged.
  424.  */
  425. #ifdef PNG_LEGACY_SUPPORTED
  426. #  define PNG_NO_FREE_ME
  427. #  define PNG_NO_READ_UNKNOWN_CHUNKS
  428. #  define PNG_NO_WRITE_UNKNOWN_CHUNKS
  429. #  define PNG_NO_READ_USER_CHUNKS
  430. #  define PNG_NO_READ_iCCP
  431. #  define PNG_NO_WRITE_iCCP
  432. #  define PNG_NO_READ_iTXt
  433. #  define PNG_NO_WRITE_iTXt
  434. #  define PNG_NO_READ_sCAL
  435. #  define PNG_NO_WRITE_sCAL
  436. #  define PNG_NO_READ_sPLT
  437. #  define PNG_NO_WRITE_sPLT
  438. #  define PNG_NO_INFO_IMAGE
  439. #  define PNG_NO_READ_RGB_TO_GRAY
  440. #  define PNG_NO_READ_USER_TRANSFORM
  441. #  define PNG_NO_WRITE_USER_TRANSFORM
  442. #  define PNG_NO_USER_MEM
  443. #  define PNG_NO_READ_EMPTY_PLTE
  444. #  define PNG_NO_MNG_FEATURES
  445. #  define PNG_NO_FIXED_POINT_SUPPORTED
  446. #endif
  447. /* Ignore attempt to turn off both floating and fixed point support */
  448. #if !defined(PNG_FLOATING_POINT_SUPPORTED) || 
  449.     !defined(PNG_NO_FIXED_POINT_SUPPORTED)
  450. #  define PNG_FIXED_POINT_SUPPORTED
  451. #endif
  452. #ifndef PNG_NO_FREE_ME
  453. #  define PNG_FREE_ME_SUPPORTED
  454. #endif
  455. #if defined(PNG_READ_SUPPORTED)
  456. #if !defined(PNG_READ_TRANSFORMS_NOT_SUPPORTED) && 
  457.       !defined(PNG_NO_READ_TRANSFORMS)
  458. #  define PNG_READ_TRANSFORMS_SUPPORTED
  459. #endif
  460. #ifdef PNG_READ_TRANSFORMS_SUPPORTED
  461. #  ifndef PNG_NO_READ_EXPAND
  462. #    define PNG_READ_EXPAND_SUPPORTED
  463. #  endif
  464. #  ifndef PNG_NO_READ_SHIFT
  465. #    define PNG_READ_SHIFT_SUPPORTED
  466. #  endif
  467. #  ifndef PNG_NO_READ_PACK
  468. #    define PNG_READ_PACK_SUPPORTED
  469. #  endif
  470. #  ifndef PNG_NO_READ_BGR
  471. #    define PNG_READ_BGR_SUPPORTED
  472. #  endif
  473. #  ifndef PNG_NO_READ_SWAP
  474. #    define PNG_READ_SWAP_SUPPORTED
  475. #  endif
  476. #  ifndef PNG_NO_READ_PACKSWAP
  477. #    define PNG_READ_PACKSWAP_SUPPORTED
  478. #  endif
  479. #  ifndef PNG_NO_READ_INVERT
  480. #    define PNG_READ_INVERT_SUPPORTED
  481. #  endif
  482. #  ifndef PNG_NO_READ_DITHER
  483. #    define PNG_READ_DITHER_SUPPORTED
  484. #  endif
  485. #  ifndef PNG_NO_READ_BACKGROUND
  486. #    define PNG_READ_BACKGROUND_SUPPORTED
  487. #  endif
  488. #  ifndef PNG_NO_READ_16_TO_8
  489. #    define PNG_READ_16_TO_8_SUPPORTED
  490. #  endif
  491. #  ifndef PNG_NO_READ_FILLER
  492. #    define PNG_READ_FILLER_SUPPORTED
  493. #  endif
  494. #  ifndef PNG_NO_READ_GAMMA
  495. #    define PNG_READ_GAMMA_SUPPORTED
  496. #  endif
  497. #  ifndef PNG_NO_READ_GRAY_TO_RGB
  498. #    define PNG_READ_GRAY_TO_RGB_SUPPORTED
  499. #  endif
  500. #  ifndef PNG_NO_READ_SWAP_ALPHA
  501. #    define PNG_READ_SWAP_ALPHA_SUPPORTED
  502. #  endif
  503. #  ifndef PNG_NO_READ_INVERT_ALPHA
  504. #    define PNG_READ_INVERT_ALPHA_SUPPORTED
  505. #  endif
  506. #  ifndef PNG_NO_READ_STRIP_ALPHA
  507. #    define PNG_READ_STRIP_ALPHA_SUPPORTED
  508. #  endif
  509. #  ifndef PNG_NO_READ_USER_TRANSFORM
  510. #    define PNG_READ_USER_TRANSFORM_SUPPORTED
  511. #  endif
  512. #  ifndef PNG_NO_READ_RGB_TO_GRAY
  513. #    define PNG_READ_RGB_TO_GRAY_SUPPORTED
  514. #  endif
  515. #endif /* PNG_READ_TRANSFORMS_SUPPORTED */
  516. #if !defined(PNG_NO_PROGRESSIVE_READ) && 
  517.  !defined(PNG_PROGRESSIVE_READ_NOT_SUPPORTED)  /* if you don't do progressive */
  518. #  define PNG_PROGRESSIVE_READ_SUPPORTED     /* reading.  This is not talking */
  519. #endif                               /* about interlacing capability!  You'll */
  520.               /* still have interlacing unless you change the following line: */
  521. #define PNG_READ_INTERLACING_SUPPORTED /* required for PNG-compliant decoders */
  522. #ifndef PNG_NO_READ_COMPOSITE_NODIV
  523. #  ifndef PNG_NO_READ_COMPOSITED_NODIV  /* libpng-1.0.x misspelling */
  524. #    define PNG_READ_COMPOSITE_NODIV_SUPPORTED   /* well tested on Intel, SGI */
  525. #  endif
  526. #endif
  527. /* Deprecated, will be removed from version 2.0.0.
  528.    Use PNG_MNG_FEATURES_SUPPORTED instead. */
  529. #ifndef PNG_NO_READ_EMPTY_PLTE
  530. #  define PNG_READ_EMPTY_PLTE_SUPPORTED
  531. #endif
  532. #endif /* PNG_READ_SUPPORTED */
  533. #if defined(PNG_WRITE_SUPPORTED)
  534. # if !defined(PNG_WRITE_TRANSFORMS_NOT_SUPPORTED) && 
  535.     !defined(PNG_NO_WRITE_TRANSFORMS)
  536. #  define PNG_WRITE_TRANSFORMS_SUPPORTED
  537. #endif
  538. #ifdef PNG_WRITE_TRANSFORMS_SUPPORTED
  539. #  ifndef PNG_NO_WRITE_SHIFT
  540. #    define PNG_WRITE_SHIFT_SUPPORTED
  541. #  endif
  542. #  ifndef PNG_NO_WRITE_PACK
  543. #    define PNG_WRITE_PACK_SUPPORTED
  544. #  endif
  545. #  ifndef PNG_NO_WRITE_BGR
  546. #    define PNG_WRITE_BGR_SUPPORTED
  547. #  endif
  548. #  ifndef PNG_NO_WRITE_SWAP
  549. #    define PNG_WRITE_SWAP_SUPPORTED
  550. #  endif
  551. #  ifndef PNG_NO_WRITE_PACKSWAP
  552. #    define PNG_WRITE_PACKSWAP_SUPPORTED
  553. #  endif
  554. #  ifndef PNG_NO_WRITE_INVERT
  555. #    define PNG_WRITE_INVERT_SUPPORTED
  556. #  endif
  557. #  ifndef PNG_NO_WRITE_FILLER
  558. #    define PNG_WRITE_FILLER_SUPPORTED   /* same as WRITE_STRIP_ALPHA */
  559. #  endif
  560. #  ifndef PNG_NO_WRITE_SWAP_ALPHA
  561. #    define PNG_WRITE_SWAP_ALPHA_SUPPORTED
  562. #  endif
  563. #  ifndef PNG_NO_WRITE_INVERT_ALPHA
  564. #    define PNG_WRITE_INVERT_ALPHA_SUPPORTED
  565. #  endif
  566. #  ifndef PNG_NO_WRITE_USER_TRANSFORM
  567. #    define PNG_WRITE_USER_TRANSFORM_SUPPORTED
  568. #  endif
  569. #endif /* PNG_WRITE_TRANSFORMS_SUPPORTED */
  570. #define PNG_WRITE_INTERLACING_SUPPORTED  /* not required for PNG-compliant
  571.                                             encoders, but can cause trouble
  572.                                             if left undefined */
  573. #if !defined(PNG_NO_WRITE_WEIGHTED_FILTER) && 
  574.      defined(PNG_FLOATING_POINT_SUPPORTED)
  575. #  define PNG_WRITE_WEIGHTED_FILTER_SUPPORTED
  576. #endif
  577. #ifndef PNG_NO_WRITE_FLUSH
  578. #  define PNG_WRITE_FLUSH_SUPPORTED
  579. #endif
  580. /* Deprecated, see PNG_MNG_FEATURES_SUPPORTED, above */
  581. #ifndef PNG_NO_WRITE_EMPTY_PLTE
  582. #  define PNG_WRITE_EMPTY_PLTE_SUPPORTED
  583. #endif
  584. #endif /* PNG_WRITE_SUPPORTED */
  585. #ifndef PNG_1_0_X
  586. #  ifndef PNG_NO_ERROR_NUMBERS
  587. #    define PNG_ERROR_NUMBERS_SUPPORTED
  588. #  endif
  589. #endif /* PNG_1_0_X */
  590. #if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) || 
  591.     defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
  592. #  ifndef PNG_NO_USER_TRANSFORM_PTR
  593. #    define PNG_USER_TRANSFORM_PTR_SUPPORTED
  594. #  endif
  595. #endif
  596. #ifndef PNG_NO_STDIO
  597. #  define PNG_TIME_RFC1123_SUPPORTED
  598. #endif
  599. /* This adds extra functions in pngget.c for accessing data from the
  600.  * info pointer (added in version 0.99)
  601.  * png_get_image_width()
  602.  * png_get_image_height()
  603.  * png_get_bit_depth()
  604.  * png_get_color_type()
  605.  * png_get_compression_type()
  606.  * png_get_filter_type()
  607.  * png_get_interlace_type()
  608.  * png_get_pixel_aspect_ratio()
  609.  * png_get_pixels_per_meter()
  610.  * png_get_x_offset_pixels()
  611.  * png_get_y_offset_pixels()
  612.  * png_get_x_offset_microns()
  613.  * png_get_y_offset_microns()
  614.  */
  615. #if !defined(PNG_NO_EASY_ACCESS) && !defined(PNG_EASY_ACCESS_SUPPORTED)
  616. #  define PNG_EASY_ACCESS_SUPPORTED
  617. #endif
  618. /* PNG_ASSEMBLER_CODE was enabled by default in version 1.2.0 
  619.    even when PNG_USE_PNGVCRD or PNG_USE_PNGGCCRD is not defined */
  620. #if defined(PNG_READ_SUPPORTED) && !defined(PNG_NO_ASSEMBLER_CODE)
  621. #  ifndef PNG_ASSEMBLER_CODE_SUPPORTED
  622. #    define PNG_ASSEMBLER_CODE_SUPPORTED
  623. #  endif
  624. #  if !defined(PNG_MMX_CODE_SUPPORTED) && !defined(PNG_NO_MMX_CODE)
  625. #    define PNG_MMX_CODE_SUPPORTED
  626. #  endif
  627. #endif
  628. /* If you are sure that you don't need thread safety and you are compiling
  629.    with PNG_USE_PNGCCRD for an MMX application, you can define this for
  630.    faster execution.  See pnggccrd.c.
  631. #define PNG_THREAD_UNSAFE_OK
  632. */
  633. #if !defined(PNG_1_0_X)
  634. #if !defined(PNG_NO_USER_MEM) && !defined(PNG_USER_MEM_SUPPORTED)
  635. #  define PNG_USER_MEM_SUPPORTED
  636. #endif
  637. #endif /* PNG_1_0_X */
  638. /* Added at libpng-1.2.6 */
  639. #if !defined(PNG_1_0_X)
  640. #ifndef PNG_SET_USER_LIMITS_SUPPORTED
  641. #if !defined(PNG_NO_SET_USER_LIMITS) && !defined(PNG_SET_USER_LIMITS_SUPPORTED)
  642. #  define PNG_SET_USER_LIMITS_SUPPORTED
  643. #endif
  644. #endif
  645. #endif /* PNG_1_0_X */
  646. /* Added at libpng-1.0.16 and 1.2.6.  To accept all valid PNGS no matter
  647.  * how large, set these limits to 0x7fffffffL
  648.  */
  649. #ifndef PNG_USER_WIDTH_MAX
  650. #  define PNG_USER_WIDTH_MAX 1000000L
  651. #endif
  652. #ifndef PNG_USER_HEIGHT_MAX
  653. #  define PNG_USER_HEIGHT_MAX 1000000L
  654. #endif
  655. /* These are currently experimental features, define them if you want */
  656. /* very little testing */
  657. /*
  658. #ifdef PNG_READ_SUPPORTED
  659. #  ifndef PNG_READ_16_TO_8_ACCURATE_SCALE_SUPPORTED
  660. #    define PNG_READ_16_TO_8_ACCURATE_SCALE_SUPPORTED
  661. #  endif
  662. #endif
  663. */
  664. /* This is only for PowerPC big-endian and 680x0 systems */
  665. /* some testing */
  666. /*
  667. #ifndef PNG_READ_BIG_ENDIAN_SUPPORTED
  668. #  define PNG_READ_BIG_ENDIAN_SUPPORTED
  669. #endif
  670. */
  671. /* Buggy compilers (e.g., gcc 2.7.2.2) need this */
  672. /*
  673. #define PNG_NO_POINTER_INDEXING
  674. */
  675. /* These functions are turned off by default, as they will be phased out. */
  676. /*
  677. #define  PNG_USELESS_TESTS_SUPPORTED
  678. #define  PNG_CORRECT_PALETTE_SUPPORTED
  679. */
  680. /* Any chunks you are not interested in, you can undef here.  The
  681.  * ones that allocate memory may be expecially important (hIST,
  682.  * tEXt, zTXt, tRNS, pCAL).  Others will just save time and make png_info
  683.  * a bit smaller.
  684.  */
  685. #if defined(PNG_READ_SUPPORTED) && 
  686.     !defined(PNG_READ_ANCILLARY_CHUNKS_NOT_SUPPORTED) && 
  687.     !defined(PNG_NO_READ_ANCILLARY_CHUNKS)
  688. #  define PNG_READ_ANCILLARY_CHUNKS_SUPPORTED
  689. #endif
  690. #if defined(PNG_WRITE_SUPPORTED) && 
  691.     !defined(PNG_WRITE_ANCILLARY_CHUNKS_NOT_SUPPORTED) && 
  692.     !defined(PNG_NO_WRITE_ANCILLARY_CHUNKS)
  693. #  define PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED
  694. #endif
  695. #ifdef PNG_READ_ANCILLARY_CHUNKS_SUPPORTED
  696. #ifdef PNG_NO_READ_TEXT
  697. #  define PNG_NO_READ_iTXt
  698. #  define PNG_NO_READ_tEXt
  699. #  define PNG_NO_READ_zTXt
  700. #endif
  701. #ifndef PNG_NO_READ_bKGD
  702. #  define PNG_READ_bKGD_SUPPORTED
  703. #  define PNG_bKGD_SUPPORTED
  704. #endif
  705. #ifndef PNG_NO_READ_cHRM
  706. #  define PNG_READ_cHRM_SUPPORTED
  707. #  define PNG_cHRM_SUPPORTED
  708. #endif
  709. #ifndef PNG_NO_READ_gAMA
  710. #  define PNG_READ_gAMA_SUPPORTED
  711. #  define PNG_gAMA_SUPPORTED
  712. #endif
  713. #ifndef PNG_NO_READ_hIST
  714. #  define PNG_READ_hIST_SUPPORTED
  715. #  define PNG_hIST_SUPPORTED
  716. #endif
  717. #ifndef PNG_NO_READ_iCCP
  718. #  define PNG_READ_iCCP_SUPPORTED
  719. #  define PNG_iCCP_SUPPORTED
  720. #endif
  721. #ifndef PNG_NO_READ_iTXt
  722. #  ifndef PNG_READ_iTXt_SUPPORTED
  723. #    define PNG_READ_iTXt_SUPPORTED
  724. #  endif
  725. #  ifndef PNG_iTXt_SUPPORTED
  726. #    define PNG_iTXt_SUPPORTED
  727. #  endif
  728. #endif
  729. #ifndef PNG_NO_READ_oFFs
  730. #  define PNG_READ_oFFs_SUPPORTED
  731. #  define PNG_oFFs_SUPPORTED
  732. #endif
  733. #ifndef PNG_NO_READ_pCAL
  734. #  define PNG_READ_pCAL_SUPPORTED
  735. #  define PNG_pCAL_SUPPORTED
  736. #endif
  737. #ifndef PNG_NO_READ_sCAL
  738. #  define PNG_READ_sCAL_SUPPORTED
  739. #  define PNG_sCAL_SUPPORTED
  740. #endif
  741. #ifndef PNG_NO_READ_pHYs
  742. #  define PNG_READ_pHYs_SUPPORTED
  743. #  define PNG_pHYs_SUPPORTED
  744. #endif
  745. #ifndef PNG_NO_READ_sBIT
  746. #  define PNG_READ_sBIT_SUPPORTED
  747. #  define PNG_sBIT_SUPPORTED
  748. #endif
  749. #ifndef PNG_NO_READ_sPLT
  750. #  define PNG_READ_sPLT_SUPPORTED
  751. #  define PNG_sPLT_SUPPORTED
  752. #endif
  753. #ifndef PNG_NO_READ_sRGB
  754. #  define PNG_READ_sRGB_SUPPORTED
  755. #  define PNG_sRGB_SUPPORTED
  756. #endif
  757. #ifndef PNG_NO_READ_tEXt
  758. #  define PNG_READ_tEXt_SUPPORTED
  759. #  define PNG_tEXt_SUPPORTED
  760. #endif
  761. #ifndef PNG_NO_READ_tIME
  762. #  define PNG_READ_tIME_SUPPORTED
  763. #  define PNG_tIME_SUPPORTED
  764. #endif
  765. #ifndef PNG_NO_READ_tRNS
  766. #  define PNG_READ_tRNS_SUPPORTED
  767. #  define PNG_tRNS_SUPPORTED
  768. #endif
  769. #ifndef PNG_NO_READ_zTXt
  770. #  define PNG_READ_zTXt_SUPPORTED
  771. #  define PNG_zTXt_SUPPORTED
  772. #endif
  773. #ifndef PNG_NO_READ_UNKNOWN_CHUNKS
  774. #  define PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
  775. #  ifndef PNG_UNKNOWN_CHUNKS_SUPPORTED
  776. #    define PNG_UNKNOWN_CHUNKS_SUPPORTED
  777. #  endif
  778. #  ifndef PNG_NO_HANDLE_AS_UNKNOWN
  779. #    define PNG_HANDLE_AS_UNKNOWN_SUPPORTED
  780. #  endif
  781. #endif
  782. #if !defined(PNG_NO_READ_USER_CHUNKS) && 
  783.      defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED)
  784. #  define PNG_READ_USER_CHUNKS_SUPPORTED
  785. #  define PNG_USER_CHUNKS_SUPPORTED
  786. #  ifdef PNG_NO_READ_UNKNOWN_CHUNKS
  787. #    undef PNG_NO_READ_UNKNOWN_CHUNKS
  788. #  endif
  789. #  ifdef PNG_NO_HANDLE_AS_UNKNOWN
  790. #    undef PNG_NO_HANDLE_AS_UNKNOWN
  791. #  endif
  792. #endif
  793. #ifndef PNG_NO_READ_OPT_PLTE
  794. #  define PNG_READ_OPT_PLTE_SUPPORTED /* only affects support of the */
  795. #endif                      /* optional PLTE chunk in RGB and RGBA images */
  796. #if defined(PNG_READ_iTXt_SUPPORTED) || defined(PNG_READ_tEXt_SUPPORTED) || 
  797.     defined(PNG_READ_zTXt_SUPPORTED)
  798. #  define PNG_READ_TEXT_SUPPORTED
  799. #  define PNG_TEXT_SUPPORTED
  800. #endif
  801. #endif /* PNG_READ_ANCILLARY_CHUNKS_SUPPORTED */
  802. #ifdef PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED
  803. #ifdef PNG_NO_WRITE_TEXT
  804. #  define PNG_NO_WRITE_iTXt
  805. #  define PNG_NO_WRITE_tEXt
  806. #  define PNG_NO_WRITE_zTXt
  807. #endif
  808. #ifndef PNG_NO_WRITE_bKGD
  809. #  define PNG_WRITE_bKGD_SUPPORTED
  810. #  ifndef PNG_bKGD_SUPPORTED
  811. #    define PNG_bKGD_SUPPORTED
  812. #  endif
  813. #endif
  814. #ifndef PNG_NO_WRITE_cHRM
  815. #  define PNG_WRITE_cHRM_SUPPORTED
  816. #  ifndef PNG_cHRM_SUPPORTED
  817. #    define PNG_cHRM_SUPPORTED
  818. #  endif
  819. #endif
  820. #ifndef PNG_NO_WRITE_gAMA
  821. #  define PNG_WRITE_gAMA_SUPPORTED
  822. #  ifndef PNG_gAMA_SUPPORTED
  823. #    define PNG_gAMA_SUPPORTED
  824. #  endif
  825. #endif
  826. #ifndef PNG_NO_WRITE_hIST
  827. #  define PNG_WRITE_hIST_SUPPORTED
  828. #  ifndef PNG_hIST_SUPPORTED
  829. #    define PNG_hIST_SUPPORTED
  830. #  endif
  831. #endif
  832. #ifndef PNG_NO_WRITE_iCCP
  833. #  define PNG_WRITE_iCCP_SUPPORTED
  834. #  ifndef PNG_iCCP_SUPPORTED
  835. #    define PNG_iCCP_SUPPORTED
  836. #  endif
  837. #endif
  838. #ifndef PNG_NO_WRITE_iTXt
  839. #  ifndef PNG_WRITE_iTXt_SUPPORTED
  840. #    define PNG_WRITE_iTXt_SUPPORTED
  841. #  endif
  842. #  ifndef PNG_iTXt_SUPPORTED
  843. #    define PNG_iTXt_SUPPORTED
  844. #  endif
  845. #endif
  846. #ifndef PNG_NO_WRITE_oFFs
  847. #  define PNG_WRITE_oFFs_SUPPORTED
  848. #  ifndef PNG_oFFs_SUPPORTED
  849. #    define PNG_oFFs_SUPPORTED
  850. #  endif
  851. #endif
  852. #ifndef PNG_NO_WRITE_pCAL
  853. #  define PNG_WRITE_pCAL_SUPPORTED
  854. #  ifndef PNG_pCAL_SUPPORTED
  855. #    define PNG_pCAL_SUPPORTED
  856. #  endif
  857. #endif
  858. #ifndef PNG_NO_WRITE_sCAL
  859. #  define PNG_WRITE_sCAL_SUPPORTED
  860. #  ifndef PNG_sCAL_SUPPORTED
  861. #    define PNG_sCAL_SUPPORTED
  862. #  endif
  863. #endif
  864. #ifndef PNG_NO_WRITE_pHYs
  865. #  define PNG_WRITE_pHYs_SUPPORTED
  866. #  ifndef PNG_pHYs_SUPPORTED
  867. #    define PNG_pHYs_SUPPORTED
  868. #  endif
  869. #endif
  870. #ifndef PNG_NO_WRITE_sBIT
  871. #  define PNG_WRITE_sBIT_SUPPORTED
  872. #  ifndef PNG_sBIT_SUPPORTED
  873. #    define PNG_sBIT_SUPPORTED
  874. #  endif
  875. #endif
  876. #ifndef PNG_NO_WRITE_sPLT
  877. #  define PNG_WRITE_sPLT_SUPPORTED
  878. #  ifndef PNG_sPLT_SUPPORTED
  879. #    define PNG_sPLT_SUPPORTED
  880. #  endif
  881. #endif
  882. #ifndef PNG_NO_WRITE_sRGB
  883. #  define PNG_WRITE_sRGB_SUPPORTED
  884. #  ifndef PNG_sRGB_SUPPORTED
  885. #    define PNG_sRGB_SUPPORTED
  886. #  endif
  887. #endif
  888. #ifndef PNG_NO_WRITE_tEXt
  889. #  define PNG_WRITE_tEXt_SUPPORTED
  890. #  ifndef PNG_tEXt_SUPPORTED
  891. #    define PNG_tEXt_SUPPORTED
  892. #  endif
  893. #endif
  894. #ifndef PNG_NO_WRITE_tIME
  895. #  define PNG_WRITE_tIME_SUPPORTED
  896. #  ifndef PNG_tIME_SUPPORTED
  897. #    define PNG_tIME_SUPPORTED
  898. #  endif
  899. #endif
  900. #ifndef PNG_NO_WRITE_tRNS
  901. #  define PNG_WRITE_tRNS_SUPPORTED
  902. #  ifndef PNG_tRNS_SUPPORTED
  903. #    define PNG_tRNS_SUPPORTED
  904. #  endif
  905. #endif
  906. #ifndef PNG_NO_WRITE_zTXt
  907. #  define PNG_WRITE_zTXt_SUPPORTED
  908. #  ifndef PNG_zTXt_SUPPORTED
  909. #    define PNG_zTXt_SUPPORTED
  910. #  endif
  911. #endif
  912. #ifndef PNG_NO_WRITE_UNKNOWN_CHUNKS
  913. #  define PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
  914. #  ifndef PNG_UNKNOWN_CHUNKS_SUPPORTED
  915. #    define PNG_UNKNOWN_CHUNKS_SUPPORTED
  916. #  endif
  917. #  ifndef PNG_NO_HANDLE_AS_UNKNOWN
  918. #     ifndef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
  919. #       define PNG_HANDLE_AS_UNKNOWN_SUPPORTED
  920. #     endif
  921. #  endif
  922. #endif
  923. #if defined(PNG_WRITE_iTXt_SUPPORTED) || defined(PNG_WRITE_tEXt_SUPPORTED) || 
  924.     defined(PNG_WRITE_zTXt_SUPPORTED)
  925. #  define PNG_WRITE_TEXT_SUPPORTED
  926. #  ifndef PNG_TEXT_SUPPORTED
  927. #    define PNG_TEXT_SUPPORTED
  928. #  endif
  929. #endif
  930. #endif /* PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED */
  931. /* Turn this off to disable png_read_png() and
  932.  * png_write_png() and leave the row_pointers member
  933.  * out of the info structure.
  934.  */
  935. #ifndef PNG_NO_INFO_IMAGE
  936. #  define PNG_INFO_IMAGE_SUPPORTED
  937. #endif
  938. /* need the time information for reading tIME chunks */
  939. #if defined(PNG_tIME_SUPPORTED)
  940. #  if !defined(_WIN32_WCE)
  941.      /* "time.h" functions are not supported on WindowsCE */
  942. #    include <time.h>
  943. #  endif
  944. #endif
  945. /* Some typedefs to get us started.  These should be safe on most of the
  946.  * common platforms.  The typedefs should be at least as large as the
  947.  * numbers suggest (a png_uint_32 must be at least 32 bits long), but they
  948.  * don't have to be exactly that size.  Some compilers dislike passing
  949.  * unsigned shorts as function parameters, so you may be better off using
  950.  * unsigned int for png_uint_16.  Likewise, for 64-bit systems, you may
  951.  * want to have unsigned int for png_uint_32 instead of unsigned long.
  952.  */
  953. typedef unsigned long png_uint_32;
  954. typedef long png_int_32;
  955. typedef unsigned short png_uint_16;
  956. typedef short png_int_16;
  957. typedef unsigned char png_byte;
  958. /* This is usually size_t.  It is typedef'ed just in case you need it to
  959.    change (I'm not sure if you will or not, so I thought I'd be safe) */
  960. #ifdef PNG_SIZE_T
  961.    typedef PNG_SIZE_T png_size_t;
  962. #  define png_sizeof(x) png_convert_size(sizeof (x))
  963. #else
  964.    typedef size_t png_size_t;
  965. #  define png_sizeof(x) sizeof (x)
  966. #endif
  967. /* The following is needed for medium model support.  It cannot be in the
  968.  * PNG_INTERNAL section.  Needs modification for other compilers besides
  969.  * MSC.  Model independent support declares all arrays and pointers to be
  970.  * large using the far keyword.  The zlib version used must also support
  971.  * model independent data.  As of version zlib 1.0.4, the necessary changes
  972.  * have been made in zlib.  The USE_FAR_KEYWORD define triggers other
  973.  * changes that are needed. (Tim Wegner)
  974.  */
  975. /* Separate compiler dependencies (problem here is that zlib.h always
  976.    defines FAR. (SJT) */
  977. #ifdef __BORLANDC__
  978. #  if defined(__LARGE__) || defined(__HUGE__) || defined(__COMPACT__)
  979. #    define LDATA 1
  980. #  else
  981. #    define LDATA 0
  982. #  endif
  983.    /* GRR:  why is Cygwin in here?  Cygwin is not Borland C... */
  984. #  if !defined(__WIN32__) && !defined(__FLAT__) && !defined(__CYGWIN__)
  985. #    define PNG_MAX_MALLOC_64K
  986. #    if (LDATA != 1)
  987. #      ifndef FAR
  988. #        define FAR __far
  989. #      endif
  990. #      define USE_FAR_KEYWORD
  991. #    endif   /* LDATA != 1 */
  992.      /* Possibly useful for moving data out of default segment.
  993.       * Uncomment it if you want. Could also define FARDATA as
  994.       * const if your compiler supports it. (SJT)
  995. #    define FARDATA FAR
  996.       */
  997. #  endif  /* __WIN32__, __FLAT__, __CYGWIN__ */
  998. #endif   /* __BORLANDC__ */
  999. /* Suggest testing for specific compiler first before testing for
  1000.  * FAR.  The Watcom compiler defines both __MEDIUM__ and M_I86MM,
  1001.  * making reliance oncertain keywords suspect. (SJT)
  1002.  */
  1003. /* MSC Medium model */
  1004. #if defined(FAR)
  1005. #  if defined(M_I86MM)
  1006. #    define USE_FAR_KEYWORD
  1007. #    define FARDATA FAR
  1008. #    include <dos.h>
  1009. #  endif
  1010. #endif
  1011. /* SJT: default case */
  1012. #ifndef FAR
  1013. #  define FAR
  1014. #endif
  1015. /* At this point FAR is always defined */
  1016. #ifndef FARDATA
  1017. #  define FARDATA
  1018. #endif
  1019. /* Typedef for floating-point numbers that are converted
  1020.    to fixed-point with a multiple of 100,000, e.g., int_gamma */
  1021. typedef png_int_32 png_fixed_point;
  1022. /* Add typedefs for pointers */
  1023. typedef void            FAR * png_voidp;
  1024. typedef png_byte        FAR * png_bytep;
  1025. typedef png_uint_32     FAR * png_uint_32p;
  1026. typedef png_int_32      FAR * png_int_32p;
  1027. typedef png_uint_16     FAR * png_uint_16p;
  1028. typedef png_int_16      FAR * png_int_16p;
  1029. typedef PNG_CONST char  FAR * png_const_charp;
  1030. typedef char            FAR * png_charp;
  1031. typedef png_fixed_point FAR * png_fixed_point_p;
  1032. #ifndef PNG_NO_STDIO
  1033. #if defined(_WIN32_WCE)
  1034. typedef HANDLE                png_FILE_p;
  1035. #else
  1036. typedef FILE                * png_FILE_p;
  1037. #endif
  1038. #endif
  1039. #ifdef PNG_FLOATING_POINT_SUPPORTED
  1040. typedef double          FAR * png_doublep;
  1041. #endif
  1042. /* Pointers to pointers; i.e. arrays */
  1043. typedef png_byte        FAR * FAR * png_bytepp;
  1044. typedef png_uint_32     FAR * FAR * png_uint_32pp;
  1045. typedef png_int_32      FAR * FAR * png_int_32pp;
  1046. typedef png_uint_16     FAR * FAR * png_uint_16pp;
  1047. typedef png_int_16      FAR * FAR * png_int_16pp;
  1048. typedef PNG_CONST char  FAR * FAR * png_const_charpp;
  1049. typedef char            FAR * FAR * png_charpp;
  1050. typedef png_fixed_point FAR * FAR * png_fixed_point_pp;
  1051. #ifdef PNG_FLOATING_POINT_SUPPORTED
  1052. typedef double          FAR * FAR * png_doublepp;
  1053. #endif
  1054. /* Pointers to pointers to pointers; i.e., pointer to array */
  1055. typedef char            FAR * FAR * FAR * png_charppp;
  1056. #if defined(PNG_1_0_X) || defined(PNG_1_2_X)
  1057. /* SPC -  Is this stuff deprecated? */
  1058. /* It'll be removed as of libpng-1.3.0 - GR-P */
  1059. /* libpng typedefs for types in zlib. If zlib changes
  1060.  * or another compression library is used, then change these.
  1061.  * Eliminates need to change all the source files.
  1062.  */
  1063. typedef charf *         png_zcharp;
  1064. typedef charf * FAR *   png_zcharpp;
  1065. typedef z_stream FAR *  png_zstreamp;
  1066. #endif /* (PNG_1_0_X) || defined(PNG_1_2_X) */
  1067. /*
  1068.  * Define PNG_BUILD_DLL if the module being built is a Windows
  1069.  * LIBPNG DLL.
  1070.  *
  1071.  * Define PNG_USE_DLL if you want to *link* to the Windows LIBPNG DLL.
  1072.  * It is equivalent to Microsoft predefined macro _DLL that is
  1073.  * automatically defined when you compile using the share
  1074.  * version of the CRT (C Run-Time library)
  1075.  *
  1076.  * The cygwin mods make this behavior a little different:
  1077.  * Define PNG_BUILD_DLL if you are building a dll for use with cygwin
  1078.  * Define PNG_STATIC if you are building a static library for use with cygwin,
  1079.  *   -or- if you are building an application that you want to link to the
  1080.  *   static library.
  1081.  * PNG_USE_DLL is defined by default (no user action needed) unless one of
  1082.  *   the other flags is defined.
  1083.  */
  1084. #if !defined(PNG_DLL) && (defined(PNG_BUILD_DLL) || defined(PNG_USE_DLL))
  1085. #  define PNG_DLL
  1086. #endif
  1087. /* If CYGWIN, then disallow GLOBAL ARRAYS unless building a static lib.
  1088.  * When building a static lib, default to no GLOBAL ARRAYS, but allow
  1089.  * command-line override
  1090.  */
  1091. #if defined(__CYGWIN__)
  1092. #  if !defined(PNG_STATIC)
  1093. #    if defined(PNG_USE_GLOBAL_ARRAYS)
  1094. #      undef PNG_USE_GLOBAL_ARRAYS
  1095. #    endif
  1096. #    if !defined(PNG_USE_LOCAL_ARRAYS)
  1097. #      define PNG_USE_LOCAL_ARRAYS
  1098. #    endif
  1099. #  else
  1100. #    if defined(PNG_USE_LOCAL_ARRAYS) || defined(PNG_NO_GLOBAL_ARRAYS)
  1101. #      if defined(PNG_USE_GLOBAL_ARRAYS)
  1102. #        undef PNG_USE_GLOBAL_ARRAYS
  1103. #      endif
  1104. #    endif
  1105. #  endif
  1106. #  if !defined(PNG_USE_LOCAL_ARRAYS) && !defined(PNG_USE_GLOBAL_ARRAYS)
  1107. #    define PNG_USE_LOCAL_ARRAYS
  1108. #  endif
  1109. #endif
  1110. /* Do not use global arrays (helps with building DLL's)
  1111.  * They are no longer used in libpng itself, since version 1.0.5c,
  1112.  * but might be required for some pre-1.0.5c applications.
  1113.  */
  1114. #if !defined(PNG_USE_LOCAL_ARRAYS) && !defined(PNG_USE_GLOBAL_ARRAYS)
  1115. #  if defined(PNG_NO_GLOBAL_ARRAYS) || (defined(__GNUC__) && defined(PNG_DLL))
  1116. #    define PNG_USE_LOCAL_ARRAYS
  1117. #  else
  1118. #    define PNG_USE_GLOBAL_ARRAYS
  1119. #  endif
  1120. #endif
  1121. #if defined(__CYGWIN__)
  1122. #  undef PNGAPI
  1123. #  define PNGAPI __cdecl
  1124. #  undef PNG_IMPEXP
  1125. #  define PNG_IMPEXP
  1126. #endif  
  1127. /* If you define PNGAPI, e.g., with compiler option "-DPNGAPI=__stdcall",
  1128.  * you may get warnings regarding the linkage of png_zalloc and png_zfree.
  1129.  * Don't ignore those warnings; you must also reset the default calling
  1130.  * convention in your compiler to match your PNGAPI, and you must build
  1131.  * zlib and your applications the same way you build libpng.
  1132.  */
  1133. #if defined(__MINGW32__) && !defined(PNG_MODULEDEF)
  1134. #  ifndef PNG_NO_MODULEDEF
  1135. #    define PNG_NO_MODULEDEF
  1136. #  endif
  1137. #endif
  1138. #if !defined(PNG_IMPEXP) && defined(PNG_BUILD_DLL) && !defined(PNG_NO_MODULEDEF)
  1139. #  define PNG_IMPEXP
  1140. #endif
  1141. #if defined(PNG_DLL) || defined(_DLL) || defined(__DLL__ ) || 
  1142.     (( defined(_Windows) || defined(_WINDOWS) || 
  1143.        defined(WIN32) || defined(_WIN32) || defined(__WIN32__) ))
  1144. #  ifndef PNGAPI
  1145. #     if defined(__GNUC__) || (defined (_MSC_VER) && (_MSC_VER >= 800))
  1146. #        define PNGAPI __cdecl
  1147. #     else
  1148. #        define PNGAPI _cdecl
  1149. #     endif
  1150. #  endif
  1151. #  if !defined(PNG_IMPEXP) && (!defined(PNG_DLL) || 
  1152.        0 /* WINCOMPILER_WITH_NO_SUPPORT_FOR_DECLIMPEXP */)
  1153. #     define PNG_IMPEXP
  1154. #  endif
  1155. #  if !defined(PNG_IMPEXP)
  1156. #     define PNG_EXPORT_TYPE1(type,symbol)  PNG_IMPEXP type PNGAPI symbol
  1157. #     define PNG_EXPORT_TYPE2(type,symbol)  type PNG_IMPEXP PNGAPI symbol
  1158.       /* Borland/Microsoft */
  1159. #     if defined(_MSC_VER) || defined(__BORLANDC__)
  1160. #        if (_MSC_VER >= 800) || (__BORLANDC__ >= 0x500)
  1161. #           define PNG_EXPORT PNG_EXPORT_TYPE1
  1162. #        else
  1163. #           define PNG_EXPORT PNG_EXPORT_TYPE2
  1164. #           if defined(PNG_BUILD_DLL)
  1165. #              define PNG_IMPEXP __export
  1166. #           else
  1167. #              define PNG_IMPEXP /*__import */ /* doesn't exist AFAIK in
  1168.                                                  VC++ */
  1169. #           endif                             /* Exists in Borland C++ for
  1170.                                                  C++ classes (== huge) */
  1171. #        endif
  1172. #     endif
  1173. #     if !defined(PNG_IMPEXP)
  1174. #        if defined(PNG_BUILD_DLL)
  1175. #           define PNG_IMPEXP __declspec(dllexport)
  1176. #        else
  1177. #           define PNG_IMPEXP __declspec(dllimport)
  1178. #        endif
  1179. #     endif
  1180. #  endif  /* PNG_IMPEXP */
  1181. #else /* !(DLL || non-cygwin WINDOWS) */
  1182. #   if (defined(__IBMC__) || defined(__IBMCPP__)) && defined(__OS2__)
  1183. #      ifndef PNGAPI
  1184. #         define PNGAPI _System
  1185. #      endif
  1186. #   else
  1187. #      if 0 /* ... other platforms, with other meanings */
  1188. #      endif
  1189. #   endif
  1190. #endif
  1191. #ifndef PNGAPI
  1192. #  define PNGAPI
  1193. #endif
  1194. #ifndef PNG_IMPEXP
  1195. #  define PNG_IMPEXP
  1196. #endif
  1197. #ifdef PNG_BUILDSYMS
  1198. #  ifndef PNG_EXPORT
  1199. #    define PNG_EXPORT(type,symbol) PNG_FUNCTION_EXPORT symbol END
  1200. #  endif
  1201. #  ifdef PNG_USE_GLOBAL_ARRAYS
  1202. #    ifndef PNG_EXPORT_VAR
  1203. #      define PNG_EXPORT_VAR(type) PNG_DATA_EXPORT
  1204. #    endif
  1205. #  endif
  1206. #endif
  1207. #ifndef PNG_EXPORT
  1208. #  define PNG_EXPORT(type,symbol) PNG_IMPEXP type PNGAPI symbol
  1209. #endif
  1210. #ifdef PNG_USE_GLOBAL_ARRAYS
  1211. #  ifndef PNG_EXPORT_VAR
  1212. #    define PNG_EXPORT_VAR(type) extern PNG_IMPEXP type
  1213. #  endif
  1214. #endif
  1215. /* User may want to use these so they are not in PNG_INTERNAL. Any library
  1216.  * functions that are passed far data must be model independent.
  1217.  */
  1218. #ifndef PNG_ABORT
  1219. #  define PNG_ABORT() abort()
  1220. #endif
  1221. #ifdef PNG_SETJMP_SUPPORTED
  1222. #  define png_jmpbuf(png_ptr) ((png_ptr)->jmpbuf)
  1223. #else
  1224. #  define png_jmpbuf(png_ptr) 
  1225.    (LIBPNG_WAS_COMPILED_WITH__PNG_SETJMP_NOT_SUPPORTED)
  1226. #endif
  1227. #if defined(USE_FAR_KEYWORD)  /* memory model independent fns */
  1228. /* use this to make far-to-near assignments */
  1229. #  define CHECK   1
  1230. #  define NOCHECK 0
  1231. #  define CVT_PTR(ptr) (png_far_to_near(png_ptr,ptr,CHECK))
  1232. #  define CVT_PTR_NOCHECK(ptr) (png_far_to_near(png_ptr,ptr,NOCHECK))
  1233. #  define png_strcpy  _fstrcpy
  1234. #  define png_strncpy _fstrncpy   /* Added to v 1.2.6 */
  1235. #  define png_strlen  _fstrlen
  1236. #  define png_memcmp  _fmemcmp    /* SJT: added */
  1237. #  define png_memcpy  _fmemcpy
  1238. #  define png_memset  _fmemset
  1239. #else /* use the usual functions */
  1240. #  define CVT_PTR(ptr)         (ptr)
  1241. #  define CVT_PTR_NOCHECK(ptr) (ptr)
  1242. #  define png_strcpy  strcpy
  1243. #  define png_strncpy strncpy     /* Added to v 1.2.6 */
  1244. #  define png_strlen  strlen
  1245. #  define png_memcmp  memcmp      /* SJT: added */
  1246. #  define png_memcpy  memcpy
  1247. #  define png_memset  memset
  1248. #endif
  1249. /* End of memory model independent support */
  1250. /* Just a little check that someone hasn't tried to define something
  1251.  * contradictory.
  1252.  */
  1253. #if (PNG_ZBUF_SIZE > 65536L) && defined(PNG_MAX_MALLOC_64K)
  1254. #  undef PNG_ZBUF_SIZE
  1255. #  define PNG_ZBUF_SIZE 65536L
  1256. #endif
  1257. #ifdef PNG_READ_SUPPORTED
  1258. /* Prior to libpng-1.0.9, this block was in pngasmrd.h */
  1259. #if defined(PNG_INTERNAL)
  1260. /* These are the default thresholds before the MMX code kicks in; if either
  1261.  * rowbytes or bitdepth is below the threshold, plain C code is used.  These
  1262.  * can be overridden at runtime via the png_set_mmx_thresholds() call in
  1263.  * libpng 1.2.0 and later.  The values below were chosen by Intel.
  1264.  */
  1265. #ifndef PNG_MMX_ROWBYTES_THRESHOLD_DEFAULT
  1266. #  define PNG_MMX_ROWBYTES_THRESHOLD_DEFAULT  128  /*  >=  */
  1267. #endif
  1268. #ifndef PNG_MMX_BITDEPTH_THRESHOLD_DEFAULT
  1269. #  define PNG_MMX_BITDEPTH_THRESHOLD_DEFAULT  9    /*  >=  */   
  1270. #endif
  1271. /* Set this in the makefile for VC++ on Pentium, not here. */
  1272. /* Platform must be Pentium.  Makefile must assemble and load pngvcrd.c .
  1273.  * MMX will be detected at run time and used if present.
  1274.  */
  1275. #ifdef PNG_USE_PNGVCRD
  1276. #  define PNG_HAVE_ASSEMBLER_COMBINE_ROW
  1277. #  define PNG_HAVE_ASSEMBLER_READ_INTERLACE
  1278. #  define PNG_HAVE_ASSEMBLER_READ_FILTER_ROW
  1279. #endif
  1280. /* Set this in the makefile for gcc/as on Pentium, not here. */
  1281. /* Platform must be Pentium.  Makefile must assemble and load pnggccrd.c .
  1282.  * MMX will be detected at run time and used if present.
  1283.  */
  1284. #ifdef PNG_USE_PNGGCCRD
  1285. #  define PNG_HAVE_ASSEMBLER_COMBINE_ROW
  1286. #  define PNG_HAVE_ASSEMBLER_READ_INTERLACE
  1287. #  define PNG_HAVE_ASSEMBLER_READ_FILTER_ROW
  1288. #endif
  1289. /* - see pnggccrd.c for info about what is currently enabled */
  1290. #endif /* PNG_INTERNAL */
  1291. #endif /* PNG_READ_SUPPORTED */
  1292. /* Added at libpng-1.2.8 */
  1293. #endif /* PNG_VERSION_INFO_ONLY */
  1294. #endif /* PNGCONF_H */