mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-24 23:39:51 +03:00
ba23e4b693
svn path=/trunk/netsurf/; revision=3073
20 lines
507 B
C
20 lines
507 B
C
/*
|
|
* This file is part of NetSurf, http://netsurf-browser.org/
|
|
* Licensed under the GNU General Public License,
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
* Copyright 2005 Adrian Lees <adrianl@users.sourceforge.net>
|
|
*/
|
|
|
|
#ifndef _NETSURF_RISCOS_QUERY_H
|
|
#define _NETSURF_RISCOS_QUERY_H
|
|
#include <stdbool.h>
|
|
#include "oslib/wimp.h"
|
|
#include "netsurf/utils/utils.h"
|
|
|
|
struct gui_query_window;
|
|
|
|
void ro_gui_query_init(void);
|
|
void ro_gui_query_window_bring_to_front(query_id id);
|
|
|
|
#endif
|