summaryrefslogtreecommitdiff
path: root/apps/tagcache.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tagcache.h')
-rw-r--r--apps/tagcache.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/tagcache.h b/apps/tagcache.h
index b639611394..23525f8ea8 100644
--- a/apps/tagcache.h
+++ b/apps/tagcache.h
@@ -70,6 +70,7 @@ enum tag_type { tag_artist = 0, tag_album, tag_genre, tag_title,
70#define FLAG_DELETED 0x0001 /* Entry has been removed from db */ 70#define FLAG_DELETED 0x0001 /* Entry has been removed from db */
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#define FLAG_TRKNUMGEN 0x0008 /* Track number has been generated */
73#define FLAG_GET_ATTR(flag) ((flag >> 16) & 0x0000ffff) 74#define FLAG_GET_ATTR(flag) ((flag >> 16) & 0x0000ffff)
74#define FLAG_SET_ATTR(flag,attr) flag = (flag & 0x0000ffff) | (attr << 16) 75#define FLAG_SET_ATTR(flag,attr) flag = (flag & 0x0000ffff) | (attr << 16)
75 76