netsurf/riscos/filename.h
Richard Wilson ede57892c6 [project @ 2005-06-23 17:17:56 by rjw]
Clients now manage the persistent state.

svn path=/import/netsurf/; revision=1760
2005-06-23 17:17:56 +00:00

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