diff options
author | Max Kellermann <max@duempel.org> | 2014-02-28 19:02:23 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-03-01 06:25:57 +0100 |
commit | 96afa8bd2ba44d6669949db5fce4fee5f826b753 (patch) | |
tree | a484d32c412b2cb716cc149a42f702e8c3013f48 /src/SongPrint.hxx | |
parent | 797bbeabeb212ee3d818acdb19d85e2d8642f5ed (diff) |
command: add command "listfiles"
Lists files and directories. Supports storage plugins.
Diffstat (limited to 'src/SongPrint.hxx')
-rw-r--r-- | src/SongPrint.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/SongPrint.hxx b/src/SongPrint.hxx index 16a9ee6ff..5e4c93a74 100644 --- a/src/SongPrint.hxx +++ b/src/SongPrint.hxx @@ -25,15 +25,15 @@ class DetachedSong; class Client; void -song_print_info(Client &client, const DetachedSong &song); +song_print_info(Client &client, const DetachedSong &song, bool base=false); void -song_print_info(Client &client, const LightSong &song); +song_print_info(Client &client, const LightSong &song, bool base=false); void -song_print_uri(Client &client, const LightSong &song); +song_print_uri(Client &client, const LightSong &song, bool base=false); void -song_print_uri(Client &client, const DetachedSong &song); +song_print_uri(Client &client, const DetachedSong &song, bool base=false); #endif |