blob: b545dce8ef4a2729f66332ddea654dc6edb31e25 [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-Pehrson67ee8ce2011-12-22 08:21:00 -06004 * libpng version 1.6.0beta04 - December 22, 2011
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
John Bowlerbaeb6d12011-11-26 18:21:02 -060025#ifndef PNG_BUILDING_SYMBOL_TABLE /* else includes may cause problems */
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -050026
John Bowlerbaeb6d12011-11-26 18:21:02 -060027/* From libpng 1.6.0 libpng requires an ANSI X3.159-1989 ("ISOC90") compliant C
28 * compiler for correct compilation. The following header files are required by
29 * the standard. If your compiler doesn't provide these header files, or they
30 * do not match the standard, you will need to provide/improve them.
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050031 */
John Bowlerbaeb6d12011-11-26 18:21:02 -060032#include <limits.h>
33#include <stddef.h>
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050034
Glenn Randers-Pehrson4c7e8202011-11-26 19:00:01 -060035/* Library header files. These header files are all defined by ISOC90; libpng
36 * expects conformant implementations, however, an ISOC90 conformant system need
John Bowlerbaeb6d12011-11-26 18:21:02 -060037 * not provide these header files if the functionality cannot be implemented.
38 * In this case it will be necessary to disable the relevant parts of libpng in
39 * the build of pnglibconf.h.
40 *
41 * Prior to 1.6.0 string.h was included here; the API changes in 1.6.0 to not
42 * include this unnecessary header file.
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050043 */
John Bowlerbaeb6d12011-11-26 18:21:02 -060044
45#ifdef PNG_STDIO_SUPPORTED
46 /* Required for the definition of FILE: */
47# include <stdio.h>
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050048#endif
49
John Bowlerbaeb6d12011-11-26 18:21:02 -060050#ifdef PNG_SETJMP_SUPPORTED
51 /* Required for the definition of jmp_buf and the declaration of longjmp: */
52# include <setjmp.h>
53#endif
54
55#ifdef PNG_CONVERT_tIME_SUPPORTED
56 /* Required for struct tm: */
57# include <time.h>
58#endif
59
60#endif /* PNG_BUILDING_SYMBOL_TABLE */
61
62/* Prior to 1.6.0 it was possible to turn off 'const' in declarations using
63 * PNG_NO_CONST; this is no longer supported except for data declarations which
64 * apparently still cause problems in 2011 on some compilers.
65 */
66#define PNG_CONST const /* backward compatibility only */
67
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050068/* This controls optimization of the reading of 16 and 32 bit values
69 * from PNG files. It can be set on a per-app-file basis - it
70 * just changes whether a macro is used to the function is called.
Glenn Randers-Pehrsonc3d73f42010-04-24 09:18:57 -050071 * The library builder sets the default, if read functions are not
72 * built into the library the macro implementation is forced on.
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050073 */
Glenn Randers-Pehrsonc3d73f42010-04-24 09:18:57 -050074#ifndef PNG_READ_INT_FUNCTIONS_SUPPORTED
75# define PNG_USE_READ_MACROS
76#endif
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050077#if !defined(PNG_NO_USE_READ_MACROS) && !defined(PNG_USE_READ_MACROS)
78# if PNG_DEFAULT_READ_MACROS
79# define PNG_USE_READ_MACROS
80# endif
81#endif
82
Glenn Randers-Pehrson8fc36042010-04-17 10:17:46 -050083/* COMPILER SPECIFIC OPTIONS.
Glenn Randers-Pehrson7824a702009-06-13 10:05:05 -050084 *
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050085 * These options are provided so that a variety of difficult compilers
86 * can be used. Some are fixed at build time (e.g. PNG_API_RULE
87 * below) but still have compiler specific implementations, others
88 * may be changed on a per-file basis when compiling against libpng.
Glenn Randers-Pehrson86dc9812006-05-10 07:27:44 -050089 */
Glenn Randers-Pehrsona4517252010-12-06 08:54:55 -060090
John Bowlerbaeb6d12011-11-26 18:21:02 -060091/* The PNGARG macro was used in versions of libpng prior to 1.6.0 to protect
92 * against legacy (pre ISOC90) compilers that did not understand function
93 * prototypes. It is not required for modern C compilers.
Glenn Randers-Pehrsona4d54bd2000-07-14 08:15:12 -050094 */
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -060095#ifndef PNGARG
John Bowlerbaeb6d12011-11-26 18:21:02 -060096# define PNGARG(arglist) arglist
97#endif
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -060098
99/* Function calling conventions.
100 * =============================
101 * Normally it is not necessary to specify to the compiler how to call
102 * a function - it just does it - however on x86 systems derived from
103 * Microsoft and Borland C compilers ('IBM PC', 'DOS', 'Windows' systems
104 * and some others) there are multiple ways to call a function and the
105 * default can be changed on the compiler command line. For this reason
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500106 * libpng specifies the calling convention of every exported function and
107 * every function called via a user supplied function pointer. This is
108 * done in this file by defining the following macros:
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600109 *
110 * PNGAPI Calling convention for exported functions.
111 * PNGCBAPI Calling convention for user provided (callback) functions.
112 * PNGCAPI Calling convention used by the ANSI-C library (required
113 * for longjmp callbacks and sometimes used internally to
114 * specify the calling convention for zlib).
115 *
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500116 * These macros should never be overridden. If it is necessary to
117 * change calling convention in a private build this can be done
118 * by setting PNG_API_RULE (which defaults to 0) to one of the values
119 * below to select the correct 'API' variants.
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600120 *
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500121 * PNG_API_RULE=0 Use PNGCAPI - the 'C' calling convention - throughout.
122 * This is correct in every known environment.
123 * PNG_API_RULE=1 Use the operating system convention for PNGAPI and
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600124 * the 'C' calling convention (from PNGCAPI) for
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500125 * callbacks (PNGCBAPI). This is no longer required
126 * in any known environment - if it has to be used
127 * please post an explanation of the problem to the
128 * libpng mailing list.
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600129 *
130 * These cases only differ if the operating system does not use the C
131 * calling convention, at present this just means the above cases
132 * (x86 DOS/Windows sytems) and, even then, this does not apply to
133 * Cygwin running on those systems.
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500134 *
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -0500135 * Note that the value must be defined in pnglibconf.h so that what
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500136 * the application uses to call the library matches the conventions
137 * set when building the library.
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600138 */
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600139
140/* Symbol export
141 * =============
142 * When building a shared library it is almost always necessary to tell
143 * the compiler which symbols to export. The png.h macro 'PNG_EXPORT'
144 * is used to mark the symbols. On some systems these symbols can be
145 * extracted at link time and need no special processing by the compiler,
146 * on other systems the symbols are flagged by the compiler and just
147 * the declaration requires a special tag applied (unfortunately) in a
148 * compiler dependent way. Some systems can do either.
149 *
150 * A small number of older systems also require a symbol from a DLL to
151 * be flagged to the program that calls it. This is a problem because
152 * we do not know in the header file included by application code that
153 * the symbol will come from a shared library, as opposed to a statically
154 * linked one. For this reason the application must tell us by setting
155 * the magic flag PNG_USE_DLL to turn on the special processing before
156 * it includes png.h.
Glenn Randers-Pehrson821b7102010-06-24 16:16:32 -0500157 *
Glenn Randers-Pehrsond00bbb22010-03-14 09:15:49 -0500158 * Four additional macros are used to make this happen:
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600159 *
160 * PNG_IMPEXP The magic (if any) to cause a symbol to be exported from
161 * the build or imported if PNG_USE_DLL is set - compiler
162 * and system specific.
163 *
164 * PNG_EXPORT_TYPE(type) A macro that pre or appends PNG_IMPEXP to
165 * 'type', compiler specific.
Glenn Randers-Pehrsond00bbb22010-03-14 09:15:49 -0500166 *
167 * PNG_DLL_EXPORT Set to the magic to use during a libpng build to
John Bowler7b979652011-08-16 22:36:43 -0500168 * make a symbol exported from the DLL. Not used in the
169 * public header files; see pngpriv.h for how it is used
170 * in the libpng build.
Glenn Randers-Pehrsond00bbb22010-03-14 09:15:49 -0500171 *
172 * PNG_DLL_IMPORT Set to the magic to force the libpng symbols to come
173 * from a DLL - used to define PNG_IMPEXP when
174 * PNG_USE_DLL is set.
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600175 */
176
177/* System specific discovery.
178 * ==========================
179 * This code is used at build time to find PNG_IMPEXP, the API settings
180 * and PNG_EXPORT_TYPE(), it may also set a macro to indicate the DLL
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500181 * import processing is possible. On Windows/x86 systems it also sets
182 * compiler-specific macros to the values required to change the calling
183 * conventions of the various functions.
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600184 */
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500185#if ( defined(_Windows) || defined(_WINDOWS) || defined(WIN32) ||\
186 defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) ) &&\
187 ( defined(_X86_) || defined(_X64_) || defined(_M_IX86) ||\
188 defined(_M_X64) || defined(_M_IA64) )
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500189 /* Windows system (DOS doesn't support DLLs) running on x86/x64. Includes
190 * builds under Cygwin or MinGW. Also includes Watcom builds but these need
191 * special treatment because they are not compatible with GCC or Visual C
192 * because of different calling conventions.
Glenn Randers-Pehrsond00bbb22010-03-14 09:15:49 -0500193 */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500194# if PNG_API_RULE == 2
195 /* If this line results in an error, either because __watcall is not
196 * understood or because of a redefine just below you cannot use *this*
197 * build of the library with the compiler you are using. *This* build was
198 * build using Watcom and applications must also be built using Watcom!
199 */
200# define PNGCAPI __watcall
201# endif
202
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500203# if defined(__GNUC__) || (defined (_MSC_VER) && (_MSC_VER >= 800))
204# define PNGCAPI __cdecl
205# if PNG_API_RULE == 1
206# define PNGAPI __stdcall
207# endif
208# else
209 /* An older compiler, or one not detected (erroneously) above,
210 * if necessary override on the command line to get the correct
211 * variants for the compiler.
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600212 */
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500213# ifndef PNGCAPI
214# define PNGCAPI _cdecl
215# endif
216# if PNG_API_RULE == 1 && !defined(PNGAPI)
217# define PNGAPI _stdcall
218# endif
219# endif /* compiler/api */
220 /* NOTE: PNGCBAPI always defaults to PNGCAPI. */
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600221
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500222# if defined(PNGAPI) && !defined(PNG_USER_PRIVATEBUILD)
John Bowlerbaeb6d12011-11-26 18:21:02 -0600223# error "PNG_USER_PRIVATEBUILD must be defined if PNGAPI is changed"
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500224# endif
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600225
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500226# if (defined(_MSC_VER) && _MSC_VER < 800) ||\
227 (defined(__BORLANDC__) && __BORLANDC__ < 0x500)
228 /* older Borland and MSC
229 * compilers used '__export' and required this to be after
230 * the type.
231 */
232# ifndef PNG_EXPORT_TYPE
233# define PNG_EXPORT_TYPE(type) type PNG_IMPEXP
234# endif
235# define PNG_DLL_EXPORT __export
236# else /* newer compiler */
237# define PNG_DLL_EXPORT __declspec(dllexport)
238# ifndef PNG_DLL_IMPORT
239# define PNG_DLL_IMPORT __declspec(dllimport)
240# endif
241# endif /* compiler */
242
243#else /* !Windows/x86 */
244# if (defined(__IBMC__) || defined(__IBMCPP__)) && defined(__OS2__)
245# define PNGAPI _System
246# else /* !Windows/x86 && !OS/2 */
247 /* Use the defaults, or define PNG*API on the command line (but
248 * this will have to be done for every compile!)
249 */
250# endif /* other system, !OS/2 */
251#endif /* !Windows/x86 */
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600252
253/* Now do all the defaulting . */
254#ifndef PNGCAPI
255# define PNGCAPI
256#endif
257#ifndef PNGCBAPI
258# define PNGCBAPI PNGCAPI
259#endif
260#ifndef PNGAPI
261# define PNGAPI PNGCAPI
262#endif
263
John Bowler7b979652011-08-16 22:36:43 -0500264/* PNG_IMPEXP may be set on the compilation system command line or (if not set)
265 * then in an internal header file when building the library, otherwise (when
266 * using the library) it is set here.
Glenn Randers-Pehrsond00bbb22010-03-14 09:15:49 -0500267 */
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600268#ifndef PNG_IMPEXP
John Bowler7b979652011-08-16 22:36:43 -0500269# if defined(PNG_USE_DLL) && defined(PNG_DLL_IMPORT)
270 /* This forces use of a DLL, disallowing static linking */
271# define PNG_IMPEXP PNG_DLL_IMPORT
Glenn Randers-Pehrsond00bbb22010-03-14 09:15:49 -0500272# endif
273
274# ifndef PNG_IMPEXP
275# define PNG_IMPEXP
276# endif
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600277#endif
Glenn Randers-Pehrsond00bbb22010-03-14 09:15:49 -0500278
John Bowler9c693602011-02-12 08:58:21 -0600279/* In 1.5.2 the definition of PNG_FUNCTION has been changed to always treat
280 * 'attributes' as a storage class - the attributes go at the start of the
281 * function definition, and attributes are always appended regardless of the
282 * compiler. This considerably simplifies these macros but may cause problems
283 * if any compilers both need function attributes and fail to handle them as
284 * a storage class (this is unlikely.)
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500285 */
286#ifndef PNG_FUNCTION
John Bowler9c693602011-02-12 08:58:21 -0600287# define PNG_FUNCTION(type, name, args, attributes) attributes type name args
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500288#endif
289
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600290#ifndef PNG_EXPORT_TYPE
291# define PNG_EXPORT_TYPE(type) PNG_IMPEXP type
292#endif
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500293
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500294 /* The ordinal value is only relevant when preprocessing png.h for symbol
Glenn Randers-Pehrsona4517252010-12-06 08:54:55 -0600295 * table entries, so we discard it here. See the .dfn files in the
296 * scripts directory.
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500297 */
Glenn Randers-Pehrson23d39702010-12-06 18:28:02 -0600298#ifndef PNG_EXPORTA
Glenn Randers-Pehrsond32a6712011-03-06 16:49:10 -0600299
Glenn Randers-Pehrson23d39702010-12-06 18:28:02 -0600300# define PNG_EXPORTA(ordinal, type, name, args, attributes)\
Glenn Randers-Pehrsond32a6712011-03-06 16:49:10 -0600301 PNG_FUNCTION(PNG_EXPORT_TYPE(type),(PNGAPI name),PNGARG(args), \
302 extern attributes)
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600303#endif
304
John Bowler9c693602011-02-12 08:58:21 -0600305/* ANSI-C (C90) does not permit a macro to be invoked with an empty argument,
306 * so make something non-empty to satisfy the requirement:
307 */
308#define PNG_EMPTY /*empty list*/
309
Glenn Randers-Pehrson234e5432010-12-06 20:18:51 -0600310#define PNG_EXPORT(ordinal, type, name, args)\
John Bowler9c693602011-02-12 08:58:21 -0600311 PNG_EXPORTA(ordinal, type, name, args, PNG_EMPTY)
Glenn Randers-Pehrson234e5432010-12-06 20:18:51 -0600312
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600313/* Use PNG_REMOVED to comment out a removed interface. */
314#ifndef PNG_REMOVED
Glenn Randers-Pehrson23d39702010-12-06 18:28:02 -0600315# define PNG_REMOVED(ordinal, type, name, args, attributes)
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600316#endif
317
318#ifndef PNG_CALLBACK
John Bowler9c693602011-02-12 08:58:21 -0600319# define PNG_CALLBACK(type, name, args) type (PNGCBAPI name) PNGARG(args)
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600320#endif
321
322/* Support for compiler specific function attributes. These are used
323 * so that where compiler support is available incorrect use of API
324 * functions in png.h will generate compiler warnings.
325 *
326 * Added at libpng-1.2.41.
327 */
328
329#ifndef PNG_NO_PEDANTIC_WARNINGS
Glenn Randers-Pehrsonc44253f2010-03-13 20:58:39 -0600330# ifndef PNG_PEDANTIC_WARNINGS_SUPPORTED
331# define PNG_PEDANTIC_WARNINGS_SUPPORTED
332# endif
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600333#endif
334
335#ifdef PNG_PEDANTIC_WARNINGS_SUPPORTED
Glenn Randers-Pehrson882340c2010-03-13 21:19:51 -0600336 /* Support for compiler specific function attributes. These are used
337 * so that where compiler support is available incorrect use of API
338 * functions in png.h will generate compiler warnings. Added at libpng
339 * version 1.2.41.
340 */
Glenn Randers-Pehrsonc83d4212011-02-12 08:54:42 -0600341# if defined(__GNUC__)
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600342# ifndef PNG_USE_RESULT
343# define PNG_USE_RESULT __attribute__((__warn_unused_result__))
344# endif
345# ifndef PNG_NORETURN
346# define PNG_NORETURN __attribute__((__noreturn__))
347# endif
348# ifndef PNG_ALLOCATED
349# define PNG_ALLOCATED __attribute__((__malloc__))
350# endif
John Bowler7b979652011-08-16 22:36:43 -0500351# ifndef PNG_DEPRECATED
352# define PNG_DEPRECATED __attribute__((__deprecated__))
353# endif
354# ifndef PNG_PRIVATE
355# if 0 /* Doesn't work so we use deprecated instead*/
356# define PNG_PRIVATE \
357 __attribute__((warning("This function is not exported by libpng.")))
358# else
359# define PNG_PRIVATE \
360 __attribute__((__deprecated__))
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600361# endif
John Bowler7b979652011-08-16 22:36:43 -0500362# endif
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600363# endif /* __GNUC__ */
Glenn Randers-Pehrsond32a6712011-03-06 16:49:10 -0600364
365# if defined(_MSC_VER) && (_MSC_VER >= 1300)
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500366# ifndef PNG_USE_RESULT
Glenn Randers-Pehrsonc36bb792011-02-12 09:49:07 -0600367# define PNG_USE_RESULT /* not supported */
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500368# endif
369# ifndef PNG_NORETURN
370# define PNG_NORETURN __declspec(noreturn)
371# endif
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500372# ifndef PNG_ALLOCATED
Glenn Randers-Pehrson1f0eaa02011-12-01 21:45:34 -0600373# if (_MSC_VER >= 1400)
Glenn Randers-Pehrson4fca2552011-06-27 12:01:01 -0500374# define PNG_ALLOCATED __declspec(restrict)
375# endif
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500376# endif
John Bowler7b979652011-08-16 22:36:43 -0500377# ifndef PNG_DEPRECATED
378# define PNG_DEPRECATED __declspec(deprecated)
379# endif
380# ifndef PNG_PRIVATE
381# define PNG_PRIVATE __declspec(deprecated)
382# endif
John Bowler9c693602011-02-12 08:58:21 -0600383# endif /* _MSC_VER */
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600384#endif /* PNG_PEDANTIC_WARNINGS */
385
386#ifndef PNG_DEPRECATED
387# define PNG_DEPRECATED /* Use of this function is deprecated */
388#endif
389#ifndef PNG_USE_RESULT
390# define PNG_USE_RESULT /* The result of this function must be checked */
391#endif
392#ifndef PNG_NORETURN
393# define PNG_NORETURN /* This function does not return */
394#endif
395#ifndef PNG_ALLOCATED
396# define PNG_ALLOCATED /* The result of the function is new memory */
397#endif
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600398#ifndef PNG_PRIVATE
399# define PNG_PRIVATE /* This is a private libpng function */
Glenn Randers-Pehrsona4d54bd2000-07-14 08:15:12 -0500400#endif
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500401#ifndef PNG_FP_EXPORT /* A floating point API. */
402# ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson23d39702010-12-06 18:28:02 -0600403# define PNG_FP_EXPORT(ordinal, type, name, args)\
404 PNG_EXPORT(ordinal, type, name, args)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500405# else /* No floating point APIs */
Glenn Randers-Pehrson23d39702010-12-06 18:28:02 -0600406# define PNG_FP_EXPORT(ordinal, type, name, args)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500407# endif
408#endif
409#ifndef PNG_FIXED_EXPORT /* A fixed point API. */
410# ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson23d39702010-12-06 18:28:02 -0600411# define PNG_FIXED_EXPORT(ordinal, type, name, args)\
412 PNG_EXPORT(ordinal, type, name, args)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500413# else /* No fixed point APIs */
Glenn Randers-Pehrson23d39702010-12-06 18:28:02 -0600414# define PNG_FIXED_EXPORT(ordinal, type, name, args)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500415# endif
416#endif
Glenn Randers-Pehrsona4d54bd2000-07-14 08:15:12 -0500417
John Bowlerbaeb6d12011-11-26 18:21:02 -0600418#ifndef PNG_BUILDING_SYMBOL_TABLE
419/* Some typedefs to get us started. These should be safe on most of the common
420 * platforms.
Glenn Randers-Pehrson72531442010-04-17 08:17:51 -0500421 *
John Bowlerbaeb6d12011-11-26 18:21:02 -0600422 * png_uint_32 and png_int_32 may, currently, be larger than required to hold a
423 * 32-bit value however this is not normally advisable.
424 *
425 * png_uint_16 and png_int_16 should always be two bytes in size - this is
426 * verified at library build time.
427 *
428 * png_byte must always be one byte in size.
429 *
430 * The checks below use constants from limits.h, as defined by the ISOC90
431 * standard.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600432 */
John Bowlerbaeb6d12011-11-26 18:21:02 -0600433#if CHAR_BIT == 8 && UCHAR_MAX == 255
434 typedef unsigned char png_byte;
435#else
436# error "libpng requires 8 bit bytes"
437#endif
438
439#if INT_MIN == -32768 && INT_MAX == 32767
440 typedef int png_int_16;
441#elif SHRT_MIN == -32768 && SHRT_MAX == 32767
442 typedef short png_int_16;
443#else
444# error "libpng requires a signed 16 bit type"
445#endif
446
447#if UINT_MAX == 65535
448 typedef unsigned int png_uint_16;
449#elif USHRT_MAX == 65535
450 typedef unsigned short png_uint_16;
451#else
452# error "libpng requires an unsigned 16 bit type"
453#endif
454
455#if INT_MIN < -2147483646 && INT_MAX > 2147483646
456 typedef int png_int_32;
457#elif LONG_MIN < -2147483646 && LONG_MAX > 2147483646
458 typedef long int png_int_32;
459#else
460# error "libpng requires a signed 32 bit (or more) type"
461#endif
462
463#if UINT_MAX > 4294967294
464 typedef unsigned int png_uint_32;
465#elif ULONG_MAX > 4294967294
466 typedef unsigned long int png_uint_32;
467#else
468# error "libpng requires an unsigned 32 bit (or more) type"
469#endif
470
471/* Prior to 1.6.0 it was possible to disable the use of size_t, 1.6.0, however,
472 * requires an ISOC90 compiler and relies on consistent behavior of sizeof.
473 */
474typedef size_t png_size_t;
475typedef ptrdiff_t png_ptrdiff_t;
476
477/* libpng needs to know the maximum value of 'size_t' and this controls the
478 * definition of png_alloc_size_t, below. This maximum value of size_t limits
479 * but does not control the maximum allocations the library makes - there is
480 * direct application control of this through png_set_user_limits().
481 */
482#ifndef PNG_SMALL_SIZE_T
483 /* Compiler specific tests for systems where size_t is known to be less than
484 * 32 bits (some of these systems may no longer work because of the lack of
485 * 'far' support; see above.)
486 */
487# if (defined(__TURBOC__) && !defined(__FLAT__)) ||\
488 (defined(_MSC_VER) && defined(MAXSEG_64K))
489# define PNG_SMALL_SIZE_T
Glenn Randers-Pehrson28d4aae2009-11-13 16:29:45 -0600490# endif
Guy Schalnat6d764711995-12-19 03:22:19 -0600491#endif
492
John Bowlerbaeb6d12011-11-26 18:21:02 -0600493/* png_alloc_size_t is guaranteed to be no smaller than png_size_t, and no
494 * smaller than png_uint_32. Casts from png_size_t or png_uint_32 to
495 * png_alloc_size_t are not necessary; in fact, it is recommended not to use
496 * them at all so that the compiler can complain when something turns out to be
497 * problematic.
498 *
499 * Casts in the other direction (from png_alloc_size_t to png_size_t or
500 * png_uint_32) should be explicitly applied; however, we do not expect to
501 * encounter practical situations that require such conversions.
502 *
503 * PNG_SMALL_SIZE_T must be defined if the maximum value of size_t is less than
504 * 4294967295 - i.e. less than the maximum value of png_uint_32.
Andreas Dilger47a0c421997-05-16 02:46:07 -0500505 */
John Bowlerbaeb6d12011-11-26 18:21:02 -0600506#ifdef PNG_SMALL_SIZE_T
507 typedef png_uint_32 png_alloc_size_t;
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500508#else
John Bowlerbaeb6d12011-11-26 18:21:02 -0600509 typedef png_size_t png_alloc_size_t;
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500510#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500511
John Bowlerbaeb6d12011-11-26 18:21:02 -0600512/* This macro makes the sizeof operator look and behave like a function, except
513 * that it can take a type without the enclosing () as an argument so long as
514 * the type contains no "," characters.
515 */
Glenn Randers-Pehrsond3a726d2010-08-03 20:26:34 -0500516#define png_sizeof(x) (sizeof (x))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500517
John Bowlerbaeb6d12011-11-26 18:21:02 -0600518/* Prior to 1.6.0 libpng offered limited support for Microsoft C compiler
519 * implementations of Intel CPU specific support of user-mode segmented address
520 * spaces, where 16-bit pointers address more than 65536 bytes of memory using
521 * separate 'segment' registers. The implementation requires two different
522 * types of pointer (only one of which includes the segment value.)
523 *
524 * If required this support is available in version 1.2 of libpng and may be
525 * available in versions through 1.5, although the correctness of the code has
526 * not been verified recently.
Andreas Dilger47a0c421997-05-16 02:46:07 -0500527 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500528
John Bowlerbaeb6d12011-11-26 18:21:02 -0600529/* Typedef for floating-point numbers that are converted to fixed-point with a
530 * multiple of 100,000, e.g., gamma
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600531 */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600532typedef png_int_32 png_fixed_point;
533
Andreas Dilger47a0c421997-05-16 02:46:07 -0500534/* Add typedefs for pointers */
John Bowlerbaeb6d12011-11-26 18:21:02 -0600535typedef void * png_voidp;
536typedef const void * png_const_voidp;
537typedef png_byte * png_bytep;
538typedef const png_byte * png_const_bytep;
539typedef png_uint_32 * png_uint_32p;
540typedef const png_uint_32 * png_const_uint_32p;
541typedef png_int_32 * png_int_32p;
542typedef const png_int_32 * png_const_int_32p;
543typedef png_uint_16 * png_uint_16p;
544typedef const png_uint_16 * png_const_uint_16p;
545typedef png_int_16 * png_int_16p;
546typedef const png_int_16 * png_const_int_16p;
547typedef char * png_charp;
548typedef const char * png_const_charp;
549typedef png_fixed_point * png_fixed_point_p;
550typedef const png_fixed_point * png_const_fixed_point_p;
551typedef png_size_t * png_size_tp;
552typedef const png_size_t * png_const_size_tp;
Glenn Randers-Pehrsonbe9de0f2001-01-22 08:52:16 -0600553
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500554#ifdef PNG_STDIO_SUPPORTED
Glenn Randers-Pehrson882340c2010-03-13 21:19:51 -0600555typedef FILE * png_FILE_p;
Glenn Randers-Pehrsonbe9de0f2001-01-22 08:52:16 -0600556#endif
557
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600558#ifdef PNG_FLOATING_POINT_SUPPORTED
John Bowlerbaeb6d12011-11-26 18:21:02 -0600559typedef double * png_doublep;
560typedef const double * png_const_doublep;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600561#endif
Guy Schalnat6d764711995-12-19 03:22:19 -0600562
Andreas Dilger47a0c421997-05-16 02:46:07 -0500563/* Pointers to pointers; i.e. arrays */
John Bowlerbaeb6d12011-11-26 18:21:02 -0600564typedef png_byte * * png_bytepp;
565typedef png_uint_32 * * png_uint_32pp;
566typedef png_int_32 * * png_int_32pp;
567typedef png_uint_16 * * png_uint_16pp;
568typedef png_int_16 * * png_int_16pp;
569typedef const char * * png_const_charpp;
570typedef char * * png_charpp;
571typedef png_fixed_point * * png_fixed_point_pp;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600572#ifdef PNG_FLOATING_POINT_SUPPORTED
John Bowlerbaeb6d12011-11-26 18:21:02 -0600573typedef double * * png_doublepp;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600574#endif
Guy Schalnat6d764711995-12-19 03:22:19 -0600575
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -0600576/* Pointers to pointers to pointers; i.e., pointer to array */
John Bowlerbaeb6d12011-11-26 18:21:02 -0600577typedef char * * * png_charppp;
Guy Schalnat6d764711995-12-19 03:22:19 -0600578
John Bowlerbaeb6d12011-11-26 18:21:02 -0600579#endif /* PNG_BUILDING_SYMBOL_TABLE */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500580
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500581#endif /* PNGCONF_H */