summaryrefslogtreecommitdiff
path: root/content/content.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2003-09-10 22:27:15 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2003-09-10 22:27:15 +0000
commitb858507d907f340f056b2d79b7e77fde8d071a3b (patch)
tree67b7855e0940c6082d72c0816d0bd9577ec7ce88 /content/content.h
parentf33b3e6f52ea20dd1262bafdb44700b34e7b703e (diff)
downloadnetsurf-b858507d907f340f056b2d79b7e77fde8d071a3b.tar.gz
netsurf-b858507d907f340f056b2d79b7e77fde8d071a3b.tar.bz2
[project @ 2003-09-10 22:27:15 by jmb]
Add support for Draw and Sprite files svn path=/import/netsurf/; revision=281
Diffstat (limited to 'content/content.h')
-rw-r--r--content/content.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/content/content.h b/content/content.h
index b1198f7db..249e21192 100644
--- a/content/content.h
+++ b/content/content.h
@@ -38,6 +38,8 @@
#include "netsurf/riscos/jpeg.h"
#include "netsurf/riscos/plugin.h"
#include "netsurf/riscos/png.h"
+#include "netsurf/riscos/sprite.h"
+#include "netsurf/riscos/draw.h"
#endif
@@ -52,6 +54,8 @@ typedef enum {
#ifdef riscos
CONTENT_PNG,
CONTENT_GIF,
+ CONTENT_SPRITE,
+ CONTENT_DRAW,
CONTENT_PLUGIN,
#endif
CONTENT_OTHER,
@@ -106,6 +110,8 @@ struct content {
struct content_jpeg_data jpeg;
struct content_png_data png;
struct content_gif_data gif;
+ struct content_sprite_data sprite;
+ struct content_draw_data draw;
struct content_plugin_data plugin;
#endif
struct content_other_data other;