From 94073c9bf642727d41a50c278d03a2b2f4af60ee Mon Sep 17 00:00:00 2001 From: James Bursa Date: Sat, 21 Jun 2003 13:18:00 +0000 Subject: [project @ 2003-06-21 13:18:00 by bursa] Add debug command line build. svn path=/import/netsurf/; revision=181 --- debug/optionsd.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 debug/optionsd.c (limited to 'debug/optionsd.c') diff --git a/debug/optionsd.c b/debug/optionsd.c new file mode 100644 index 000000000..493218cb6 --- /dev/null +++ b/debug/optionsd.c @@ -0,0 +1,25 @@ +/** + * $Id: optionsd.c,v 1.1 2003/06/21 13:18:00 bursa Exp $ + */ + +#include "netsurf/desktop/options.h" +#include +#include +#include "netsurf/utils/log.h" +#include "netsurf/utils/utils.h" + +struct options OPTIONS; + +void options_init(struct options* opt) +{ + opt->http = 0; + opt->http_proxy = strdup(""); + opt->http_port = 8080; + opt->use_mouse_gestures = 0; + opt->allow_text_selection = 1; + opt->use_riscos_elements = 1; + opt->show_toolbar = 1; + opt->show_print_preview = 0; + opt->theme = strdup("Default"); +} + -- cgit v1.2.3