summaryrefslogtreecommitdiff
path: root/apps/tagcache.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tagcache.h')
-rw-r--r--apps/tagcache.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/tagcache.h b/apps/tagcache.h
index f2694cea1b..37423e63c8 100644
--- a/apps/tagcache.h
+++ b/apps/tagcache.h
@@ -98,7 +98,7 @@ struct tagcache_search_clause
98 bool numeric; 98 bool numeric;
99 bool input; 99 bool input;
100 long numeric_data; 100 long numeric_data;
101 char str[128]; 101 char *str;
102}; 102};
103 103
104struct tagcache_search { 104struct tagcache_search {
@@ -139,6 +139,8 @@ bool tagcache_is_numeric_tag(int type);
139bool tagcache_is_unique_tag(int type); 139bool tagcache_is_unique_tag(int type);
140bool tagcache_is_sorted_tag(int type); 140bool tagcache_is_sorted_tag(int type);
141bool tagcache_find_index(struct tagcache_search *tcs, const char *filename); 141bool tagcache_find_index(struct tagcache_search *tcs, const char *filename);
142bool tagcache_check_clauses(struct tagcache_search *tcs,
143 struct tagcache_search_clause **clause, int count);
142bool tagcache_search(struct tagcache_search *tcs, int tag); 144bool tagcache_search(struct tagcache_search *tcs, int tag);
143void tagcache_search_set_uniqbuf(struct tagcache_search *tcs, 145void tagcache_search_set_uniqbuf(struct tagcache_search *tcs,
144 void *buffer, long length); 146 void *buffer, long length);