summaryrefslogtreecommitdiff
path: root/apps/tagcache.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tagcache.h')
-rw-r--r--apps/tagcache.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/apps/tagcache.h b/apps/tagcache.h
index b27d804792..e43414cba5 100644
--- a/apps/tagcache.h
+++ b/apps/tagcache.h
@@ -71,9 +71,10 @@ enum tag_type { tag_artist = 0, tag_album, tag_genre, tag_title,
71#define FLAG_DIRCACHE 0x0002 /* Filename is a dircache pointer */ 71#define FLAG_DIRCACHE 0x0002 /* Filename is a dircache pointer */
72#define FLAG_DIRTYNUM 0x0004 /* Numeric data has been modified */ 72#define FLAG_DIRTYNUM 0x0004 /* Numeric data has been modified */
73 73
74enum clause { clause_none, clause_is, clause_gt, clause_gteq, clause_lt, 74enum clause { clause_none, clause_is, clause_is_not, clause_gt, clause_gteq,
75 clause_lteq, clause_contains, clause_begins_with, clause_ends_with }; 75 clause_lt, clause_lteq, clause_contains, clause_not_contains,
76enum modifiers { clause_mod_none, clause_mod_not }; 76 clause_begins_with, clause_not_begins_with, clause_ends_with,
77 clause_not_ends_with };
77 78
78struct tagcache_stat { 79struct tagcache_stat {
79 bool initialized; /* Is tagcache currently busy? */ 80 bool initialized; /* Is tagcache currently busy? */