summaryrefslogtreecommitdiff
path: root/content/hlcache.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2011-03-15 22:02:06 +0000
committerVincent Sanders <vince@netsurf-browser.org>2011-03-15 22:02:06 +0000
commit1da7b161f8eb8e2afbb46e9e2904dc3973fc2458 (patch)
treeb8e3f8f4fdd19d316c12dc39d515f053a6723a9a /content/hlcache.h
parentb69816ff79aec1a472cdb184c45452d6926cf6f7 (diff)
downloadnetsurf-1da7b161f8eb8e2afbb46e9e2904dc3973fc2458.tar.gz
netsurf-1da7b161f8eb8e2afbb46e9e2904dc3973fc2458.tar.bz2
Stop gtk printing from exploding if its unable to initialise the job
add interface to clone a high level cache handle make generic printing core call new hlcache interface svn path=/trunk/netsurf/; revision=12068
Diffstat (limited to 'content/hlcache.h')
-rw-r--r--content/hlcache.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/content/hlcache.h b/content/hlcache.h
index 3006b9e4d..c4e10915a 100644
--- a/content/hlcache.h
+++ b/content/hlcache.h
@@ -165,4 +165,14 @@ nserror hlcache_handle_replace_callback(hlcache_handle *handle,
*/
struct content *hlcache_handle_get_content(const hlcache_handle *handle);
+/**
+ * Clone a high level cache handle.
+ *
+ * \param handle The handle to clone.
+ * \param result The cloned handle.
+ * \return NSERROR_OK on success, appropriate error otherwise
+ *
+ */
+nserror hlcache_handle_clone(hlcache_handle *handle, hlcache_handle **result);
+
#endif