summaryrefslogtreecommitdiff
path: root/content/fetchcache.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2003-10-25 14:13:49 +0000
committerJames Bursa <james@netsurf-browser.org>2003-10-25 14:13:49 +0000
commit28f974f00f43d3a04c0bcae32e7cfc85ee66df20 (patch)
tree9ab73b22014e6da29c851698b0f7c0262260cc8e /content/fetchcache.h
parentf1375fe19db064fcebf00433ce73eab99be038ef (diff)
downloadnetsurf-28f974f00f43d3a04c0bcae32e7cfc85ee66df20.tar.gz
netsurf-28f974f00f43d3a04c0bcae32e7cfc85ee66df20.tar.bz2
[project @ 2003-10-25 14:13:49 by bursa]
URL encoded POST support. svn path=/import/netsurf/; revision=375
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