summaryrefslogtreecommitdiff
path: root/riscos/options.h
diff options
context:
space:
mode:
authorSteve Fryatt <steve@stevefryatt.org.uk>2011-11-19 21:59:46 +0000
committerSteve Fryatt <steve@stevefryatt.org.uk>2011-11-19 21:59:46 +0000
commit78181f7d4e516aff3c826459beab8ace5edc2e65 (patch)
tree42983ac6cc85fb3dfde645b4e32f2e489ee1e555 /riscos/options.h
parentdfcd555a0ed6cf1048b8b9698549e2912061b256 (diff)
downloadnetsurf-78181f7d4e516aff3c826459beab8ace5edc2e65.tar.gz
netsurf-78181f7d4e516aff3c826459beab8ace5edc2e65.tar.bz2
Config to enable external hotlist app to be launched via toolbar and menus.
svn path=/trunk/netsurf/; revision=13150
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 a83644f72..463a6fa56 100644
--- a/riscos/options.h
+++ b/riscos/options.h
@@ -65,6 +65,7 @@ extern char *option_theme_save;
extern bool option_thumbnail_iconise;
extern bool option_interactive_help;
extern bool option_external_hotlists;
+extern char *option_external_hotlist_app;
#define EXTRA_OPTION_DEFINE \
bool option_use_mouse_gestures = false;\
@@ -103,7 +104,8 @@ char *option_theme_path = 0; \
char *option_theme_save = 0; \
bool option_thumbnail_iconise = true; \
bool option_interactive_help = true; \
-bool option_external_hotlists = false;
+bool option_external_hotlists = false; \
+char *option_external_hotlist_app = 0;
#define EXTRA_OPTION_TABLE \
{ "use_mouse_gestures", OPTION_BOOL, &option_use_mouse_gestures },\
@@ -142,6 +144,7 @@ bool option_external_hotlists = false;
{ "theme_save", OPTION_STRING, &option_theme_save }, \
{ "thumbnail_iconise", OPTION_BOOL, &option_thumbnail_iconise }, \
{ "interactive_help", OPTION_BOOL, &option_interactive_help }, \
-{ "external_hotlists", OPTION_BOOL, &option_external_hotlists }
+{ "external_hotlists", OPTION_BOOL, &option_external_hotlists }, \
+{ "external_hotlist_app", OPTION_STRING, &option_external_hotlist_app }
#endif