diff options
author | Max Kellermann <max@duempel.org> | 2013-10-20 13:10:54 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-20 13:10:54 +0200 |
commit | cf4d80fc655a399615529bdd27e0be284754c5ab (patch) | |
tree | 531f5c7af53ce4abdfd9013cbbc9e8056c934e5a /src/MessageCommands.hxx | |
parent | 8118bc93a85a903ddf95825c1ce7ecbbfff4780b (diff) | |
download | mpd-cf4d80fc655a399615529bdd27e0be284754c5ab.tar.gz mpd-cf4d80fc655a399615529bdd27e0be284754c5ab.tar.xz mpd-cf4d80fc655a399615529bdd27e0be284754c5ab.zip |
command: convert command_return to to a strictly-typed enum
Diffstat (limited to '')
-rw-r--r-- | src/MessageCommands.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/MessageCommands.hxx b/src/MessageCommands.hxx index 150e0a2a2..921b20c94 100644 --- a/src/MessageCommands.hxx +++ b/src/MessageCommands.hxx @@ -20,23 +20,23 @@ #ifndef MPD_MESSAGE_COMMANDS_HXX #define MPD_MESSAGE_COMMANDS_HXX -#include "command.h" +#include "CommandResult.hxx" class Client; -enum command_return +CommandResult handle_subscribe(Client &client, int argc, char *argv[]); -enum command_return +CommandResult handle_unsubscribe(Client &client, int argc, char *argv[]); -enum command_return +CommandResult handle_channels(Client &client, int argc, char *argv[]); -enum command_return +CommandResult handle_read_messages(Client &client, int argc, char *argv[]); -enum command_return +CommandResult handle_send_message(Client &client, int argc, char *argv[]); #endif |