aboutsummaryrefslogtreecommitdiffstats
path: root/src/AllCommands.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-10-20 13:10:54 +0200
committerMax Kellermann <max@duempel.org>2013-10-20 13:10:54 +0200
commitcf4d80fc655a399615529bdd27e0be284754c5ab (patch)
tree531f5c7af53ce4abdfd9013cbbc9e8056c934e5a /src/AllCommands.hxx
parent8118bc93a85a903ddf95825c1ce7ecbbfff4780b (diff)
downloadmpd-cf4d80fc655a399615529bdd27e0be284754c5ab.tar.gz
mpd-cf4d80fc655a399615529bdd27e0be284754c5ab.tar.xz
mpd-cf4d80fc655a399615529bdd27e0be284754c5ab.zip
command: convert command_return to to a strictly-typed enum
Diffstat (limited to 'src/AllCommands.hxx')
-rw-r--r--src/AllCommands.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/AllCommands.hxx b/src/AllCommands.hxx
index 4ab69755a..2be94c136 100644
--- a/src/AllCommands.hxx
+++ b/src/AllCommands.hxx
@@ -20,7 +20,7 @@
#ifndef MPD_ALL_COMMANDS_HXX
#define MPD_ALL_COMMANDS_HXX
-#include "command.h"
+#include "CommandResult.hxx"
class Client;
@@ -28,7 +28,7 @@ void command_init(void);
void command_finish(void);
-enum command_return
+CommandResult
command_process(Client &client, unsigned num, char *line);
#endif