mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-23 12:36:51 +03:00
add missing include for neturf_quit symbol
This commit is contained in:
parent
d5a971c281
commit
aaecf9e1af
@ -243,7 +243,7 @@ bool browser_window_redraw(struct browser_window *bw, int x, int y,
|
||||
*/
|
||||
bool browser_window_redraw_ready(struct browser_window *bw);
|
||||
|
||||
/*
|
||||
/**
|
||||
* Update the extent of the inside of a browser window to that of the current
|
||||
* content
|
||||
*
|
||||
@ -251,7 +251,7 @@ bool browser_window_redraw_ready(struct browser_window *bw);
|
||||
*/
|
||||
void browser_window_update_extent(struct browser_window *bw);
|
||||
|
||||
/*
|
||||
/**
|
||||
* Get the position of the current browser window with respect to the root or
|
||||
* parent browser window
|
||||
*
|
||||
@ -263,7 +263,7 @@ void browser_window_update_extent(struct browser_window *bw);
|
||||
void browser_window_get_position(struct browser_window *bw, bool root,
|
||||
int *pos_x, int *pos_y);
|
||||
|
||||
/*
|
||||
/**
|
||||
* Set the position of the current browser window with respect to the parent
|
||||
* browser window
|
||||
*
|
||||
@ -273,7 +273,7 @@ void browser_window_get_position(struct browser_window *bw, bool root,
|
||||
*/
|
||||
void browser_window_set_position(struct browser_window *bw, int x, int y);
|
||||
|
||||
/*
|
||||
/**
|
||||
* Scroll the browser window to display the passed area
|
||||
*
|
||||
* \param bw browser window to scroll
|
||||
@ -294,7 +294,7 @@ void browser_window_scroll_visible(struct browser_window *bw,
|
||||
*/
|
||||
void browser_window_set_scroll(struct browser_window *bw, int x, int y);
|
||||
|
||||
/*
|
||||
/**
|
||||
* Set drag type for a browser window, and inform front end
|
||||
*
|
||||
* \param bw browser window to set the type of the current drag for
|
||||
@ -304,7 +304,7 @@ void browser_window_set_scroll(struct browser_window *bw, int x, int y);
|
||||
void browser_window_set_drag_type(struct browser_window *bw,
|
||||
browser_drag_type type, const struct rect *rect);
|
||||
|
||||
/*
|
||||
/**
|
||||
* Get type of any current drag for a browser window
|
||||
*
|
||||
* \param bw browser window to set the type of the current drag for
|
||||
@ -312,7 +312,7 @@ void browser_window_set_drag_type(struct browser_window *bw,
|
||||
*/
|
||||
browser_drag_type browser_window_get_drag_type(struct browser_window *bw);
|
||||
|
||||
/*
|
||||
/**
|
||||
* Get the root level browser window
|
||||
*
|
||||
* \param bw browser window to set the type of the current drag for
|
||||
|
@ -28,6 +28,7 @@
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
#include <features.h>
|
||||
|
||||
#include "oslib/os.h"
|
||||
#include "oslib/osbyte.h"
|
||||
#include "oslib/wimp.h"
|
||||
@ -37,6 +38,7 @@
|
||||
#include "riscos/global_history.h"
|
||||
#include "riscos/hotlist.h"
|
||||
#include "riscos/iconbar.h"
|
||||
#include "desktop/netsurf.h"
|
||||
#include "desktop/browser.h"
|
||||
#include "utils/nsoption.h"
|
||||
#include "riscos/wimp_event.h"
|
||||
|
Loading…
Reference in New Issue
Block a user