From 32db7e04d0c3bd255b2e8aa7dbd7c2b884b35614 Mon Sep 17 00:00:00 2001 From: Richard Wilson Date: Thu, 9 Dec 2004 10:30:44 +0000 Subject: [project @ 2004-12-09 10:30:43 by rjw] Re-implementation of hotlist via general tree code. Animations can be stopped once more. Purged a few xcalloc() calls. svn path=/import/netsurf/; revision=1394 --- desktop/options.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'desktop/options.h') diff --git a/desktop/options.h b/desktop/options.h index 0724f8c65..d811ffb7e 100644 --- a/desktop/options.h +++ b/desktop/options.h @@ -24,6 +24,8 @@ #ifndef _NETSURF_DESKTOP_OPTIONS_H_ #define _NETSURF_DESKTOP_OPTIONS_H_ +#include "netsurf/desktop/tree.h" + enum { OPTION_HTTP_PROXY_AUTH_NONE = 0, OPTION_HTTP_PROXY_AUTH_BASIC = 1, OPTION_HTTP_PROXY_AUTH_NTLM = 2 }; @@ -41,8 +43,12 @@ extern int option_memory_cache_size; extern bool option_block_ads; extern int option_minimum_gif_delay; extern bool option_send_referer; +extern bool option_animate_images; void options_read(const char *path); void options_write(const char *path); +struct tree *options_load_hotlist(const char *filename); +bool options_save_hotlist(struct tree *tree, const char *filename); + #endif -- cgit v1.2.3