diff options
Diffstat (limited to 'src/screen_play.h')
-rw-r--r-- | src/screen_play.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/screen_play.h b/src/screen_play.h new file mode 100644 index 000000000..2155ae593 --- /dev/null +++ b/src/screen_play.h @@ -0,0 +1,9 @@ + +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); + +screen_functions_t *get_screen_playlist(void); + |