summaryrefslogtreecommitdiff
path: root/apps/tagcache.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tagcache.h')
-rw-r--r--apps/tagcache.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/tagcache.h b/apps/tagcache.h
index 450c21c26e..d5ce772904 100644
--- a/apps/tagcache.h
+++ b/apps/tagcache.h
@@ -64,6 +64,7 @@ enum tag_type { tag_artist = 0, tag_album, tag_genre, tag_title,
64#define TAGCACHE_FILE_MASTER ROCKBOX_DIR "/tagcache_idx.tcd" 64#define TAGCACHE_FILE_MASTER ROCKBOX_DIR "/tagcache_idx.tcd"
65#define TAGCACHE_FILE_INDEX ROCKBOX_DIR "/tagcache_%d.tcd" 65#define TAGCACHE_FILE_INDEX ROCKBOX_DIR "/tagcache_%d.tcd"
66#define TAGCACHE_FILE_CHANGELOG ROCKBOX_DIR "/tagcache_changelog.txt" 66#define TAGCACHE_FILE_CHANGELOG ROCKBOX_DIR "/tagcache_changelog.txt"
67#define TAGCACHE_STATEFILE ROCKBOX_DIR "/tagcache_state.tcd"
67 68
68/* Flags */ 69/* Flags */
69#define FLAG_DELETED 0x0001 /* Entry has been removed from db */ 70#define FLAG_DELETED 0x0001 /* Entry has been removed from db */
@@ -149,6 +150,7 @@ bool tagcache_modify_numeric_entry(struct tagcache_search *tcs,
149 150
150struct tagcache_stat* tagcache_get_stat(void); 151struct tagcache_stat* tagcache_get_stat(void);
151int tagcache_get_commit_step(void); 152int tagcache_get_commit_step(void);
153bool tagcache_prepare_shutdown(void);
152 154
153#ifdef HAVE_TC_RAMCACHE 155#ifdef HAVE_TC_RAMCACHE
154bool tagcache_is_ramcache(void); 156bool tagcache_is_ramcache(void);