2003-07-30 13:06:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2003 Rob Jackson <jacko@xms.ms>
|
2007-08-08 16:16:03 +00:00
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2003-07-30 13:06:22 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NETSURF_RISCOS_URI_H_
|
|
|
|
#define _NETSURF_RISCOS_URI_H_
|
|
|
|
|
2008-07-26 23:42:24 +00:00
|
|
|
#include "utils/config.h"
|
|
|
|
|
2003-08-21 21:39:07 +00:00
|
|
|
#include "oslib/wimp.h"
|
|
|
|
|
|
|
|
void ro_uri_message_received(wimp_message *message);
|
2009-07-01 12:05:51 +00:00
|
|
|
bool ro_uri_launch(const char *uri);
|
2004-04-02 00:41:10 +00:00
|
|
|
void ro_uri_bounce(wimp_message *message);
|
2003-07-30 13:06:22 +00:00
|
|
|
|
|
|
|
#endif
|