summaryrefslogtreecommitdiff
path: root/desktop/browser.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2003-11-20 00:16:31 +0000
committerJames Bursa <james@netsurf-browser.org>2003-11-20 00:16:31 +0000
commit9e13c0f9a33f3f4ce08f9df937e24e686040d960 (patch)
treebb3d5dfa1c0e1ce2b88e2df824e12e28ff96c078 /desktop/browser.h
parent9472e0c668e69a6a636a321fb15826ab0a797d62 (diff)
downloadnetsurf-9e13c0f9a33f3f4ce08f9df937e24e686040d960.tar.gz
netsurf-9e13c0f9a33f3f4ce08f9df937e24e686040d960.tar.bz2
[project @ 2003-11-20 00:16:31 by bursa]
Clean up and simplify themes, remove old history code. svn path=/import/netsurf/; revision=420
Diffstat (limited to 'desktop/browser.h')
-rw-r--r--desktop/browser.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/desktop/browser.h b/desktop/browser.h
index e25472631..ae59c2876 100644
--- a/desktop/browser.h
+++ b/desktop/browser.h
@@ -30,17 +30,6 @@ typedef int action_buttons;
#define act_BUTTON_ALTERNATIVE ((action_buttons) 1)
#define act_BUTTON_CONTEXT_MENU ((action_buttons) 2)
-struct history
-{
- struct history* earlier;
- struct history* later;
- char* description;
- char* url;
-};
-
-struct history* history_create(char* desc, char* url);
-void history_remember(struct history* current, char* desc, char* url);
-
struct history_entry;
struct browser_window
@@ -52,7 +41,6 @@ struct browser_window
struct content* current_content;
void *current_content_state;
struct content* loading_content;
- struct history* history;
struct history_entry *history_entry;
bool history_add;
clock_t time0;