Introspection fix
[gnumeric.git] / plugins / html / html.h
blob24ecb61609700eddda4c624dcb12facaeab4e6e7
1 /*
2 * html.h
4 * Copyright (C) 1999 Rasca, Berlin
5 * EMail: thron@gmx.de
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, see <https://www.gnu.org/licenses/>.
21 #ifndef GNUMERIC_PLUGIN_HTML_H
22 #define GNUMERIC_PLUGIN_HTML_H
24 #include <gnumeric.h>
25 #include <goffice/goffice.h>
27 void html32_file_save (GOFileSaver const *fs, GOIOContext *io_context,
28 WorkbookView const *wb_view, GsfOutput *output);
29 void html40_file_save (GOFileSaver const *fs, GOIOContext *io_context,
30 WorkbookView const *wb_view, GsfOutput *output);
31 void html40frag_file_save (GOFileSaver const *fs, GOIOContext *io_context,
32 WorkbookView const *wb_view, GsfOutput *output);
33 void xhtml_file_save (GOFileSaver const *fs, GOIOContext *io_context,
34 WorkbookView const *wb_view, GsfOutput *output);
35 void xhtml_range_file_save (GOFileSaver const *fs, GOIOContext *io_context,
36 WorkbookView const *wb_view, GsfOutput *output);
38 void html_file_open (GOFileOpener const *fo, GOIOContext *io_context,
39 WorkbookView *wb_view, GsfInput *input);
41 gboolean html_file_probe (GOFileOpener const *fo, GsfInput *input,
42 GOFileProbeLevel pl);
45 #define G_PLUGIN_FOR_HTML "GPFH/0.5"
47 #endif