summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2015-09-01 18:06:45 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2015-09-01 18:06:45 +0100
commit06221c23407df35c31a32309a8ef8b13b12cb417 (patch)
treea217a5919008296c3125f4cedd6ca896bd2d8910 /amiga
parenta73d53845cc332de3ac09a2348a917b956e48f6a (diff)
downloadnetsurf-06221c23407df35c31a32309a8ef8b13b12cb417.tar.gz
netsurf-06221c23407df35c31a32309a8ef8b13b12cb417.tar.bz2
Fix usage of ExAll with new SDK
Some of the defines it needs have moved to dos/obsolete.h
Diffstat (limited to 'amiga')
-rw-r--r--amiga/menu.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/amiga/menu.c b/amiga/menu.c
index c59959660..571f411fd 100644
--- a/amiga/menu.c
+++ b/amiga/menu.c
@@ -28,6 +28,7 @@
#include <proto/utility.h>
#ifdef __amigaos4__
#include <dos/anchorpath.h>
+#include <dos/obsolete.h> /* Needed for ExAll() */
#endif
#include <libraries/gadtools.h>
@@ -948,6 +949,7 @@ struct NewMenu *ami_create_menu(struct gui_window_2 *gwin)
void ami_menu_arexx_scan(struct gui_window_2 *gwin)
{
+ /**\todo Rewrite this to not use ExAll() **/
int item = AMI_MENU_AREXX;
BPTR lock = 0;
UBYTE *buffer;