summaryrefslogtreecommitdiff
path: root/riscos
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2011-09-15 22:47:50 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2011-09-15 22:47:50 +0000
commit339bed72725fe901724440939558c5f9817107ed (patch)
treed2c3fda42a53d4d763f5901fd16e597ce065dd2e /riscos
parent3d71da088b83c2cc5741dfdc8f619fbf2bba55a2 (diff)
downloadnetsurf-339bed72725fe901724440939558c5f9817107ed.tar.gz
netsurf-339bed72725fe901724440939558c5f9817107ed.tar.bz2
Virtualise content handler finalisation calls. Remove pointless implementations.
svn path=/trunk/netsurf/; revision=12797
Diffstat (limited to 'riscos')
-rw-r--r--riscos/content-handlers/artworks.h2
-rw-r--r--riscos/content-handlers/draw.h2
-rw-r--r--riscos/content-handlers/sprite.h2
-rw-r--r--riscos/gui.c4
4 files changed, 0 insertions, 10 deletions
diff --git a/riscos/content-handlers/artworks.h b/riscos/content-handlers/artworks.h
index 4a339cc84..20f6168b7 100644
--- a/riscos/content-handlers/artworks.h
+++ b/riscos/content-handlers/artworks.h
@@ -29,12 +29,10 @@
#ifdef WITH_ARTWORKS
nserror artworks_init(void);
-void artworks_fini(void);
#else
#define artworks_init() NSERROR_OK
-#define artworks_fini() ((void) 0)
#endif
diff --git a/riscos/content-handlers/draw.h b/riscos/content-handlers/draw.h
index a0843202a..76fcbc8dc 100644
--- a/riscos/content-handlers/draw.h
+++ b/riscos/content-handlers/draw.h
@@ -29,12 +29,10 @@
#ifdef WITH_DRAW
nserror draw_init(void);
-void draw_fini(void);
#else
#define draw_init() NSERROR_OK
-#define draw_fini() ((void) 0)
#endif /* WITH_DRAW */
diff --git a/riscos/content-handlers/sprite.h b/riscos/content-handlers/sprite.h
index 79e02f44b..2219e0679 100644
--- a/riscos/content-handlers/sprite.h
+++ b/riscos/content-handlers/sprite.h
@@ -29,12 +29,10 @@
#ifdef WITH_SPRITE
nserror sprite_init(void);
-void sprite_fini(void);
#else
#define sprite_init() NSERROR_OK
-#define sprite_fini() ((void) 0)
#endif
diff --git a/riscos/gui.c b/riscos/gui.c
index 4df459017..793be0962 100644
--- a/riscos/gui.c
+++ b/riscos/gui.c
@@ -800,10 +800,6 @@ int main(int argc, char** argv)
netsurf_exit();
- sprite_fini();
- draw_fini();
- artworks_fini();
-
return 0;
}