1 /* output-pstoedit.h: utility routines for libpstoedit.so functions 2 3 Copyright (C) 2002 Masatake YAMATO 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 #ifndef OUTPUT_PSTOEDIT_H 21 #define OUTPUT_PSTOEDIT_H 22 23 #include <pstoedit/pstoedit.h> 24 #include "output.h" 25 26 at_output_write_func output_pstoedit_get_writer(const at_string); 27 at_bool output_pstoedit_is_writer (at_output_write_func writer); 28 int output_pstoedit_invoke_writer (at_output_write_func writer, 29 FILE* file, at_string name, 30 int llx, int lly, int urx, int ury, 31 at_output_opts_type * opts, 32 at_spline_list_array_type shape, 33 at_msg_func msg_func, 34 at_address msg_data); 35 at_bool output_pstoedit_is_unusable_writer(const at_string name); 36 37 #endif /* Not def: OUTPUTPSTOEDIT_H */ 38