From b8a9a007517f939a637d515c48e4c4f42fda24be Mon Sep 17 00:00:00 2001 From: Alexey Yakovenko Date: Mon, 8 Feb 2010 22:35:34 +0100 Subject: tabbed playlist save/load --- playlist.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'playlist.h') diff --git a/playlist.h b/playlist.h index b3ea7925..4dd6909b 100644 --- a/playlist.h +++ b/playlist.h @@ -57,6 +57,8 @@ typedef struct playItem_s { typedef struct playlist_s { char *title; + int count[2]; + float totaltime; playItem_t *head[PL_MAX_ITERATORS]; // head of linked list playItem_t *tail[PL_MAX_ITERATORS]; // tail of linked list int current_row[PL_MAX_ITERATORS]; // current row (cursor) @@ -171,9 +173,15 @@ pl_crop_selected (void); int pl_save (const char *fname); +int +pl_save_all (void); + int pl_load (const char *fname); +int +pl_load_all (void); + void pl_select_all (void); -- cgit v1.2.3