mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-20 19:24:37 +03:00
Fix OS3 build
This commit is contained in:
parent
88ae1ff267
commit
d923e109cd
@ -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;
|
||||
|
@ -19,6 +19,7 @@
|
||||
#ifndef AMIGA_DRAG_H
|
||||
#define AMIGA_DRAG_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <exec/types.h>
|
||||
#include "netsurf/window.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user