diff options
author | Kalle Wallin <kaw@linux.se> | 2004-04-22 20:34:52 +0000 |
---|---|---|
committer | Kalle Wallin <kaw@linux.se> | 2004-04-22 20:34:52 +0000 |
commit | 9cd22a2d5703c1f8159e0614a3c1c4dd086a1158 (patch) | |
tree | ead61a4a2c871186e9a7299fca556f6a92cae24f /screen_play.h | |
parent | 4314bb955b36d2801340b5b4859a7d4c93794cde (diff) | |
download | mpd-9cd22a2d5703c1f8159e0614a3c1c4dd086a1158.tar.gz mpd-9cd22a2d5703c1f8159e0614a3c1c4dd086a1158.tar.xz mpd-9cd22a2d5703c1f8159e0614a3c1c4dd086a1158.zip |
Changed the way songs are added/deleted from playlist (#0000220).
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@875 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'screen_play.h')
-rw-r--r-- | screen_play.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/screen_play.h b/screen_play.h index f7c101856..535fc1887 100644 --- a/screen_play.h +++ b/screen_play.h @@ -1,5 +1,8 @@ int play_get_selected(void); +int playlist_add_song(mpd_client_t *c, mpd_Song *song); +int playlist_delete_song(mpd_client_t *c, int index); + screen_functions_t *get_screen_playlist(void); |