fix missing struct on http parameter declaration due to header change
This commit is contained in:
parent
392307bb1f
commit
46e1061ef3
|
@ -61,7 +61,7 @@ typedef struct amiga_dt_anim_content {
|
|||
APTR ami_colormap_to_clut(struct ColorMap *cmap);
|
||||
|
||||
static nserror amiga_dt_anim_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 amiga_dt_anim_convert(struct content *c);
|
||||
|
@ -135,7 +135,7 @@ nserror amiga_dt_anim_init(void)
|
|||
}
|
||||
|
||||
nserror amiga_dt_anim_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)
|
||||
{
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
|
||||
|
||||
static nserror amiga_dt_picture_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 amiga_dt_picture_convert(struct content *c);
|
||||
|
@ -104,7 +104,7 @@ nserror amiga_dt_picture_init(void)
|
|||
}
|
||||
|
||||
nserror amiga_dt_picture_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)
|
||||
{
|
||||
|
|
|
@ -45,7 +45,7 @@ typedef struct amiga_dt_sound_content {
|
|||
} amiga_dt_sound_content;
|
||||
|
||||
static nserror amiga_dt_sound_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 amiga_dt_sound_convert(struct content *c);
|
||||
|
@ -115,7 +115,7 @@ nserror amiga_dt_sound_init(void)
|
|||
}
|
||||
|
||||
nserror amiga_dt_sound_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)
|
||||
{
|
||||
|
|
|
@ -65,7 +65,7 @@ typedef struct amiga_icon_content {
|
|||
} amiga_icon_content;
|
||||
|
||||
static nserror amiga_icon_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 amiga_icon_convert(struct content *c);
|
||||
|
@ -103,7 +103,7 @@ CONTENT_FACTORY_REGISTER_TYPES(amiga_icon, amiga_icon_types,
|
|||
amiga_icon_content_handler)
|
||||
|
||||
nserror amiga_icon_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)
|
||||
{
|
||||
|
|
|
@ -40,7 +40,7 @@ typedef struct amiga_plugin_hack_content {
|
|||
} amiga_plugin_hack_content;
|
||||
|
||||
static nserror amiga_plugin_hack_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 amiga_plugin_hack_convert(struct content *c);
|
||||
|
@ -95,7 +95,7 @@ nserror amiga_plugin_hack_init(void)
|
|||
}
|
||||
|
||||
nserror amiga_plugin_hack_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)
|
||||
{
|
||||
|
|
|
@ -48,7 +48,7 @@ static void *apple_image_get_internal(const struct content *c, void *context)
|
|||
}
|
||||
|
||||
static nserror apple_image_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)
|
||||
{
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
#include <gtk/gtk.h>
|
||||
#include <gdk-pixbuf/gdk-pixbuf.h>
|
||||
|
||||
#include "utils/config.h"
|
||||
#include "utils/messages.h"
|
||||
#include "utils/corestrings.h"
|
||||
#include "utils/log.h"
|
||||
|
|
|
@ -77,7 +77,7 @@ static nserror rsvg_create_svg_data(rsvg_content *c)
|
|||
|
||||
|
||||
static nserror rsvg_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)
|
||||
{
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue