blob: 085832715ed32de7709269daf2725b4632f17b70 [file] [log] [blame]
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -05001
2/* symbols.dfn - find all exported symbols
3 *
Glenn Randers-Pehrsonf5ea1b72011-01-06 06:42:51 -06004 * Last changed in libpng version 1.5.0 [January 6, 2011]
Glenn Randers-Pehrson5c5db5a2011-01-21 23:23:34 -06005 * Copyright (c) 1998-2011 Glenn Randers-Pehrson
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -05006 *
7 * This code is released under the libpng license.
8 * For conditions of distribution and use, see the disclaimer
9 * and license in png.h
10 */
11
12/* NOTE: making 'symbols.chk' checks both that the exported
13 * symbols in the library don't change and (implicitly) that
Cosmin Truta82200da2014-03-22 09:29:59 -050014 * scripts/pnglibconf.h.prebuilt is as expected.
15 * If scripts/pnglibconf.h.prebuilt is remade using
16 * scripts/pnglibconf.dfa then this checks the .dfa file too.
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050017 */
18
Glenn Randers-Pehrson23d39702010-12-06 18:28:02 -060019#define PNG_EXPORTA(ordinal, type, name, args, attributes)\
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -060020 PNG_DFN "@" name "@ @@" ordinal "@"
Glenn Randers-Pehrson23d39702010-12-06 18:28:02 -060021#define PNG_REMOVED(ordinal, type, name, args, attributes)\
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -060022 PNG_DFN "; @" name "@ @@" ordinal "@"
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050023#define PNG_EXPORT_LAST_ORDINAL(ordinal)\
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -060024 PNG_DFN "; @@" ordinal "@"
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050025
Glenn Randers-Pehrson8c667862010-08-24 16:16:35 -050026/* Read the defaults, but use scripts/pnglibconf.h.prebuilt; the 'standard'
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050027 * header file.
28 */
Glenn Randers-Pehrson8c667862010-08-24 16:16:35 -050029#include "pnglibconf.h.prebuilt"
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050030#include "../png.h"
31
32/* Some things are turned off by default. Turn these things
33 * on here (by hand) to get the APIs they expose and validate
34 * that no harm is done. This list is the set of options
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -050035 * defaulted to 'off' in scripts/pnglibconf.dfa
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050036 *
Glenn Randers-Pehrson98b4f002010-04-16 22:30:26 -050037 * Maintenance: if scripts/pnglibconf.dfa options are changed
John Bowlerf3728102013-03-04 16:26:31 -060038 * from, or to, 'disabled' this needs updating!
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050039 */
40#define PNG_BENIGN_ERRORS_SUPPORTED
41#define PNG_ERROR_NUMBERS_SUPPORTED
42#define PNG_READ_BIG_ENDIAN_SUPPORTED /* should do nothing! */
43#define PNG_INCH_CONVERSIONS_SUPPORTED
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050044#define PNG_READ_16_TO_8_ACCURATE_SCALE_SUPPORTED
John Bowlerf3728102013-03-04 16:26:31 -060045#define PNG_SET_OPTION_SUPPORTED
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050046
47#undef PNG_H
48#include "../png.h"
49
50/* Finally there are a couple of places where option support
51 * actually changes the APIs revealed using a #if/#else/#endif
52 * test in png.h, test these here.
53 */
54#undef PNG_FLOATING_POINT_SUPPORTED /* Exposes 'fixed' APIs */
55#undef PNG_ERROR_TEXT_SUPPORTED /* Exposes unsupported APIs */
56
57#undef PNG_H
58#include "../png.h"