diff options
author | Kalle Wallin <kaw@linux.se> | 2004-05-07 07:49:06 +0000 |
---|---|---|
committer | Kalle Wallin <kaw@linux.se> | 2004-05-07 07:49:06 +0000 |
commit | ab032e2b5a5499f783c034eeb64a1dd3f3387a1c (patch) | |
tree | 5257e42a079672a44aacfd6236e907a067294df9 /screen_play.h | |
parent | b4983deb8e8efac613d4d1ec4c73235b35b5139b (diff) | |
download | mpd-ab032e2b5a5499f783c034eeb64a1dd3f3387a1c.tar.gz mpd-ab032e2b5a5499f783c034eeb64a1dd3f3387a1c.tar.xz mpd-ab032e2b5a5499f783c034eeb64a1dd3f3387a1c.zip |
Added support for moving songs in a playlist (move-up,move-down).
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@936 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | screen_play.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/screen_play.h b/screen_play.h index 535fc1887..2155ae593 100644 --- a/screen_play.h +++ b/screen_play.h @@ -1,6 +1,7 @@ int play_get_selected(void); +int playlist_move_song(mpd_client_t *c, int old_index, int new_index); int playlist_add_song(mpd_client_t *c, mpd_Song *song); int playlist_delete_song(mpd_client_t *c, int index); |