summaryrefslogtreecommitdiff
path: root/image/svg.h
diff options
context:
space:
mode:
Diffstat (limited to 'image/svg.h')
-rw-r--r--image/svg.h33
1 files changed, 15 insertions, 18 deletions
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 <stdbool.h>
-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