summaryrefslogtreecommitdiff
path: root/riscos/filename.h
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2005-06-21 14:17:51 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2005-06-21 14:17:51 +0000
commit523eb55a248861aa283ea2d7ddb17f73a59fe349 (patch)
treea1d75ced2e1cbdc28ae255dd9cceb33f67a6b36c /riscos/filename.h
parent44ef42de3440ff170f023e86b05f8f435760df4d (diff)
downloadnetsurf-523eb55a248861aa283ea2d7ddb17f73a59fe349.tar.gz
netsurf-523eb55a248861aa283ea2d7ddb17f73a59fe349.tar.bz2
[project @ 2005-06-21 14:17:51 by rjw]
Unique filename provider. svn path=/import/netsurf/; revision=1750
Diffstat (limited to 'riscos/filename.h')
-rw-r--r--riscos/filename.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/riscos/filename.h b/riscos/filename.h
new file mode 100644
index 000000000..8dd6b20ce
--- /dev/null
+++ b/riscos/filename.h
@@ -0,0 +1,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