00001 /* 00002 * HT Editor 00003 * out_html.h 00004 * 00005 * Copyright (C) 1999, 2000, 2001 Sebastian Biallas (sb@web-productions.de) 00006 * 00007 * This program is free software; you can redistribute it and/or modify 00008 * it under the terms of the GNU General Public License version 2 as 00009 * published by the Free Software Foundation. 00010 * 00011 * This program is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 * GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License 00017 * along with this program; if not, write to the Free Software 00018 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00019 */ 00020 00021 #ifndef out_html_h 00022 #define out_html_h 00023 00024 #include "analy.h" 00025 #include "common.h" 00026 #include "global.h" 00027 #include "stream.h" 00028 00029 #define HTML_OUTPUT_OK 0 00030 #define HTML_OUTPUT_ERR_GENERIC 1 00031 #define HTML_OUTPUT_ERR_STREAM 2 00032 #define HTML_OUTPUT_ERR_ANALY_NOT_FINISHED 3 00033 00034 int generate_html_output(Analyser *analy, ht_stream *stream, Address *from, Address *to); 00035 00036 #endif