summaryrefslogtreecommitdiff
path: root/apps/tagcache.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tagcache.h')
-rw-r--r--apps/tagcache.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/tagcache.h b/apps/tagcache.h
index 6b2df6b984..16dac0b41f 100644
--- a/apps/tagcache.h
+++ b/apps/tagcache.h
@@ -109,12 +109,18 @@ struct tagcache_stat {
109 // const char *uimessage; /* Pending error message. Implement soon. */ 109 // const char *uimessage; /* Pending error message. Implement soon. */
110}; 110};
111 111
112enum source_type {source_constant, source_input,
113 source_current_artist, source_current_album};
114
115#define SOURCE_CURRENT_ARTIST "#artist#"
116#define SOURCE_CURRENT_ALBUM "#album#"
117
112struct tagcache_search_clause 118struct tagcache_search_clause
113{ 119{
114 int tag; 120 int tag;
115 int type; 121 int type;
116 bool numeric; 122 bool numeric;
117 bool input; 123 int source;
118 long numeric_data; 124 long numeric_data;
119 char *str; 125 char *str;
120}; 126};