Fix OS3 build

This commit is contained in:
Chris Young 2016-06-02 21:55:46 +01:00
parent 88ae1ff267
commit d923e109cd
2 changed files with 8 additions and 0 deletions

View File

@ -323,6 +323,7 @@ void *ami_window_at_pointer(int type)
}
#else
#include "utils/errors.h"
#include "amiga/drag.h"
void gui_drag_save_object(struct gui_window *g, struct hlcache_handle *c,
@ -348,6 +349,7 @@ void ami_drag_icon_close(struct Window *win)
bool ami_drag_icon_move(void)
{
return false;
}
BOOL ami_drag_in_progress(void)
@ -355,6 +357,11 @@ BOOL ami_drag_in_progress(void)
return FALSE;
}
bool ami_drag_has_data(void)
{
return false;
}
void *ami_window_at_pointer(int type)
{
return NULL;

View File

@ -19,6 +19,7 @@
#ifndef AMIGA_DRAG_H
#define AMIGA_DRAG_H
#include <stdbool.h>
#include <exec/types.h>
#include "netsurf/window.h"