aboutsummaryrefslogtreecommitdiff
path: root/src/command.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2012-09-25 12:16:42 +0200
committerMax Kellermann <max@duempel.org>2012-09-25 12:20:36 +0200
commita5d8b27671b829d2b17554b056b681c66ae7fb74 (patch)
tree94373b2afc7549fca1fec1752f4502289639af22 /src/command.h
parentf3f25d5d40d0627392c20a632dbb751449c77e15 (diff)
command.h: move function prototypes to AllCommands.h
Diffstat (limited to 'src/command.h')
-rw-r--r--src/command.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/command.h b/src/command.h
index 295d71ab..9ea5bb52 100644
--- a/src/command.h
+++ b/src/command.h
@@ -20,10 +20,6 @@
#ifndef MPD_COMMAND_H
#define MPD_COMMAND_H
-#include "ack.h"
-
-#include <stdbool.h>
-
enum command_return {
/**
* The command has succeeded, but the "OK" response was not
@@ -54,17 +50,4 @@ enum command_return {
COMMAND_RETURN_KILL,
};
-struct client;
-
-G_BEGIN_DECLS
-
-void command_init(void);
-
-void command_finish(void);
-
-enum command_return
-command_process(struct client *client, unsigned num, char *line);
-
-G_END_DECLS
-
#endif