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 | ffc9e95 | 2011-03-03 06:39:34 -0600 | [diff] [blame] | 4 | * libpng version 1.5.2beta04 - (PENDING RELEASE) |
Glenn Randers-Pehrson | c17c957 | 2010-03-08 21:26:48 -0600 | [diff] [blame] | 5 | * |
Glenn Randers-Pehrson | 64b863c | 2011-01-04 09:57:06 -0600 | [diff] [blame] | 6 | * Copyright (c) 1998-2011 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 | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 25 | /* PNG_NO_LIMITS_H may be used to turn off the use of the standard C |
| 26 | * definition file for machine specific limits, this may impact the |
| 27 | * correctness of the definitons below (see uses of INT_MAX). |
| 28 | */ |
Glenn Randers-Pehrson | 6bc53be | 2006-06-16 07:52:03 -0500 | [diff] [blame] | 29 | #ifndef PNG_NO_LIMITS_H |
Glenn Randers-Pehrson | 6076da8 | 2009-09-30 12:28:07 -0500 | [diff] [blame] | 30 | # include <limits.h> |
Glenn Randers-Pehrson | 6bc53be | 2006-06-16 07:52:03 -0500 | [diff] [blame] | 31 | #endif |
| 32 | |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 33 | /* For the memory copy APIs (i.e. the standard definitions of these), |
| 34 | * because this file defines png_memcpy and so on the base APIs must |
| 35 | * be defined here. |
| 36 | */ |
| 37 | #ifdef BSD |
| 38 | # include <strings.h> |
| 39 | #else |
| 40 | # include <string.h> |
| 41 | #endif |
| 42 | |
| 43 | /* For png_FILE_p - this provides the standard definition of a |
| 44 | * FILE |
| 45 | */ |
| 46 | #ifdef PNG_STDIO_SUPPORTED |
| 47 | # include <stdio.h> |
| 48 | #endif |
| 49 | |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 50 | /* This controls optimization of the reading of 16 and 32 bit values |
| 51 | * from PNG files. It can be set on a per-app-file basis - it |
| 52 | * just changes whether a macro is used to the function is called. |
Glenn Randers-Pehrson | c3d73f4 | 2010-04-24 09:18:57 -0500 | [diff] [blame] | 53 | * The library builder sets the default, if read functions are not |
| 54 | * built into the library the macro implementation is forced on. |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 55 | */ |
Glenn Randers-Pehrson | c3d73f4 | 2010-04-24 09:18:57 -0500 | [diff] [blame] | 56 | #ifndef PNG_READ_INT_FUNCTIONS_SUPPORTED |
| 57 | # define PNG_USE_READ_MACROS |
| 58 | #endif |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 59 | #if !defined(PNG_NO_USE_READ_MACROS) && !defined(PNG_USE_READ_MACROS) |
| 60 | # if PNG_DEFAULT_READ_MACROS |
| 61 | # define PNG_USE_READ_MACROS |
| 62 | # endif |
| 63 | #endif |
| 64 | |
Glenn Randers-Pehrson | 8fc3604 | 2010-04-17 10:17:46 -0500 | [diff] [blame] | 65 | /* COMPILER SPECIFIC OPTIONS. |
Glenn Randers-Pehrson | 7824a70 | 2009-06-13 10:05:05 -0500 | [diff] [blame] | 66 | * |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 67 | * These options are provided so that a variety of difficult compilers |
| 68 | * can be used. Some are fixed at build time (e.g. PNG_API_RULE |
| 69 | * below) but still have compiler specific implementations, others |
| 70 | * may be changed on a per-file basis when compiling against libpng. |
Glenn Randers-Pehrson | 86dc981 | 2006-05-10 07:27:44 -0500 | [diff] [blame] | 71 | */ |
Glenn Randers-Pehrson | a451725 | 2010-12-06 08:54:55 -0600 | [diff] [blame] | 72 | |
| 73 | /* The PNGARG macro protects us against machines that don't have function |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 74 | * prototypes (ie K&R style headers). If your compiler does not handle |
| 75 | * function prototypes, define this macro and use the included ansi2knr. |
| 76 | * I've always been able to use _NO_PROTO as the indicator, but you may |
| 77 | * need to drag the empty declaration out in front of here, or change the |
| 78 | * ifdef to suit your own needs. |
Glenn Randers-Pehrson | a4d54bd | 2000-07-14 08:15:12 -0500 | [diff] [blame] | 79 | */ |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 80 | #ifndef PNGARG |
| 81 | |
| 82 | # ifdef OF /* zlib prototype munger */ |
| 83 | # define PNGARG(arglist) OF(arglist) |
Glenn Randers-Pehrson | e68f5a3 | 2001-05-14 09:20:53 -0500 | [diff] [blame] | 84 | # else |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 85 | |
| 86 | # ifdef _NO_PROTO |
| 87 | # define PNGARG(arglist) () |
Glenn Randers-Pehrson | a4d54bd | 2000-07-14 08:15:12 -0500 | [diff] [blame] | 88 | # else |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 89 | # define PNGARG(arglist) arglist |
| 90 | # endif /* _NO_PROTO */ |
| 91 | |
| 92 | # endif /* OF */ |
| 93 | |
| 94 | #endif /* PNGARG */ |
| 95 | |
| 96 | /* Function calling conventions. |
| 97 | * ============================= |
| 98 | * Normally it is not necessary to specify to the compiler how to call |
| 99 | * a function - it just does it - however on x86 systems derived from |
| 100 | * Microsoft and Borland C compilers ('IBM PC', 'DOS', 'Windows' systems |
| 101 | * and some others) there are multiple ways to call a function and the |
| 102 | * default can be changed on the compiler command line. For this reason |
Glenn Randers-Pehrson | 9ee577c | 2010-04-24 09:40:44 -0500 | [diff] [blame] | 103 | * libpng specifies the calling convention of every exported function and |
| 104 | * every function called via a user supplied function pointer. This is |
| 105 | * done in this file by defining the following macros: |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 106 | * |
| 107 | * PNGAPI Calling convention for exported functions. |
| 108 | * PNGCBAPI Calling convention for user provided (callback) functions. |
| 109 | * PNGCAPI Calling convention used by the ANSI-C library (required |
| 110 | * for longjmp callbacks and sometimes used internally to |
| 111 | * specify the calling convention for zlib). |
| 112 | * |
Glenn Randers-Pehrson | 9ee577c | 2010-04-24 09:40:44 -0500 | [diff] [blame] | 113 | * These macros should never be overridden. If it is necessary to |
| 114 | * change calling convention in a private build this can be done |
| 115 | * by setting PNG_API_RULE (which defaults to 0) to one of the values |
| 116 | * below to select the correct 'API' variants. |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 117 | * |
Glenn Randers-Pehrson | 9ee577c | 2010-04-24 09:40:44 -0500 | [diff] [blame] | 118 | * PNG_API_RULE=0 Use PNGCAPI - the 'C' calling convention - throughout. |
| 119 | * This is correct in every known environment. |
| 120 | * PNG_API_RULE=1 Use the operating system convention for PNGAPI and |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 121 | * the 'C' calling convention (from PNGCAPI) for |
Glenn Randers-Pehrson | 9ee577c | 2010-04-24 09:40:44 -0500 | [diff] [blame] | 122 | * callbacks (PNGCBAPI). This is no longer required |
| 123 | * in any known environment - if it has to be used |
| 124 | * please post an explanation of the problem to the |
| 125 | * libpng mailing list. |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 126 | * |
| 127 | * These cases only differ if the operating system does not use the C |
| 128 | * calling convention, at present this just means the above cases |
| 129 | * (x86 DOS/Windows sytems) and, even then, this does not apply to |
| 130 | * Cygwin running on those systems. |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 131 | * |
Glenn Randers-Pehrson | 98b4f00 | 2010-04-16 22:30:26 -0500 | [diff] [blame] | 132 | * 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] | 133 | * the application uses to call the library matches the conventions |
| 134 | * set when building the library. |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 135 | */ |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 136 | |
| 137 | /* Symbol export |
| 138 | * ============= |
| 139 | * When building a shared library it is almost always necessary to tell |
| 140 | * the compiler which symbols to export. The png.h macro 'PNG_EXPORT' |
| 141 | * is used to mark the symbols. On some systems these symbols can be |
| 142 | * extracted at link time and need no special processing by the compiler, |
| 143 | * on other systems the symbols are flagged by the compiler and just |
| 144 | * the declaration requires a special tag applied (unfortunately) in a |
| 145 | * compiler dependent way. Some systems can do either. |
| 146 | * |
| 147 | * A small number of older systems also require a symbol from a DLL to |
| 148 | * be flagged to the program that calls it. This is a problem because |
| 149 | * we do not know in the header file included by application code that |
| 150 | * the symbol will come from a shared library, as opposed to a statically |
| 151 | * linked one. For this reason the application must tell us by setting |
| 152 | * the magic flag PNG_USE_DLL to turn on the special processing before |
| 153 | * it includes png.h. |
Glenn Randers-Pehrson | 821b710 | 2010-06-24 16:16:32 -0500 | [diff] [blame] | 154 | * |
Glenn Randers-Pehrson | d00bbb2 | 2010-03-14 09:15:49 -0500 | [diff] [blame] | 155 | * Four additional macros are used to make this happen: |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 156 | * |
| 157 | * PNG_IMPEXP The magic (if any) to cause a symbol to be exported from |
| 158 | * the build or imported if PNG_USE_DLL is set - compiler |
| 159 | * and system specific. |
| 160 | * |
| 161 | * PNG_EXPORT_TYPE(type) A macro that pre or appends PNG_IMPEXP to |
| 162 | * 'type', compiler specific. |
Glenn Randers-Pehrson | d00bbb2 | 2010-03-14 09:15:49 -0500 | [diff] [blame] | 163 | * |
| 164 | * PNG_DLL_EXPORT Set to the magic to use during a libpng build to |
| 165 | * make a symbol exported from the DLL. |
| 166 | * |
| 167 | * PNG_DLL_IMPORT Set to the magic to force the libpng symbols to come |
| 168 | * from a DLL - used to define PNG_IMPEXP when |
| 169 | * PNG_USE_DLL is set. |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 170 | */ |
| 171 | |
| 172 | /* System specific discovery. |
| 173 | * ========================== |
| 174 | * This code is used at build time to find PNG_IMPEXP, the API settings |
| 175 | * and PNG_EXPORT_TYPE(), it may also set a macro to indicate the DLL |
Glenn Randers-Pehrson | 9ee577c | 2010-04-24 09:40:44 -0500 | [diff] [blame] | 176 | * import processing is possible. On Windows/x86 systems it also sets |
| 177 | * compiler-specific macros to the values required to change the calling |
| 178 | * conventions of the various functions. |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 179 | */ |
Glenn Randers-Pehrson | 9ee577c | 2010-04-24 09:40:44 -0500 | [diff] [blame] | 180 | #if ( defined(_Windows) || defined(_WINDOWS) || defined(WIN32) ||\ |
| 181 | defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) ) &&\ |
| 182 | ( defined(_X86_) || defined(_X64_) || defined(_M_IX86) ||\ |
| 183 | defined(_M_X64) || defined(_M_IA64) ) |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 184 | /* Windows system (DOS doesn't support DLLs) running on x86/x64. Includes |
| 185 | * builds under Cygwin or MinGW. Also includes Watcom builds but these need |
| 186 | * special treatment because they are not compatible with GCC or Visual C |
| 187 | * because of different calling conventions. |
Glenn Randers-Pehrson | d00bbb2 | 2010-03-14 09:15:49 -0500 | [diff] [blame] | 188 | */ |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 189 | # if PNG_API_RULE == 2 |
| 190 | /* If this line results in an error, either because __watcall is not |
| 191 | * understood or because of a redefine just below you cannot use *this* |
| 192 | * build of the library with the compiler you are using. *This* build was |
| 193 | * build using Watcom and applications must also be built using Watcom! |
| 194 | */ |
| 195 | # define PNGCAPI __watcall |
| 196 | # endif |
| 197 | |
Glenn Randers-Pehrson | 9ee577c | 2010-04-24 09:40:44 -0500 | [diff] [blame] | 198 | # if defined(__GNUC__) || (defined (_MSC_VER) && (_MSC_VER >= 800)) |
| 199 | # define PNGCAPI __cdecl |
| 200 | # if PNG_API_RULE == 1 |
| 201 | # define PNGAPI __stdcall |
| 202 | # endif |
| 203 | # else |
| 204 | /* An older compiler, or one not detected (erroneously) above, |
| 205 | * if necessary override on the command line to get the correct |
| 206 | * variants for the compiler. |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 207 | */ |
Glenn Randers-Pehrson | 9ee577c | 2010-04-24 09:40:44 -0500 | [diff] [blame] | 208 | # ifndef PNGCAPI |
| 209 | # define PNGCAPI _cdecl |
| 210 | # endif |
| 211 | # if PNG_API_RULE == 1 && !defined(PNGAPI) |
| 212 | # define PNGAPI _stdcall |
| 213 | # endif |
| 214 | # endif /* compiler/api */ |
| 215 | /* NOTE: PNGCBAPI always defaults to PNGCAPI. */ |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 216 | |
Glenn Randers-Pehrson | 9ee577c | 2010-04-24 09:40:44 -0500 | [diff] [blame] | 217 | # if defined(PNGAPI) && !defined(PNG_USER_PRIVATEBUILD) |
| 218 | ERROR: PNG_USER_PRIVATEBUILD must be defined if PNGAPI is changed |
| 219 | # endif |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 220 | |
Glenn Randers-Pehrson | 9ee577c | 2010-04-24 09:40:44 -0500 | [diff] [blame] | 221 | # if (defined(_MSC_VER) && _MSC_VER < 800) ||\ |
| 222 | (defined(__BORLANDC__) && __BORLANDC__ < 0x500) |
| 223 | /* older Borland and MSC |
| 224 | * compilers used '__export' and required this to be after |
| 225 | * the type. |
| 226 | */ |
| 227 | # ifndef PNG_EXPORT_TYPE |
| 228 | # define PNG_EXPORT_TYPE(type) type PNG_IMPEXP |
| 229 | # endif |
| 230 | # define PNG_DLL_EXPORT __export |
| 231 | # else /* newer compiler */ |
| 232 | # define PNG_DLL_EXPORT __declspec(dllexport) |
| 233 | # ifndef PNG_DLL_IMPORT |
| 234 | # define PNG_DLL_IMPORT __declspec(dllimport) |
| 235 | # endif |
| 236 | # endif /* compiler */ |
| 237 | |
| 238 | #else /* !Windows/x86 */ |
| 239 | # if (defined(__IBMC__) || defined(__IBMCPP__)) && defined(__OS2__) |
| 240 | # define PNGAPI _System |
| 241 | # else /* !Windows/x86 && !OS/2 */ |
| 242 | /* Use the defaults, or define PNG*API on the command line (but |
| 243 | * this will have to be done for every compile!) |
| 244 | */ |
| 245 | # endif /* other system, !OS/2 */ |
| 246 | #endif /* !Windows/x86 */ |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 247 | |
| 248 | /* Now do all the defaulting . */ |
| 249 | #ifndef PNGCAPI |
| 250 | # define PNGCAPI |
| 251 | #endif |
| 252 | #ifndef PNGCBAPI |
| 253 | # define PNGCBAPI PNGCAPI |
| 254 | #endif |
| 255 | #ifndef PNGAPI |
| 256 | # define PNGAPI PNGCAPI |
| 257 | #endif |
| 258 | |
Glenn Randers-Pehrson | d00bbb2 | 2010-03-14 09:15:49 -0500 | [diff] [blame] | 259 | /* The default for PNG_IMPEXP depends on whether the library is |
| 260 | * being built or used. |
| 261 | */ |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 262 | #ifndef PNG_IMPEXP |
Glenn Randers-Pehrson | d00bbb2 | 2010-03-14 09:15:49 -0500 | [diff] [blame] | 263 | # ifdef PNGLIB_BUILD |
| 264 | /* Building the library */ |
| 265 | # if (defined(DLL_EXPORT)/*from libtool*/ ||\ |
Glenn Randers-Pehrson | d9d4cec | 2010-07-12 07:12:09 -0500 | [diff] [blame] | 266 | defined(_WINDLL) || defined(_DLL) || defined(__DLL__) ||\ |
| 267 | defined(_USRDLL) ||\ |
| 268 | defined(PNG_BUILD_DLL)) && defined(PNG_DLL_EXPORT) |
Glenn Randers-Pehrson | d00bbb2 | 2010-03-14 09:15:49 -0500 | [diff] [blame] | 269 | /* Building a DLL. */ |
| 270 | # define PNG_IMPEXP PNG_DLL_EXPORT |
| 271 | # endif /* DLL */ |
| 272 | # else |
| 273 | /* Using the library */ |
| 274 | # if defined(PNG_USE_DLL) && defined(PNG_DLL_IMPORT) |
| 275 | /* This forces use of a DLL, disallowing static linking */ |
| 276 | # define PNG_IMPEXP PNG_DLL_IMPORT |
| 277 | # endif |
| 278 | # endif |
| 279 | |
| 280 | # ifndef PNG_IMPEXP |
| 281 | # define PNG_IMPEXP |
| 282 | # endif |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 283 | #endif |
Glenn Randers-Pehrson | d00bbb2 | 2010-03-14 09:15:49 -0500 | [diff] [blame] | 284 | |
John Bowler | 9c69360 | 2011-02-12 08:58:21 -0600 | [diff] [blame] | 285 | /* In 1.5.2 the definition of PNG_FUNCTION has been changed to always treat |
| 286 | * 'attributes' as a storage class - the attributes go at the start of the |
| 287 | * function definition, and attributes are always appended regardless of the |
| 288 | * compiler. This considerably simplifies these macros but may cause problems |
| 289 | * if any compilers both need function attributes and fail to handle them as |
| 290 | * a storage class (this is unlikely.) |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 291 | */ |
| 292 | #ifndef PNG_FUNCTION |
John Bowler | 9c69360 | 2011-02-12 08:58:21 -0600 | [diff] [blame] | 293 | # define PNG_FUNCTION(type, name, args, attributes) attributes type name args |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 294 | #endif |
| 295 | |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 296 | #ifndef PNG_EXPORT_TYPE |
| 297 | # define PNG_EXPORT_TYPE(type) PNG_IMPEXP type |
| 298 | #endif |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 299 | |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 300 | /* 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] | 301 | * table entries, so we discard it here. See the .dfn files in the |
| 302 | * scripts directory. |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 303 | */ |
Glenn Randers-Pehrson | 23d3970 | 2010-12-06 18:28:02 -0600 | [diff] [blame] | 304 | #ifndef PNG_EXPORTA |
Glenn Randers-Pehrson | d32a671 | 2011-03-06 16:49:10 -0600 | [diff] [blame^] | 305 | |
Glenn Randers-Pehrson | 23d3970 | 2010-12-06 18:28:02 -0600 | [diff] [blame] | 306 | # define PNG_EXPORTA(ordinal, type, name, args, attributes)\ |
Glenn Randers-Pehrson | d32a671 | 2011-03-06 16:49:10 -0600 | [diff] [blame^] | 307 | PNG_FUNCTION(PNG_EXPORT_TYPE(type),(PNGAPI name),PNGARG(args), \ |
| 308 | extern attributes) |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 309 | #endif |
| 310 | |
John Bowler | 9c69360 | 2011-02-12 08:58:21 -0600 | [diff] [blame] | 311 | /* ANSI-C (C90) does not permit a macro to be invoked with an empty argument, |
| 312 | * so make something non-empty to satisfy the requirement: |
| 313 | */ |
| 314 | #define PNG_EMPTY /*empty list*/ |
| 315 | |
Glenn Randers-Pehrson | 234e543 | 2010-12-06 20:18:51 -0600 | [diff] [blame] | 316 | #define PNG_EXPORT(ordinal, type, name, args)\ |
John Bowler | 9c69360 | 2011-02-12 08:58:21 -0600 | [diff] [blame] | 317 | PNG_EXPORTA(ordinal, type, name, args, PNG_EMPTY) |
Glenn Randers-Pehrson | 234e543 | 2010-12-06 20:18:51 -0600 | [diff] [blame] | 318 | |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 319 | /* Use PNG_REMOVED to comment out a removed interface. */ |
| 320 | #ifndef PNG_REMOVED |
Glenn Randers-Pehrson | 23d3970 | 2010-12-06 18:28:02 -0600 | [diff] [blame] | 321 | # define PNG_REMOVED(ordinal, type, name, args, attributes) |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 322 | #endif |
| 323 | |
| 324 | #ifndef PNG_CALLBACK |
John Bowler | 9c69360 | 2011-02-12 08:58:21 -0600 | [diff] [blame] | 325 | # define PNG_CALLBACK(type, name, args) type (PNGCBAPI name) PNGARG(args) |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 326 | #endif |
| 327 | |
| 328 | /* Support for compiler specific function attributes. These are used |
| 329 | * so that where compiler support is available incorrect use of API |
| 330 | * functions in png.h will generate compiler warnings. |
| 331 | * |
| 332 | * Added at libpng-1.2.41. |
| 333 | */ |
| 334 | |
| 335 | #ifndef PNG_NO_PEDANTIC_WARNINGS |
Glenn Randers-Pehrson | c44253f | 2010-03-13 20:58:39 -0600 | [diff] [blame] | 336 | # ifndef PNG_PEDANTIC_WARNINGS_SUPPORTED |
| 337 | # define PNG_PEDANTIC_WARNINGS_SUPPORTED |
| 338 | # endif |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 339 | #endif |
| 340 | |
| 341 | #ifdef PNG_PEDANTIC_WARNINGS_SUPPORTED |
Glenn Randers-Pehrson | 882340c | 2010-03-13 21:19:51 -0600 | [diff] [blame] | 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. Added at libpng |
| 345 | * version 1.2.41. |
| 346 | */ |
Glenn Randers-Pehrson | c83d421 | 2011-02-12 08:54:42 -0600 | [diff] [blame] | 347 | # if defined(__GNUC__) |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 348 | # ifndef PNG_USE_RESULT |
| 349 | # define PNG_USE_RESULT __attribute__((__warn_unused_result__)) |
| 350 | # endif |
| 351 | # ifndef PNG_NORETURN |
| 352 | # define PNG_NORETURN __attribute__((__noreturn__)) |
| 353 | # endif |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 354 | # ifndef PNG_PTR_NORETURN |
John Bowler | 9c69360 | 2011-02-12 08:58:21 -0600 | [diff] [blame] | 355 | /* It's not enough to have the compiler be the correct compiler at |
| 356 | * this point - it's necessary for the library (which defines |
| 357 | * the type of the library longjmp) to also be the GNU library. |
| 358 | * This is because many systems use the GNU compiler with a |
| 359 | * non-GNU libc implementation. Min/GW headers are also compatible |
| 360 | * with GCC as well as uclibc, so it seems best to exclude known |
| 361 | * problem libcs here rather than just including known libcs. |
| 362 | * |
| 363 | * NOTE: this relies on the only use of PNG_PTR_NORETURN being with |
| 364 | * the system longjmp. If the same type is used elsewhere then this |
| 365 | * will need to be changed. |
| 366 | */ |
| 367 | # if !defined(__CYGWIN__) |
| 368 | # define PNG_PTR_NORETURN __attribute__((__noreturn__)) |
| 369 | # endif |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 370 | # endif |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 371 | # ifndef PNG_ALLOCATED |
| 372 | # define PNG_ALLOCATED __attribute__((__malloc__)) |
| 373 | # endif |
| 374 | |
| 375 | /* This specifically protects structure members that should only be |
| 376 | * accessed from within the library, therefore should be empty during |
| 377 | * a library build. |
| 378 | */ |
| 379 | # ifndef PNGLIB_BUILD |
| 380 | # ifndef PNG_DEPRECATED |
| 381 | # define PNG_DEPRECATED __attribute__((__deprecated__)) |
| 382 | # endif |
| 383 | # ifndef PNG_DEPSTRUCT |
| 384 | # define PNG_DEPSTRUCT __attribute__((__deprecated__)) |
| 385 | # endif |
| 386 | # ifndef PNG_PRIVATE |
| 387 | # if 0 /* Doesn't work so we use deprecated instead*/ |
| 388 | # define PNG_PRIVATE \ |
| 389 | __attribute__((warning("This function is not exported by libpng."))) |
| 390 | # else |
| 391 | # define PNG_PRIVATE \ |
| 392 | __attribute__((__deprecated__)) |
| 393 | # endif |
John Bowler | 9c69360 | 2011-02-12 08:58:21 -0600 | [diff] [blame] | 394 | # endif |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 395 | # endif /* PNGLIB_BUILD */ |
| 396 | # endif /* __GNUC__ */ |
Glenn Randers-Pehrson | d32a671 | 2011-03-06 16:49:10 -0600 | [diff] [blame^] | 397 | |
| 398 | # if defined(_MSC_VER) && (_MSC_VER >= 1300) |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 399 | # ifndef PNG_USE_RESULT |
Glenn Randers-Pehrson | c36bb79 | 2011-02-12 09:49:07 -0600 | [diff] [blame] | 400 | # define PNG_USE_RESULT /* not supported */ |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 401 | # endif |
| 402 | # ifndef PNG_NORETURN |
| 403 | # define PNG_NORETURN __declspec(noreturn) |
| 404 | # endif |
| 405 | # ifndef PNG_PTR_NORETURN |
Glenn Randers-Pehrson | c36bb79 | 2011-02-12 09:49:07 -0600 | [diff] [blame] | 406 | # define PNG_PTR_NORETURN /* not supported */ |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 407 | # endif |
| 408 | # ifndef PNG_ALLOCATED |
Glenn Randers-Pehrson | d32a671 | 2011-03-06 16:49:10 -0600 | [diff] [blame^] | 409 | # define PNG_ALLOCATED __declspec(restrict) |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 410 | # endif |
| 411 | |
| 412 | /* This specifically protects structure members that should only be |
| 413 | * accessed from within the library, therefore should be empty during |
| 414 | * a library build. |
| 415 | */ |
| 416 | # ifndef PNGLIB_BUILD |
| 417 | # ifndef PNG_DEPRECATED |
| 418 | # define PNG_DEPRECATED __declspec(deprecated) |
| 419 | # endif |
| 420 | # ifndef PNG_DEPSTRUCT |
| 421 | # define PNG_DEPSTRUCT __declspec(deprecated) |
| 422 | # endif |
| 423 | # ifndef PNG_PRIVATE |
| 424 | # define PNG_PRIVATE __declspec(deprecated) |
John Bowler | 9c69360 | 2011-02-12 08:58:21 -0600 | [diff] [blame] | 425 | # endif |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 426 | # endif /* PNGLIB_BUILD */ |
John Bowler | 9c69360 | 2011-02-12 08:58:21 -0600 | [diff] [blame] | 427 | # endif /* _MSC_VER */ |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 428 | #endif /* PNG_PEDANTIC_WARNINGS */ |
| 429 | |
| 430 | #ifndef PNG_DEPRECATED |
| 431 | # define PNG_DEPRECATED /* Use of this function is deprecated */ |
| 432 | #endif |
| 433 | #ifndef PNG_USE_RESULT |
| 434 | # define PNG_USE_RESULT /* The result of this function must be checked */ |
| 435 | #endif |
| 436 | #ifndef PNG_NORETURN |
| 437 | # define PNG_NORETURN /* This function does not return */ |
| 438 | #endif |
John Bowler | 9c69360 | 2011-02-12 08:58:21 -0600 | [diff] [blame] | 439 | #ifndef PNG_PTR_NORETURN |
| 440 | # define PNG_PTR_NORETURN /* This function does not return */ |
| 441 | #endif |
Glenn Randers-Pehrson | d7da8bb | 2010-03-13 20:30:10 -0600 | [diff] [blame] | 442 | #ifndef PNG_ALLOCATED |
| 443 | # define PNG_ALLOCATED /* The result of the function is new memory */ |
| 444 | #endif |
| 445 | #ifndef PNG_DEPSTRUCT |
| 446 | # define PNG_DEPSTRUCT /* Access to this struct member is deprecated */ |
| 447 | #endif |
| 448 | #ifndef PNG_PRIVATE |
| 449 | # define PNG_PRIVATE /* This is a private libpng function */ |
Glenn Randers-Pehrson | a4d54bd | 2000-07-14 08:15:12 -0500 | [diff] [blame] | 450 | #endif |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 451 | #ifndef PNG_FP_EXPORT /* A floating point API. */ |
| 452 | # ifdef PNG_FLOATING_POINT_SUPPORTED |
Glenn Randers-Pehrson | 23d3970 | 2010-12-06 18:28:02 -0600 | [diff] [blame] | 453 | # define PNG_FP_EXPORT(ordinal, type, name, args)\ |
| 454 | PNG_EXPORT(ordinal, type, name, args) |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 455 | # else /* No floating point APIs */ |
Glenn Randers-Pehrson | 23d3970 | 2010-12-06 18:28:02 -0600 | [diff] [blame] | 456 | # define PNG_FP_EXPORT(ordinal, type, name, args) |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 457 | # endif |
| 458 | #endif |
| 459 | #ifndef PNG_FIXED_EXPORT /* A fixed point API. */ |
| 460 | # ifdef PNG_FIXED_POINT_SUPPORTED |
Glenn Randers-Pehrson | 23d3970 | 2010-12-06 18:28:02 -0600 | [diff] [blame] | 461 | # define PNG_FIXED_EXPORT(ordinal, type, name, args)\ |
| 462 | PNG_EXPORT(ordinal, type, name, args) |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 463 | # else /* No fixed point APIs */ |
Glenn Randers-Pehrson | 23d3970 | 2010-12-06 18:28:02 -0600 | [diff] [blame] | 464 | # define PNG_FIXED_EXPORT(ordinal, type, name, args) |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 465 | # endif |
| 466 | #endif |
Glenn Randers-Pehrson | a4d54bd | 2000-07-14 08:15:12 -0500 | [diff] [blame] | 467 | |
Andreas Dilger | 02ad0ef | 1997-01-17 01:34:35 -0600 | [diff] [blame] | 468 | /* The following uses const char * instead of char * for error |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 469 | * and warning message functions, so some compilers won't complain. |
Glenn Randers-Pehrson | c4a2ae6 | 1998-01-16 22:06:18 -0600 | [diff] [blame] | 470 | * If you do not want to use const, define PNG_NO_CONST here. |
Glenn Randers-Pehrson | 7253144 | 2010-04-17 08:17:51 -0500 | [diff] [blame] | 471 | * |
| 472 | * This should not change how the APIs are called, so it can be done |
| 473 | * on a per-file basis in the application. |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 474 | */ |
Glenn Randers-Pehrson | 28d4aae | 2009-11-13 16:29:45 -0600 | [diff] [blame] | 475 | #ifndef PNG_CONST |
| 476 | # ifndef PNG_NO_CONST |
| 477 | # define PNG_CONST const |
| 478 | # else |
| 479 | # define PNG_CONST |
| 480 | # endif |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 481 | #endif |
| 482 | |
Andreas Dilger | 02ad0ef | 1997-01-17 01:34:35 -0600 | [diff] [blame] | 483 | /* Some typedefs to get us started. These should be safe on most of the |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 484 | * common platforms. The typedefs should be at least as large as the |
| 485 | * numbers suggest (a png_uint_32 must be at least 32 bits long), but they |
| 486 | * don't have to be exactly that size. Some compilers dislike passing |
| 487 | * unsigned shorts as function parameters, so you may be better off using |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 488 | * unsigned int for png_uint_16. |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 489 | */ |
Guy Schalnat | 51f0eb4 | 1995-09-26 05:22:39 -0500 | [diff] [blame] | 490 | |
Glenn Randers-Pehrson | 6bc53be | 2006-06-16 07:52:03 -0500 | [diff] [blame] | 491 | #if defined(INT_MAX) && (INT_MAX > 0x7ffffffeL) |
| 492 | typedef unsigned int png_uint_32; |
| 493 | typedef int png_int_32; |
| 494 | #else |
Guy Schalnat | 51f0eb4 | 1995-09-26 05:22:39 -0500 | [diff] [blame] | 495 | typedef unsigned long png_uint_32; |
| 496 | typedef long png_int_32; |
Glenn Randers-Pehrson | 6bc53be | 2006-06-16 07:52:03 -0500 | [diff] [blame] | 497 | #endif |
Guy Schalnat | 51f0eb4 | 1995-09-26 05:22:39 -0500 | [diff] [blame] | 498 | typedef unsigned short png_uint_16; |
| 499 | typedef short png_int_16; |
| 500 | typedef unsigned char png_byte; |
| 501 | |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 502 | #ifdef PNG_NO_SIZE_T |
Glenn Randers-Pehrson | 882340c | 2010-03-13 21:19:51 -0600 | [diff] [blame] | 503 | typedef unsigned int png_size_t; |
Glenn Randers-Pehrson | 5fea36f | 2004-07-28 08:20:44 -0500 | [diff] [blame] | 504 | #else |
Glenn Randers-Pehrson | 882340c | 2010-03-13 21:19:51 -0600 | [diff] [blame] | 505 | typedef size_t png_size_t; |
Glenn Randers-Pehrson | 5fea36f | 2004-07-28 08:20:44 -0500 | [diff] [blame] | 506 | #endif |
Glenn Randers-Pehrson | d3a726d | 2010-08-03 20:26:34 -0500 | [diff] [blame] | 507 | #define png_sizeof(x) (sizeof (x)) |
Guy Schalnat | 51f0eb4 | 1995-09-26 05:22:39 -0500 | [diff] [blame] | 508 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 509 | /* The following is needed for medium model support. It cannot be in the |
Glenn Randers-Pehrson | 6a9c2ce | 2009-03-27 19:30:10 -0500 | [diff] [blame] | 510 | * pngpriv.h header. Needs modification for other compilers besides |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 511 | * MSC. Model independent support declares all arrays and pointers to be |
| 512 | * large using the far keyword. The zlib version used must also support |
| 513 | * model independent data. As of version zlib 1.0.4, the necessary changes |
| 514 | * have been made in zlib. The USE_FAR_KEYWORD define triggers other |
| 515 | * changes that are needed. (Tim Wegner) |
| 516 | */ |
Guy Schalnat | 51f0eb4 | 1995-09-26 05:22:39 -0500 | [diff] [blame] | 517 | |
Andreas Dilger | 02ad0ef | 1997-01-17 01:34:35 -0600 | [diff] [blame] | 518 | /* Separate compiler dependencies (problem here is that zlib.h always |
Glenn Randers-Pehrson | 6076da8 | 2009-09-30 12:28:07 -0500 | [diff] [blame] | 519 | * defines FAR. (SJT) |
| 520 | */ |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 521 | #ifdef __BORLANDC__ |
Glenn Randers-Pehrson | 231e687 | 2001-01-12 15:13:06 -0600 | [diff] [blame] | 522 | # if defined(__LARGE__) || defined(__HUGE__) || defined(__COMPACT__) |
| 523 | # define LDATA 1 |
| 524 | # else |
| 525 | # define LDATA 0 |
| 526 | # endif |
Glenn Randers-Pehrson | 882340c | 2010-03-13 21:19:51 -0600 | [diff] [blame] | 527 | /* GRR: why is Cygwin in here? Cygwin is not Borland C... */ |
Glenn Randers-Pehrson | 231e687 | 2001-01-12 15:13:06 -0600 | [diff] [blame] | 528 | # if !defined(__WIN32__) && !defined(__FLAT__) && !defined(__CYGWIN__) |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 529 | # define PNG_MAX_MALLOC_64K /* only used in build */ |
Glenn Randers-Pehrson | 231e687 | 2001-01-12 15:13:06 -0600 | [diff] [blame] | 530 | # if (LDATA != 1) |
| 531 | # ifndef FAR |
| 532 | # define FAR __far |
| 533 | # endif |
| 534 | # define USE_FAR_KEYWORD |
| 535 | # endif /* LDATA != 1 */ |
Glenn Randers-Pehrson | c44253f | 2010-03-13 20:58:39 -0600 | [diff] [blame] | 536 | /* Possibly useful for moving data out of default segment. |
| 537 | * Uncomment it if you want. Could also define FARDATA as |
| 538 | * const if your compiler supports it. (SJT) |
Glenn Randers-Pehrson | d4df36c | 2010-03-06 10:45:55 -0600 | [diff] [blame] | 539 | # define FARDATA FAR |
Glenn Randers-Pehrson | c44253f | 2010-03-13 20:58:39 -0600 | [diff] [blame] | 540 | */ |
Glenn Randers-Pehrson | 231e687 | 2001-01-12 15:13:06 -0600 | [diff] [blame] | 541 | # endif /* __WIN32__, __FLAT__, __CYGWIN__ */ |
Guy Schalnat | b2e01bd | 1996-01-26 01:38:47 -0600 | [diff] [blame] | 542 | #endif /* __BORLANDC__ */ |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 543 | |
| 544 | |
Andreas Dilger | 02ad0ef | 1997-01-17 01:34:35 -0600 | [diff] [blame] | 545 | /* Suggest testing for specific compiler first before testing for |
Glenn Randers-Pehrson | b6ce43d | 1998-01-01 07:13:13 -0600 | [diff] [blame] | 546 | * FAR. The Watcom compiler defines both __MEDIUM__ and M_I86MM, |
| 547 | * making reliance oncertain keywords suspect. (SJT) |
| 548 | */ |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 549 | |
| 550 | /* MSC Medium model */ |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 551 | #ifdef FAR |
| 552 | # ifdef M_I86MM |
Glenn Randers-Pehrson | 231e687 | 2001-01-12 15:13:06 -0600 | [diff] [blame] | 553 | # define USE_FAR_KEYWORD |
| 554 | # define FARDATA FAR |
| 555 | # include <dos.h> |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 556 | # endif |
| 557 | #endif |
| 558 | |
| 559 | /* SJT: default case */ |
| 560 | #ifndef FAR |
Glenn Randers-Pehrson | 231e687 | 2001-01-12 15:13:06 -0600 | [diff] [blame] | 561 | # define FAR |
Guy Schalnat | 51f0eb4 | 1995-09-26 05:22:39 -0500 | [diff] [blame] | 562 | #endif |
| 563 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 564 | /* At this point FAR is always defined */ |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 565 | #ifndef FARDATA |
Glenn Randers-Pehrson | 231e687 | 2001-01-12 15:13:06 -0600 | [diff] [blame] | 566 | # define FARDATA |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 567 | #endif |
| 568 | |
Glenn Randers-Pehrson | 61c32d9 | 2000-02-04 23:40:16 -0600 | [diff] [blame] | 569 | /* Typedef for floating-point numbers that are converted |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 570 | * to fixed-point with a multiple of 100,000, e.g., gamma |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 571 | */ |
Glenn Randers-Pehrson | 61c32d9 | 2000-02-04 23:40:16 -0600 | [diff] [blame] | 572 | typedef png_int_32 png_fixed_point; |
| 573 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 574 | /* Add typedefs for pointers */ |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 575 | typedef void FAR * png_voidp; |
| 576 | typedef PNG_CONST void FAR * png_const_voidp; |
| 577 | typedef png_byte FAR * png_bytep; |
| 578 | typedef PNG_CONST png_byte FAR * png_const_bytep; |
| 579 | typedef png_uint_32 FAR * png_uint_32p; |
| 580 | typedef PNG_CONST png_uint_32 FAR * png_const_uint_32p; |
| 581 | typedef png_int_32 FAR * png_int_32p; |
| 582 | typedef PNG_CONST png_int_32 FAR * png_const_int_32p; |
| 583 | typedef png_uint_16 FAR * png_uint_16p; |
| 584 | typedef PNG_CONST png_uint_16 FAR * png_const_uint_16p; |
| 585 | typedef png_int_16 FAR * png_int_16p; |
| 586 | typedef PNG_CONST png_int_16 FAR * png_const_int_16p; |
| 587 | typedef char FAR * png_charp; |
| 588 | typedef PNG_CONST char FAR * png_const_charp; |
| 589 | typedef png_fixed_point FAR * png_fixed_point_p; |
| 590 | typedef PNG_CONST png_fixed_point FAR * png_const_fixed_point_p; |
| 591 | typedef png_size_t FAR * png_size_tp; |
| 592 | typedef PNG_CONST png_size_t FAR * png_const_size_tp; |
Glenn Randers-Pehrson | be9de0f | 2001-01-22 08:52:16 -0600 | [diff] [blame] | 593 | |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 594 | #ifdef PNG_STDIO_SUPPORTED |
Glenn Randers-Pehrson | 882340c | 2010-03-13 21:19:51 -0600 | [diff] [blame] | 595 | typedef FILE * png_FILE_p; |
Glenn Randers-Pehrson | be9de0f | 2001-01-22 08:52:16 -0600 | [diff] [blame] | 596 | #endif |
| 597 | |
Glenn Randers-Pehrson | 166c5a3 | 1999-12-10 09:43:02 -0600 | [diff] [blame] | 598 | #ifdef PNG_FLOATING_POINT_SUPPORTED |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 599 | typedef double FAR * png_doublep; |
| 600 | typedef PNG_CONST double FAR * png_const_doublep; |
Glenn Randers-Pehrson | 166c5a3 | 1999-12-10 09:43:02 -0600 | [diff] [blame] | 601 | #endif |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 602 | |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 603 | /* Pointers to pointers; i.e. arrays */ |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 604 | typedef png_byte FAR * FAR * png_bytepp; |
| 605 | typedef png_uint_32 FAR * FAR * png_uint_32pp; |
| 606 | typedef png_int_32 FAR * FAR * png_int_32pp; |
| 607 | typedef png_uint_16 FAR * FAR * png_uint_16pp; |
| 608 | typedef png_int_16 FAR * FAR * png_int_16pp; |
| 609 | typedef PNG_CONST char FAR * FAR * png_const_charpp; |
| 610 | typedef char FAR * FAR * png_charpp; |
Glenn Randers-Pehrson | 61c32d9 | 2000-02-04 23:40:16 -0600 | [diff] [blame] | 611 | typedef png_fixed_point FAR * FAR * png_fixed_point_pp; |
Glenn Randers-Pehrson | 166c5a3 | 1999-12-10 09:43:02 -0600 | [diff] [blame] | 612 | #ifdef PNG_FLOATING_POINT_SUPPORTED |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 613 | typedef double FAR * FAR * png_doublepp; |
Glenn Randers-Pehrson | 166c5a3 | 1999-12-10 09:43:02 -0600 | [diff] [blame] | 614 | #endif |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 615 | |
Glenn Randers-Pehrson | 231e687 | 2001-01-12 15:13:06 -0600 | [diff] [blame] | 616 | /* Pointers to pointers to pointers; i.e., pointer to array */ |
Andreas Dilger | 47a0c42 | 1997-05-16 02:46:07 -0500 | [diff] [blame] | 617 | typedef char FAR * FAR * FAR * png_charppp; |
Guy Schalnat | 6d76471 | 1995-12-19 03:22:19 -0600 | [diff] [blame] | 618 | |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 619 | /* png_alloc_size_t is guaranteed to be no smaller than png_size_t, |
| 620 | * and no smaller than png_uint_32. Casts from png_size_t or png_uint_32 |
| 621 | * to png_alloc_size_t are not necessary; in fact, it is recommended |
| 622 | * not to use them at all so that the compiler can complain when something |
| 623 | * turns out to be problematic. |
| 624 | * Casts in the other direction (from png_alloc_size_t to png_size_t or |
| 625 | * png_uint_32) should be explicitly applied; however, we do not expect |
| 626 | * to encounter practical situations that require such conversions. |
| 627 | */ |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 628 | #if defined(__TURBOC__) && !defined(__FLAT__) |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 629 | typedef unsigned long png_alloc_size_t; |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 630 | #else |
| 631 | # if defined(_MSC_VER) && defined(MAXSEG_64K) |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 632 | typedef unsigned long png_alloc_size_t; |
| 633 | # else |
Glenn Randers-Pehrson | d3a726d | 2010-08-03 20:26:34 -0500 | [diff] [blame] | 634 | /* This is an attempt to detect an old Windows system where (int) is |
| 635 | * actually 16 bits, in that case png_malloc must have an argument with a |
| 636 | * bigger size to accomodate the requirements of the library. |
| 637 | */ |
| 638 | # if (defined(_Windows) || defined(_WINDOWS) || defined(_WINDOWS_)) && \ |
| 639 | (!defined(INT_MAX) || INT_MAX <= 0x7ffffffeL) |
| 640 | typedef DWORD png_alloc_size_t; |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 641 | # else |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 642 | typedef png_size_t png_alloc_size_t; |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 643 | # endif |
| 644 | # endif |
| 645 | #endif |
Guy Schalnat | 51f0eb4 | 1995-09-26 05:22:39 -0500 | [diff] [blame] | 646 | |
Guy Schalnat | 51f0eb4 | 1995-09-26 05:22:39 -0500 | [diff] [blame] | 647 | #endif /* PNGCONF_H */ |