summaryrefslogtreecommitdiff
path: root/desktop/browser.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2004-08-06 22:19:13 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2004-08-06 22:19:13 +0000
commit09afabf63cc1fc15978a80351c9eb77b1e9d3974 (patch)
tree653da139cbc03455971b4946ec2f15cd9f17e496 /desktop/browser.h
parente81a96fb535c44d1f3c7fbad1b9196a47cf19a1a (diff)
downloadnetsurf-09afabf63cc1fc15978a80351c9eb77b1e9d3974.tar.gz
netsurf-09afabf63cc1fc15978a80351c9eb77b1e9d3974.tar.bz2
[project @ 2004-08-06 22:19:12 by jmb]
Anchor support svn path=/import/netsurf/; revision=1187
Diffstat (limited to 'desktop/browser.h')
-rw-r--r--desktop/browser.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/desktop/browser.h b/desktop/browser.h
index a44588b6a..42bdb39d4 100644
--- a/desktop/browser.h
+++ b/desktop/browser.h
@@ -51,6 +51,9 @@ struct browser_window
bool history_add;
/** Start time of fetching loading_content. */
clock_t time0;
+
+ /** Fragment identifier for current_content */
+ char *frag_id;
};
@@ -82,7 +85,8 @@ void hotlist_visited(struct content *content);
/* In platform specific history.c. */
struct history *history_create(void);
-void history_add(struct history *history, struct content *content);
+void history_add(struct history *history, struct content *content,
+ char *frag_id);
void history_update(struct history *history, struct content *content);
void history_destroy(struct history *history);
void history_back(struct browser_window *bw, struct history *history);