1 /* output-epd.h: utility routines for EPD output
2    (http://epd.sourceforge.net)
3 
4    Copyright (C) 1999, 2000, 2001 Martin Weber.
5 
6    This library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Lesser General Public License
8    as published by the Free Software Foundation; either version 2.1 of
9    the License, or (at your option) any later version.
10 
11    This library is distributed in the hope that it will be useful, but
12    WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Lesser General Public License for more details.
15 
16    You should have received a copy of the GNU Lesser General Public
17    License along with this library; if not, write to the Free Software
18    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19    USA. */
20 
21 #ifndef OUTPUT_EPD_H
22 #define OUTPUT_EPD_H
23 
24 #include "output.h"
25 
26 int output_epd_writer (FILE* file, at_string name,
27 		       int llx, int lly, int urx, int ury,
28 		       at_output_opts_type * opts,
29 		       at_spline_list_array_type shape,
30 		       at_msg_func msg_func,
31 		       at_address msg_data);
32 
33 
34 #endif /* not OUTPUT_EPD_H */
35