summaryrefslogtreecommitdiff
path: root/riscos
diff options
context:
space:
mode:
Diffstat (limited to 'riscos')
-rw-r--r--riscos/content-handlers/artworks.c4
-rw-r--r--riscos/content-handlers/draw.c4
-rw-r--r--riscos/content-handlers/sprite.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/riscos/content-handlers/artworks.c b/riscos/content-handlers/artworks.c
index 9ec04a7e5..4b5d27afb 100644
--- a/riscos/content-handlers/artworks.c
+++ b/riscos/content-handlers/artworks.c
@@ -104,7 +104,7 @@ extern os_error *awrender_render(const char *doc,
void *workspace);
static nserror artworks_create(const content_handler *handler,
- lwc_string *imime_type, const http_parameter *params,
+ lwc_string *imime_type, const struct http_parameter *params,
llcache_handle *llcache, const char *fallback_charset,
bool quirks, struct content **c);
static bool artworks_convert(struct content *c);
@@ -132,7 +132,7 @@ CONTENT_FACTORY_REGISTER_TYPES(artworks, artworks_types,
artworks_content_handler)
nserror artworks_create(const content_handler *handler,
- lwc_string *imime_type, const http_parameter *params,
+ lwc_string *imime_type, const struct http_parameter *params,
llcache_handle *llcache, const char *fallback_charset,
bool quirks, struct content **c)
{
diff --git a/riscos/content-handlers/draw.c b/riscos/content-handlers/draw.c
index c2524d496..37f69119a 100644
--- a/riscos/content-handlers/draw.c
+++ b/riscos/content-handlers/draw.c
@@ -44,7 +44,7 @@ typedef struct draw_content {
} draw_content;
static nserror draw_create(const content_handler *handler,
- lwc_string *imime_type, const http_parameter *params,
+ lwc_string *imime_type, const struct http_parameter *params,
llcache_handle *llcache, const char *fallback_charset,
bool quirks, struct content **c);
static bool draw_convert(struct content *c);
@@ -74,7 +74,7 @@ static const char *draw_types[] = {
CONTENT_FACTORY_REGISTER_TYPES(draw, draw_types, draw_content_handler)
nserror draw_create(const content_handler *handler,
- lwc_string *imime_type, const http_parameter *params,
+ lwc_string *imime_type, const struct http_parameter *params,
llcache_handle *llcache, const char *fallback_charset,
bool quirks, struct content **c)
{
diff --git a/riscos/content-handlers/sprite.c b/riscos/content-handlers/sprite.c
index 2b2813273..a1a6eb1da 100644
--- a/riscos/content-handlers/sprite.c
+++ b/riscos/content-handlers/sprite.c
@@ -46,7 +46,7 @@ typedef struct sprite_content {
} sprite_content;
static nserror sprite_create(const content_handler *handler,
- lwc_string *imime_type, const http_parameter *params,
+ lwc_string *imime_type, const struct http_parameter *params,
llcache_handle *llcache, const char *fallback_charset,
bool quirks, struct content **c);
static bool sprite_convert(struct content *c);
@@ -73,7 +73,7 @@ static const char *sprite_types[] = {
CONTENT_FACTORY_REGISTER_TYPES(sprite, sprite_types, sprite_content_handler)
nserror sprite_create(const content_handler *handler,
- lwc_string *imime_type, const http_parameter *params,
+ lwc_string *imime_type, const struct http_parameter *params,
llcache_handle *llcache, const char *fallback_charset,
bool quirks, struct content **c)
{