aboutsummaryrefslogtreecommitdiffstats
path: root/src/libmpdclient.h
diff options
context:
space:
mode:
authorKalle Wallin <kaw@linux.se>2005-06-05 21:34:52 +0000
committerKalle Wallin <kaw@linux.se>2005-06-05 21:34:52 +0000
commit52b6a93f9773256f6d5a0efbd420fac83b3ed10b (patch)
treee536ca220f03e46d0966e151f3c00b2983b623ef /src/libmpdclient.h
parent16781807eabac2449c096f7cbca91bc4bc69a52c (diff)
downloadmpd-52b6a93f9773256f6d5a0efbd420fac83b3ed10b.tar.gz
mpd-52b6a93f9773256f6d5a0efbd420fac83b3ed10b.tar.xz
mpd-52b6a93f9773256f6d5a0efbd420fac83b3ed10b.zip
libmpdclient update
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3320 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/libmpdclient.h')
-rw-r--r--src/libmpdclient.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/libmpdclient.h b/src/libmpdclient.h
index 9298a09c2..79a94d8ee 100644
--- a/src/libmpdclient.h
+++ b/src/libmpdclient.h
@@ -233,6 +233,11 @@ typedef struct _mpd_Song {
char * name;
/* date */
char *date;
+
+ /* added by qball */
+ char *genre;
+ char *composer;
+
/* length of song in seconds, check that it is not MPD_SONG_NO_TIME */
int time;
/* if plchanges/playlistinfo/playlistid used, is the position of the
@@ -356,6 +361,9 @@ void mpd_sendCurrentSongCommand(mpd_Connection * connection);
/* songNum of -1, means to display the whole list */
void mpd_sendPlaylistInfoCommand(mpd_Connection * connection, int songNum);
+/* songId of -1, means to display the whole list */
+void mpd_sendPlaylistIdCommand(mpd_Connection * connection, int songId);
+
/* use this to get the changes in the playlist since version _playlist_ */
void mpd_sendPlChangesCommand(mpd_Connection * connection, long long playlist);