summaryrefslogtreecommitdiff
path: root/apps/tagtree.h
diff options
context:
space:
mode:
authorChristian Soffke <christian.soffke@gmail.com>2022-08-16 13:10:13 +0200
committerChristian Soffke <christian.soffke@gmail.com>2023-01-14 12:14:28 -0500
commit7f265ee8dd062a015e214b16f9c41fc27e867f22 (patch)
tree87ba5da95ef7870c922fd7206640c976ad72794a /apps/tagtree.h
parentcc79f1b543535e8d7e5b9875af9043c16267e429 (diff)
downloadrockbox-7f265ee8dd062a015e214b16f9c41fc27e867f22.tar.gz
rockbox-7f265ee8dd062a015e214b16f9c41fc27e867f22.zip
Database: Add ability to insert multiple files into playlists
You could only add single files to playlists from the database browser before. This enables adding any database selection to a new or existing playlist. Change-Id: I811c7167641c589944bb2afc18dcc1d299a7b979
Diffstat (limited to 'apps/tagtree.h')
-rw-r--r--apps/tagtree.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/tagtree.h b/apps/tagtree.h
index 5c938b1541..6eaaf3dfac 100644
--- a/apps/tagtree.h
+++ b/apps/tagtree.h
@@ -39,7 +39,8 @@ void tagtree_exit(struct tree_context* c, bool is_visible);
39int tagtree_load(struct tree_context* c); 39int tagtree_load(struct tree_context* c);
40char* tagtree_get_entry_name(struct tree_context *c, int id, 40char* tagtree_get_entry_name(struct tree_context *c, int id,
41 char* buf, size_t bufsize); 41 char* buf, size_t bufsize);
42bool tagtree_insert_selection_playlist(int position, bool queue); 42bool tagtree_current_playlist_insert(int position, bool queue);
43int tagtree_add_to_playlist(const char* playlist, bool new_playlist);
43char *tagtree_get_title(struct tree_context* c); 44char *tagtree_get_title(struct tree_context* c);
44int tagtree_get_attr(struct tree_context* c); 45int tagtree_get_attr(struct tree_context* c);
45int tagtree_get_icon(struct tree_context* c); 46int tagtree_get_icon(struct tree_context* c);