diff options
author | Max Kellermann <max@duempel.org> | 2009-01-23 16:34:27 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-23 16:34:27 +0100 |
commit | 8afe24c1de70b69df58f1724ad5fd02c7af63ecb (patch) | |
tree | 056b1a0ad070e278bf053fc03ab8bfb44a885337 /src/command.c | |
parent | ed25bdf55aad2f39a5a80845fca1325c558fd8db (diff) | |
download | mpd-8afe24c1de70b69df58f1724ad5fd02c7af63ecb.tar.gz mpd-8afe24c1de70b69df58f1724ad5fd02c7af63ecb.tar.xz mpd-8afe24c1de70b69df58f1724ad5fd02c7af63ecb.zip |
playlist: moved PlaylistInfo() to playlist_print.c
PlaylistInfo() (notice the capital 'P') sends a stored playlist to the
client. Move it to a separate library, where all the code which glues
the playlist and the MPD protocol together will live.
Diffstat (limited to '')
-rw-r--r-- | src/command.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/command.c b/src/command.c index 27d34c0a3..224c2e0f4 100644 --- a/src/command.c +++ b/src/command.c @@ -19,6 +19,7 @@ #include "command.h" #include "player_control.h" #include "playlist.h" +#include "playlist_print.h" #include "ls.h" #include "directory.h" #include "directory_print.h" |