summaryrefslogtreecommitdiff
path: root/content/url_store.h
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2005-02-07 14:28:43 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2005-02-07 14:28:43 +0000
commitdb41dc3dac1528afbc369de91a28d1ebd4cf028b (patch)
treef75e11a34984a2a5c5457c2bcf24147721dc0637 /content/url_store.h
parent3bfe5701c3316ccc832e5268dd2db73fd600ded8 (diff)
downloadnetsurf-db41dc3dac1528afbc369de91a28d1ebd4cf028b.tar.gz
netsurf-db41dc3dac1528afbc369de91a28d1ebd4cf028b.tar.bz2
[project @ 2005-02-07 14:28:43 by rjw]
Initial work for global history (currently incomplete) svn path=/import/netsurf/; revision=1497
Diffstat (limited to 'content/url_store.h')
-rw-r--r--content/url_store.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/url_store.h b/content/url_store.h
index b152508af..6a101cfe8 100644
--- a/content/url_store.h
+++ b/content/url_store.h
@@ -13,14 +13,14 @@
#define _NETSURF_CONTENT_URLSTORE_H_
struct url_content {
+ char *url; /** URL (including hostname) */
+ int url_length; /** Length of URL (including hostname) */
int visits; /** Number of times visited */
int requests; /** Number of times requested */
};
struct url_data {
struct url_content data; /** Stored URL content data */
- char *url; /** URL (including hostname) */
- int url_length; /** Length of URL (including hostname) */
struct url_data *previous; /** Previous URL */
struct url_data *next; /** Next URL */
struct hostname_data *parent; /** Parent hostname data */