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/svg.h | 33 +++++++++++++++------------------ 1 file changed, 15 insertions(+), 18 deletions(-) (limited to 'image/svg.h') diff --git a/image/svg.h b/image/svg.h index d836cb310..0e8ad8559 100644 --- a/image/svg.h +++ b/image/svg.h @@ -23,25 +23,22 @@ #ifndef _NETSURF_IMAGE_SVG_H_ #define _NETSURF_IMAGE_SVG_H_ +#include "utils/config.h" + +#ifdef WITH_NS_SVG + #include -struct content; -struct http_parameter; -struct svgtiny_diagram; -struct rect; - -struct content_svg_data { - struct svgtiny_diagram *diagram; - bool done_parse; -}; - -bool svg_create(struct content *c, const struct http_parameter *params); -bool svg_convert(struct content *c); -void svg_destroy(struct content *c); -void svg_reformat(struct content *c, int width, int height); -bool svg_redraw(struct content *c, int x, int y, - int width, int height, const struct rect *clip, - float scale, colour background_colour); -bool svg_clone(const struct content *old, struct content *new_content); +#include "utils/errors.h" + +nserror svg_init(void); +void svg_fini(void); + +#else + +#define svg_init() NSERROR_OK +#define svg_fini() ((void) 0) + +#endif #endif -- cgit v1.2.1