summaryrefslogtreecommitdiff
path: root/content/fetchcache.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/fetchcache.h')
-rw-r--r--content/fetchcache.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/content/fetchcache.h b/content/fetchcache.h
index bd7c09933..a0a25c2f8 100644
--- a/content/fetchcache.h
+++ b/content/fetchcache.h
@@ -18,10 +18,13 @@
#include <stdbool.h>
#include "netsurf/content/content.h"
+struct form_successful_control;
+
struct content * fetchcache(const char *url, char *referer,
void (*callback)(content_msg msg, struct content *c, void *p1,
void *p2, const char *error),
void *p1, void *p2, unsigned long width, unsigned long height,
- bool only_2xx);
+ bool only_2xx, char *post_urlenc,
+ struct form_successful_control *post_multipart);
#endif