summaryrefslogtreecommitdiff
path: root/apps/tagtree.h
diff options
context:
space:
mode:
authorChristian Soffke <christian.soffke@gmail.com>2023-01-10 18:50:05 +0100
committerChristian Soffke <christian.soffke@gmail.com>2023-01-19 15:56:35 -0500
commit32f365bf3cdcaadb22087041bfc44574737b557d (patch)
treeeff68bbaa18d6b1ff8e2d0fd581c461412a55ad6 /apps/tagtree.h
parent4d53d1b52b858d4a1e90fc74fb93cda957d00cb4 (diff)
downloadrockbox-32f365bf3cdcaadb22087041bfc44574737b557d.tar.gz
rockbox-32f365bf3cdcaadb22087041bfc44574737b557d.zip
database: make parent tables work with plugin
Enables the use of PictureFlow and the Properties plugin with parent tables of ALLSUBENTRIES, such as an album or album artist, instead of individual tracks. Change-Id: I18c4779ed116a48c732ae32b9629e7e0d93ce7c8
Diffstat (limited to 'apps/tagtree.h')
-rw-r--r--apps/tagtree.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/tagtree.h b/apps/tagtree.h
index 6eaaf3dfac..39ab545bd0 100644
--- a/apps/tagtree.h
+++ b/apps/tagtree.h
@@ -45,6 +45,8 @@ char *tagtree_get_title(struct tree_context* c);
45int tagtree_get_attr(struct tree_context* c); 45int tagtree_get_attr(struct tree_context* c);
46int tagtree_get_icon(struct tree_context* c); 46int tagtree_get_icon(struct tree_context* c);
47int tagtree_get_filename(struct tree_context* c, char *buf, int buflen); 47int tagtree_get_filename(struct tree_context* c, char *buf, int buflen);
48bool tagtree_get_subentry_filename(char *buf, size_t bufsize);
49bool tagtree_subentries_do_action(bool (*action_cb)(const char *file_name));
48 50
49#endif 51#endif
50#endif 52#endif