1 /* input-png.h: import png files.
2 
3    Copyright (C) 2000 MenTaLguY <mental@rydia.net>
4 
5    This library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public License
7    as published by the Free Software Foundation; either version 2.1 of
8    the License, or (at your option) any later version.
9 
10    This library is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
14 
15    You should have received a copy of the GNU Lesser General Public
16    License along with this library; if not, write to the Free Software
17    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18    USA. */
19 
20 /* $Id: input-png.h,v 1.7 2002/10/05 19:38:25 masata-y Exp $ */
21 
22 #ifndef INPUT_PNG_H
23 #define INPUT_PNG_H
24 
25 #include "input.h"
26 
27 at_bitmap_type input_png_reader (at_string filename,
28 				 at_input_opts_type * opts,
29 				 at_msg_func msg_func,
30 				 at_address msg_data);
31 
32 #endif /* not INPUT_PNG_H */
33