source: rtems-graphics-toolkit/libpng-1.5.11/scripts/def.dfn @ 248419a

Last change on this file since 248419a was 248419a, checked in by Sebastian Huber <sebastian.huber@…>, on 07/12/12 at 07:28:02

Update libpng from 1.2.41 to 1.5.11

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/* def.dfn - define format of libpng.def
2 *
3 * Last changed in libpng version 1.5.7 [December 15, 2011]
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: PNG_JOIN 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 PNG_JOIN name-PNG_DEFN_END
37
38#include "../png.h"
Note: See TracBrowser for help on using the repository browser.