summaryrefslogtreecommitdiff
path: root/riscos/hotlist.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-06-05 15:14:49 +0100
committerVincent Sanders <vince@kyllikki.org>2014-06-05 15:14:49 +0100
commit54fcb66d876420d6a9158ecd70854739f22f159b (patch)
tree9840b4e18de42e09cd388f1e6fb2de97967403b1 /riscos/hotlist.h
parentf1c2dde13bf1ca59a466cfed2f2d2076c06b235f (diff)
downloadnetsurf-54fcb66d876420d6a9158ecd70854739f22f159b.tar.gz
netsurf-54fcb66d876420d6a9158ecd70854739f22f159b.tar.bz2
cleanup RISC OS frontend header usage
Diffstat (limited to 'riscos/hotlist.h')
-rw-r--r--riscos/hotlist.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/riscos/hotlist.h b/riscos/hotlist.h
index 5477ccea5..0b87a2e96 100644
--- a/riscos/hotlist.h
+++ b/riscos/hotlist.h
@@ -36,6 +36,8 @@
#include "riscos/menus.h"
+struct nsurl;
+
void ro_gui_hotlist_preinitialise(void);
void ro_gui_hotlist_postinitialise(void);
void ro_gui_hotlist_destroy(void);
@@ -43,9 +45,9 @@ void ro_gui_hotlist_open(void);
void ro_gui_hotlist_save(void);
bool ro_gui_hotlist_check_window(wimp_w window);
bool ro_gui_hotlist_check_menu(wimp_menu *menu);
-void ro_gui_hotlist_add_page(nsurl *url);
+void ro_gui_hotlist_add_page(struct nsurl *url);
void ro_gui_hotlist_add_cleanup(void);
-void ro_gui_hotlist_remove_page(nsurl *url);
-bool ro_gui_hotlist_has_page(nsurl *url);
+void ro_gui_hotlist_remove_page(struct nsurl *url);
+bool ro_gui_hotlist_has_page(struct nsurl *url);
#endif