summaryrefslogtreecommitdiff
path: root/riscos/options.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2004-08-13 00:55:59 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2004-08-13 00:55:59 +0000
commitd7627cecebad4abb64840561d7afa46a62e1dd6d (patch)
treee33a8ec56ebc5463dd5bfb8e60b9a898f72e4c24 /riscos/options.h
parent0a93f2d264080b8c0c748cbe0477123a3eb4b62d (diff)
downloadnetsurf-d7627cecebad4abb64840561d7afa46a62e1dd6d.tar.gz
netsurf-d7627cecebad4abb64840561d7afa46a62e1dd6d.tar.bz2
[project @ 2004-08-13 00:55:59 by jmb]
Rewrite of plugin handling. This is now much nicer than before although it has about the same amount of functionality. Note: This is now configurable via an option (defaults to OFF) This has only really been tested with the Flash plugin and seems to work reasonably. svn path=/import/netsurf/; revision=1216
Diffstat (limited to 'riscos/options.h')
-rw-r--r--riscos/options.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/riscos/options.h b/riscos/options.h
index 71cd06026..34e2b837a 100644
--- a/riscos/options.h
+++ b/riscos/options.h
@@ -47,6 +47,7 @@ extern bool option_buffer_animations;
extern bool option_buffer_everything;
extern char *option_homepage_url;
extern bool option_open_browser_at_startup;
+extern bool option_plugins;
#define EXTRA_OPTION_DEFINE \
bool option_use_mouse_gestures = false;\
@@ -79,7 +80,8 @@ bool option_background_blending = true; \
bool option_buffer_animations = true; \
bool option_buffer_everything = false; \
char *option_homepage_url = 0; \
-bool option_open_browser_at_startup = false;
+bool option_open_browser_at_startup = false; \
+bool option_plugins = false;
#define EXTRA_OPTION_TABLE \
{ "use_mouse_gestures", OPTION_BOOL, &option_use_mouse_gestures },\
@@ -112,5 +114,6 @@ bool option_open_browser_at_startup = false;
{ "buffer_animations", OPTION_BOOL, &option_buffer_animations }, \
{ "buffer_everything", OPTION_BOOL, &option_buffer_everything }, \
{ "homepage_url", OPTION_STRING, &option_homepage_url }, \
-{ "open_browser_at_startup",OPTION_BOOL, &option_open_browser_at_startup }
+{ "open_browser_at_startup",OPTION_BOOL, &option_open_browser_at_startup }, \
+{ "plugins", OPTION_BOOL, &option_plugins }
#endif