From e71691bae890040b83cfd54a2d9a1097d5026866 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Fri, 6 May 2011 20:40:09 +0000 Subject: Merge branches/jmb/content-factory to trunk svn path=/trunk/netsurf/; revision=12283 --- image/mng.h | 33 +++++++-------------------------- 1 file changed, 7 insertions(+), 26 deletions(-) (limited to 'image/mng.h') diff --git a/image/mng.h b/image/mng.h index 5835fef96..a3318615b 100644 --- a/image/mng.h +++ b/image/mng.h @@ -28,32 +28,13 @@ #include -struct content; -struct http_parameter; -struct rect; - -struct content_mng_data { - bool opaque_test_pending; - bool read_start; - bool read_resume; - int read_size; - bool waiting; - bool displayed; - void *handle; -}; - -bool nsmng_create(struct content *c, const struct http_parameter *params); -bool nsmng_process_data(struct content *c, const char *data, unsigned int size); -bool nsmng_convert(struct content *c); -void nsmng_destroy(struct content *c); -bool nsmng_redraw(struct content *c, int x, int y, - int width, int height, const struct rect *clip, - float scale, colour background_colour); -bool nsmng_redraw_tiled(struct content *c, int x, int y, - int width, int height, const struct rect *clip, - float scale, colour background_colour, - bool repeat_x, bool repeat_y); -bool nsmng_clone(const struct content *old, struct content *new_content); +nserror nsmng_init(void); +void nsmng_fini(void); + +#else + +#define nsmng_init() NSERROR_OK +#define nsmng_fini() ((void) 0) #endif /* WITH_MNG */ -- cgit v1.2.3