diff options
author | Max Kellermann <max@duempel.org> | 2014-10-25 23:49:35 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-10-25 23:50:47 +0200 |
commit | 575fbad254a1ce67530bf2aedc9852c89c072c3f (patch) | |
tree | 612ed62b05b787ee737baaca7c87d99a3bbae7cc /src/command/PlaylistCommands.hxx | |
parent | fa0aa91bf9e412e121d538632cbce3cce08ea0e0 (diff) | |
download | mpd-575fbad254a1ce67530bf2aedc9852c89c072c3f.tar.gz mpd-575fbad254a1ce67530bf2aedc9852c89c072c3f.tar.xz mpd-575fbad254a1ce67530bf2aedc9852c89c072c3f.zip |
AllCommands: "commands" returns playlist commands only if playlist_directory configured
Diffstat (limited to 'src/command/PlaylistCommands.hxx')
-rw-r--r-- | src/command/PlaylistCommands.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/command/PlaylistCommands.hxx b/src/command/PlaylistCommands.hxx index fba4e1318..6dc589c8b 100644 --- a/src/command/PlaylistCommands.hxx +++ b/src/command/PlaylistCommands.hxx @@ -21,9 +21,14 @@ #define MPD_PLAYLIST_COMMANDS_HXX #include "CommandResult.hxx" +#include "Compiler.h" class Client; +gcc_const +bool +playlist_commands_available(); + CommandResult handle_save(Client &client, unsigned argc, char *argv[]); |