summaryrefslogtreecommitdiff
path: root/desktop/browser.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2003-07-14 22:57:45 +0000
committerJames Bursa <james@netsurf-browser.org>2003-07-14 22:57:45 +0000
commit889ae885c66b0278c632090a0e1b89746a895ed4 (patch)
treebdb33f9b335584f04a61a6422e02a345181650b6 /desktop/browser.h
parent907115c49d571eea11919e55d84bd599154ccb0f (diff)
downloadnetsurf-889ae885c66b0278c632090a0e1b89746a895ed4.tar.gz
netsurf-889ae885c66b0278c632090a0e1b89746a895ed4.tar.bz2
[project @ 2003-07-14 22:57:45 by bursa]
Add content instances. svn path=/import/netsurf/; revision=216
Diffstat (limited to 'desktop/browser.h')
-rw-r--r--desktop/browser.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/desktop/browser.h b/desktop/browser.h
index d7bd0781b..016f2e636 100644
--- a/desktop/browser.h
+++ b/desktop/browser.h
@@ -52,6 +52,7 @@ struct browser_window
struct { int mult; int div; } scale;
struct content* current_content;
+ void *current_content_state;
struct content* loading_content;
struct history* history;
clock_t time0;
@@ -117,6 +118,6 @@ int box_position_distance(struct box_position* x, struct box_position* y);
void gui_redraw_gadget(struct browser_window* bw, struct gui_gadget* g);
void browser_window_stop_throbber(struct browser_window* bw);
-void browser_window_reformat(struct browser_window* bw);
+void browser_window_reformat(struct browser_window* bw, int scroll_to_top);
#endif