mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-24 23:39:51 +03:00
00d74fdd2d
svn path=/trunk/netsurf/; revision=2755
22 lines
499 B
C
22 lines
499 B
C
/*
|
|
* 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 2005 Richard Wilson <info@tinct.net>
|
|
*/
|
|
|
|
/** \file
|
|
* Global history (interface).
|
|
*/
|
|
|
|
#ifndef _NETSURF_RISCOS_GLOBALHISTORY_H_
|
|
#define _NETSURF_RISCOS_GLOBALHISTORY_H_
|
|
|
|
#define GLOBAL_HISTORY_RECENT_URLS 16
|
|
|
|
void ro_gui_global_history_initialise(void);
|
|
void ro_gui_global_history_save(void);
|
|
|
|
|
|
#endif
|