diff options
author | Max Kellermann <max@duempel.org> | 2012-09-25 12:16:42 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-09-25 12:20:36 +0200 |
commit | a5d8b27671b829d2b17554b056b681c66ae7fb74 (patch) | |
tree | 94373b2afc7549fca1fec1752f4502289639af22 /src/command.h | |
parent | f3f25d5d40d0627392c20a632dbb751449c77e15 (diff) | |
download | mpd-a5d8b27671b829d2b17554b056b681c66ae7fb74.tar.gz mpd-a5d8b27671b829d2b17554b056b681c66ae7fb74.tar.xz mpd-a5d8b27671b829d2b17554b056b681c66ae7fb74.zip |
command.h: move function prototypes to AllCommands.h
Diffstat (limited to '')
-rw-r--r-- | src/command.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/command.h b/src/command.h index 295d71ab6..9ea5bb52f 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 |