summaryrefslogtreecommitdiff
path: root/apps/tagcache.h
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2012-07-18 23:36:57 +0200
committerThomas Martitz <kugel@rockbox.org>2012-07-30 21:20:51 +0200
commit63d27626e417f0e80b649ca366e79ba92473a6d4 (patch)
treeb52d8bafc7d47279af5b763876121b63790324d6 /apps/tagcache.h
parent0a645d212c226da8f85b23125fb192fb94829628 (diff)
downloadrockbox-63d27626e417f0e80b649ca366e79ba92473a6d4.tar.gz
rockbox-63d27626e417f0e80b649ca366e79ba92473a6d4.zip
Database: Support for multiple search roots.
Support multiple roots (i.e. scan folders) using the new folder_select() function. Amaximum of 12 dirs can be selected, however the setting (i.e. the entire folder list) cannot be longer than 80 chars. The setting works similar to the autoresume dirs: Directories are seperated by colons, e.g. "/Music:/Podcasts". Default is "/sdcard" on android, "/" on all other targets. Changes are made to the multiple-root logic in tagcache.c. This is to a) provide the logic at all on native targets and b) support more than one root before the scan even starts (until now it was used to add roots during scan due to symlinks). Change-Id: I64992c0678324536e8e64cd4427c8abbd8e8b39e
Diffstat (limited to 'apps/tagcache.h')
-rw-r--r--apps/tagcache.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/tagcache.h b/apps/tagcache.h
index 44161cf22c..c1d0df9bcd 100644
--- a/apps/tagcache.h
+++ b/apps/tagcache.h
@@ -201,8 +201,6 @@ struct tagcache_search {
201 int32_t idx_id; /* Entry number in the master index. */ 201 int32_t idx_id; /* Entry number in the master index. */
202}; 202};
203 203
204void tagcache_build(const char *path);
205
206#ifdef __PCTOOL__ 204#ifdef __PCTOOL__
207void tagcache_reverse_scan(void); 205void tagcache_reverse_scan(void);
208#endif 206#endif