summaryrefslogtreecommitdiff
path: root/content/cache.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2004-06-21 15:49:59 +0000
committerJames Bursa <james@netsurf-browser.org>2004-06-21 15:49:59 +0000
commit1fa1786d832018f8a4e6a58c23ad968e84eb9bfa (patch)
treee83a74c804ecdd99f549c2652b38dc3b7e485d1b /content/cache.h
parent86206259fefbf86c611a5eddc8e095ae56d00e05 (diff)
downloadnetsurf-1fa1786d832018f8a4e6a58c23ad968e84eb9bfa.tar.gz
netsurf-1fa1786d832018f8a4e6a58c23ad968e84eb9bfa.tar.bz2
[project @ 2004-06-21 15:49:59 by bursa]
Remove obsolete files and some dead code. svn path=/import/netsurf/; revision=989
Diffstat (limited to 'content/cache.h')
-rw-r--r--content/cache.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/content/cache.h b/content/cache.h
deleted file mode 100644
index 8cdb9b63c..000000000
--- a/content/cache.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * 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 2003 James Bursa <bursa@users.sourceforge.net>
- */
-
-/** \file
- * Caching of converted contents (interface).
- *
- * The cache contains a ::content structure for each url. If a structure is not
- * in state CONTENT_STATUS_DONE, then loading and converting must be actively
- * in progress, so that when a not done content is retrieved no action needs
- * to be taken to load it.
- *
- * Each content in the cache is either freeable or non-freeable. If an entry
- * is freeable, the cache may destroy it through content_destroy() at any time.
- *
- * The cache uses the cache element of struct content.
- */
-
-#ifndef _NETSURF_DESKTOP_CACHE_H_
-#define _NETSURF_DESKTOP_CACHE_H_
-
-struct content;
-struct cache_entry;
-
-void cache_init(void);
-void cache_quit(void);
-struct content * cache_get(const char * const url);
-void cache_put(struct content * content);
-void cache_freeable(struct content * content);
-void cache_destroy(struct content * content);
-void cache_dump(void);
-
-#endif