summaryrefslogtreecommitdiff
path: root/apps/misc.h
diff options
context:
space:
mode:
authorChristian Soffke <christian.soffke@gmail.com>2024-05-28 00:01:57 +0200
committerChristian Soffke <christian.soffke@gmail.com>2024-06-01 11:55:36 -0400
commit3d7d1d4d5b0289c6357e02be70efe2958ae55e0a (patch)
tree77da477194a3f068114d615d52e9a36f6c0c98fa /apps/misc.h
parentef1e7d88963aa411f06448f10b3b63886c157c9c (diff)
downloadrockbox-3d7d1d4d5b0289c6357e02be70efe2958ae55e0a.tar.gz
rockbox-3d7d1d4d5b0289c6357e02be70efe2958ae55e0a.zip
plugins: properties: show track info for whole playlist
Track Info can now be displayed for the set of all tracks contained in a playlist. This lets you calculate a playlist's length, for example, even if it is not currently playing. This functionality can be accessed from the existing "Properties" screen for a selected playlist file. A line has been added at the very bottom to show Track Info. Change-Id: I311532b7cfa9e29d46c0cd5623ba4c06c1dd5b5f
Diffstat (limited to 'apps/misc.h')
-rw-r--r--apps/misc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/misc.h b/apps/misc.h
index 28a982d1da..c6485db4ff 100644
--- a/apps/misc.h
+++ b/apps/misc.h
@@ -110,6 +110,8 @@ void talk_timedate(void);
110 * returns true if the playlist should be replaced */ 110 * returns true if the playlist should be replaced */
111bool warn_on_pl_erase(void); 111bool warn_on_pl_erase(void);
112 112
113bool show_search_progress(bool init, int count);
114
113/* Read (up to) a line of text from fd into buffer and return number of bytes 115/* Read (up to) a line of text from fd into buffer and return number of bytes
114 * read (which may be larger than the number of bytes stored in buffer). If 116 * read (which may be larger than the number of bytes stored in buffer). If
115 * an error occurs, -1 is returned (and buffer contains whatever could be 117 * an error occurs, -1 is returned (and buffer contains whatever could be