Commit | Line | Data |
---|---|---|
9c0d9ce3 DS |
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: */ | |
16 | S-;---------------------------------------------------------------E | |
17 | S-; LIBPNG module definition file for OS/2-E | |
18 | S-;---------------------------------------------------------------E | |
19 | S--E | |
20 | S-; If you give the library an explicit name one or other files-E | |
21 | S-; may need modifying to support the new name on one or more-E | |
22 | S-; systems.-E | |
23 | S-LIBRARY-E | |
24 | S-OS2 DESCRIPTION "PNG image compression library"-E | |
25 | S-OS2 CODE PRELOAD MOVEABLE DISCARDABLE-E | |
26 | S--E | |
27 | S-EXPORTS-E | |
28 | S-;Version 1.5.0beta58-E | |
29 | ||
72281370 | 30 | /* NOTE: PNG_JOIN is interpreted by the calling script as a signal to |
9c0d9ce3 DS |
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)\ | |
72281370 | 36 | PNG_DEFN_MAGIC- SYMBOL_PREFIX PNG_JOIN name-PNG_DEFN_END |
9c0d9ce3 DS |
37 | |
38 | #include "../png.h" |