summaryrefslogtreecommitdiff
path: root/riscos/filename.h
blob: 8dd6b20ce17031006eb3c1cff11c3527e291e1d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * 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(bool persistent);
void ro_filename_release(const char *filename);
bool ro_filename_initialise(void);
bool ro_filename_finalise(void);
void ro_filename_flush(void);


#endif