| OLD | NEW |
| (Empty) | |
| 1 |
| 2 /* intprefix.c - generate an unprefixed internal symbol list |
| 3 * |
| 4 * Last changed in libpng version 1.6.16 [December 22, 2014] |
| 5 * Copyright (c) 2013-2014 Glenn Randers-Pehrson |
| 6 * |
| 7 * This code is released under the libpng license. |
| 8 * For conditions of distribution and use, see the disclaimer |
| 9 * and license in png.h |
| 10 */ |
| 11 |
| 12 #define PNG_INTERNAL_DATA(type, name, array)\ |
| 13 PNG_DFN "@" name "@" |
| 14 |
| 15 #define PNG_INTERNAL_FUNCTION(type, name, args, attributes)\ |
| 16 PNG_DFN "@" name "@" |
| 17 |
| 18 #define PNG_INTERNAL_CALLBACK(type, name, args, attributes)\ |
| 19 PNG_DFN "@" name "@" |
| 20 |
| 21 #define PNGPREFIX_H /* self generation */ |
| 22 #include "../pngpriv.h" |
| OLD | NEW |