aboutsummaryrefslogtreecommitdiffstats
path: root/src/protocol/Result.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2015-08-14 18:57:44 +0200
committerMax Kellermann <max@duempel.org>2015-08-14 18:57:44 +0200
commitc8d0f947d2270a52183c653a641bca5b7321f915 (patch)
tree6986bc2f538e610da7a17e98def09a4c16d54773 /src/protocol/Result.hxx
parent86e036c3933def22b6ff0eae5bcf9cd7103240e7 (diff)
downloadmpd-c8d0f947d2270a52183c653a641bca5b7321f915.tar.gz
mpd-c8d0f947d2270a52183c653a641bca5b7321f915.tar.xz
mpd-c8d0f947d2270a52183c653a641bca5b7321f915.zip
protocol/Result: move error code to class Response
Diffstat (limited to 'src/protocol/Result.hxx')
-rw-r--r--src/protocol/Result.hxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/protocol/Result.hxx b/src/protocol/Result.hxx
index 2ec861468..f45e91190 100644
--- a/src/protocol/Result.hxx
+++ b/src/protocol/Result.hxx
@@ -21,10 +21,6 @@
#define MPD_PROTOCOL_RESULT_HXX
#include "check.h"
-#include "Compiler.h"
-#include "Ack.hxx"
-
-#include <stdarg.h>
class Client;
@@ -34,12 +30,4 @@ extern int command_list_num;
void
command_success(Client &client);
-void
-command_error_v(Client &client, enum ack error,
- const char *fmt, va_list args);
-
-gcc_printf(3,4)
-void
-command_error(Client &client, enum ack error, const char *fmt, ...);
-
#endif