diff options
author | Kalle Wallin <kaw@linux.se> | 2004-04-19 22:06:41 +0000 |
---|---|---|
committer | Kalle Wallin <kaw@linux.se> | 2004-04-19 22:06:41 +0000 |
commit | bf28b56f26bb5753c706e2e249265f95b500fd78 (patch) | |
tree | 7dbc577ad0ab0b293ab0ff00b86ee93ab80bae4d /screen_play.h | |
parent | 2a803438b5efaee06de58af19a7cb501904d2901 (diff) | |
download | mpd-bf28b56f26bb5753c706e2e249265f95b500fd78.tar.gz mpd-bf28b56f26bb5753c706e2e249265f95b500fd78.tar.xz mpd-bf28b56f26bb5753c706e2e249265f95b500fd78.zip |
Major cleanup. The goal of this is to simplify addition of "screens".
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@832 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | screen_play.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/screen_play.h b/screen_play.h index c88f4c73a..f7c101856 100644 --- a/screen_play.h +++ b/screen_play.h @@ -1,10 +1,5 @@ +int play_get_selected(void); -void play_open(screen_t *screen, mpd_client_t *c); -void play_close(screen_t *screen, mpd_client_t *c); - -void play_paint(screen_t *screen, mpd_client_t *c); -void play_update(screen_t *screen, mpd_client_t *c); - -int play_cmd(screen_t *screen, mpd_client_t *c, command_t cmd); +screen_functions_t *get_screen_playlist(void); |