From 124899e5bc2b18c93e943950056a7e22318be125 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sun, 26 Oct 2008 12:25:26 +0000 Subject: ARexx menu with items populated from arexx_dir. svn path=/trunk/netsurf/; revision=5632 --- amiga/options.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'amiga/options.h') diff --git a/amiga/options.h b/amiga/options.h index 74fd76ca7..0efef1896 100644 --- a/amiga/options.h +++ b/amiga/options.h @@ -36,6 +36,8 @@ extern bool option_force_tabs; extern bool option_new_tab_active; extern bool option_kiosk_mode; extern char *option_recent_file; +extern char *option_arexx_dir; +extern char *option_download_dir; #define EXTRA_OPTION_DEFINE \ bool option_verbose_log = false; \ @@ -54,6 +56,8 @@ bool option_force_tabs = false; \ bool option_new_tab_active = false; \ bool option_kiosk_mode = false; \ char *option_recent_file = 0; \ +char *option_arexx_dir = 0; \ +char *option_download_dir = 0; \ #define EXTRA_OPTION_TABLE \ { "verbose_log", OPTION_BOOL, &option_verbose_log}, \ @@ -71,5 +75,7 @@ char *option_recent_file = 0; \ { "always_open_tabs", OPTION_BOOL, &option_force_tabs}, \ { "new_tab_is_active", OPTION_BOOL, &option_new_tab_active}, \ { "kiosk_mode", OPTION_BOOL, &option_kiosk_mode}, \ -{ "recent_file", OPTION_STRING, &option_recent_file }, +{ "recent_file", OPTION_STRING, &option_recent_file }, \ +{ "arexx_dir", OPTION_STRING, &option_arexx_dir }, \ +{ "download_dir", OPTION_STRING, &option_download_dir }, #endif -- cgit v1.2.3