summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
Diffstat (limited to 'amiga')
-rwxr-xr-xamiga/hotlist.c1
-rwxr-xr-xamiga/hotlist.h6
2 files changed, 6 insertions, 1 deletions
diff --git a/amiga/hotlist.c b/amiga/hotlist.c
index 834587ef2..53b5b2c49 100755
--- a/amiga/hotlist.c
+++ b/amiga/hotlist.c
@@ -18,6 +18,7 @@
#include <proto/exec.h>
+#include "utils/nsurl.h"
#include "desktop/hotlist.h"
#include "desktop/mouse.h"
#include "desktop/gui_window.h"
diff --git a/amiga/hotlist.h b/amiga/hotlist.h
index 54f8a6350..c50ceecfb 100755
--- a/amiga/hotlist.h
+++ b/amiga/hotlist.h
@@ -18,13 +18,17 @@
#ifndef AMIGA_HOTLIST_H
#define AMIGA_HOTLIST_H
+
#include "desktop/tree.h"
#include "amiga/tree.h"
+struct nsurl;
+
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, nsurl *url, bool folder));
+ bool (*cb_add_item)(void *userdata, int level, int item, const char *title, struct nsurl *url, bool folder));
struct treeview_window *hotlist_window;
+
#endif