summaryrefslogtreecommitdiffstats
path: root/src/filecache.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/filecache.h')
-rw-r--r--src/filecache.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/filecache.h b/src/filecache.h
index f4b50b4..c3845ca 100644
--- a/src/filecache.h
+++ b/src/filecache.h
@@ -23,6 +23,8 @@
#include <sys/types.h>
+#include <ne_session.h>
+
void* file_cache_open(const char *path, int flags);
void* file_cache_get(const char *path);
void file_cache_unref(void *f);
@@ -35,5 +37,6 @@ int file_cache_truncate(void *f, off_t s);
int file_cache_sync(void *f);
int file_cache_close_all(void);
+off_t file_cache_get_size(void *f);
#endif