summaryrefslogtreecommitdiff
path: root/amiga/gui.h
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2008-08-08 22:38:13 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2008-08-08 22:38:13 +0000
commit219f28e5795f617729264e16866d4fe643d126d9 (patch)
tree3a76c094541513156e3a10b04ee146d1888a2ce5 /amiga/gui.h
parent914cbeacfe860c5898a5d74d32aa24ee40570fd7 (diff)
downloadnetsurf-219f28e5795f617729264e16866d4fe643d126d9.tar.gz
netsurf-219f28e5795f617729264e16866d4fe643d126d9.tar.bz2
Rewritten to use window.class and bitmap.image instead of writing directly to the
window bitmap. Basic GUI added to allow URLs to be entered. svn path=/trunk/netsurf/; revision=4965
Diffstat (limited to 'amiga/gui.h')
-rwxr-xr-xamiga/gui.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/amiga/gui.h b/amiga/gui.h
index 377a54678..5a971b0bf 100755
--- a/amiga/gui.h
+++ b/amiga/gui.h
@@ -18,11 +18,15 @@
#ifndef AMIGA_GUI_H
#define AMIGA_GUI_H
+#include <graphics/rastport.h>
+
void ami_get_msg(void);
struct gui_window {
struct Window *win;
struct browser_window *bw;
+ struct BitMap *bm;
+ struct RastPort rp;
};
struct gui_window *curwin;