summaryrefslogtreecommitdiff
path: root/amiga/gui.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-04-20 15:54:18 +0100
committerVincent Sanders <vince@kyllikki.org>2016-04-20 15:54:18 +0100
commit31de1c251b5c6f6a39f6f7500e28c6086b807953 (patch)
tree5f075182e8972adba6b4af2f89628ca6831d6477 /amiga/gui.h
parent3930d00519bbcee968a804b1f445c1638531cc15 (diff)
downloadnetsurf-31de1c251b5c6f6a39f6f7500e28c6086b807953.tar.gz
netsurf-31de1c251b5c6f6a39f6f7500e28c6086b807953.tar.bz2
Cleanup amiga include issues introduced as part of core updates
Diffstat (limited to 'amiga/gui.h')
-rw-r--r--amiga/gui.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/amiga/gui.h b/amiga/gui.h
index 172a858d9..d301ac574 100644
--- a/amiga/gui.h
+++ b/amiga/gui.h
@@ -18,16 +18,20 @@
#ifndef AMIGA_GUI_H
#define AMIGA_GUI_H
+
#include <stdbool.h>
#include <graphics/rastport.h>
#include <intuition/classusr.h>
#include <dos/dos.h>
#include <devices/inputevent.h>
+
+#include "desktop/gui_window.h"
+#include "desktop/mouse.h"
+
#include "amiga/menu.h"
#include "amiga/object.h"
#include "amiga/os3support.h"
#include "amiga/plotters.h"
-#include "desktop/gui_window.h"
#ifdef __amigaos4__
#define HOOKF(ret,func,type,ptr,msgtype) static ret func(struct Hook *hook, type ptr, msgtype msg)
@@ -158,7 +162,7 @@ struct gui_window
int scrolly;
struct history_window *hw;
struct List dllist;
- hlcache_handle *favicon;
+ struct hlcache_handle *favicon;
bool throbbing;
char *tabtitle;
APTR deferred_rects_pool;
@@ -183,7 +187,7 @@ void ami_gui_tabs_toggle_all(void);
bool ami_locate_resource(char *fullpath, const char *file);
void ami_gui_update_hotlist_button(struct gui_window_2 *gwin);
nserror ami_gui_new_blank_tab(struct gui_window_2 *gwin);
-char *ami_gui_get_cache_favicon_name(nsurl *url, bool only_if_avail);
+char *ami_gui_get_cache_favicon_name(struct nsurl *url, bool only_if_avail);
int ami_gui_count_windows(int window, int *tabs);
void ami_gui_set_scale(struct gui_window *gw, float scale);