diff options
-rw-r--r-- | dillorc2 | 3 | ||||
-rw-r--r-- | src/nav.c | 11 | ||||
-rw-r--r-- | src/nav.h | 12 |
3 files changed, 13 insertions, 13 deletions
@@ -77,7 +77,8 @@ w3c_plus_heuristics=YES # Set the start page. # Uncomment if you want to override the default start page. -#start_page="file:/home/jcid/Thinkpad385XD.html" +#start_page="about:blank" +#start_page="file:/home/jcid/custom_page.html" # Set the home location #home="http://dillo.cipsga.org.br/" @@ -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); @@ -9,18 +9,6 @@ #define NAV_UIDX(bw, i) a_Nav_get_uidx(bw, i) #define NAV_TOP_UIDX(bw) a_Nav_get_top_uidx(bw) -/* - * 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; -}; - - #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ |