diff options
author | Max Kellermann <max@duempel.org> | 2012-09-25 11:56:37 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-09-25 11:56:37 +0200 |
commit | f38dfd9231c8bcea413523a4b0d954f0c1859a9e (patch) | |
tree | d85bbe15b034a7577353b78389af8ab2b6a7d11d /src/AllCommands.cxx | |
parent | 510c4a3ef1b5f8d5029fe73e2a43ed06edf6eea6 (diff) | |
download | mpd-f38dfd9231c8bcea413523a4b0d954f0c1859a9e.tar.gz mpd-f38dfd9231c8bcea413523a4b0d954f0c1859a9e.tar.xz mpd-f38dfd9231c8bcea413523a4b0d954f0c1859a9e.zip |
command: rename to AllCommands.cxx
Diffstat (limited to '')
-rw-r--r-- | src/AllCommands.cxx (renamed from src/command.c) | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/command.c b/src/AllCommands.cxx index 26a918141..762ae73d7 100644 --- a/src/command.c +++ b/src/AllCommands.cxx @@ -28,16 +28,18 @@ #include "MessageCommands.hxx" #include "OtherCommands.hxx" #include "CommandError.h" -#include "protocol/argparser.h" -#include "protocol/result.h" #include "permission.h" -#include "tokenizer.h" #include "tag.h" + +extern "C" { +#include "protocol/result.h" +#include "tokenizer.h" #include "client.h" #ifdef ENABLE_SQLITE #include "sticker.h" #endif +} #include <assert.h> #include <string.h> |