From 355799ce0bbb078237dfc1ae9874bbc5342acbc4 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Thu, 17 Dec 2009 23:55:02 +0000 Subject: Merge branches/MarkieB/gtkmain to trunk. svn path=/trunk/netsurf/; revision=9729 --- desktop/save_complete.h | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 desktop/save_complete.h (limited to 'desktop/save_complete.h') diff --git a/desktop/save_complete.h b/desktop/save_complete.h new file mode 100644 index 000000000..e23092471 --- /dev/null +++ b/desktop/save_complete.h @@ -0,0 +1,42 @@ +/* + * Copyright 2004 John M Bell + * Copyright 2009 Mark Benjamin + * + * This file is part of NetSurf, http://www.netsurf-browser.org/ + * + * NetSurf is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License. + * + * NetSurf is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/** \file + * Save HTML document with dependencies (interface). + */ + +#ifndef _NETSURF_DESKTOP_SAVE_COMPLETE_H_ +#define _NETSURF_DESKTOP_SAVE_COMPLETE_H_ + +#include +#include +#include "content/content.h" + +struct content; + +void save_complete_init(void); +bool save_complete(struct content *c, const char *path); + +bool save_complete_gui_save(const char *path, const char *filename, + size_t len, const char *sourcedata, content_type type); + +int save_complete_htmlSaveFileFormat(const char *path, const char *filename, + xmlDocPtr cur, const char *encoding, int format); + +#endif -- cgit v1.2.3