Fix for new cache.

svn path=/trunk/netsurf/; revision=10279
This commit is contained in:
Michael Drake 2010-04-07 17:05:50 +00:00
parent 43094a146d
commit 95b859c2eb
2 changed files with 4 additions and 4 deletions

View File

@ -22,9 +22,9 @@
#ifdef WITH_DRAW_EXPORT
#include <stdbool.h>
struct content;
struct hlcache_handle;
bool save_as_draw(struct content *c, const char *path);
bool save_as_draw(struct hlcache_handle *h, const char *path);
#endif

View File

@ -22,9 +22,9 @@
#include "utils/config.h"
#ifdef WITH_PDF_EXPORT
struct content;
struct hlcache_handle;
bool save_as_pdf(struct content *c, const char *path);
bool save_as_pdf(struct hlcache_handle *h, const char *path);
#endif /* WITH_PDF_EXPORT */