Glenn Randers-Pehrson | 5b5dcf8 | 2004-07-17 22:45:44 -0500 | [diff] [blame] | 1 | |
Glenn Randers-Pehrson | 0f881d6 | 1998-02-07 10:20:57 -0600 | [diff] [blame] | 2 | /* pngconf.h - machine configurable file for libpng |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 3 | * |
Glenn Randers-Pehrson | 432c174 | 2012-08-09 20:14:48 -0500 | [diff] [blame^] | 4 | * libpng version 1.6.0beta27 - August 10, 2012 |
Glenn Randers-Pehrson | c17c957 | 2010-03-08 21:26:48 -0600 | [diff] [blame] | 5 | * |
Glenn Randers-Pehrson | 1531bd6 | 2012-01-01 14:45:04 -0600 | [diff] [blame] | 6 | * Copyright (c) 1998-2012 Glenn Randers-Pehrson |
Glenn Randers-Pehrson | d436672 | 2000-06-04 14:29:29 -0500 | [diff] [blame] | 7 | * (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-Pehrson | 3e61d79 | 2009-06-24 09:31:28 -0500 | [diff] [blame] | 9 | * |
Glenn Randers-Pehrson | bfbf865 | 2009-06-26 21:46:52 -0500 | [diff] [blame] | 10 | * This code is released under the libpng license. |
Glenn Randers-Pehrson | c332bbc | 2009-06-25 13:43:50 -0500 | [diff] [blame] | 11 | * For conditions of distribution and use, see the disclaimer |
Glenn Randers-Pehrson | 037023b | 2009-06-24 10:27:36 -0500 | [diff] [blame] | 12 | * and license in png.h |
Glenn Randers-Pehrson | 3e61d79 | 2009-06-24 09:31:28 -0500 | [diff] [blame] | 13 | * |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 14 | */ |
Guy Schalnat | 51f0eb4 | 1995-09-26 05:22:39 -0500 | [diff] [blame] | 15 | |
| 16 | /* Any machine specific code is near the front of this file, so if you |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 17 | * 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 Schalnat | 51f0eb4 | 1995-09-26 05:22:39 -0500 | [diff] [blame] | 21 | |
| 22 | #ifndef PNGCONF_H |
| 23 | #define PNGCONF_H |
| 24 | |
Glenn Randers-Pehrson | 4690b89 | 2012-02-24 11:43:31 -0600 | [diff] [blame] | 25 | /* To do: Do all of this in scripts/pnglibconf.dfa */ |
| 26 | #ifdef PNG_SAFE_LIMITS_SUPPORTED |
| 27 | # ifdef PNG_USER_WIDTH_MAX |
| 28 | # undef PNG_USER_WIDTH_MAX |
| 29 | # define PNG_USER_WIDTH_MAX 1000000L |
| 30 | # endif |
| 31 | # ifdef PNG_USER_HEIGHT_MAX |
| 32 | # undef PNG_USER_HEIGHT_MAX |
| 33 | # define PNG_USER_HEIGHT_MAX 1000000L |
| 34 | # endif |
| 35 | # ifdef PNG_USER_CHUNK_MALLOC_MAX |
| 36 | # undef PNG_USER_CHUNK_MALLOC_MAX |
| 37 | # define PNG_USER_CHUNK_MALLOC_MAX 4000000L |
| 38 | # endif |
| 39 | # ifdef PNG_USER_CHUNK_CACHE_MAX |
| 40 | # undef PNG_USER_CHUNK_CACHE_MAX |
| 41 | # define PNG_USER_CHUNK_CACHE_MAX 128 |
| 42 | # endif |
| 43 | #endif |
| 44 | |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 45 | #ifndef PNG_BUILDING_SYMBOL_TABLE /* else includes may cause problems */ |
Glenn Randers-Pehrson | 6bc53be | 2006-06-16 07:52:03 -0500 | [diff] [blame] | 46 | |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 47 | /* From libpng 1.6.0 libpng requires an ANSI X3.159-1989 ("ISOC90") compliant C |
| 48 | * compiler for correct compilation. The following header files are required by |
| 49 | * the standard. If your compiler doesn't provide these header files, or they |
| 50 | * do not match the standard, you will need to provide/improve them. |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 51 | */ |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 52 | #include <limits.h> |
| 53 | #include <stddef.h> |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 54 | |
Glenn Randers-Pehrson | 4c7e820 | 2011-11-26 19:00:01 -0600 | [diff] [blame] | 55 | /* Library header files. These header files are all defined by ISOC90; libpng |
| 56 | * expects conformant implementations, however, an ISOC90 conformant system need |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 57 | * not provide these header files if the functionality cannot be implemented. |
| 58 | * In this case it will be necessary to disable the relevant parts of libpng in |
| 59 | * the build of pnglibconf.h. |
| 60 | * |
| 61 | * Prior to 1.6.0 string.h was included here; the API changes in 1.6.0 to not |
| 62 | * include this unnecessary header file. |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 63 | */ |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 64 | |
| 65 | #ifdef PNG_STDIO_SUPPORTED |
| 66 | /* Required for the definition of FILE: */ |
| 67 | # include <stdio.h> |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 68 | #endif |
| 69 | |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 70 | #ifdef PNG_SETJMP_SUPPORTED |
| 71 | /* Required for the definition of jmp_buf and the declaration of longjmp: */ |
| 72 | # include <setjmp.h> |
| 73 | #endif |
| 74 | |
| 75 | #ifdef PNG_CONVERT_tIME_SUPPORTED |
| 76 | /* Required for struct tm: */ |
| 77 | # include <time.h> |
| 78 | #endif |
| 79 | |
| 80 | #endif /* PNG_BUILDING_SYMBOL_TABLE */ |
| 81 | |
| 82 | /* Prior to 1.6.0 it was possible to turn off 'const' in declarations using |
| 83 | * PNG_NO_CONST; this is no longer supported except for data declarations which |
| 84 | * apparently still cause problems in 2011 on some compilers. |
| 85 | */ |
| 86 | #define PNG_CONST const /* backward compatibility only */ |
| 87 | |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 88 | /* This controls optimization of the reading of 16 and 32 bit values |
| 89 | * from PNG files. It can be set on a per-app-file basis - it |
Glenn Randers-Pehrson | bf7661f | 2012-03-09 21:55:02 -0600 | [diff] [blame] | 90 | * just changes whether a macro is used when the function is called. |
| 91 | * The library builder sets the default; if read functions are not |
Glenn Randers-Pehrson | c3d73f4 | 2010-04-24 09:18:57 -0500 | [diff] [blame] | 92 | * built into the library the macro implementation is forced on. |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 93 | */ |
Glenn Randers-Pehrson | c3d73f4 | 2010-04-24 09:18:57 -0500 | [diff] [blame] | 94 | #ifndef PNG_READ_INT_FUNCTIONS_SUPPORTED |
| 95 | # define PNG_USE_READ_MACROS |
| 96 | #endif |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 97 | #if !defined(PNG_NO_USE_READ_MACROS) && !defined(PNG_USE_READ_MACROS) |
| 98 | # if PNG_DEFAULT_READ_MACROS |
| 99 | # define PNG_USE_READ_MACROS |
| 100 | # endif |
| 101 | #endif |
| 102 | |
Glenn Randers-Pehrson | 8fc3604 | 2010-04-17 10:17:46 -0500 | [diff] [blame] | 103 | /* COMPILER SPECIFIC OPTIONS. |
Glenn Randers-Pehrson | 7824a70 | 2009-06-13 10:05:05 -0500 | [diff] [blame] | 104 | * |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 105 | * These options are provided so that a variety of difficult compilers |
| 106 | * can be used. Some are fixed at build time (e.g. PNG_API_RULE |
| 107 | * below) but still have compiler specific implementations, others |
| 108 | * may be changed on a per-file basis when compiling against libpng. |
Glenn Randers-Pehrson | 86dc981 | 2006-05-10 07:27:44 -0500 | [diff] [blame] | 109 | */ |
Glenn Randers-Pehrson | a451725 | 2010-12-06 08:54:55 -0600 | [diff] [blame] | 110 | |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 111 | /* The PNGARG macro was used in versions of libpng prior to 1.6.0 to protect |
| 112 | * against legacy (pre ISOC90) compilers that did not understand function |
| 113 | * prototypes. It is not required for modern C compilers. |
Glenn Randers-Pehrson | a4d54bd | 2000-07-14 08:15:12 -0500 | [diff] [blame] | 114 | */ |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 115 | #ifndef PNGARG |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 116 | # define PNGARG(arglist) arglist |
| 117 | #endif |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 118 | |
| 119 | /* Function calling conventions. |
| 120 | * ============================= |
| 121 | * Normally it is not necessary to specify to the compiler how to call |
| 122 | * a function - it just does it - however on x86 systems derived from |
| 123 | * Microsoft and Borland C compilers ('IBM PC', 'DOS', 'Windows' systems |
| 124 | * and some others) there are multiple ways to call a function and the |
| 125 | * default can be changed on the compiler command line. For this reason |
Glenn Randers-Pehrson | 9ee577c | 2010-04-24 09:40:44 -0500 | [diff] [blame] | 126 | * libpng specifies the calling convention of every exported function and |
| 127 | * every function called via a user supplied function pointer. This is |
| 128 | * done in this file by defining the following macros: |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 129 | * |
| 130 | * PNGAPI Calling convention for exported functions. |
| 131 | * PNGCBAPI Calling convention for user provided (callback) functions. |
| 132 | * PNGCAPI Calling convention used by the ANSI-C library (required |
| 133 | * for longjmp callbacks and sometimes used internally to |
| 134 | * specify the calling convention for zlib). |
| 135 | * |
Glenn Randers-Pehrson | 9ee577c | 2010-04-24 09:40:44 -0500 | [diff] [blame] | 136 | * These macros should never be overridden. If it is necessary to |
| 137 | * change calling convention in a private build this can be done |
| 138 | * by setting PNG_API_RULE (which defaults to 0) to one of the values |
| 139 | * below to select the correct 'API' variants. |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 140 | * |
Glenn Randers-Pehrson | 9ee577c | 2010-04-24 09:40:44 -0500 | [diff] [blame] | 141 | * PNG_API_RULE=0 Use PNGCAPI - the 'C' calling convention - throughout. |
| 142 | * This is correct in every known environment. |
| 143 | * PNG_API_RULE=1 Use the operating system convention for PNGAPI and |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 144 | * the 'C' calling convention (from PNGCAPI) for |
Glenn Randers-Pehrson | 9ee577c | 2010-04-24 09:40:44 -0500 | [diff] [blame] | 145 | * callbacks (PNGCBAPI). This is no longer required |
| 146 | * in any known environment - if it has to be used |
| 147 | * please post an explanation of the problem to the |
| 148 | * libpng mailing list. |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 149 | * |
| 150 | * These cases only differ if the operating system does not use the C |
| 151 | * calling convention, at present this just means the above cases |
| 152 | * (x86 DOS/Windows sytems) and, even then, this does not apply to |
| 153 | * Cygwin running on those systems. |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 154 | * |
Glenn Randers-Pehrson | 98b4f00 | 2010-04-16 22:30:26 -0500 | [diff] [blame] | 155 | * Note that the value must be defined in pnglibconf.h so that what |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 156 | * the application uses to call the library matches the conventions |
| 157 | * set when building the library. |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 158 | */ |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 159 | |
| 160 | /* Symbol export |
| 161 | * ============= |
| 162 | * When building a shared library it is almost always necessary to tell |
| 163 | * the compiler which symbols to export. The png.h macro 'PNG_EXPORT' |
| 164 | * is used to mark the symbols. On some systems these symbols can be |
| 165 | * extracted at link time and need no special processing by the compiler, |
| 166 | * on other systems the symbols are flagged by the compiler and just |
| 167 | * the declaration requires a special tag applied (unfortunately) in a |
| 168 | * compiler dependent way. Some systems can do either. |
| 169 | * |
| 170 | * A small number of older systems also require a symbol from a DLL to |
| 171 | * be flagged to the program that calls it. This is a problem because |
| 172 | * we do not know in the header file included by application code that |
| 173 | * the symbol will come from a shared library, as opposed to a statically |
| 174 | * linked one. For this reason the application must tell us by setting |
| 175 | * the magic flag PNG_USE_DLL to turn on the special processing before |
| 176 | * it includes png.h. |
Glenn Randers-Pehrson | 821b710 | 2010-06-24 16:16:32 -0500 | [diff] [blame] | 177 | * |
Glenn Randers-Pehrson | d00bbb2 | 2010-03-14 09:15:49 -0500 | [diff] [blame] | 178 | * Four additional macros are used to make this happen: |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 179 | * |
| 180 | * PNG_IMPEXP The magic (if any) to cause a symbol to be exported from |
| 181 | * the build or imported if PNG_USE_DLL is set - compiler |
| 182 | * and system specific. |
| 183 | * |
| 184 | * PNG_EXPORT_TYPE(type) A macro that pre or appends PNG_IMPEXP to |
| 185 | * 'type', compiler specific. |
Glenn Randers-Pehrson | d00bbb2 | 2010-03-14 09:15:49 -0500 | [diff] [blame] | 186 | * |
| 187 | * PNG_DLL_EXPORT Set to the magic to use during a libpng build to |
John Bowler | 7b97965 | 2011-08-16 22:36:43 -0500 | [diff] [blame] | 188 | * make a symbol exported from the DLL. Not used in the |
| 189 | * public header files; see pngpriv.h for how it is used |
| 190 | * in the libpng build. |
Glenn Randers-Pehrson | d00bbb2 | 2010-03-14 09:15:49 -0500 | [diff] [blame] | 191 | * |
| 192 | * PNG_DLL_IMPORT Set to the magic to force the libpng symbols to come |
| 193 | * from a DLL - used to define PNG_IMPEXP when |
| 194 | * PNG_USE_DLL is set. |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 195 | */ |
| 196 | |
| 197 | /* System specific discovery. |
| 198 | * ========================== |
| 199 | * This code is used at build time to find PNG_IMPEXP, the API settings |
| 200 | * and PNG_EXPORT_TYPE(), it may also set a macro to indicate the DLL |
Glenn Randers-Pehrson | 9ee577c | 2010-04-24 09:40:44 -0500 | [diff] [blame] | 201 | * import processing is possible. On Windows/x86 systems it also sets |
| 202 | * compiler-specific macros to the values required to change the calling |
| 203 | * conventions of the various functions. |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 204 | */ |
Glenn Randers-Pehrson | 9ee577c | 2010-04-24 09:40:44 -0500 | [diff] [blame] | 205 | #if ( defined(_Windows) || defined(_WINDOWS) || defined(WIN32) ||\ |
| 206 | defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) ) &&\ |
| 207 | ( defined(_X86_) || defined(_X64_) || defined(_M_IX86) ||\ |
| 208 | defined(_M_X64) || defined(_M_IA64) ) |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 209 | /* Windows system (DOS doesn't support DLLs) running on x86/x64. Includes |
| 210 | * builds under Cygwin or MinGW. Also includes Watcom builds but these need |
| 211 | * special treatment because they are not compatible with GCC or Visual C |
| 212 | * because of different calling conventions. |
Glenn Randers-Pehrson | d00bbb2 | 2010-03-14 09:15:49 -0500 | [diff] [blame] | 213 | */ |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 214 | # if PNG_API_RULE == 2 |
| 215 | /* If this line results in an error, either because __watcall is not |
| 216 | * understood or because of a redefine just below you cannot use *this* |
| 217 | * build of the library with the compiler you are using. *This* build was |
| 218 | * build using Watcom and applications must also be built using Watcom! |
| 219 | */ |
| 220 | # define PNGCAPI __watcall |
| 221 | # endif |
| 222 | |
Glenn Randers-Pehrson | 9ee577c | 2010-04-24 09:40:44 -0500 | [diff] [blame] | 223 | # if defined(__GNUC__) || (defined (_MSC_VER) && (_MSC_VER >= 800)) |
| 224 | # define PNGCAPI __cdecl |
| 225 | # if PNG_API_RULE == 1 |
| 226 | # define PNGAPI __stdcall |
| 227 | # endif |
| 228 | # else |
| 229 | /* An older compiler, or one not detected (erroneously) above, |
| 230 | * if necessary override on the command line to get the correct |
| 231 | * variants for the compiler. |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 232 | */ |
Glenn Randers-Pehrson | 9ee577c | 2010-04-24 09:40:44 -0500 | [diff] [blame] | 233 | # ifndef PNGCAPI |
| 234 | # define PNGCAPI _cdecl |
| 235 | # endif |
| 236 | # if PNG_API_RULE == 1 && !defined(PNGAPI) |
| 237 | # define PNGAPI _stdcall |
| 238 | # endif |
| 239 | # endif /* compiler/api */ |
| 240 | /* NOTE: PNGCBAPI always defaults to PNGCAPI. */ |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 241 | |
Glenn Randers-Pehrson | 9ee577c | 2010-04-24 09:40:44 -0500 | [diff] [blame] | 242 | # if defined(PNGAPI) && !defined(PNG_USER_PRIVATEBUILD) |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 243 | # error "PNG_USER_PRIVATEBUILD must be defined if PNGAPI is changed" |
Glenn Randers-Pehrson | 9ee577c | 2010-04-24 09:40:44 -0500 | [diff] [blame] | 244 | # endif |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 245 | |
Glenn Randers-Pehrson | 9ee577c | 2010-04-24 09:40:44 -0500 | [diff] [blame] | 246 | # if (defined(_MSC_VER) && _MSC_VER < 800) ||\ |
| 247 | (defined(__BORLANDC__) && __BORLANDC__ < 0x500) |
| 248 | /* older Borland and MSC |
| 249 | * compilers used '__export' and required this to be after |
| 250 | * the type. |
| 251 | */ |
| 252 | # ifndef PNG_EXPORT_TYPE |
| 253 | # define PNG_EXPORT_TYPE(type) type PNG_IMPEXP |
| 254 | # endif |
| 255 | # define PNG_DLL_EXPORT __export |
| 256 | # else /* newer compiler */ |
| 257 | # define PNG_DLL_EXPORT __declspec(dllexport) |
| 258 | # ifndef PNG_DLL_IMPORT |
| 259 | # define PNG_DLL_IMPORT __declspec(dllimport) |
| 260 | # endif |
| 261 | # endif /* compiler */ |
| 262 | |
| 263 | #else /* !Windows/x86 */ |
| 264 | # if (defined(__IBMC__) || defined(__IBMCPP__)) && defined(__OS2__) |
| 265 | # define PNGAPI _System |
| 266 | # else /* !Windows/x86 && !OS/2 */ |
| 267 | /* Use the defaults, or define PNG*API on the command line (but |
| 268 | * this will have to be done for every compile!) |
| 269 | */ |
| 270 | # endif /* other system, !OS/2 */ |
| 271 | #endif /* !Windows/x86 */ |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 272 | |
| 273 | /* Now do all the defaulting . */ |
| 274 | #ifndef PNGCAPI |
| 275 | # define PNGCAPI |
| 276 | #endif |
| 277 | #ifndef PNGCBAPI |
| 278 | # define PNGCBAPI PNGCAPI |
| 279 | #endif |
| 280 | #ifndef PNGAPI |
| 281 | # define PNGAPI PNGCAPI |
| 282 | #endif |
| 283 | |
John Bowler | 7b97965 | 2011-08-16 22:36:43 -0500 | [diff] [blame] | 284 | /* PNG_IMPEXP may be set on the compilation system command line or (if not set) |
| 285 | * then in an internal header file when building the library, otherwise (when |
| 286 | * using the library) it is set here. |
Glenn Randers-Pehrson | d00bbb2 | 2010-03-14 09:15:49 -0500 | [diff] [blame] | 287 | */ |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 288 | #ifndef PNG_IMPEXP |
John Bowler | 7b97965 | 2011-08-16 22:36:43 -0500 | [diff] [blame] | 289 | # if defined(PNG_USE_DLL) && defined(PNG_DLL_IMPORT) |
| 290 | /* This forces use of a DLL, disallowing static linking */ |
| 291 | # define PNG_IMPEXP PNG_DLL_IMPORT |
Glenn Randers-Pehrson | d00bbb2 | 2010-03-14 09:15:49 -0500 | [diff] [blame] | 292 | # endif |
| 293 | |
| 294 | # ifndef PNG_IMPEXP |
| 295 | # define PNG_IMPEXP |
| 296 | # endif |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 297 | #endif |
Glenn Randers-Pehrson | d00bbb2 | 2010-03-14 09:15:49 -0500 | [diff] [blame] | 298 | |
John Bowler | 9c69360 | 2011-02-12 08:58:21 -0600 | [diff] [blame] | 299 | /* In 1.5.2 the definition of PNG_FUNCTION has been changed to always treat |
| 300 | * 'attributes' as a storage class - the attributes go at the start of the |
| 301 | * function definition, and attributes are always appended regardless of the |
| 302 | * compiler. This considerably simplifies these macros but may cause problems |
| 303 | * if any compilers both need function attributes and fail to handle them as |
| 304 | * a storage class (this is unlikely.) |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 305 | */ |
| 306 | #ifndef PNG_FUNCTION |
John Bowler | 9c69360 | 2011-02-12 08:58:21 -0600 | [diff] [blame] | 307 | # define PNG_FUNCTION(type, name, args, attributes) attributes type name args |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 308 | #endif |
| 309 | |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 310 | #ifndef PNG_EXPORT_TYPE |
| 311 | # define PNG_EXPORT_TYPE(type) PNG_IMPEXP type |
| 312 | #endif |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 313 | |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 314 | /* The ordinal value is only relevant when preprocessing png.h for symbol |
Glenn Randers-Pehrson | a451725 | 2010-12-06 08:54:55 -0600 | [diff] [blame] | 315 | * table entries, so we discard it here. See the .dfn files in the |
| 316 | * scripts directory. |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 317 | */ |
Glenn Randers-Pehrson | 23d3970 | 2010-12-06 18:28:02 -0600 | [diff] [blame] | 318 | #ifndef PNG_EXPORTA |
Glenn Randers-Pehrson | d32a671 | 2011-03-06 16:49:10 -0600 | [diff] [blame] | 319 | |
Glenn Randers-Pehrson | 23d3970 | 2010-12-06 18:28:02 -0600 | [diff] [blame] | 320 | # define PNG_EXPORTA(ordinal, type, name, args, attributes)\ |
Glenn Randers-Pehrson | d32a671 | 2011-03-06 16:49:10 -0600 | [diff] [blame] | 321 | PNG_FUNCTION(PNG_EXPORT_TYPE(type),(PNGAPI name),PNGARG(args), \ |
| 322 | extern attributes) |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 323 | #endif |
| 324 | |
John Bowler | 9c69360 | 2011-02-12 08:58:21 -0600 | [diff] [blame] | 325 | /* ANSI-C (C90) does not permit a macro to be invoked with an empty argument, |
| 326 | * so make something non-empty to satisfy the requirement: |
| 327 | */ |
| 328 | #define PNG_EMPTY /*empty list*/ |
| 329 | |
Glenn Randers-Pehrson | 234e543 | 2010-12-06 20:18:51 -0600 | [diff] [blame] | 330 | #define PNG_EXPORT(ordinal, type, name, args)\ |
John Bowler | 9c69360 | 2011-02-12 08:58:21 -0600 | [diff] [blame] | 331 | PNG_EXPORTA(ordinal, type, name, args, PNG_EMPTY) |
Glenn Randers-Pehrson | 234e543 | 2010-12-06 20:18:51 -0600 | [diff] [blame] | 332 | |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 333 | /* Use PNG_REMOVED to comment out a removed interface. */ |
| 334 | #ifndef PNG_REMOVED |
Glenn Randers-Pehrson | 23d3970 | 2010-12-06 18:28:02 -0600 | [diff] [blame] | 335 | # define PNG_REMOVED(ordinal, type, name, args, attributes) |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 336 | #endif |
| 337 | |
| 338 | #ifndef PNG_CALLBACK |
John Bowler | 9c69360 | 2011-02-12 08:58:21 -0600 | [diff] [blame] | 339 | # define PNG_CALLBACK(type, name, args) type (PNGCBAPI name) PNGARG(args) |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 340 | #endif |
| 341 | |
| 342 | /* 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. |
| 345 | * |
| 346 | * Added at libpng-1.2.41. |
| 347 | */ |
| 348 | |
| 349 | #ifndef PNG_NO_PEDANTIC_WARNINGS |
Glenn Randers-Pehrson | c44253f | 2010-03-13 20:58:39 -0600 | [diff] [blame] | 350 | # ifndef PNG_PEDANTIC_WARNINGS_SUPPORTED |
| 351 | # define PNG_PEDANTIC_WARNINGS_SUPPORTED |
| 352 | # endif |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 353 | #endif |
| 354 | |
| 355 | #ifdef PNG_PEDANTIC_WARNINGS_SUPPORTED |
Glenn Randers-Pehrson | 882340c | 2010-03-13 21:19:51 -0600 | [diff] [blame] | 356 | /* Support for compiler specific function attributes. These are used |
John Bowler | 5d56786 | 2011-12-24 09:12:00 -0600 | [diff] [blame] | 357 | * so that where compiler support is available, incorrect use of API |
Glenn Randers-Pehrson | 882340c | 2010-03-13 21:19:51 -0600 | [diff] [blame] | 358 | * functions in png.h will generate compiler warnings. Added at libpng |
John Bowler | 5d56786 | 2011-12-24 09:12:00 -0600 | [diff] [blame] | 359 | * version 1.2.41. Disabling these removes the warnings but may also produce |
| 360 | * less efficient code. |
Glenn Randers-Pehrson | 882340c | 2010-03-13 21:19:51 -0600 | [diff] [blame] | 361 | */ |
Glenn Randers-Pehrson | c83d421 | 2011-02-12 08:54:42 -0600 | [diff] [blame] | 362 | # if defined(__GNUC__) |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 363 | # ifndef PNG_USE_RESULT |
| 364 | # define PNG_USE_RESULT __attribute__((__warn_unused_result__)) |
| 365 | # endif |
| 366 | # ifndef PNG_NORETURN |
| 367 | # define PNG_NORETURN __attribute__((__noreturn__)) |
| 368 | # endif |
Glenn Randers-Pehrson | 0a9f26e | 2012-07-21 11:16:17 -0500 | [diff] [blame] | 369 | # if __GNUC__ >= 3 |
| 370 | # ifndef PNG_ALLOCATED |
| 371 | # define PNG_ALLOCATED __attribute__((__malloc__)) |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 372 | # endif |
Glenn Randers-Pehrson | 0a9f26e | 2012-07-21 11:16:17 -0500 | [diff] [blame] | 373 | # ifndef PNG_DEPRECATED |
| 374 | # define PNG_DEPRECATED __attribute__((__deprecated__)) |
| 375 | # endif |
| 376 | # ifndef PNG_PRIVATE |
| 377 | # if 0 /* Doesn't work so we use deprecated instead*/ |
| 378 | # define PNG_PRIVATE \ |
| 379 | __attribute__((warning("This function is not exported by libpng."))) |
| 380 | # else |
| 381 | # define PNG_PRIVATE \ |
| 382 | __attribute__((__deprecated__)) |
| 383 | # endif |
| 384 | # endif |
Glenn Randers-Pehrson | 449db5a | 2012-07-21 13:18:42 -0500 | [diff] [blame] | 385 | # if ((__GNUC__ != 3) || !defined(__GNUC_MINOR__) || (__GNUC_MINOR__ >= 1)) |
Glenn Randers-Pehrson | 0a9f26e | 2012-07-21 11:16:17 -0500 | [diff] [blame] | 386 | # ifndef PNG_RESTRICT |
| 387 | # define PNG_RESTRICT __restrict |
| 388 | # endif |
| 389 | # endif /* __GNUC__ == 3.0 */ |
| 390 | # endif /* __GNUC__ >= 3 */ |
Glenn Randers-Pehrson | d32a671 | 2011-03-06 16:49:10 -0600 | [diff] [blame] | 391 | |
John Bowler | 5d56786 | 2011-12-24 09:12:00 -0600 | [diff] [blame] | 392 | # elif defined(_MSC_VER) && (_MSC_VER >= 1300) |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 393 | # ifndef PNG_USE_RESULT |
Glenn Randers-Pehrson | c36bb79 | 2011-02-12 09:49:07 -0600 | [diff] [blame] | 394 | # define PNG_USE_RESULT /* not supported */ |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 395 | # endif |
| 396 | # ifndef PNG_NORETURN |
| 397 | # define PNG_NORETURN __declspec(noreturn) |
| 398 | # endif |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 399 | # ifndef PNG_ALLOCATED |
Glenn Randers-Pehrson | 1f0eaa0 | 2011-12-01 21:45:34 -0600 | [diff] [blame] | 400 | # if (_MSC_VER >= 1400) |
Glenn Randers-Pehrson | 4fca255 | 2011-06-27 12:01:01 -0500 | [diff] [blame] | 401 | # define PNG_ALLOCATED __declspec(restrict) |
| 402 | # endif |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 403 | # endif |
John Bowler | 7b97965 | 2011-08-16 22:36:43 -0500 | [diff] [blame] | 404 | # ifndef PNG_DEPRECATED |
| 405 | # define PNG_DEPRECATED __declspec(deprecated) |
| 406 | # endif |
| 407 | # ifndef PNG_PRIVATE |
| 408 | # define PNG_PRIVATE __declspec(deprecated) |
| 409 | # endif |
John Bowler | 5d56786 | 2011-12-24 09:12:00 -0600 | [diff] [blame] | 410 | # ifndef PNG_RESTRICT |
| 411 | # if (_MSC_VER >= 1400) |
| 412 | # define PNG_RESTRICT __restrict |
| 413 | # endif |
| 414 | # endif |
| 415 | |
| 416 | # elif defined(__WATCOMC__) |
| 417 | # ifndef PNG_RESTRICT |
| 418 | # define PNG_RESTRICT __restrict |
| 419 | # endif |
John Bowler | 9c69360 | 2011-02-12 08:58:21 -0600 | [diff] [blame] | 420 | # endif /* _MSC_VER */ |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 421 | #endif /* PNG_PEDANTIC_WARNINGS */ |
| 422 | |
| 423 | #ifndef PNG_DEPRECATED |
| 424 | # define PNG_DEPRECATED /* Use of this function is deprecated */ |
| 425 | #endif |
| 426 | #ifndef PNG_USE_RESULT |
| 427 | # define PNG_USE_RESULT /* The result of this function must be checked */ |
| 428 | #endif |
| 429 | #ifndef PNG_NORETURN |
| 430 | # define PNG_NORETURN /* This function does not return */ |
| 431 | #endif |
| 432 | #ifndef PNG_ALLOCATED |
| 433 | # define PNG_ALLOCATED /* The result of the function is new memory */ |
| 434 | #endif |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 435 | #ifndef PNG_PRIVATE |
| 436 | # define PNG_PRIVATE /* This is a private libpng function */ |
Glenn Randers-Pehrson | a4d54bd | 2000-07-14 08:15:12 -0500 | [diff] [blame] | 437 | #endif |
Glenn Randers-Pehrson | 80b67e4 | 2012-07-21 12:56:46 -0500 | [diff] [blame] | 438 | #ifndef PNG_RESTRICT |
| 439 | # define PNG_RESTRICT /* The C99 "restrict" feature */ |
| 440 | #endif |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 441 | #ifndef PNG_FP_EXPORT /* A floating point API. */ |
| 442 | # ifdef PNG_FLOATING_POINT_SUPPORTED |
Glenn Randers-Pehrson | 23d3970 | 2010-12-06 18:28:02 -0600 | [diff] [blame] | 443 | # define PNG_FP_EXPORT(ordinal, type, name, args)\ |
John Bowler | bce7988 | 2012-02-13 11:45:22 -0600 | [diff] [blame] | 444 | PNG_EXPORT(ordinal, type, name, args); |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 445 | # else /* No floating point APIs */ |
Glenn Randers-Pehrson | 23d3970 | 2010-12-06 18:28:02 -0600 | [diff] [blame] | 446 | # define PNG_FP_EXPORT(ordinal, type, name, args) |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 447 | # endif |
| 448 | #endif |
| 449 | #ifndef PNG_FIXED_EXPORT /* A fixed point API. */ |
| 450 | # ifdef PNG_FIXED_POINT_SUPPORTED |
Glenn Randers-Pehrson | 23d3970 | 2010-12-06 18:28:02 -0600 | [diff] [blame] | 451 | # define PNG_FIXED_EXPORT(ordinal, type, name, args)\ |
John Bowler | bce7988 | 2012-02-13 11:45:22 -0600 | [diff] [blame] | 452 | PNG_EXPORT(ordinal, type, name, args); |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 453 | # else /* No fixed point APIs */ |
Glenn Randers-Pehrson | 23d3970 | 2010-12-06 18:28:02 -0600 | [diff] [blame] | 454 | # define PNG_FIXED_EXPORT(ordinal, type, name, args) |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 455 | # endif |
| 456 | #endif |
Glenn Randers-Pehrson | a4d54bd | 2000-07-14 08:15:12 -0500 | [diff] [blame] | 457 | |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 458 | #ifndef PNG_BUILDING_SYMBOL_TABLE |
| 459 | /* Some typedefs to get us started. These should be safe on most of the common |
| 460 | * platforms. |
Glenn Randers-Pehrson | 7253144 | 2010-04-17 08:17:51 -0500 | [diff] [blame] | 461 | * |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 462 | * png_uint_32 and png_int_32 may, currently, be larger than required to hold a |
| 463 | * 32-bit value however this is not normally advisable. |
| 464 | * |
| 465 | * png_uint_16 and png_int_16 should always be two bytes in size - this is |
| 466 | * verified at library build time. |
| 467 | * |
| 468 | * png_byte must always be one byte in size. |
| 469 | * |
| 470 | * The checks below use constants from limits.h, as defined by the ISOC90 |
| 471 | * standard. |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 472 | */ |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 473 | #if CHAR_BIT == 8 && UCHAR_MAX == 255 |
| 474 | typedef unsigned char png_byte; |
| 475 | #else |
| 476 | # error "libpng requires 8 bit bytes" |
| 477 | #endif |
| 478 | |
| 479 | #if INT_MIN == -32768 && INT_MAX == 32767 |
| 480 | typedef int png_int_16; |
| 481 | #elif SHRT_MIN == -32768 && SHRT_MAX == 32767 |
| 482 | typedef short png_int_16; |
| 483 | #else |
| 484 | # error "libpng requires a signed 16 bit type" |
| 485 | #endif |
| 486 | |
| 487 | #if UINT_MAX == 65535 |
| 488 | typedef unsigned int png_uint_16; |
| 489 | #elif USHRT_MAX == 65535 |
| 490 | typedef unsigned short png_uint_16; |
| 491 | #else |
| 492 | # error "libpng requires an unsigned 16 bit type" |
| 493 | #endif |
| 494 | |
John Bowler | 6f237b6 | 2012-03-02 13:13:15 -0600 | [diff] [blame] | 495 | #if INT_MIN < -2147483646 && INT_MAX > 2147483646 |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 496 | typedef int png_int_32; |
John Bowler | 6f237b6 | 2012-03-02 13:13:15 -0600 | [diff] [blame] | 497 | #elif LONG_MIN < -2147483646 && LONG_MAX > 2147483646 |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 498 | typedef long int png_int_32; |
| 499 | #else |
| 500 | # error "libpng requires a signed 32 bit (or more) type" |
| 501 | #endif |
| 502 | |
| 503 | #if UINT_MAX > 4294967294 |
| 504 | typedef unsigned int png_uint_32; |
| 505 | #elif ULONG_MAX > 4294967294 |
| 506 | typedef unsigned long int png_uint_32; |
| 507 | #else |
| 508 | # error "libpng requires an unsigned 32 bit (or more) type" |
| 509 | #endif |
| 510 | |
| 511 | /* Prior to 1.6.0 it was possible to disable the use of size_t, 1.6.0, however, |
| 512 | * requires an ISOC90 compiler and relies on consistent behavior of sizeof. |
| 513 | */ |
| 514 | typedef size_t png_size_t; |
| 515 | typedef ptrdiff_t png_ptrdiff_t; |
| 516 | |
| 517 | /* libpng needs to know the maximum value of 'size_t' and this controls the |
| 518 | * definition of png_alloc_size_t, below. This maximum value of size_t limits |
| 519 | * but does not control the maximum allocations the library makes - there is |
| 520 | * direct application control of this through png_set_user_limits(). |
| 521 | */ |
| 522 | #ifndef PNG_SMALL_SIZE_T |
| 523 | /* Compiler specific tests for systems where size_t is known to be less than |
| 524 | * 32 bits (some of these systems may no longer work because of the lack of |
| 525 | * 'far' support; see above.) |
| 526 | */ |
| 527 | # if (defined(__TURBOC__) && !defined(__FLAT__)) ||\ |
| 528 | (defined(_MSC_VER) && defined(MAXSEG_64K)) |
| 529 | # define PNG_SMALL_SIZE_T |
Glenn Randers-Pehrson | 28d4aae | 2009-11-13 16:29:45 -0600 | [diff] [blame] | 530 | # endif |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 531 | #endif |
| 532 | |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 533 | /* png_alloc_size_t is guaranteed to be no smaller than png_size_t, and no |
| 534 | * smaller than png_uint_32. Casts from png_size_t or png_uint_32 to |
| 535 | * png_alloc_size_t are not necessary; in fact, it is recommended not to use |
| 536 | * them at all so that the compiler can complain when something turns out to be |
| 537 | * problematic. |
| 538 | * |
| 539 | * Casts in the other direction (from png_alloc_size_t to png_size_t or |
| 540 | * png_uint_32) should be explicitly applied; however, we do not expect to |
| 541 | * encounter practical situations that require such conversions. |
| 542 | * |
John Bowler | 6f237b6 | 2012-03-02 13:13:15 -0600 | [diff] [blame] | 543 | * PNG_SMALL_SIZE_T must be defined if the maximum value of size_t is less than |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 544 | * 4294967295 - i.e. less than the maximum value of png_uint_32. |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 545 | */ |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 546 | #ifdef PNG_SMALL_SIZE_T |
| 547 | typedef png_uint_32 png_alloc_size_t; |
Glenn Randers-Pehrson | 6bc53be | 2006-06-16 07:52:03 -0500 | [diff] [blame] | 548 | #else |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 549 | typedef png_size_t png_alloc_size_t; |
Glenn Randers-Pehrson | 6bc53be | 2006-06-16 07:52:03 -0500 | [diff] [blame] | 550 | #endif |
Guy Schalnat | 51f0eb4 | 1995-09-26 05:22:39 -0500 | [diff] [blame] | 551 | |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 552 | /* This macro makes the sizeof operator look and behave like a function, except |
| 553 | * that it can take a type without the enclosing () as an argument so long as |
Glenn Randers-Pehrson | 432c174 | 2012-08-09 20:14:48 -0500 | [diff] [blame^] | 554 | * the type contains no "," characters. As of libpng-1.6.0, this macro is no |
| 555 | * longer used in the libpng source code. |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 556 | */ |
Glenn Randers-Pehrson | d3a726d | 2010-08-03 20:26:34 -0500 | [diff] [blame] | 557 | #define png_sizeof(x) (sizeof (x)) |
Guy Schalnat | 51f0eb4 | 1995-09-26 05:22:39 -0500 | [diff] [blame] | 558 | |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 559 | /* Prior to 1.6.0 libpng offered limited support for Microsoft C compiler |
| 560 | * implementations of Intel CPU specific support of user-mode segmented address |
| 561 | * spaces, where 16-bit pointers address more than 65536 bytes of memory using |
| 562 | * separate 'segment' registers. The implementation requires two different |
| 563 | * types of pointer (only one of which includes the segment value.) |
| 564 | * |
| 565 | * If required this support is available in version 1.2 of libpng and may be |
| 566 | * available in versions through 1.5, although the correctness of the code has |
| 567 | * not been verified recently. |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 568 | */ |
Guy Schalnat | 51f0eb4 | 1995-09-26 05:22:39 -0500 | [diff] [blame] | 569 | |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 570 | /* Typedef for floating-point numbers that are converted to fixed-point with a |
| 571 | * multiple of 100,000, e.g., gamma |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 572 | */ |
Glenn Randers-Pehrson | 61c32d9 | 2000-02-04 23:40:16 -0600 | [diff] [blame] | 573 | typedef png_int_32 png_fixed_point; |
| 574 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 575 | /* Add typedefs for pointers */ |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 576 | typedef void * png_voidp; |
| 577 | typedef const void * png_const_voidp; |
| 578 | typedef png_byte * png_bytep; |
| 579 | typedef const png_byte * png_const_bytep; |
| 580 | typedef png_uint_32 * png_uint_32p; |
| 581 | typedef const png_uint_32 * png_const_uint_32p; |
| 582 | typedef png_int_32 * png_int_32p; |
| 583 | typedef const png_int_32 * png_const_int_32p; |
| 584 | typedef png_uint_16 * png_uint_16p; |
| 585 | typedef const png_uint_16 * png_const_uint_16p; |
| 586 | typedef png_int_16 * png_int_16p; |
| 587 | typedef const png_int_16 * png_const_int_16p; |
| 588 | typedef char * png_charp; |
| 589 | typedef const char * png_const_charp; |
| 590 | typedef png_fixed_point * png_fixed_point_p; |
| 591 | typedef const png_fixed_point * png_const_fixed_point_p; |
| 592 | typedef png_size_t * png_size_tp; |
| 593 | typedef const png_size_t * png_const_size_tp; |
Glenn Randers-Pehrson | be9de0f | 2001-01-22 08:52:16 -0600 | [diff] [blame] | 594 | |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 595 | #ifdef PNG_STDIO_SUPPORTED |
Glenn Randers-Pehrson | 882340c | 2010-03-13 21:19:51 -0600 | [diff] [blame] | 596 | typedef FILE * png_FILE_p; |
Glenn Randers-Pehrson | be9de0f | 2001-01-22 08:52:16 -0600 | [diff] [blame] | 597 | #endif |
| 598 | |
Glenn Randers-Pehrson | 166c5a3 | 1999-12-10 09:43:02 -0600 | [diff] [blame] | 599 | #ifdef PNG_FLOATING_POINT_SUPPORTED |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 600 | typedef double * png_doublep; |
| 601 | typedef const double * png_const_doublep; |
Glenn Randers-Pehrson | 166c5a3 | 1999-12-10 09:43:02 -0600 | [diff] [blame] | 602 | #endif |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 603 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 604 | /* Pointers to pointers; i.e. arrays */ |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 605 | typedef png_byte * * png_bytepp; |
| 606 | typedef png_uint_32 * * png_uint_32pp; |
| 607 | typedef png_int_32 * * png_int_32pp; |
| 608 | typedef png_uint_16 * * png_uint_16pp; |
| 609 | typedef png_int_16 * * png_int_16pp; |
| 610 | typedef const char * * png_const_charpp; |
| 611 | typedef char * * png_charpp; |
| 612 | typedef png_fixed_point * * png_fixed_point_pp; |
Glenn Randers-Pehrson | 166c5a3 | 1999-12-10 09:43:02 -0600 | [diff] [blame] | 613 | #ifdef PNG_FLOATING_POINT_SUPPORTED |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 614 | typedef double * * png_doublepp; |
Glenn Randers-Pehrson | 166c5a3 | 1999-12-10 09:43:02 -0600 | [diff] [blame] | 615 | #endif |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 616 | |
Glenn Randers-Pehrson | 231e687 | 2001-01-12 15:13:06 -0600 | [diff] [blame] | 617 | /* Pointers to pointers to pointers; i.e., pointer to array */ |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 618 | typedef char * * * png_charppp; |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 619 | |
John Bowler | baeb6d1 | 2011-11-26 18:21:02 -0600 | [diff] [blame] | 620 | #endif /* PNG_BUILDING_SYMBOL_TABLE */ |
Guy Schalnat | 51f0eb4 | 1995-09-26 05:22:39 -0500 | [diff] [blame] | 621 | |
Guy Schalnat | 51f0eb4 | 1995-09-26 05:22:39 -0500 | [diff] [blame] | 622 | #endif /* PNGCONF_H */ |