summaryrefslogtreecommitdiff
path: root/playlist.h
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2011-04-16 21:01:37 +0200
committerGravatar waker <wakeroid@gmail.com>2011-04-16 21:01:37 +0200
commit1416dfbf622b443c309e299e0b1efd01646c8b37 (patch)
tree4794b0edfff95bce654f253b586c9aaa4e970e7f /playlist.h
parentd804aaaad0df4a532cfe397b5190f833837257b9 (diff)
get rid of some legacy events;
update playlist grouping on metadata changes
Diffstat (limited to 'playlist.h')
-rw-r--r--playlist.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/playlist.h b/playlist.h
index 3aa48b49..88d35c47 100644
--- a/playlist.h
+++ b/playlist.h
@@ -52,7 +52,7 @@ typedef struct playlist_s {
struct playlist_s *next;
int count[2];
float totaltime;
- time_t modification_time;
+ int modification_idx;
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)
@@ -129,8 +129,8 @@ plt_set_title (playlist_t *plt, const char *title);
void
plt_modified (playlist_t *plt);
-time_t
-plt_get_modification_time (playlist_t *plt);
+int
+plt_get_modification_idx (playlist_t *plt);
// moves playlist #from to position #to
void