summaryrefslogtreecommitdiff
path: root/amiga/tree.h
diff options
context:
space:
mode:
Diffstat (limited to 'amiga/tree.h')
-rwxr-xr-xamiga/tree.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/amiga/tree.h b/amiga/tree.h
index 244551086..4ff38edfc 100755
--- a/amiga/tree.h
+++ b/amiga/tree.h
@@ -19,6 +19,10 @@
#ifndef AMIGA_TREE_H
#define AMIGA_TREE_H
+#include <exec/types.h>
+#include <intuition/classusr.h>
+#include "amiga/gui.h"
+
struct treeview_window {
struct Window *win;
Object *objects[OID_LAST];
@@ -29,7 +33,14 @@ struct treeview_window {
struct List *listbrowser_list;
};
-void ami_open_tree(struct tree *tree);
+enum
+{
+ AMI_TREE_HOTLIST,
+ AMI_TREE_HISTORY,
+ AMI_TREE_COOKIES
+};
+
+void ami_open_tree(struct tree *tree,int type);
void ami_tree_close(struct treeview_window *twin);
BOOL ami_tree_event(struct treeview_window *twin);
#endif