summaryrefslogtreecommitdiff
path: root/playlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'playlist.h')
-rw-r--r--playlist.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/playlist.h b/playlist.h
index 6ee004b6..570c7bd1 100644
--- a/playlist.h
+++ b/playlist.h
@@ -57,6 +57,7 @@ typedef struct playItem_s {
extern playItem_t *playlist_head[PL_MAX_ITERATORS]; // head of linked list
extern playItem_t *playlist_tail[PL_MAX_ITERATORS]; // tail of linked list
+extern int playlist_current_row[PL_MAX_ITERATORS]; // current row (cursor)
extern playItem_t *playlist_current_ptr; // pointer to a real current playlist item (or NULL)
extern int pl_count;
@@ -170,4 +171,10 @@ pl_get_item_duration (playItem_t *it);
int
pl_format_title (playItem_t *it, char *s, int size, const char *fmt);
+void
+pl_reset_cursor (void);
+
+float
+pl_get_totaltime (void);
+
#endif // __PLAYLIST_H