diff options
author | David Walter Seikel | 2013-01-13 17:24:39 +1000 |
---|---|---|
committer | David Walter Seikel | 2013-01-13 17:24:39 +1000 |
commit | 393b5cd1dc438872af89d334ef6e5fcc59f27d47 (patch) | |
tree | 6a14521219942a08a1b95cb2f5a923a9edd60f63 /libraries/irrlicht-1.8/source/Irrlicht/libpng/scripts/def.dfn | |
parent | Add a note about rasters suggested start up code. (diff) | |
download | SledjHamr-393b5cd1dc438872af89d334ef6e5fcc59f27d47.zip SledjHamr-393b5cd1dc438872af89d334ef6e5fcc59f27d47.tar.gz SledjHamr-393b5cd1dc438872af89d334ef6e5fcc59f27d47.tar.bz2 SledjHamr-393b5cd1dc438872af89d334ef6e5fcc59f27d47.tar.xz |
Added Irrlicht 1.8, but without all the Windows binaries.
Diffstat (limited to '')
-rw-r--r-- | libraries/irrlicht-1.8/source/Irrlicht/libpng/scripts/def.dfn | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/libraries/irrlicht-1.8/source/Irrlicht/libpng/scripts/def.dfn b/libraries/irrlicht-1.8/source/Irrlicht/libpng/scripts/def.dfn new file mode 100644 index 0000000..c7ed8ab --- /dev/null +++ b/libraries/irrlicht-1.8/source/Irrlicht/libpng/scripts/def.dfn | |||
@@ -0,0 +1,38 @@ | |||
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: */ | ||
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 | |||
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" | ||