2003-09-17 00:02:55 +04:00
|
|
|
/*
|
|
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
|
|
* Licensed under the GNU General Public License,
|
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
|
|
* Copyright 2003 John M Bell <jmb202@ecs.soton.ac.uk>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NETSURF_RISCOS_ABOUT_H_
|
|
|
|
#define _NETSURF_RISCOS_ABOUT_H_
|
|
|
|
|
2004-01-05 05:10:59 +03:00
|
|
|
#include "netsurf/utils/config.h"
|
|
|
|
|
|
|
|
#ifdef WITH_ABOUT
|
2003-09-17 00:02:55 +04:00
|
|
|
void about_create(void);
|
2004-01-05 05:10:59 +03:00
|
|
|
#ifdef WITH_COOKIES
|
2003-12-28 02:49:31 +03:00
|
|
|
void cookie_create(void);
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
2003-12-28 02:49:31 +03:00
|
|
|
void about_quit(void);
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
2003-09-17 00:02:55 +04:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|