diff options
author | jcid <devnull@localhost> | 2008-01-02 18:14:41 +0100 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-01-02 18:14:41 +0100 |
commit | 40e4a2e136c7829676ba634169f8cc86379b8d46 (patch) | |
tree | b7a14929f4193aa52849fbaf660dfa6fc58aeab6 /src/nav.c | |
parent | 4ad35872f842b54c955abeda970bd11c5f7bbd11 (diff) |
- de-export symbols in nav.c
Diffstat (limited to 'src/nav.c')
-rw-r--r-- | src/nav.c | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -26,6 +26,17 @@ #include "debug.h" /* + * For back and forward navigation, each bw keeps an url index, + * and its scroll position. + */ +typedef struct _nav_stack_item nav_stack_item; +struct _nav_stack_item +{ + int url_idx; + int posx, posy; +}; + +/* * Forward declarations */ static void Nav_reload(BrowserWindow *bw); |