VirtualBox

source: vbox/trunk/src/libs/libpng-1.6.45/pngconf.h@ 107935

Last change on this file since 107935 was 107813, checked in by vboxsync, 3 weeks ago

libpng-1.6.45: Applied and adjusted our libpng changes to 1.6.45. bugref:8515

  • Property svn:eol-style set to native
File size: 22.2 KB
Line 
1/* pngconf.h - machine-configurable file for libpng
2 *
3 * libpng version 1.6.45
4 *
5 * Copyright (c) 2018-2025 Cosmin Truta
6 * Copyright (c) 1998-2002,2004,2006-2016,2018 Glenn Randers-Pehrson
7 * Copyright (c) 1996-1997 Andreas Dilger
8 * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
9 *
10 * This code is released under the libpng license.
11 * For conditions of distribution and use, see the disclaimer
12 * and license in png.h
13 *
14 * Any machine specific code is near the front of this file, so if you
15 * are configuring libpng for a machine, you may want to read the section
16 * starting here down to where it starts to typedef png_color, png_text,
17 * and png_info.
18 */
19
20#ifndef PNGCONF_H
21#define PNGCONF_H
22
23#ifndef PNG_BUILDING_SYMBOL_TABLE /* else includes may cause problems */
24
25/* From libpng 1.6.0 libpng requires an ANSI X3.159-1989 ("ISOC90") compliant C
26 * compiler for correct compilation. The following header files are required by
27 * the standard. If your compiler doesn't provide these header files, or they
28 * do not match the standard, you will need to provide/improve them.
29 */
30#include <limits.h>
31#include <stddef.h>
32
33/* Library header files. These header files are all defined by ISOC90; libpng
34 * expects conformant implementations, however, an ISOC90 conformant system need
35 * not provide these header files if the functionality cannot be implemented.
36 * In this case it will be necessary to disable the relevant parts of libpng in
37 * the build of pnglibconf.h.
38 *
39 * Prior to 1.6.0 string.h was included here; the API changes in 1.6.0 to not
40 * include this unnecessary header file.
41 */
42
43#ifdef PNG_STDIO_SUPPORTED
44 /* Required for the definition of FILE: */
45# include <stdio.h>
46#endif
47
48#ifdef PNG_SETJMP_SUPPORTED
49 /* Required for the definition of jmp_buf and the declaration of longjmp: */
50# include <setjmp.h>
51#endif
52
53#ifdef PNG_CONVERT_tIME_SUPPORTED
54 /* Required for struct tm: */
55# include <time.h>
56#endif
57
58#endif /* PNG_BUILDING_SYMBOL_TABLE */
59
60/* Prior to 1.6.0, it was possible to turn off 'const' in declarations,
61 * using PNG_NO_CONST. This is no longer supported.
62 */
63#define PNG_CONST const /* backward compatibility only */
64
65/* This controls optimization of the reading of 16-bit and 32-bit
66 * values from PNG files. It can be set on a per-app-file basis: it
67 * just changes whether a macro is used when the function is called.
68 * The library builder sets the default; if read functions are not
69 * built into the library the macro implementation is forced on.
70 */
71#ifndef PNG_READ_INT_FUNCTIONS_SUPPORTED
72# define PNG_USE_READ_MACROS
73#endif
74#if !defined(PNG_NO_USE_READ_MACROS) && !defined(PNG_USE_READ_MACROS)
75# if PNG_DEFAULT_READ_MACROS
76# define PNG_USE_READ_MACROS
77# endif
78#endif
79
80/* COMPILER SPECIFIC OPTIONS.
81 *
82 * These options are provided so that a variety of difficult compilers
83 * can be used. Some are fixed at build time (e.g. PNG_API_RULE
84 * below) but still have compiler specific implementations, others
85 * may be changed on a per-file basis when compiling against libpng.
86 */
87
88/* The PNGARG macro was used in versions of libpng prior to 1.6.0 to protect
89 * against legacy (pre ISOC90) compilers that did not understand function
90 * prototypes. [Deprecated.]
91 */
92#ifndef PNGARG
93# define PNGARG(arglist) arglist
94#endif
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
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:
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 *
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.
117 *
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
121 * the 'C' calling convention (from PNGCAPI) for
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.
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 systems) and, even then, this does not apply to
130 * Cygwin running on those systems.
131 *
132 * Note that the value must be defined in pnglibconf.h so that what
133 * the application uses to call the library matches the conventions
134 * set when building the library.
135 */
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.
154 *
155 * Four additional macros are used to make this happen:
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.
163 *
164 * PNG_DLL_EXPORT Set to the magic to use during a libpng build to
165 * make a symbol exported from the DLL. Not used in the
166 * public header files; see pngpriv.h for how it is used
167 * in the libpng build.
168 *
169 * PNG_DLL_IMPORT Set to the magic to force the libpng symbols to come
170 * from a DLL - used to define PNG_IMPEXP when
171 * PNG_USE_DLL is set.
172 */
173
174/* System specific discovery.
175 * ==========================
176 * This code is used at build time to find PNG_IMPEXP, the API settings
177 * and PNG_EXPORT_TYPE(), it may also set a macro to indicate the DLL
178 * import processing is possible. On Windows systems it also sets
179 * compiler-specific macros to the values required to change the calling
180 * conventions of the various functions.
181 */
182#if defined(_WIN32) || defined(__WIN32__) || defined(__NT__) || \
183 defined(__CYGWIN__)
184 /* Windows system (DOS doesn't support DLLs). Includes builds under Cygwin or
185 * MinGW on any architecture currently supported by Windows. Also includes
186 * Watcom builds but these need special treatment because they are not
187 * compatible with GCC or Visual C because of different calling conventions.
188 */
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
198# if defined(__GNUC__) || (defined(_MSC_VER) && (_MSC_VER >= 800))
199# define PNGCAPI __cdecl
200# if PNG_API_RULE == 1
201 /* If this line results in an error __stdcall is not understood and
202 * PNG_API_RULE should not have been set to '1'.
203 */
204# define PNGAPI __stdcall
205# endif
206# else
207 /* An older compiler, or one not detected (erroneously) above,
208 * if necessary override on the command line to get the correct
209 * variants for the compiler.
210 */
211# ifndef PNGCAPI
212# define PNGCAPI _cdecl
213# endif
214# if PNG_API_RULE == 1 && !defined(PNGAPI)
215# define PNGAPI _stdcall
216# endif
217# endif /* compiler/api */
218
219 /* NOTE: PNGCBAPI always defaults to PNGCAPI. */
220
221# if defined(PNGAPI) && !defined(PNG_USER_PRIVATEBUILD)
222# error "PNG_USER_PRIVATEBUILD must be defined if PNGAPI is changed"
223# endif
224
225# if (defined(_MSC_VER) && _MSC_VER < 800) ||\
226 (defined(__BORLANDC__) && __BORLANDC__ < 0x500)
227 /* older Borland and MSC
228 * compilers used '__export' and required this to be after
229 * the type.
230 */
231# ifndef PNG_EXPORT_TYPE
232# define PNG_EXPORT_TYPE(type) type PNG_IMPEXP
233# endif
234# define PNG_DLL_EXPORT __export
235# else /* newer compiler */
236# define PNG_DLL_EXPORT __declspec(dllexport)
237# ifndef PNG_DLL_IMPORT
238# define PNG_DLL_IMPORT __declspec(dllimport)
239# endif
240# endif /* compiler */
241
242#else /* !Windows */
243# if (defined(__IBMC__) || defined(__IBMCPP__)) && defined(__OS2__)
244# define PNGAPI _System
245# else /* !Windows/x86 && !OS/2 */
246 /* Use the defaults, or define PNG*API on the command line (but
247 * this will have to be done for every compile!)
248 */
249# endif /* other system, !OS/2 */
250#endif /* !Windows/x86 */
251
252/* Now do all the defaulting . */
253#ifndef PNGCAPI
254# define PNGCAPI
255#endif
256#ifndef PNGCBAPI
257# define PNGCBAPI PNGCAPI
258#endif
259#ifndef PNGAPI
260# define PNGAPI PNGCAPI
261#endif
262
263/* PNG_IMPEXP may be set on the compilation system command line or (if not set)
264 * then in an internal header file when building the library, otherwise (when
265 * using the library) it is set here.
266 */
267#ifndef PNG_IMPEXP
268# if defined(PNG_USE_DLL) && defined(PNG_DLL_IMPORT)
269 /* This forces use of a DLL, disallowing static linking */
270# define PNG_IMPEXP PNG_DLL_IMPORT
271# endif
272
273# ifndef PNG_IMPEXP
274# define PNG_IMPEXP
275# endif
276#endif
277
278/* In 1.5.2 the definition of PNG_FUNCTION has been changed to always treat
279 * 'attributes' as a storage class - the attributes go at the start of the
280 * function definition, and attributes are always appended regardless of the
281 * compiler. This considerably simplifies these macros but may cause problems
282 * if any compilers both need function attributes and fail to handle them as
283 * a storage class (this is unlikely.)
284 */
285#ifndef PNG_FUNCTION
286# define PNG_FUNCTION(type, name, args, attributes) attributes type name args
287#endif
288
289#ifndef PNG_EXPORT_TYPE
290# define PNG_EXPORT_TYPE(type) PNG_IMPEXP type
291#endif
292
293 /* The ordinal value is only relevant when preprocessing png.h for symbol
294 * table entries, so we discard it here. See the .dfn files in the
295 * scripts directory.
296 */
297
298#ifndef PNG_EXPORTA
299# define PNG_EXPORTA(ordinal, type, name, args, attributes) \
300 PNG_FUNCTION(PNG_EXPORT_TYPE(type), (PNGAPI name), args, \
301 PNG_LINKAGE_API attributes)
302#endif
303
304/* ANSI-C (C90) does not permit a macro to be invoked with an empty argument,
305 * so make something non-empty to satisfy the requirement:
306 */
307#define PNG_EMPTY /*empty list*/
308
309#define PNG_EXPORT(ordinal, type, name, args) \
310 PNG_EXPORTA(ordinal, type, name, args, PNG_EMPTY)
311
312/* Use PNG_REMOVED to comment out a removed interface. */
313#ifndef PNG_REMOVED
314# define PNG_REMOVED(ordinal, type, name, args, attributes)
315#endif
316
317#ifndef PNG_CALLBACK
318# define PNG_CALLBACK(type, name, args) type (PNGCBAPI name) args
319#endif
320
321/* Support for compiler specific function attributes. These are used
322 * so that where compiler support is available incorrect use of API
323 * functions in png.h will generate compiler warnings.
324 *
325 * Added at libpng-1.2.41.
326 */
327
328#ifndef PNG_NO_PEDANTIC_WARNINGS
329# ifndef PNG_PEDANTIC_WARNINGS_SUPPORTED
330# define PNG_PEDANTIC_WARNINGS_SUPPORTED
331# endif
332#endif
333
334#ifdef PNG_PEDANTIC_WARNINGS_SUPPORTED
335 /* Support for compiler specific function attributes. These are used
336 * so that where compiler support is available, incorrect use of API
337 * functions in png.h will generate compiler warnings. Added at libpng
338 * version 1.2.41. Disabling these removes the warnings but may also produce
339 * less efficient code.
340 */
341# if defined(__clang__) && defined(__has_attribute)
342 /* Clang defines both __clang__ and __GNUC__. Check __clang__ first. */
343# if !defined(PNG_USE_RESULT) && __has_attribute(__warn_unused_result__)
344# define PNG_USE_RESULT __attribute__((__warn_unused_result__))
345# endif
346# if !defined(PNG_NORETURN) && __has_attribute(__noreturn__)
347# define PNG_NORETURN __attribute__((__noreturn__))
348# endif
349# if !defined(PNG_ALLOCATED) && __has_attribute(__malloc__)
350# define PNG_ALLOCATED __attribute__((__malloc__))
351# endif
352# if !defined(PNG_DEPRECATED) && __has_attribute(__deprecated__)
353# define PNG_DEPRECATED __attribute__((__deprecated__))
354# endif
355# if !defined(PNG_PRIVATE)
356# ifdef __has_extension
357# if __has_extension(attribute_unavailable_with_message)
358# define PNG_PRIVATE __attribute__((__unavailable__(\
359 "This function is not exported by libpng.")))
360# endif
361# endif
362# endif
363# ifndef PNG_RESTRICT
364# define PNG_RESTRICT __restrict
365# endif
366
367# elif defined(__GNUC__)
368# ifndef PNG_USE_RESULT
369# define PNG_USE_RESULT __attribute__((__warn_unused_result__))
370# endif
371# ifndef PNG_NORETURN
372# define PNG_NORETURN __attribute__((__noreturn__))
373# endif
374# if __GNUC__ >= 3
375# ifndef PNG_ALLOCATED
376# define PNG_ALLOCATED __attribute__((__malloc__))
377# endif
378# ifndef PNG_DEPRECATED
379# define PNG_DEPRECATED __attribute__((__deprecated__))
380# endif
381# ifndef PNG_PRIVATE
382# if 0 /* Doesn't work so we use deprecated instead*/
383# define PNG_PRIVATE \
384 __attribute__((warning("This function is not exported by libpng.")))
385# else
386# define PNG_PRIVATE \
387 __attribute__((__deprecated__))
388# endif
389# endif
390# if ((__GNUC__ > 3) || !defined(__GNUC_MINOR__) || (__GNUC_MINOR__ >= 1))
391# ifndef PNG_RESTRICT
392# define PNG_RESTRICT __restrict
393# endif
394# endif /* __GNUC__.__GNUC_MINOR__ > 3.0 */
395# endif /* __GNUC__ >= 3 */
396
397# elif defined(_MSC_VER) && (_MSC_VER >= 1300)
398# ifndef PNG_USE_RESULT
399# define PNG_USE_RESULT /* not supported */
400# endif
401# ifndef PNG_NORETURN
402# define PNG_NORETURN __declspec(noreturn)
403# endif
404# ifndef PNG_ALLOCATED
405# if (_MSC_VER >= 1400)
406# define PNG_ALLOCATED __declspec(restrict)
407# endif
408# endif
409# ifndef PNG_DEPRECATED
410# define PNG_DEPRECATED __declspec(deprecated)
411# endif
412# ifndef PNG_PRIVATE
413# define PNG_PRIVATE __declspec(deprecated)
414# endif
415# ifndef PNG_RESTRICT
416# if (_MSC_VER >= 1400)
417# define PNG_RESTRICT __restrict
418# endif
419# endif
420
421# elif defined(__WATCOMC__)
422# ifndef PNG_RESTRICT
423# define PNG_RESTRICT __restrict
424# endif
425# endif
426#endif /* PNG_PEDANTIC_WARNINGS */
427
428#ifndef PNG_DEPRECATED
429# define PNG_DEPRECATED /* Use of this function is deprecated */
430#endif
431#ifndef PNG_USE_RESULT
432# define PNG_USE_RESULT /* The result of this function must be checked */
433#endif
434#ifndef PNG_NORETURN
435# define PNG_NORETURN /* This function does not return */
436#endif
437#ifndef PNG_ALLOCATED
438# define PNG_ALLOCATED /* The result of the function is new memory */
439#endif
440#ifndef PNG_PRIVATE
441# define PNG_PRIVATE /* This is a private libpng function */
442#endif
443#ifndef PNG_RESTRICT
444# define PNG_RESTRICT /* The C99 "restrict" feature */
445#endif
446
447#ifndef PNG_FP_EXPORT /* A floating point API. */
448# ifdef PNG_FLOATING_POINT_SUPPORTED
449# define PNG_FP_EXPORT(ordinal, type, name, args)\
450 PNG_EXPORT(ordinal, type, name, args);
451# else /* No floating point APIs */
452# define PNG_FP_EXPORT(ordinal, type, name, args)
453# endif
454#endif
455#ifndef PNG_FIXED_EXPORT /* A fixed point API. */
456# ifdef PNG_FIXED_POINT_SUPPORTED
457# define PNG_FIXED_EXPORT(ordinal, type, name, args)\
458 PNG_EXPORT(ordinal, type, name, args);
459# else /* No fixed point APIs */
460# define PNG_FIXED_EXPORT(ordinal, type, name, args)
461# endif
462#endif
463
464#ifndef PNG_BUILDING_SYMBOL_TABLE
465/* Some typedefs to get us started. These should be safe on most of the common
466 * platforms.
467 *
468 * png_uint_32 and png_int_32 may, currently, be larger than required to hold a
469 * 32-bit value however this is not normally advisable.
470 *
471 * png_uint_16 and png_int_16 should always be two bytes in size - this is
472 * verified at library build time.
473 *
474 * png_byte must always be one byte in size.
475 *
476 * The checks below use constants from limits.h, as defined by the ISOC90
477 * standard.
478 */
479#if CHAR_BIT == 8 && UCHAR_MAX == 255
480 typedef unsigned char png_byte;
481#else
482# error "libpng requires 8-bit bytes"
483#endif
484
485#if INT_MIN == -32768 && INT_MAX == 32767
486 typedef int png_int_16;
487#elif SHRT_MIN == -32768 && SHRT_MAX == 32767
488 typedef short png_int_16;
489#else
490# error "libpng requires a signed 16-bit type"
491#endif
492
493#if UINT_MAX == 65535
494 typedef unsigned int png_uint_16;
495#elif USHRT_MAX == 65535
496 typedef unsigned short png_uint_16;
497#else
498# error "libpng requires an unsigned 16-bit type"
499#endif
500
501#if INT_MIN < -2147483646 && INT_MAX > 2147483646
502 typedef int png_int_32;
503#elif LONG_MIN < -2147483646 && LONG_MAX > 2147483646
504 typedef long int png_int_32;
505#else
506# error "libpng requires a signed 32-bit (or more) type"
507#endif
508
509#if UINT_MAX > 4294967294U
510 typedef unsigned int png_uint_32;
511#elif ULONG_MAX > 4294967294U
512 typedef unsigned long int png_uint_32;
513#else
514# error "libpng requires an unsigned 32-bit (or more) type"
515#endif
516
517/* Prior to 1.6.0, it was possible to disable the use of size_t and ptrdiff_t.
518 * From 1.6.0 onwards, an ISO C90 compiler, as well as a standard-compliant
519 * behavior of sizeof and ptrdiff_t are required.
520 * The legacy typedefs are provided here for backwards compatibility.
521 */
522typedef size_t png_size_t;
523typedef ptrdiff_t png_ptrdiff_t;
524
525/* libpng needs to know the maximum value of 'size_t' and this controls the
526 * definition of png_alloc_size_t, below. This maximum value of size_t limits
527 * but does not control the maximum allocations the library makes - there is
528 * direct application control of this through png_set_user_limits().
529 */
530#ifndef PNG_SMALL_SIZE_T
531 /* Compiler specific tests for systems where size_t is known to be less than
532 * 32 bits (some of these systems may no longer work because of the lack of
533 * 'far' support; see above.)
534 */
535# if (defined(__TURBOC__) && !defined(__FLAT__)) ||\
536 (defined(_MSC_VER) && defined(MAXSEG_64K))
537# define PNG_SMALL_SIZE_T
538# endif
539#endif
540
541/* png_alloc_size_t is guaranteed to be no smaller than size_t, and no smaller
542 * than png_uint_32. Casts from size_t or png_uint_32 to png_alloc_size_t are
543 * not necessary; in fact, it is recommended not to use them at all, so that
544 * the compiler can complain when something turns out to be problematic.
545 *
546 * Casts in the other direction (from png_alloc_size_t to size_t or
547 * png_uint_32) should be explicitly applied; however, we do not expect to
548 * encounter practical situations that require such conversions.
549 *
550 * PNG_SMALL_SIZE_T must be defined if the maximum value of size_t is less than
551 * 4294967295 - i.e. less than the maximum value of png_uint_32.
552 */
553#ifdef PNG_SMALL_SIZE_T
554 typedef png_uint_32 png_alloc_size_t;
555#else
556 typedef size_t png_alloc_size_t;
557#endif
558
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.
568 */
569
570/* Typedef for floating-point numbers that are converted to fixed-point with a
571 * multiple of 100,000, e.g., gamma
572 */
573typedef png_int_32 png_fixed_point;
574
575/* Add typedefs for pointers */
576typedef void * png_voidp;
577typedef const void * png_const_voidp;
578typedef png_byte * png_bytep;
579typedef const png_byte * png_const_bytep;
580typedef png_uint_32 * png_uint_32p;
581typedef const png_uint_32 * png_const_uint_32p;
582typedef png_int_32 * png_int_32p;
583typedef const png_int_32 * png_const_int_32p;
584typedef png_uint_16 * png_uint_16p;
585typedef const png_uint_16 * png_const_uint_16p;
586typedef png_int_16 * png_int_16p;
587typedef const png_int_16 * png_const_int_16p;
588typedef char * png_charp;
589typedef const char * png_const_charp;
590typedef png_fixed_point * png_fixed_point_p;
591typedef const png_fixed_point * png_const_fixed_point_p;
592typedef size_t * png_size_tp;
593typedef const size_t * png_const_size_tp;
594
595#ifdef PNG_STDIO_SUPPORTED
596typedef FILE * png_FILE_p;
597#endif
598
599#ifdef PNG_FLOATING_POINT_SUPPORTED
600typedef double * png_doublep;
601typedef const double * png_const_doublep;
602#endif
603
604/* Pointers to pointers; i.e. arrays */
605typedef png_byte * * png_bytepp;
606typedef png_uint_32 * * png_uint_32pp;
607typedef png_int_32 * * png_int_32pp;
608typedef png_uint_16 * * png_uint_16pp;
609typedef png_int_16 * * png_int_16pp;
610typedef const char * * png_const_charpp;
611typedef char * * png_charpp;
612typedef png_fixed_point * * png_fixed_point_pp;
613#ifdef PNG_FLOATING_POINT_SUPPORTED
614typedef double * * png_doublepp;
615#endif
616
617/* Pointers to pointers to pointers; i.e., pointer to array */
618typedef char * * * png_charppp;
619
620#endif /* PNG_BUILDING_SYMBOL_TABLE */
621
622#endif /* PNGCONF_H */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette