summaryrefslogtreecommitdiff
path: root/amiga/options.h
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2010-08-28 23:46:08 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2010-08-28 23:46:08 +0000
commitb3a3988ff0b9fc167da8a71442806825601d2354 (patch)
tree03f6a26e47f6201f17bc7f18fc74cd95ae3eefa6 /amiga/options.h
parent890e7b2b466451528f7cfd64b88a16275ae5c2d0 (diff)
downloadnetsurf-b3a3988ff0b9fc167da8a71442806825601d2354.tar.gz
netsurf-b3a3988ff0b9fc167da8a71442806825601d2354.tar.bz2
Add startup and shutdown ARexx scripts (default to startup.nsrx and shutdown.nsrx)
Remove PROGDIR: from arexx_dir default as AM_EXECUTE can't find files in PROGDIR: svn path=/trunk/netsurf/; revision=10719
Diffstat (limited to 'amiga/options.h')
-rw-r--r--amiga/options.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/amiga/options.h b/amiga/options.h
index b1b508fe5..38b9cf646 100644
--- a/amiga/options.h
+++ b/amiga/options.h
@@ -38,6 +38,8 @@ extern char *option_recent_file;
extern char *option_search_engines_file;
extern char *option_search_ico_file;
extern char *option_arexx_dir;
+extern char *option_arexx_startup;
+extern char *option_arexx_shutdown;
extern char *option_download_dir;
extern bool option_download_notify;
extern bool option_faster_scroll;
@@ -70,6 +72,8 @@ char *option_recent_file = 0; \
char *option_search_engines_file = 0; \
char *option_search_ico_file = 0; \
char *option_arexx_dir = 0; \
+char *option_arexx_startup = 0; \
+char *option_arexx_shutdown = 0; \
char *option_download_dir = 0; \
bool option_download_notify = false; \
bool option_faster_scroll = true; \
@@ -102,6 +106,8 @@ bool option_drag_save_icons = true; \
{ "search_engines_file", OPTION_STRING, &option_search_engines_file }, \
{ "search_ico_file", OPTION_STRING, &option_search_ico_file }, \
{ "arexx_dir", OPTION_STRING, &option_arexx_dir }, \
+{ "arexx_startup", OPTION_STRING, &option_arexx_startup }, \
+{ "arexx_shutdown", OPTION_STRING, &option_arexx_shutdown }, \
{ "download_dir", OPTION_STRING, &option_download_dir }, \
{ "download_notify", OPTION_BOOL, &option_download_notify}, \
{ "faster_scroll", OPTION_BOOL, &option_faster_scroll}, \