diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/playlist.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/playlist.h b/src/playlist.h index 443f4222d..330eba6ea 100644 --- a/src/playlist.h +++ b/src/playlist.h @@ -44,9 +44,22 @@ enum playlist_result { }; typedef struct _Playlist { + /** + * The song queue - it contains the "real" playlist. + */ struct queue queue; + /** + * The "current song pointer". This is the song which is + * played when we get the "play" command. It is also the song + * which is currently being played. + */ int current; + + /** + * The "next" song to be played, when the current one + * finishes. + */ int queued; } Playlist; |