summaryrefslogtreecommitdiff
path: root/frontends/amiga/hotlist.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-06-01 07:59:19 +0100
committerVincent Sanders <vince@kyllikki.org>2016-06-01 07:59:19 +0100
commitfcde28d97f3863d8be4f6245e20f6471c9bfacb6 (patch)
treecc0a37a6896571422feb2a273d4dfbbbdefe6488 /frontends/amiga/hotlist.h
parent148748b82c29160224486af7eed0d62f37031cb6 (diff)
downloadnetsurf-fcde28d97f3863d8be4f6245e20f6471c9bfacb6.tar.gz
netsurf-fcde28d97f3863d8be4f6245e20f6471c9bfacb6.tar.bz2
reduce core header usage
Diffstat (limited to 'frontends/amiga/hotlist.h')
-rwxr-xr-xfrontends/amiga/hotlist.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/frontends/amiga/hotlist.h b/frontends/amiga/hotlist.h
index c50ceecfb..23a97480b 100755
--- a/frontends/amiga/hotlist.h
+++ b/frontends/amiga/hotlist.h
@@ -19,16 +19,16 @@
#ifndef AMIGA_HOTLIST_H
#define AMIGA_HOTLIST_H
-#include "desktop/tree.h"
-#include "amiga/tree.h"
-
struct nsurl;
+struct treeview_window;
+
+struct treeview_window *hotlist_window;
void ami_hotlist_initialise(const char *hotlist_file);
+
void ami_hotlist_free(const char *hotlist_file);
-nserror ami_hotlist_scan(void *userdata, int first_item, const char *folder,
- bool (*cb_add_item)(void *userdata, int level, int item, const char *title, struct nsurl *url, bool folder));
-struct treeview_window *hotlist_window;
+nserror ami_hotlist_scan(void *userdata, int first_item, const char *folder, bool (*cb_add_item)(void *userdata, int level, int item, const char *title, struct nsurl *url, bool folder));
+
#endif