00001 /***************************************************************************** 00002 * 00003 * $RCSfile: pngdec_8h-source.html,v $ 00004 * 00005 * PNG Image Decoder 00006 * 00007 * This program is Copyright (C) 12/2002 Matthias Prinke 00008 * <matthias.prinke@surfeu.de> and covered by GNU's GPL. 00009 * In particular, this program is free software and comes WITHOUT 00010 * ANY WARRANTY. 00011 * 00012 * $Author: mp $ 00013 * 00014 * $Date: 2007-10-08 20:40:34 $ 00015 * 00016 * $Revision: 1.7.2.1 $ 00017 * 00018 * $Log: pngdec_8h-source.html,v $ 00018 * Revision 1.7.2.1 2007-10-08 20:40:34 mp 00018 * updated for gps4palm V0.9.5 beta 00018 * 00019 * Revision 1.3 2005-05-15 10:39:17 mp 00020 * modified doPNG() 00021 * 00022 * Revision 1.2 2004/11/24 21:20:02 mp 00023 * moved static function declarations from header to implementation file 00024 * 00025 * Revision 1.1.1.1 2003/07/14 18:59:29 mp 00026 * Imported GPS4Palm to CVS revision control. 00027 * 00028 * 00029 ****************************************************************************/ 00030 #ifndef PNGDEC_H 00031 #define PNGDEC_H 00032 #include "file_io.h" 00033 00034 /* 00035 * The map display functions are in their own segment 00036 */ 00037 #define PNGDEC_SECTION __attribute__ ((section ("maps"))) 00038 00039 int doPNG(FileDescrType fd) PNGDEC_SECTION; 00040 void cleanPNG() PNGDEC_SECTION; 00041 00042 #endif