8069aeb88e
to scripts/symbols.def, added scripts/checksym.*
103 lines
3.3 KiB
Plaintext
103 lines
3.3 KiB
Plaintext
|
|
/* pngwin.dfn - find all exported symbols
|
|
*
|
|
* Last changed in libpng 1.5.0 [March 16, 2010]
|
|
* Copyright (c) 1998-2010 Glenn Randers-Pehrson
|
|
*
|
|
* This code is released under the libpng license.
|
|
* For conditions of distribution and use, see the disclaimer
|
|
* and license in png.h
|
|
*/
|
|
|
|
#define PNG_EXPORT(type, name, args, attributes, ordinal)\
|
|
PNG_DEFN_MAGIC-name ordinal-PNG_DEFN_END
|
|
#define PNG_REMOVED(type, name, args, attributes, ordinal)\
|
|
PNG_DEFN_MAGIC-; name ordinal-PNG_DEFN_END
|
|
#define PNG_EXPORT_LAST_ORDINAL(ordinal)\
|
|
PNG_DEFN_MAGIC-; ordinal-PNG_DEFN_END
|
|
|
|
/* Turn on everything that we can turn on: */
|
|
#define PNG_BENIGN_ERRORS_SUPPORTED
|
|
#define PNG_CONVERT_tIME_SUPPORTED
|
|
#define PNG_EASY_ACCESS_SUPPORTED
|
|
#define PNG_ERROR_NUMBERS_SUPPORTED
|
|
#undef PNG_FIXED_POINT_SUPPORTED /* Chose between floating and fixed */
|
|
#define PNG_FLOATING_POINT_SUPPORTED
|
|
#define PNG_NO_USE_READ_MACROS /* Exposes no APIs if defined */
|
|
#define PNG_GET_INT_32_SUPPORTED
|
|
#define PNG_HANDLE_AS_UNKNOWN_SUPPORTED
|
|
#define PNG_INCH_CONVERSIONS /* NOTE: no SUPPORTED! */
|
|
#define PNG_INFO_IMAGE_SUPPORTED
|
|
#define PNG_IO_STATE_SUPPORTED
|
|
#define PNG_MNG_FEATURES_SUPPORTED
|
|
#define PNG_PROGRESSIVE_READ_SUPPORTED
|
|
#define PNG_READ_16_TO_8_SUPPORTED
|
|
#define PNG_READ_BACKGROUND_SUPPORTED
|
|
#define PNG_READ_BGR_SUPPORTED
|
|
#define PNG_READ_COMPOSITE_NODIV_SUPPORTED
|
|
#define PNG_READ_DITHER_SUPPORTED
|
|
#define PNG_READ_EXPAND_SUPPORTED
|
|
#define PNG_READ_FILLER_SUPPORTED
|
|
#define PNG_READ_GAMMA_SUPPORTED
|
|
#define PNG_READ_GRAY_TO_RGB_SUPPORTED
|
|
#define PNG_READ_INTERLACING_SUPPORTED
|
|
#define PNG_READ_INVERT_ALPHA_SUPPORTED
|
|
#define PNG_READ_INVERT_SUPPORTED
|
|
#define PNG_READ_PACKSWAP_SUPPORTED
|
|
#define PNG_READ_PACK_SUPPORTED
|
|
#define PNG_READ_RGB_TO_GRAY_SUPPORTED
|
|
#define PNG_READ_SHIFT_SUPPORTED
|
|
#define PNG_READ_STRIP_ALPHA_SUPPORTED
|
|
#define PNG_READ_SWAP_ALPHA_SUPPORTED
|
|
#define PNG_READ_SWAP_SUPPORTED
|
|
#define PNG_READ_USER_TRANSFORM_SUPPORTED
|
|
#define PNG_SEQUENTIAL_READ_SUPPORTED
|
|
#define PNG_SETJMP_SUPPORTED
|
|
#define PNG_SET_USER_LIMITS_SUPPORTED
|
|
#define PNG_STDIO_SUPPORTED
|
|
#define PNG_TEXT_SUPPORTED
|
|
#define PNG_TIME_RFC1123_SUPPORTED
|
|
#define PNG_UNKNOWN_CHUNKS_SUPPORTED
|
|
#define PNG_USER_CHUNKS_SUPPORTED
|
|
#define PNG_USER_MEM_SUPPORTED
|
|
#define PNG_NO_ERROR_TEXT /* NOTE: no supported */
|
|
#define PNG_WRITE_BGR_SUPPORTED
|
|
#define PNG_WRITE_FILLER_SUPPORTED
|
|
#define PNG_WRITE_FLUSH_SUPPORTED
|
|
#define PNG_WRITE_INTERLACING_SUPPORTED
|
|
#define PNG_WRITE_INVERT_ALPHA_SUPPORTED
|
|
#define PNG_WRITE_INVERT_SUPPORTED
|
|
#define PNG_WRITE_PACKSWAP_SUPPORTED
|
|
#define PNG_WRITE_PACK_SUPPORTED
|
|
#define PNG_WRITE_SHIFT_SUPPORTED
|
|
#define PNG_WRITE_SWAP_ALPHA_SUPPORTED
|
|
#define PNG_WRITE_SWAP_SUPPORTED
|
|
#define PNG_WRITE_USER_TRANSFORM_SUPPORTED
|
|
#define PNG_WRITE_WEIGHTED_FILTER_SUPPORTED
|
|
#define PNG_bKGD_SUPPORTED
|
|
#define PNG_cHRM_SUPPORTED
|
|
#define PNG_gAMA_SUPPORTED
|
|
#define PNG_hIST_SUPPORTED
|
|
#define PNG_iCCP_SUPPORTED
|
|
#define PNG_iTXt_SUPPORTED
|
|
#define PNG_oFFs_SUPPORTED
|
|
#define PNG_pCAL_SUPPORTED
|
|
#define PNG_pHYs_SUPPORTED
|
|
#define PNG_sBIT_SUPPORTED
|
|
#define PNG_sCAL_SUPPORTED
|
|
#define PNG_sPLT_SUPPORTED
|
|
#define PNG_sRGB_SUPPORTED
|
|
#define PNG_tIME_SUPPORTED
|
|
#define PNG_tRNS_SUPPORTED
|
|
|
|
#include "../png.h"
|
|
|
|
/* Now repeat, but toggle everything that has a #else clause */
|
|
#define PNG_FIXED_POINT_SUPPORTED
|
|
#undef PNG_FLOATING_POINT_SUPPORTED
|
|
#define PNG_NO_FLOATING_POINT_SUPPORTED
|
|
#undef PNG_NO_ERROR_TEXT
|
|
|
|
#undef PNG_H
|
|
#include "../png.h"
|