blob: 927a769dbee8c1915db4d6e309c9a257c1bf05c1 [file] [log] [blame]
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -05001
Cosmin Trutaa40189c2019-04-14 14:10:32 -04002/* pngconf.h - machine-configurable file for libpng
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06003 *
Cosmin Trutaa40189c2019-04-14 14:10:32 -04004 * libpng version 1.6.37
Glenn Randers-Pehrsonc17c9572010-03-08 21:26:48 -06005 *
Cosmin Trutaa40189c2019-04-14 14:10:32 -04006 * Copyright (c) 2018-2019 Cosmin Truta
Cosmin Truta46aedd82018-07-15 23:58:00 -04007 * Copyright (c) 1998-2002,2004,2006-2016,2018 Glenn Randers-Pehrson
Cosmin Trutad4fb6212018-07-28 18:34:58 -04008 * Copyright (c) 1996-1997 Andreas Dilger
9 * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
Glenn Randers-Pehrson3e61d792009-06-24 09:31:28 -050010 *
Glenn Randers-Pehrsonbfbf8652009-06-26 21:46:52 -050011 * This code is released under the libpng license.
Glenn Randers-Pehrsonc332bbc2009-06-25 13:43:50 -050012 * For conditions of distribution and use, see the disclaimer
Glenn Randers-Pehrson037023b2009-06-24 10:27:36 -050013 * and license in png.h
Glenn Randers-Pehrson3e61d792009-06-24 09:31:28 -050014 *
Glenn Randers-Pehrson3e0bef62015-03-04 09:45:57 -060015 * Any machine specific code is near the front of this file, so if you
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060016 * are configuring libpng for a machine, you may want to read the section
17 * starting here down to where it starts to typedef png_color, png_text,
18 * and png_info.
19 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -050020
21#ifndef PNGCONF_H
22#define PNGCONF_H
23
John Bowlerbaeb6d12011-11-26 18:21:02 -060024#ifndef PNG_BUILDING_SYMBOL_TABLE /* else includes may cause problems */
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -050025
John Bowlerbaeb6d12011-11-26 18:21:02 -060026/* From libpng 1.6.0 libpng requires an ANSI X3.159-1989 ("ISOC90") compliant C
27 * compiler for correct compilation. The following header files are required by
28 * the standard. If your compiler doesn't provide these header files, or they
29 * do not match the standard, you will need to provide/improve them.
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050030 */
John Bowlerbaeb6d12011-11-26 18:21:02 -060031#include <limits.h>
32#include <stddef.h>
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050033
Glenn Randers-Pehrson4c7e8202011-11-26 19:00:01 -060034/* Library header files. These header files are all defined by ISOC90; libpng
35 * expects conformant implementations, however, an ISOC90 conformant system need
John Bowlerbaeb6d12011-11-26 18:21:02 -060036 * not provide these header files if the functionality cannot be implemented.
37 * In this case it will be necessary to disable the relevant parts of libpng in
38 * the build of pnglibconf.h.
39 *
40 * Prior to 1.6.0 string.h was included here; the API changes in 1.6.0 to not
41 * include this unnecessary header file.
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050042 */
John Bowlerbaeb6d12011-11-26 18:21:02 -060043
44#ifdef PNG_STDIO_SUPPORTED
45 /* Required for the definition of FILE: */
46# include <stdio.h>
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050047#endif
48
John Bowlerbaeb6d12011-11-26 18:21:02 -060049#ifdef PNG_SETJMP_SUPPORTED
50 /* Required for the definition of jmp_buf and the declaration of longjmp: */
51# include <setjmp.h>
52#endif
53
54#ifdef PNG_CONVERT_tIME_SUPPORTED
55 /* Required for struct tm: */
56# include <time.h>
57#endif
58
59#endif /* PNG_BUILDING_SYMBOL_TABLE */
60
Cosmin Truta1ef88822018-08-18 21:01:02 -040061/* Prior to 1.6.0, it was possible to turn off 'const' in declarations,
62 * using PNG_NO_CONST. This is no longer supported.
John Bowlerbaeb6d12011-11-26 18:21:02 -060063 */
64#define PNG_CONST const /* backward compatibility only */
65
Cosmin Truta81a65de2018-11-25 20:27:04 -050066/* This controls optimization of the reading of 16-bit and 32-bit
67 * values from PNG files. It can be set on a per-app-file basis: it
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -060068 * just changes whether a macro is used when the function is called.
69 * The library builder sets the default; if read functions are not
Glenn Randers-Pehrsonc3d73f42010-04-24 09:18:57 -050070 * built into the library the macro implementation is forced on.
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050071 */
Glenn Randers-Pehrsonc3d73f42010-04-24 09:18:57 -050072#ifndef PNG_READ_INT_FUNCTIONS_SUPPORTED
73# define PNG_USE_READ_MACROS
74#endif
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050075#if !defined(PNG_NO_USE_READ_MACROS) && !defined(PNG_USE_READ_MACROS)
76# if PNG_DEFAULT_READ_MACROS
77# define PNG_USE_READ_MACROS
78# endif
79#endif
80
Glenn Randers-Pehrson8fc36042010-04-17 10:17:46 -050081/* COMPILER SPECIFIC OPTIONS.
Glenn Randers-Pehrson7824a702009-06-13 10:05:05 -050082 *
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050083 * These options are provided so that a variety of difficult compilers
84 * can be used. Some are fixed at build time (e.g. PNG_API_RULE
85 * below) but still have compiler specific implementations, others
86 * may be changed on a per-file basis when compiling against libpng.
Glenn Randers-Pehrson86dc9812006-05-10 07:27:44 -050087 */
Glenn Randers-Pehrsona4517252010-12-06 08:54:55 -060088
John Bowlerbaeb6d12011-11-26 18:21:02 -060089/* The PNGARG macro was used in versions of libpng prior to 1.6.0 to protect
90 * against legacy (pre ISOC90) compilers that did not understand function
91 * prototypes. It is not required for modern C compilers.
Glenn Randers-Pehrsona4d54bd2000-07-14 08:15:12 -050092 */
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -060093#ifndef PNGARG
John Bowlerbaeb6d12011-11-26 18:21:02 -060094# define PNGARG(arglist) arglist
95#endif
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -060096
97/* Function calling conventions.
98 * =============================
99 * Normally it is not necessary to specify to the compiler how to call
100 * a function - it just does it - however on x86 systems derived from
101 * Microsoft and Borland C compilers ('IBM PC', 'DOS', 'Windows' systems
102 * and some others) there are multiple ways to call a function and the
103 * default can be changed on the compiler command line. For this reason
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500104 * libpng specifies the calling convention of every exported function and
105 * every function called via a user supplied function pointer. This is
106 * done in this file by defining the following macros:
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600107 *
108 * PNGAPI Calling convention for exported functions.
109 * PNGCBAPI Calling convention for user provided (callback) functions.
110 * PNGCAPI Calling convention used by the ANSI-C library (required
111 * for longjmp callbacks and sometimes used internally to
112 * specify the calling convention for zlib).
113 *
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500114 * These macros should never be overridden. If it is necessary to
115 * change calling convention in a private build this can be done
116 * by setting PNG_API_RULE (which defaults to 0) to one of the values
117 * below to select the correct 'API' variants.
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600118 *
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500119 * PNG_API_RULE=0 Use PNGCAPI - the 'C' calling convention - throughout.
120 * This is correct in every known environment.
121 * PNG_API_RULE=1 Use the operating system convention for PNGAPI and
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600122 * the 'C' calling convention (from PNGCAPI) for
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500123 * callbacks (PNGCBAPI). This is no longer required
124 * in any known environment - if it has to be used
125 * please post an explanation of the problem to the
126 * libpng mailing list.
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600127 *
128 * These cases only differ if the operating system does not use the C
129 * calling convention, at present this just means the above cases
Unknownf23b41d2017-11-03 00:52:06 -0400130 * (x86 DOS/Windows systems) and, even then, this does not apply to
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600131 * Cygwin running on those systems.
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500132 *
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -0500133 * Note that the value must be defined in pnglibconf.h so that what
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500134 * the application uses to call the library matches the conventions
135 * set when building the library.
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600136 */
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600137
138/* Symbol export
139 * =============
140 * When building a shared library it is almost always necessary to tell
141 * the compiler which symbols to export. The png.h macro 'PNG_EXPORT'
142 * is used to mark the symbols. On some systems these symbols can be
143 * extracted at link time and need no special processing by the compiler,
144 * on other systems the symbols are flagged by the compiler and just
145 * the declaration requires a special tag applied (unfortunately) in a
146 * compiler dependent way. Some systems can do either.
147 *
148 * A small number of older systems also require a symbol from a DLL to
149 * be flagged to the program that calls it. This is a problem because
150 * we do not know in the header file included by application code that
151 * the symbol will come from a shared library, as opposed to a statically
152 * linked one. For this reason the application must tell us by setting
153 * the magic flag PNG_USE_DLL to turn on the special processing before
154 * it includes png.h.
Glenn Randers-Pehrson821b7102010-06-24 16:16:32 -0500155 *
Glenn Randers-Pehrsond00bbb22010-03-14 09:15:49 -0500156 * Four additional macros are used to make this happen:
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600157 *
158 * PNG_IMPEXP The magic (if any) to cause a symbol to be exported from
159 * the build or imported if PNG_USE_DLL is set - compiler
160 * and system specific.
161 *
162 * PNG_EXPORT_TYPE(type) A macro that pre or appends PNG_IMPEXP to
163 * 'type', compiler specific.
Glenn Randers-Pehrsond00bbb22010-03-14 09:15:49 -0500164 *
165 * PNG_DLL_EXPORT Set to the magic to use during a libpng build to
John Bowler7b979652011-08-16 22:36:43 -0500166 * make a symbol exported from the DLL. Not used in the
167 * public header files; see pngpriv.h for how it is used
168 * in the libpng build.
Glenn Randers-Pehrsond00bbb22010-03-14 09:15:49 -0500169 *
170 * PNG_DLL_IMPORT Set to the magic to force the libpng symbols to come
171 * from a DLL - used to define PNG_IMPEXP when
172 * PNG_USE_DLL is set.
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600173 */
174
175/* System specific discovery.
176 * ==========================
177 * This code is used at build time to find PNG_IMPEXP, the API settings
178 * and PNG_EXPORT_TYPE(), it may also set a macro to indicate the DLL
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600179 * import processing is possible. On Windows systems it also sets
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500180 * compiler-specific macros to the values required to change the calling
181 * conventions of the various functions.
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600182 */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600183#if defined(_Windows) || defined(_WINDOWS) || defined(WIN32) ||\
184 defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
185 /* Windows system (DOS doesn't support DLLs). Includes builds under Cygwin or
186 * MinGW on any architecture currently supported by Windows. Also includes
187 * Watcom builds but these need special treatment because they are not
188 * compatible with GCC or Visual C because of different calling conventions.
Glenn Randers-Pehrsond00bbb22010-03-14 09:15:49 -0500189 */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500190# if PNG_API_RULE == 2
Glenn Randers-Pehrson192e92d2016-07-13 14:43:42 -0500191 /* If this line results in an error, either because __watcall is not
192 * understood or because of a redefine just below you cannot use *this*
193 * build of the library with the compiler you are using. *This* build was
194 * build using Watcom and applications must also be built using Watcom!
195 */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500196# define PNGCAPI __watcall
197# endif
198
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600199# if defined(__GNUC__) || (defined(_MSC_VER) && (_MSC_VER >= 800))
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500200# define PNGCAPI __cdecl
201# if PNG_API_RULE == 1
Glenn Randers-Pehrson192e92d2016-07-13 14:43:42 -0500202 /* If this line results in an error __stdcall is not understood and
203 * PNG_API_RULE should not have been set to '1'.
204 */
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500205# define PNGAPI __stdcall
206# endif
207# else
Glenn Randers-Pehrson192e92d2016-07-13 14:43:42 -0500208 /* An older compiler, or one not detected (erroneously) above,
209 * if necessary override on the command line to get the correct
210 * variants for the compiler.
211 */
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500212# ifndef PNGCAPI
213# define PNGCAPI _cdecl
214# endif
215# if PNG_API_RULE == 1 && !defined(PNGAPI)
216# define PNGAPI _stdcall
217# endif
218# endif /* compiler/api */
John Bowler18dd07e2013-06-08 13:07:13 -0500219
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500220 /* 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)
Glenn Randers-Pehrson192e92d2016-07-13 14:43:42 -0500228 /* older Borland and MSC
229 * compilers used '__export' and required this to be after
230 * the type.
231 */
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500232# 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
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600243#else /* !Windows */
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500244# if (defined(__IBMC__) || defined(__IBMCPP__)) && defined(__OS2__)
245# define PNGAPI _System
246# else /* !Windows/x86 && !OS/2 */
Glenn Randers-Pehrson192e92d2016-07-13 14:43:42 -0500247 /* Use the defaults, or define PNG*API on the command line (but
248 * this will have to be done for every compile!)
249 */
Glenn Randers-Pehrson9ee577c2010-04-24 09:40:44 -0500250# 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)
Glenn Randers-Pehrson192e92d2016-07-13 14:43:42 -0500270 /* This forces use of a DLL, disallowing static linking */
John Bowler7b979652011-08-16 22:36:43 -0500271# 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-Pehrsond32a6712011-03-06 16:49:10 -0600298
Glenn Randers-Pehrsonb9e5e5f2015-07-03 16:07:54 -0500299#ifndef PNG_EXPORTA
300# define PNG_EXPORTA(ordinal, type, name, args, attributes) \
301 PNG_FUNCTION(PNG_EXPORT_TYPE(type), (PNGAPI name), PNGARG(args), \
302 PNG_LINKAGE_API 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-Pehrsonb9e5e5f2015-07-03 16:07:54 -0500310#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
John Bowler5d567862011-12-24 09:12:00 -0600337 * so that where compiler support is available, incorrect use of API
Glenn Randers-Pehrson882340c2010-03-13 21:19:51 -0600338 * functions in png.h will generate compiler warnings. Added at libpng
John Bowler5d567862011-12-24 09:12:00 -0600339 * version 1.2.41. Disabling these removes the warnings but may also produce
340 * less efficient code.
Glenn Randers-Pehrson882340c2010-03-13 21:19:51 -0600341 */
Glenn Randers-Pehrson41694dc2014-06-07 22:27:44 -0500342# if defined(__clang__) && defined(__has_attribute)
Glenn Randers-Pehrson192e92d2016-07-13 14:43:42 -0500343 /* Clang defines both __clang__ and __GNUC__. Check __clang__ first. */
Glenn Randers-Pehrsonbda94b12014-01-13 21:16:17 -0600344# if !defined(PNG_USE_RESULT) && __has_attribute(__warn_unused_result__)
345# define PNG_USE_RESULT __attribute__((__warn_unused_result__))
346# endif
347# if !defined(PNG_NORETURN) && __has_attribute(__noreturn__)
348# define PNG_NORETURN __attribute__((__noreturn__))
349# endif
350# if !defined(PNG_ALLOCATED) && __has_attribute(__malloc__)
351# define PNG_ALLOCATED __attribute__((__malloc__))
352# endif
353# if !defined(PNG_DEPRECATED) && __has_attribute(__deprecated__)
354# define PNG_DEPRECATED __attribute__((__deprecated__))
355# endif
356# if !defined(PNG_PRIVATE)
Glenn Randers-Pehrsondd6679d2014-02-20 06:57:57 -0600357# ifdef __has_extension
358# if __has_extension(attribute_unavailable_with_message)
359# define PNG_PRIVATE __attribute__((__unavailable__(\
360 "This function is not exported by libpng.")))
361# endif
Glenn Randers-Pehrsonbda94b12014-01-13 21:16:17 -0600362# endif
363# endif
364# ifndef PNG_RESTRICT
365# define PNG_RESTRICT __restrict
366# endif
367
368# elif defined(__GNUC__)
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600369# ifndef PNG_USE_RESULT
370# define PNG_USE_RESULT __attribute__((__warn_unused_result__))
371# endif
372# ifndef PNG_NORETURN
373# define PNG_NORETURN __attribute__((__noreturn__))
374# endif
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600375# if __GNUC__ >= 3
376# ifndef PNG_ALLOCATED
377# define PNG_ALLOCATED __attribute__((__malloc__))
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600378# endif
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600379# ifndef PNG_DEPRECATED
380# define PNG_DEPRECATED __attribute__((__deprecated__))
381# endif
382# ifndef PNG_PRIVATE
383# if 0 /* Doesn't work so we use deprecated instead*/
384# define PNG_PRIVATE \
385 __attribute__((warning("This function is not exported by libpng.")))
386# else
387# define PNG_PRIVATE \
388 __attribute__((__deprecated__))
389# endif
390# endif
Glenn Randers-Pehrsonbda94b12014-01-13 21:16:17 -0600391# if ((__GNUC__ > 3) || !defined(__GNUC_MINOR__) || (__GNUC_MINOR__ >= 1))
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600392# ifndef PNG_RESTRICT
393# define PNG_RESTRICT __restrict
394# endif
Glenn Randers-Pehrsonefaaad72014-01-13 21:43:51 -0600395# endif /* __GNUC__.__GNUC_MINOR__ > 3.0 */
Glenn Randers-Pehrsonbda94b12014-01-13 21:16:17 -0600396# endif /* __GNUC__ >= 3 */
Glenn Randers-Pehrsond32a6712011-03-06 16:49:10 -0600397
John Bowler5d567862011-12-24 09:12:00 -0600398# elif 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
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500405# ifndef PNG_ALLOCATED
Glenn Randers-Pehrson1f0eaa02011-12-01 21:45:34 -0600406# if (_MSC_VER >= 1400)
Glenn Randers-Pehrson4fca2552011-06-27 12:01:01 -0500407# define PNG_ALLOCATED __declspec(restrict)
408# endif
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500409# endif
John Bowler7b979652011-08-16 22:36:43 -0500410# ifndef PNG_DEPRECATED
411# define PNG_DEPRECATED __declspec(deprecated)
412# endif
413# ifndef PNG_PRIVATE
414# define PNG_PRIVATE __declspec(deprecated)
415# endif
John Bowler5d567862011-12-24 09:12:00 -0600416# ifndef PNG_RESTRICT
417# if (_MSC_VER >= 1400)
418# define PNG_RESTRICT __restrict
419# endif
420# endif
421
422# elif defined(__WATCOMC__)
423# ifndef PNG_RESTRICT
424# define PNG_RESTRICT __restrict
425# endif
Glenn Randers-Pehrsonbda94b12014-01-13 21:16:17 -0600426# endif
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600427#endif /* PNG_PEDANTIC_WARNINGS */
428
429#ifndef PNG_DEPRECATED
430# define PNG_DEPRECATED /* Use of this function is deprecated */
431#endif
432#ifndef PNG_USE_RESULT
433# define PNG_USE_RESULT /* The result of this function must be checked */
434#endif
435#ifndef PNG_NORETURN
436# define PNG_NORETURN /* This function does not return */
437#endif
438#ifndef PNG_ALLOCATED
439# define PNG_ALLOCATED /* The result of the function is new memory */
440#endif
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600441#ifndef PNG_PRIVATE
442# define PNG_PRIVATE /* This is a private libpng function */
Glenn Randers-Pehrsona4d54bd2000-07-14 08:15:12 -0500443#endif
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600444#ifndef PNG_RESTRICT
445# define PNG_RESTRICT /* The C99 "restrict" feature */
446#endif
Glenn Randers-Pehrsonbda94b12014-01-13 21:16:17 -0600447
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500448#ifndef PNG_FP_EXPORT /* A floating point API. */
449# ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson23d39702010-12-06 18:28:02 -0600450# define PNG_FP_EXPORT(ordinal, type, name, args)\
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600451 PNG_EXPORT(ordinal, type, name, args);
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500452# else /* No floating point APIs */
Glenn Randers-Pehrson23d39702010-12-06 18:28:02 -0600453# define PNG_FP_EXPORT(ordinal, type, name, args)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500454# endif
455#endif
456#ifndef PNG_FIXED_EXPORT /* A fixed point API. */
457# ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson23d39702010-12-06 18:28:02 -0600458# define PNG_FIXED_EXPORT(ordinal, type, name, args)\
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600459 PNG_EXPORT(ordinal, type, name, args);
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500460# else /* No fixed point APIs */
Glenn Randers-Pehrson23d39702010-12-06 18:28:02 -0600461# define PNG_FIXED_EXPORT(ordinal, type, name, args)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500462# endif
463#endif
Glenn Randers-Pehrsona4d54bd2000-07-14 08:15:12 -0500464
John Bowlerbaeb6d12011-11-26 18:21:02 -0600465#ifndef PNG_BUILDING_SYMBOL_TABLE
466/* Some typedefs to get us started. These should be safe on most of the common
467 * platforms.
Glenn Randers-Pehrson72531442010-04-17 08:17:51 -0500468 *
John Bowlerbaeb6d12011-11-26 18:21:02 -0600469 * png_uint_32 and png_int_32 may, currently, be larger than required to hold a
470 * 32-bit value however this is not normally advisable.
471 *
472 * png_uint_16 and png_int_16 should always be two bytes in size - this is
473 * verified at library build time.
474 *
475 * png_byte must always be one byte in size.
476 *
477 * The checks below use constants from limits.h, as defined by the ISOC90
478 * standard.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600479 */
John Bowlerbaeb6d12011-11-26 18:21:02 -0600480#if CHAR_BIT == 8 && UCHAR_MAX == 255
481 typedef unsigned char png_byte;
482#else
Glenn Randers-Pehrson8b83ff32015-08-13 20:57:18 -0500483# error "libpng requires 8-bit bytes"
John Bowlerbaeb6d12011-11-26 18:21:02 -0600484#endif
485
486#if INT_MIN == -32768 && INT_MAX == 32767
487 typedef int png_int_16;
488#elif SHRT_MIN == -32768 && SHRT_MAX == 32767
489 typedef short png_int_16;
490#else
Glenn Randers-Pehrson8b83ff32015-08-13 20:57:18 -0500491# error "libpng requires a signed 16-bit type"
John Bowlerbaeb6d12011-11-26 18:21:02 -0600492#endif
493
494#if UINT_MAX == 65535
495 typedef unsigned int png_uint_16;
496#elif USHRT_MAX == 65535
497 typedef unsigned short png_uint_16;
498#else
Glenn Randers-Pehrson8b83ff32015-08-13 20:57:18 -0500499# error "libpng requires an unsigned 16-bit type"
John Bowlerbaeb6d12011-11-26 18:21:02 -0600500#endif
501
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600502#if INT_MIN < -2147483646 && INT_MAX > 2147483646
John Bowlerbaeb6d12011-11-26 18:21:02 -0600503 typedef int png_int_32;
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600504#elif LONG_MIN < -2147483646 && LONG_MAX > 2147483646
John Bowlerbaeb6d12011-11-26 18:21:02 -0600505 typedef long int png_int_32;
506#else
Glenn Randers-Pehrson8b83ff32015-08-13 20:57:18 -0500507# error "libpng requires a signed 32-bit (or more) type"
John Bowlerbaeb6d12011-11-26 18:21:02 -0600508#endif
509
Glenn Randers-Pehrson7d7694a2016-10-05 09:23:08 -0500510#if UINT_MAX > 4294967294U
John Bowlerbaeb6d12011-11-26 18:21:02 -0600511 typedef unsigned int png_uint_32;
Glenn Randers-Pehrson7d7694a2016-10-05 09:23:08 -0500512#elif ULONG_MAX > 4294967294U
John Bowlerbaeb6d12011-11-26 18:21:02 -0600513 typedef unsigned long int png_uint_32;
514#else
Glenn Randers-Pehrson8b83ff32015-08-13 20:57:18 -0500515# error "libpng requires an unsigned 32-bit (or more) type"
John Bowlerbaeb6d12011-11-26 18:21:02 -0600516#endif
517
Cosmin Trutaa74aa9a2018-06-17 22:37:44 -0400518/* Prior to 1.6.0, it was possible to disable the use of size_t and ptrdiff_t.
519 * From 1.6.0 onwards, an ISO C90 compiler, as well as a standard-compliant
520 * behavior of sizeof and ptrdiff_t are required.
521 * The legacy typedefs are provided here for backwards compatibility.
John Bowlerbaeb6d12011-11-26 18:21:02 -0600522 */
523typedef size_t png_size_t;
524typedef ptrdiff_t png_ptrdiff_t;
525
526/* libpng needs to know the maximum value of 'size_t' and this controls the
527 * definition of png_alloc_size_t, below. This maximum value of size_t limits
528 * but does not control the maximum allocations the library makes - there is
529 * direct application control of this through png_set_user_limits().
530 */
531#ifndef PNG_SMALL_SIZE_T
532 /* Compiler specific tests for systems where size_t is known to be less than
533 * 32 bits (some of these systems may no longer work because of the lack of
534 * 'far' support; see above.)
535 */
536# if (defined(__TURBOC__) && !defined(__FLAT__)) ||\
537 (defined(_MSC_VER) && defined(MAXSEG_64K))
538# define PNG_SMALL_SIZE_T
Glenn Randers-Pehrson28d4aae2009-11-13 16:29:45 -0600539# endif
Guy Schalnat6d764711995-12-19 03:22:19 -0600540#endif
541
Cosmin Trutaa74aa9a2018-06-17 22:37:44 -0400542/* png_alloc_size_t is guaranteed to be no smaller than size_t, and no smaller
543 * than png_uint_32. Casts from size_t or png_uint_32 to png_alloc_size_t are
544 * not necessary; in fact, it is recommended not to use them at all, so that
545 * the compiler can complain when something turns out to be problematic.
John Bowlerbaeb6d12011-11-26 18:21:02 -0600546 *
Cosmin Trutaa74aa9a2018-06-17 22:37:44 -0400547 * Casts in the other direction (from png_alloc_size_t to size_t or
John Bowlerbaeb6d12011-11-26 18:21:02 -0600548 * png_uint_32) should be explicitly applied; however, we do not expect to
549 * encounter practical situations that require such conversions.
550 *
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600551 * PNG_SMALL_SIZE_T must be defined if the maximum value of size_t is less than
John Bowlerbaeb6d12011-11-26 18:21:02 -0600552 * 4294967295 - i.e. less than the maximum value of png_uint_32.
Andreas Dilger47a0c421997-05-16 02:46:07 -0500553 */
John Bowlerbaeb6d12011-11-26 18:21:02 -0600554#ifdef PNG_SMALL_SIZE_T
555 typedef png_uint_32 png_alloc_size_t;
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500556#else
Cosmin Trutaa74aa9a2018-06-17 22:37:44 -0400557 typedef size_t png_alloc_size_t;
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500558#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500559
John Bowlerbaeb6d12011-11-26 18:21:02 -0600560/* Prior to 1.6.0 libpng offered limited support for Microsoft C compiler
561 * implementations of Intel CPU specific support of user-mode segmented address
562 * spaces, where 16-bit pointers address more than 65536 bytes of memory using
563 * separate 'segment' registers. The implementation requires two different
564 * types of pointer (only one of which includes the segment value.)
565 *
566 * If required this support is available in version 1.2 of libpng and may be
567 * available in versions through 1.5, although the correctness of the code has
568 * not been verified recently.
Andreas Dilger47a0c421997-05-16 02:46:07 -0500569 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500570
John Bowlerbaeb6d12011-11-26 18:21:02 -0600571/* Typedef for floating-point numbers that are converted to fixed-point with a
572 * multiple of 100,000, e.g., gamma
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600573 */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600574typedef png_int_32 png_fixed_point;
575
Andreas Dilger47a0c421997-05-16 02:46:07 -0500576/* Add typedefs for pointers */
John Bowlerbaeb6d12011-11-26 18:21:02 -0600577typedef void * png_voidp;
578typedef const void * png_const_voidp;
579typedef png_byte * png_bytep;
580typedef const png_byte * png_const_bytep;
581typedef png_uint_32 * png_uint_32p;
582typedef const png_uint_32 * png_const_uint_32p;
583typedef png_int_32 * png_int_32p;
584typedef const png_int_32 * png_const_int_32p;
585typedef png_uint_16 * png_uint_16p;
586typedef const png_uint_16 * png_const_uint_16p;
587typedef png_int_16 * png_int_16p;
588typedef const png_int_16 * png_const_int_16p;
589typedef char * png_charp;
590typedef const char * png_const_charp;
591typedef png_fixed_point * png_fixed_point_p;
592typedef const png_fixed_point * png_const_fixed_point_p;
Cosmin Trutaa74aa9a2018-06-17 22:37:44 -0400593typedef size_t * png_size_tp;
594typedef const size_t * png_const_size_tp;
Glenn Randers-Pehrsonbe9de0f2001-01-22 08:52:16 -0600595
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500596#ifdef PNG_STDIO_SUPPORTED
Glenn Randers-Pehrson882340c2010-03-13 21:19:51 -0600597typedef FILE * png_FILE_p;
Glenn Randers-Pehrsonbe9de0f2001-01-22 08:52:16 -0600598#endif
599
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600600#ifdef PNG_FLOATING_POINT_SUPPORTED
John Bowlerbaeb6d12011-11-26 18:21:02 -0600601typedef double * png_doublep;
602typedef const double * png_const_doublep;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600603#endif
Guy Schalnat6d764711995-12-19 03:22:19 -0600604
Andreas Dilger47a0c421997-05-16 02:46:07 -0500605/* Pointers to pointers; i.e. arrays */
John Bowlerbaeb6d12011-11-26 18:21:02 -0600606typedef png_byte * * png_bytepp;
607typedef png_uint_32 * * png_uint_32pp;
608typedef png_int_32 * * png_int_32pp;
609typedef png_uint_16 * * png_uint_16pp;
610typedef png_int_16 * * png_int_16pp;
611typedef const char * * png_const_charpp;
612typedef char * * png_charpp;
613typedef png_fixed_point * * png_fixed_point_pp;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600614#ifdef PNG_FLOATING_POINT_SUPPORTED
John Bowlerbaeb6d12011-11-26 18:21:02 -0600615typedef double * * png_doublepp;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600616#endif
Guy Schalnat6d764711995-12-19 03:22:19 -0600617
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -0600618/* Pointers to pointers to pointers; i.e., pointer to array */
John Bowlerbaeb6d12011-11-26 18:21:02 -0600619typedef char * * * png_charppp;
Guy Schalnat6d764711995-12-19 03:22:19 -0600620
John Bowlerbaeb6d12011-11-26 18:21:02 -0600621#endif /* PNG_BUILDING_SYMBOL_TABLE */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500622
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500623#endif /* PNGCONF_H */