/src/Image_LibPNG154/scripts/def.dfn
Unknown | 38 lines | 34 code | 4 blank | 0 comment | 0 complexity | 4b3307416312a68577d41765895e02df MD5 | raw file
Possible License(s): AGPL-3.0, LGPL-2.1, LGPL-3.0, GPL-2.0
1/* def.dfn - define format of libpng.def 2 * 3 * Last changed in libpng version 1.5.0 [(PENDING RELEASE)] 4 * Copyright (c) 2010-2011 Glenn Randers-Pehrson 5 * 6 * This code is released under the libpng license. 7 * For conditions of distribution and use, see the disclaimer 8 * and license in png.h 9 */ 10 11/* These macros exist to make the header and trailer shorter below: */ 12#define S PNG_DEFN_MAGIC 13#define E PNG_DEFN_END 14 15/* Write the export file header: */ 16S-;---------------------------------------------------------------E 17S-; LIBPNG module definition file for OS/2-E 18S-;---------------------------------------------------------------E 19S--E 20S-; If you give the library an explicit name one or other files-E 21S-; may need modifying to support the new name on one or more-E 22S-; systems.-E 23S-LIBRARY-E 24S-OS2 DESCRIPTION "PNG image compression library"-E 25S-OS2 CODE PRELOAD MOVEABLE DISCARDABLE-E 26S--E 27S-EXPORTS-E 28S-;Version 1.5.0beta58-E 29 30/* NOTE: @@@ is interpreted by the calling script as a signal to 31 * join the two things on either side, so we can do symbol 32 * substitution within the name, regular C ## joins the pp-tokens, 33 * not their final values. 34 */ 35#define PNG_EXPORTA(ordinal, type, name, args, attributes)\ 36 PNG_DEFN_MAGIC- SYMBOL_PREFIX @@@ name-PNG_DEFN_END 37 38#include "../png.h"