summaryrefslogtreecommitdiff
path: root/desktop/browser.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2003-03-04 11:59:36 +0000
committerJames Bursa <james@netsurf-browser.org>2003-03-04 11:59:36 +0000
commite2efda19df7a52f11a9c9ed421ac34e6804b30d4 (patch)
tree1ffb2ecc19d9415438f5aefdbb5e6902f69093ba /desktop/browser.h
parent64e1781eb4c0d007801ea894cb3c0967a8aecbbd (diff)
downloadnetsurf-e2efda19df7a52f11a9c9ed421ac34e6804b30d4.tar.gz
netsurf-e2efda19df7a52f11a9c9ed421ac34e6804b30d4.tar.bz2
[project @ 2003-03-04 11:59:35 by bursa]
More compiler warning fixes. svn path=/import/netsurf/; revision=104
Diffstat (limited to 'desktop/browser.h')
-rw-r--r--desktop/browser.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/desktop/browser.h b/desktop/browser.h
index 25fc6f6ed..299b17f73 100644
--- a/desktop/browser.h
+++ b/desktop/browser.h
@@ -1,5 +1,5 @@
/**
- * $Id: browser.h,v 1.10 2003/03/03 22:40:39 bursa Exp $
+ * $Id: browser.h,v 1.11 2003/03/04 11:59:35 bursa Exp $
*/
#ifndef _NETSURF_DESKTOP_BROWSER_H_
@@ -93,19 +93,22 @@ struct box_selection
struct browser_window* create_browser_window(int flags, int width, int height);
void browser_window_destroy(struct browser_window* bw);
-void browser_window_open_location(struct browser_window* bw, char* url);
-void browser_window_open_location_historical(struct browser_window* bw, char* url);
+void browser_window_open_location(struct browser_window* bw, const char* url);
+void browser_window_open_location_historical(struct browser_window* bw, const char* url);
int browser_window_action(struct browser_window* bw, struct browser_action* act);
void browser_window_set_status(struct browser_window* bw, const char* text);
void browser_window_back(struct browser_window* bw);
void browser_window_forward(struct browser_window* bw);
+void box_under_area(struct box* box, unsigned long x, unsigned long y, unsigned long ox, unsigned long oy,
+ struct box_selection** found, int* count, int* plot_index);
int box_position_lt(struct box_position* x, struct box_position* y);
int box_position_gt(struct box_position* x, struct box_position* y);
int box_position_eq(struct box_position* x, struct box_position* y);
int box_position_distance(struct box_position* x, struct box_position* y);
+void gui_redraw_gadget(struct browser_window* bw, struct gui_gadget* g);
#endif