blob: 87bc5ade41f9c338d63a9b125f0776b8019a2c18 [file] [log] [blame]
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -05001
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06002/* pngconf.h - machine configurable file for libpng
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06003 *
Glenn Randers-Pehrsonffc9e952011-03-03 06:39:34 -06004 * libpng version 1.5.2beta04 - (PENDING RELEASE)
Glenn Randers-Pehrsonc17c9572010-03-08 21:26:48 -06005 *
Glenn Randers-Pehrson64b863c2011-01-04 09:57:06 -06006 * Copyright (c) 1998-2011 Glenn Randers-Pehrson
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -05007 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
8 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
Glenn Randers-Pehrson3e61d792009-06-24 09:31:28 -05009 *
Glenn Randers-Pehrsonbfbf8652009-06-26 21:46:52 -050010 * This code is released under the libpng license.
Glenn Randers-Pehrsonc332bbc2009-06-25 13:43:50 -050011 * For conditions of distribution and use, see the disclaimer
Glenn Randers-Pehrson037023b2009-06-24 10:27:36 -050012 * and license in png.h
Glenn Randers-Pehrson3e61d792009-06-24 09:31:28 -050013 *
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060014 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -050015
16/* Any machine specific code is near the front of this file, so if you
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060017 * are configuring libpng for a machine, you may want to read the section
18 * starting here down to where it starts to typedef png_color, png_text,
19 * and png_info.
20 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -050021
22#ifndef PNGCONF_H
23#define PNGCONF_H
24
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050025/* PNG_NO_LIMITS_H may be used to turn off the use of the standard C
26 * definition file for machine specific limits, this may impact the
27 * correctness of the definitons below (see uses of INT_MAX).
28 */
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -050029#ifndef PNG_NO_LIMITS_H
Glenn Randers-Pehrson6076da82009-09-30 12:28:07 -050030# include <limits.h>
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -050031#endif
32
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050033/* For the memory copy APIs (i.e. the standard definitions of these),
34 * because this file defines png_memcpy and so on the base APIs must
35 * be defined here.
36 */
37#ifdef BSD
38# include <strings.h>
39#else
40# include <string.h>
41#endif
42
43/* For png_FILE_p - this provides the standard definition of a
44 * FILE
45 */
46#ifdef PNG_STDIO_SUPPORTED
47# include <stdio.h>
48#endif
49
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050050/* This controls optimization of the reading of 16 and 32 bit values
51 * from PNG files. It can be set on a per-app-file basis - it
52 * just changes whether a macro is used to the function is called.
Glenn Randers-Pehrsonc3d73f42010-04-24 09:18:57 -050053 * The library builder sets the default, if read functions are not
54 * built into the library the macro implementation is forced on.
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050055 */
Glenn Randers-Pehrsonc3d73f42010-04-24 09:18:57 -050056#ifndef PNG_READ_INT_FUNCTIONS_SUPPORTED
57# define PNG_USE_READ_MACROS
58#endif
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050059#if !defined(PNG_NO_USE_READ_MACROS) && !defined(PNG_USE_READ_MACROS)
60# if PNG_DEFAULT_READ_MACROS
61# define PNG_USE_READ_MACROS
62# endif
63#endif
64
Glenn Randers-Pehrson8fc36042010-04-17 10:17:46 -050065/* COMPILER SPECIFIC OPTIONS.
Glenn Randers-Pehrson7824a702009-06-13 10:05:05 -050066 *
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050067 * These options are provided so that a variety of difficult compilers
68 * can be used. Some are fixed at build time (e.g. PNG_API_RULE
69 * below) but still have compiler specific implementations, others
70 * may be changed on a per-file basis when compiling against libpng.
Glenn Randers-Pehrson86dc9812006-05-10 07:27:44 -050071 */
Glenn Randers-Pehrsona4517252010-12-06 08:54:55 -060072
73/* The PNGARG macro protects us against machines that don't have function
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -060074 * prototypes (ie K&R style headers). If your compiler does not handle
75 * function prototypes, define this macro and use the included ansi2knr.
76 * I've always been able to use _NO_PROTO as the indicator, but you may
77 * need to drag the empty declaration out in front of here, or change the
78 * ifdef to suit your own needs.
Glenn Randers-Pehrsona4d54bd2000-07-14 08:15:12 -050079 */
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -060080#ifndef PNGARG
81
82# ifdef OF /* zlib prototype munger */
83# define PNGARG(arglist) OF(arglist)
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -050084# else
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -060085
86# ifdef _NO_PROTO
87# define PNGARG(arglist) ()
Glenn Randers-Pehrsona4d54bd2000-07-14 08:15:12 -050088# else
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -060089# define PNGARG(arglist) arglist
90# endif /* _NO_PROTO */
91
92# endif /* OF */
93
94#endif /* PNGARG */
95
96/* Function calling conventions.
97 * =============================
98 * Normally it is not necessary to specify to the compiler how to call
99 * a function - it just does it - however on x86 systems derived from
100 * Microsoft and Borland C compilers ('IBM PC', 'DOS', 'Windows' systems
101 * and some others) there are multiple ways to call a function and the
102 * default can be changed on the compiler command line. For this reason
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500103 * libpng specifies the calling convention of every exported function and
104 * every function called via a user supplied function pointer. This is
105 * done in this file by defining the following macros:
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600106 *
107 * PNGAPI Calling convention for exported functions.
108 * PNGCBAPI Calling convention for user provided (callback) functions.
109 * PNGCAPI Calling convention used by the ANSI-C library (required
110 * for longjmp callbacks and sometimes used internally to
111 * specify the calling convention for zlib).
112 *
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500113 * These macros should never be overridden. If it is necessary to
114 * change calling convention in a private build this can be done
115 * by setting PNG_API_RULE (which defaults to 0) to one of the values
116 * below to select the correct 'API' variants.
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600117 *
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500118 * PNG_API_RULE=0 Use PNGCAPI - the 'C' calling convention - throughout.
119 * This is correct in every known environment.
120 * PNG_API_RULE=1 Use the operating system convention for PNGAPI and
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600121 * the 'C' calling convention (from PNGCAPI) for
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500122 * callbacks (PNGCBAPI). This is no longer required
123 * in any known environment - if it has to be used
124 * please post an explanation of the problem to the
125 * libpng mailing list.
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600126 *
127 * These cases only differ if the operating system does not use the C
128 * calling convention, at present this just means the above cases
129 * (x86 DOS/Windows sytems) and, even then, this does not apply to
130 * Cygwin running on those systems.
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500131 *
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -0500132 * Note that the value must be defined in pnglibconf.h so that what
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500133 * the application uses to call the library matches the conventions
134 * set when building the library.
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600135 */
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600136
137/* Symbol export
138 * =============
139 * When building a shared library it is almost always necessary to tell
140 * the compiler which symbols to export. The png.h macro 'PNG_EXPORT'
141 * is used to mark the symbols. On some systems these symbols can be
142 * extracted at link time and need no special processing by the compiler,
143 * on other systems the symbols are flagged by the compiler and just
144 * the declaration requires a special tag applied (unfortunately) in a
145 * compiler dependent way. Some systems can do either.
146 *
147 * A small number of older systems also require a symbol from a DLL to
148 * be flagged to the program that calls it. This is a problem because
149 * we do not know in the header file included by application code that
150 * the symbol will come from a shared library, as opposed to a statically
151 * linked one. For this reason the application must tell us by setting
152 * the magic flag PNG_USE_DLL to turn on the special processing before
153 * it includes png.h.
Glenn Randers-Pehrson821b7102010-06-24 16:16:32 -0500154 *
Glenn Randers-Pehrsond00bbb22010-03-14 09:15:49 -0500155 * Four additional macros are used to make this happen:
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600156 *
157 * PNG_IMPEXP The magic (if any) to cause a symbol to be exported from
158 * the build or imported if PNG_USE_DLL is set - compiler
159 * and system specific.
160 *
161 * PNG_EXPORT_TYPE(type) A macro that pre or appends PNG_IMPEXP to
162 * 'type', compiler specific.
Glenn Randers-Pehrsond00bbb22010-03-14 09:15:49 -0500163 *
164 * PNG_DLL_EXPORT Set to the magic to use during a libpng build to
165 * make a symbol exported from the DLL.
166 *
167 * PNG_DLL_IMPORT Set to the magic to force the libpng symbols to come
168 * from a DLL - used to define PNG_IMPEXP when
169 * PNG_USE_DLL is set.
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600170 */
171
172/* System specific discovery.
173 * ==========================
174 * This code is used at build time to find PNG_IMPEXP, the API settings
175 * and PNG_EXPORT_TYPE(), it may also set a macro to indicate the DLL
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500176 * import processing is possible. On Windows/x86 systems it also sets
177 * compiler-specific macros to the values required to change the calling
178 * conventions of the various functions.
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600179 */
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500180#if ( defined(_Windows) || defined(_WINDOWS) || defined(WIN32) ||\
181 defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) ) &&\
182 ( defined(_X86_) || defined(_X64_) || defined(_M_IX86) ||\
183 defined(_M_X64) || defined(_M_IA64) )
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500184 /* Windows system (DOS doesn't support DLLs) running on x86/x64. Includes
185 * builds under Cygwin or MinGW. Also includes Watcom builds but these need
186 * special treatment because they are not compatible with GCC or Visual C
187 * because of different calling conventions.
Glenn Randers-Pehrsond00bbb22010-03-14 09:15:49 -0500188 */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500189# if PNG_API_RULE == 2
190 /* If this line results in an error, either because __watcall is not
191 * understood or because of a redefine just below you cannot use *this*
192 * build of the library with the compiler you are using. *This* build was
193 * build using Watcom and applications must also be built using Watcom!
194 */
195# define PNGCAPI __watcall
196# endif
197
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500198# if defined(__GNUC__) || (defined (_MSC_VER) && (_MSC_VER >= 800))
199# define PNGCAPI __cdecl
200# if PNG_API_RULE == 1
201# define PNGAPI __stdcall
202# endif
203# else
204 /* An older compiler, or one not detected (erroneously) above,
205 * if necessary override on the command line to get the correct
206 * variants for the compiler.
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600207 */
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500208# ifndef PNGCAPI
209# define PNGCAPI _cdecl
210# endif
211# if PNG_API_RULE == 1 && !defined(PNGAPI)
212# define PNGAPI _stdcall
213# endif
214# endif /* compiler/api */
215 /* NOTE: PNGCBAPI always defaults to PNGCAPI. */
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600216
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500217# if defined(PNGAPI) && !defined(PNG_USER_PRIVATEBUILD)
218 ERROR: PNG_USER_PRIVATEBUILD must be defined if PNGAPI is changed
219# endif
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600220
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500221# if (defined(_MSC_VER) && _MSC_VER < 800) ||\
222 (defined(__BORLANDC__) && __BORLANDC__ < 0x500)
223 /* older Borland and MSC
224 * compilers used '__export' and required this to be after
225 * the type.
226 */
227# ifndef PNG_EXPORT_TYPE
228# define PNG_EXPORT_TYPE(type) type PNG_IMPEXP
229# endif
230# define PNG_DLL_EXPORT __export
231# else /* newer compiler */
232# define PNG_DLL_EXPORT __declspec(dllexport)
233# ifndef PNG_DLL_IMPORT
234# define PNG_DLL_IMPORT __declspec(dllimport)
235# endif
236# endif /* compiler */
237
238#else /* !Windows/x86 */
239# if (defined(__IBMC__) || defined(__IBMCPP__)) && defined(__OS2__)
240# define PNGAPI _System
241# else /* !Windows/x86 && !OS/2 */
242 /* Use the defaults, or define PNG*API on the command line (but
243 * this will have to be done for every compile!)
244 */
245# endif /* other system, !OS/2 */
246#endif /* !Windows/x86 */
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600247
248/* Now do all the defaulting . */
249#ifndef PNGCAPI
250# define PNGCAPI
251#endif
252#ifndef PNGCBAPI
253# define PNGCBAPI PNGCAPI
254#endif
255#ifndef PNGAPI
256# define PNGAPI PNGCAPI
257#endif
258
Glenn Randers-Pehrsond00bbb22010-03-14 09:15:49 -0500259/* The default for PNG_IMPEXP depends on whether the library is
260 * being built or used.
261 */
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600262#ifndef PNG_IMPEXP
Glenn Randers-Pehrsond00bbb22010-03-14 09:15:49 -0500263# ifdef PNGLIB_BUILD
264 /* Building the library */
265# if (defined(DLL_EXPORT)/*from libtool*/ ||\
Glenn Randers-Pehrsond9d4cec2010-07-12 07:12:09 -0500266 defined(_WINDLL) || defined(_DLL) || defined(__DLL__) ||\
267 defined(_USRDLL) ||\
268 defined(PNG_BUILD_DLL)) && defined(PNG_DLL_EXPORT)
Glenn Randers-Pehrsond00bbb22010-03-14 09:15:49 -0500269 /* Building a DLL. */
270# define PNG_IMPEXP PNG_DLL_EXPORT
271# endif /* DLL */
272# else
273 /* Using the library */
274# if defined(PNG_USE_DLL) && defined(PNG_DLL_IMPORT)
275 /* This forces use of a DLL, disallowing static linking */
276# define PNG_IMPEXP PNG_DLL_IMPORT
277# endif
278# endif
279
280# ifndef PNG_IMPEXP
281# define PNG_IMPEXP
282# endif
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600283#endif
Glenn Randers-Pehrsond00bbb22010-03-14 09:15:49 -0500284
John Bowler9c693602011-02-12 08:58:21 -0600285/* In 1.5.2 the definition of PNG_FUNCTION has been changed to always treat
286 * 'attributes' as a storage class - the attributes go at the start of the
287 * function definition, and attributes are always appended regardless of the
288 * compiler. This considerably simplifies these macros but may cause problems
289 * if any compilers both need function attributes and fail to handle them as
290 * a storage class (this is unlikely.)
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500291 */
292#ifndef PNG_FUNCTION
John Bowler9c693602011-02-12 08:58:21 -0600293# define PNG_FUNCTION(type, name, args, attributes) attributes type name args
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500294#endif
295
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600296#ifndef PNG_EXPORT_TYPE
297# define PNG_EXPORT_TYPE(type) PNG_IMPEXP type
298#endif
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500299
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500300 /* The ordinal value is only relevant when preprocessing png.h for symbol
Glenn Randers-Pehrsona4517252010-12-06 08:54:55 -0600301 * table entries, so we discard it here. See the .dfn files in the
302 * scripts directory.
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500303 */
Glenn Randers-Pehrson23d39702010-12-06 18:28:02 -0600304#ifndef PNG_EXPORTA
Glenn Randers-Pehrsond32a6712011-03-06 16:49:10 -0600305
Glenn Randers-Pehrson23d39702010-12-06 18:28:02 -0600306# define PNG_EXPORTA(ordinal, type, name, args, attributes)\
Glenn Randers-Pehrsond32a6712011-03-06 16:49:10 -0600307 PNG_FUNCTION(PNG_EXPORT_TYPE(type),(PNGAPI name),PNGARG(args), \
308 extern attributes)
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600309#endif
310
John Bowler9c693602011-02-12 08:58:21 -0600311/* ANSI-C (C90) does not permit a macro to be invoked with an empty argument,
312 * so make something non-empty to satisfy the requirement:
313 */
314#define PNG_EMPTY /*empty list*/
315
Glenn Randers-Pehrson234e5432010-12-06 20:18:51 -0600316#define PNG_EXPORT(ordinal, type, name, args)\
John Bowler9c693602011-02-12 08:58:21 -0600317 PNG_EXPORTA(ordinal, type, name, args, PNG_EMPTY)
Glenn Randers-Pehrson234e5432010-12-06 20:18:51 -0600318
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600319/* Use PNG_REMOVED to comment out a removed interface. */
320#ifndef PNG_REMOVED
Glenn Randers-Pehrson23d39702010-12-06 18:28:02 -0600321# define PNG_REMOVED(ordinal, type, name, args, attributes)
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600322#endif
323
324#ifndef PNG_CALLBACK
John Bowler9c693602011-02-12 08:58:21 -0600325# define PNG_CALLBACK(type, name, args) type (PNGCBAPI name) PNGARG(args)
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600326#endif
327
328/* Support for compiler specific function attributes. These are used
329 * so that where compiler support is available incorrect use of API
330 * functions in png.h will generate compiler warnings.
331 *
332 * Added at libpng-1.2.41.
333 */
334
335#ifndef PNG_NO_PEDANTIC_WARNINGS
Glenn Randers-Pehrsonc44253f2010-03-13 20:58:39 -0600336# ifndef PNG_PEDANTIC_WARNINGS_SUPPORTED
337# define PNG_PEDANTIC_WARNINGS_SUPPORTED
338# endif
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600339#endif
340
341#ifdef PNG_PEDANTIC_WARNINGS_SUPPORTED
Glenn Randers-Pehrson882340c2010-03-13 21:19:51 -0600342 /* Support for compiler specific function attributes. These are used
343 * so that where compiler support is available incorrect use of API
344 * functions in png.h will generate compiler warnings. Added at libpng
345 * version 1.2.41.
346 */
Glenn Randers-Pehrsonc83d4212011-02-12 08:54:42 -0600347# if defined(__GNUC__)
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600348# ifndef PNG_USE_RESULT
349# define PNG_USE_RESULT __attribute__((__warn_unused_result__))
350# endif
351# ifndef PNG_NORETURN
352# define PNG_NORETURN __attribute__((__noreturn__))
353# endif
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500354# ifndef PNG_PTR_NORETURN
John Bowler9c693602011-02-12 08:58:21 -0600355 /* It's not enough to have the compiler be the correct compiler at
356 * this point - it's necessary for the library (which defines
357 * the type of the library longjmp) to also be the GNU library.
358 * This is because many systems use the GNU compiler with a
359 * non-GNU libc implementation. Min/GW headers are also compatible
360 * with GCC as well as uclibc, so it seems best to exclude known
361 * problem libcs here rather than just including known libcs.
362 *
363 * NOTE: this relies on the only use of PNG_PTR_NORETURN being with
364 * the system longjmp. If the same type is used elsewhere then this
365 * will need to be changed.
366 */
367# if !defined(__CYGWIN__)
368# define PNG_PTR_NORETURN __attribute__((__noreturn__))
369# endif
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500370# endif
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600371# ifndef PNG_ALLOCATED
372# define PNG_ALLOCATED __attribute__((__malloc__))
373# endif
374
375 /* This specifically protects structure members that should only be
376 * accessed from within the library, therefore should be empty during
377 * a library build.
378 */
379# ifndef PNGLIB_BUILD
380# ifndef PNG_DEPRECATED
381# define PNG_DEPRECATED __attribute__((__deprecated__))
382# endif
383# ifndef PNG_DEPSTRUCT
384# define PNG_DEPSTRUCT __attribute__((__deprecated__))
385# endif
386# ifndef PNG_PRIVATE
387# if 0 /* Doesn't work so we use deprecated instead*/
388# define PNG_PRIVATE \
389 __attribute__((warning("This function is not exported by libpng.")))
390# else
391# define PNG_PRIVATE \
392 __attribute__((__deprecated__))
393# endif
John Bowler9c693602011-02-12 08:58:21 -0600394# endif
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600395# endif /* PNGLIB_BUILD */
396# endif /* __GNUC__ */
Glenn Randers-Pehrsond32a6712011-03-06 16:49:10 -0600397
398# if defined(_MSC_VER) && (_MSC_VER >= 1300)
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500399# ifndef PNG_USE_RESULT
Glenn Randers-Pehrsonc36bb792011-02-12 09:49:07 -0600400# define PNG_USE_RESULT /* not supported */
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500401# endif
402# ifndef PNG_NORETURN
403# define PNG_NORETURN __declspec(noreturn)
404# endif
405# ifndef PNG_PTR_NORETURN
Glenn Randers-Pehrsonc36bb792011-02-12 09:49:07 -0600406# define PNG_PTR_NORETURN /* not supported */
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500407# endif
408# ifndef PNG_ALLOCATED
Glenn Randers-Pehrsond32a6712011-03-06 16:49:10 -0600409# define PNG_ALLOCATED __declspec(restrict)
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500410# endif
411
412 /* This specifically protects structure members that should only be
413 * accessed from within the library, therefore should be empty during
414 * a library build.
415 */
416# ifndef PNGLIB_BUILD
417# ifndef PNG_DEPRECATED
418# define PNG_DEPRECATED __declspec(deprecated)
419# endif
420# ifndef PNG_DEPSTRUCT
421# define PNG_DEPSTRUCT __declspec(deprecated)
422# endif
423# ifndef PNG_PRIVATE
424# define PNG_PRIVATE __declspec(deprecated)
John Bowler9c693602011-02-12 08:58:21 -0600425# endif
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500426# endif /* PNGLIB_BUILD */
John Bowler9c693602011-02-12 08:58:21 -0600427# endif /* _MSC_VER */
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600428#endif /* PNG_PEDANTIC_WARNINGS */
429
430#ifndef PNG_DEPRECATED
431# define PNG_DEPRECATED /* Use of this function is deprecated */
432#endif
433#ifndef PNG_USE_RESULT
434# define PNG_USE_RESULT /* The result of this function must be checked */
435#endif
436#ifndef PNG_NORETURN
437# define PNG_NORETURN /* This function does not return */
438#endif
John Bowler9c693602011-02-12 08:58:21 -0600439#ifndef PNG_PTR_NORETURN
440# define PNG_PTR_NORETURN /* This function does not return */
441#endif
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600442#ifndef PNG_ALLOCATED
443# define PNG_ALLOCATED /* The result of the function is new memory */
444#endif
445#ifndef PNG_DEPSTRUCT
446# define PNG_DEPSTRUCT /* Access to this struct member is deprecated */
447#endif
448#ifndef PNG_PRIVATE
449# define PNG_PRIVATE /* This is a private libpng function */
Glenn Randers-Pehrsona4d54bd2000-07-14 08:15:12 -0500450#endif
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500451#ifndef PNG_FP_EXPORT /* A floating point API. */
452# ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson23d39702010-12-06 18:28:02 -0600453# define PNG_FP_EXPORT(ordinal, type, name, args)\
454 PNG_EXPORT(ordinal, type, name, args)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500455# else /* No floating point APIs */
Glenn Randers-Pehrson23d39702010-12-06 18:28:02 -0600456# define PNG_FP_EXPORT(ordinal, type, name, args)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500457# endif
458#endif
459#ifndef PNG_FIXED_EXPORT /* A fixed point API. */
460# ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson23d39702010-12-06 18:28:02 -0600461# define PNG_FIXED_EXPORT(ordinal, type, name, args)\
462 PNG_EXPORT(ordinal, type, name, args)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500463# else /* No fixed point APIs */
Glenn Randers-Pehrson23d39702010-12-06 18:28:02 -0600464# define PNG_FIXED_EXPORT(ordinal, type, name, args)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500465# endif
466#endif
Glenn Randers-Pehrsona4d54bd2000-07-14 08:15:12 -0500467
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600468/* The following uses const char * instead of char * for error
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600469 * and warning message functions, so some compilers won't complain.
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600470 * If you do not want to use const, define PNG_NO_CONST here.
Glenn Randers-Pehrson72531442010-04-17 08:17:51 -0500471 *
472 * This should not change how the APIs are called, so it can be done
473 * on a per-file basis in the application.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600474 */
Glenn Randers-Pehrson28d4aae2009-11-13 16:29:45 -0600475#ifndef PNG_CONST
476# ifndef PNG_NO_CONST
477# define PNG_CONST const
478# else
479# define PNG_CONST
480# endif
Guy Schalnat6d764711995-12-19 03:22:19 -0600481#endif
482
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600483/* Some typedefs to get us started. These should be safe on most of the
Andreas Dilger47a0c421997-05-16 02:46:07 -0500484 * common platforms. The typedefs should be at least as large as the
485 * numbers suggest (a png_uint_32 must be at least 32 bits long), but they
486 * don't have to be exactly that size. Some compilers dislike passing
487 * unsigned shorts as function parameters, so you may be better off using
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500488 * unsigned int for png_uint_16.
Andreas Dilger47a0c421997-05-16 02:46:07 -0500489 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500490
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500491#if defined(INT_MAX) && (INT_MAX > 0x7ffffffeL)
492typedef unsigned int png_uint_32;
493typedef int png_int_32;
494#else
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500495typedef unsigned long png_uint_32;
496typedef long png_int_32;
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500497#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500498typedef unsigned short png_uint_16;
499typedef short png_int_16;
500typedef unsigned char png_byte;
501
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500502#ifdef PNG_NO_SIZE_T
Glenn Randers-Pehrson882340c2010-03-13 21:19:51 -0600503typedef unsigned int png_size_t;
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500504#else
Glenn Randers-Pehrson882340c2010-03-13 21:19:51 -0600505typedef size_t png_size_t;
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500506#endif
Glenn Randers-Pehrsond3a726d2010-08-03 20:26:34 -0500507#define png_sizeof(x) (sizeof (x))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500508
Andreas Dilger47a0c421997-05-16 02:46:07 -0500509/* The following is needed for medium model support. It cannot be in the
Glenn Randers-Pehrson6a9c2ce2009-03-27 19:30:10 -0500510 * pngpriv.h header. Needs modification for other compilers besides
Andreas Dilger47a0c421997-05-16 02:46:07 -0500511 * MSC. Model independent support declares all arrays and pointers to be
512 * large using the far keyword. The zlib version used must also support
513 * model independent data. As of version zlib 1.0.4, the necessary changes
514 * have been made in zlib. The USE_FAR_KEYWORD define triggers other
515 * changes that are needed. (Tim Wegner)
516 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500517
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600518/* Separate compiler dependencies (problem here is that zlib.h always
Glenn Randers-Pehrson6076da82009-09-30 12:28:07 -0500519 * defines FAR. (SJT)
520 */
Guy Schalnat6d764711995-12-19 03:22:19 -0600521#ifdef __BORLANDC__
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -0600522# if defined(__LARGE__) || defined(__HUGE__) || defined(__COMPACT__)
523# define LDATA 1
524# else
525# define LDATA 0
526# endif
Glenn Randers-Pehrson882340c2010-03-13 21:19:51 -0600527 /* GRR: why is Cygwin in here? Cygwin is not Borland C... */
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -0600528# if !defined(__WIN32__) && !defined(__FLAT__) && !defined(__CYGWIN__)
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500529# define PNG_MAX_MALLOC_64K /* only used in build */
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -0600530# if (LDATA != 1)
531# ifndef FAR
532# define FAR __far
533# endif
534# define USE_FAR_KEYWORD
535# endif /* LDATA != 1 */
Glenn Randers-Pehrsonc44253f2010-03-13 20:58:39 -0600536 /* Possibly useful for moving data out of default segment.
537 * Uncomment it if you want. Could also define FARDATA as
538 * const if your compiler supports it. (SJT)
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -0600539# define FARDATA FAR
Glenn Randers-Pehrsonc44253f2010-03-13 20:58:39 -0600540 */
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -0600541# endif /* __WIN32__, __FLAT__, __CYGWIN__ */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600542#endif /* __BORLANDC__ */
Guy Schalnat6d764711995-12-19 03:22:19 -0600543
544
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600545/* Suggest testing for specific compiler first before testing for
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600546 * FAR. The Watcom compiler defines both __MEDIUM__ and M_I86MM,
547 * making reliance oncertain keywords suspect. (SJT)
548 */
Guy Schalnat6d764711995-12-19 03:22:19 -0600549
550/* MSC Medium model */
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500551#ifdef FAR
552# ifdef M_I86MM
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -0600553# define USE_FAR_KEYWORD
554# define FARDATA FAR
555# include <dos.h>
Guy Schalnat6d764711995-12-19 03:22:19 -0600556# endif
557#endif
558
559/* SJT: default case */
560#ifndef FAR
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -0600561# define FAR
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500562#endif
563
Andreas Dilger47a0c421997-05-16 02:46:07 -0500564/* At this point FAR is always defined */
Guy Schalnat6d764711995-12-19 03:22:19 -0600565#ifndef FARDATA
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -0600566# define FARDATA
Guy Schalnat6d764711995-12-19 03:22:19 -0600567#endif
568
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600569/* Typedef for floating-point numbers that are converted
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500570 * to fixed-point with a multiple of 100,000, e.g., gamma
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600571 */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600572typedef png_int_32 png_fixed_point;
573
Andreas Dilger47a0c421997-05-16 02:46:07 -0500574/* Add typedefs for pointers */
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500575typedef void FAR * png_voidp;
576typedef PNG_CONST void FAR * png_const_voidp;
577typedef png_byte FAR * png_bytep;
578typedef PNG_CONST png_byte FAR * png_const_bytep;
579typedef png_uint_32 FAR * png_uint_32p;
580typedef PNG_CONST png_uint_32 FAR * png_const_uint_32p;
581typedef png_int_32 FAR * png_int_32p;
582typedef PNG_CONST png_int_32 FAR * png_const_int_32p;
583typedef png_uint_16 FAR * png_uint_16p;
584typedef PNG_CONST png_uint_16 FAR * png_const_uint_16p;
585typedef png_int_16 FAR * png_int_16p;
586typedef PNG_CONST png_int_16 FAR * png_const_int_16p;
587typedef char FAR * png_charp;
588typedef PNG_CONST char FAR * png_const_charp;
589typedef png_fixed_point FAR * png_fixed_point_p;
590typedef PNG_CONST png_fixed_point FAR * png_const_fixed_point_p;
591typedef png_size_t FAR * png_size_tp;
592typedef PNG_CONST png_size_t FAR * png_const_size_tp;
Glenn Randers-Pehrsonbe9de0f2001-01-22 08:52:16 -0600593
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500594#ifdef PNG_STDIO_SUPPORTED
Glenn Randers-Pehrson882340c2010-03-13 21:19:51 -0600595typedef FILE * png_FILE_p;
Glenn Randers-Pehrsonbe9de0f2001-01-22 08:52:16 -0600596#endif
597
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600598#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500599typedef double FAR * png_doublep;
600typedef PNG_CONST double FAR * png_const_doublep;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600601#endif
Guy Schalnat6d764711995-12-19 03:22:19 -0600602
Andreas Dilger47a0c421997-05-16 02:46:07 -0500603/* Pointers to pointers; i.e. arrays */
Guy Schalnat6d764711995-12-19 03:22:19 -0600604typedef png_byte FAR * FAR * png_bytepp;
605typedef png_uint_32 FAR * FAR * png_uint_32pp;
606typedef png_int_32 FAR * FAR * png_int_32pp;
607typedef png_uint_16 FAR * FAR * png_uint_16pp;
608typedef png_int_16 FAR * FAR * png_int_16pp;
609typedef PNG_CONST char FAR * FAR * png_const_charpp;
610typedef char FAR * FAR * png_charpp;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600611typedef png_fixed_point FAR * FAR * png_fixed_point_pp;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600612#ifdef PNG_FLOATING_POINT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500613typedef double FAR * FAR * png_doublepp;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600614#endif
Guy Schalnat6d764711995-12-19 03:22:19 -0600615
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -0600616/* Pointers to pointers to pointers; i.e., pointer to array */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500617typedef char FAR * FAR * FAR * png_charppp;
Guy Schalnat6d764711995-12-19 03:22:19 -0600618
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500619/* png_alloc_size_t is guaranteed to be no smaller than png_size_t,
620 * and no smaller than png_uint_32. Casts from png_size_t or png_uint_32
621 * to png_alloc_size_t are not necessary; in fact, it is recommended
622 * not to use them at all so that the compiler can complain when something
623 * turns out to be problematic.
624 * Casts in the other direction (from png_alloc_size_t to png_size_t or
625 * png_uint_32) should be explicitly applied; however, we do not expect
626 * to encounter practical situations that require such conversions.
627 */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500628#if defined(__TURBOC__) && !defined(__FLAT__)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500629 typedef unsigned long png_alloc_size_t;
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500630#else
631# if defined(_MSC_VER) && defined(MAXSEG_64K)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500632 typedef unsigned long png_alloc_size_t;
633# else
Glenn Randers-Pehrsond3a726d2010-08-03 20:26:34 -0500634 /* This is an attempt to detect an old Windows system where (int) is
635 * actually 16 bits, in that case png_malloc must have an argument with a
636 * bigger size to accomodate the requirements of the library.
637 */
638# if (defined(_Windows) || defined(_WINDOWS) || defined(_WINDOWS_)) && \
639 (!defined(INT_MAX) || INT_MAX <= 0x7ffffffeL)
640 typedef DWORD png_alloc_size_t;
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500641# else
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500642 typedef png_size_t png_alloc_size_t;
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500643# endif
644# endif
645#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500646
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500647#endif /* PNGCONF_H */