mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-23 23:09:39 +03:00
ede57892c6
Clients now manage the persistent state. svn path=/import/netsurf/; revision=1760
23 lines
589 B
C
23 lines
589 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>
|
|
*/
|
|
|
|
#ifndef _NETSURF_RISCOS_FILENAME_H_
|
|
#define _NETSURF_RISCOS_FILENAME_H_
|
|
|
|
#include <stdbool.h>
|
|
|
|
#define CACHE_FILENAME_PREFIX "<Wimp$ScrapDir>.WWW.NetSurf.Cache"
|
|
|
|
char *ro_filename_request(void);
|
|
bool ro_filename_claim(const char *filename);
|
|
void ro_filename_release(const char *filename);
|
|
bool ro_filename_initialise(void);
|
|
void ro_filename_flush(void);
|
|
|
|
|
|
#endif
|