pngconf.h
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:40k
源码类别:

生物技术

开发平台:

C/C++

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