changeset 2078:6ce74d8d2dee trunk

[svn] - add playlist.queue and playlist.shuffle for the queue and shuffle lists associated with each playlist.
author nenolod
date Mon, 11 Dec 2006 01:56:42 -0800
parents e074c9ba7072
children 78002535143b
files ChangeLog audacious/playlist.h
diffstat 2 files changed, 10 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Dec 11 01:53:05 2006 -0800
+++ b/ChangeLog	Mon Dec 11 01:56:42 2006 -0800
@@ -1,3 +1,11 @@
+2006-12-11 09:53:05 +0000  William Pitcock <nenolod@nenolod.net>
+  revision [3157]
+  - cleanup the declaration of PlaylistEntry, and add some initial structure for migrating to multiple playlists.
+  
+  trunk/audacious/playlist.h |   14 ++++++++++----
+  1 file changed, 10 insertions(+), 4 deletions(-)
+
+
 2006-12-11 09:23:47 +0000  William Pitcock <nenolod@nenolod.net>
   revision [3155]
   - exit gracefully on SIGINT/SIGTERM.
--- a/audacious/playlist.h	Mon Dec 11 01:53:05 2006 -0800
+++ b/audacious/playlist.h	Mon Dec 11 01:56:42 2006 -0800
@@ -69,6 +69,8 @@
     gchar *filename;
     gint   length;
     GList *entries;
+    GList *queue;
+    GList *shuffle;
 } Playlist;
 
 PlaylistEntry *playlist_entry_new(const gchar * filename,