command.h: move function prototypes to AllCommands.h
This commit is contained in:
parent
f3f25d5d40
commit
a5d8b27671
@ -235,7 +235,7 @@ src_mpd_SOURCES = \
|
|||||||
src/protocol/argparser.c src/protocol/argparser.h \
|
src/protocol/argparser.c src/protocol/argparser.h \
|
||||||
src/protocol/result.c src/protocol/result.h \
|
src/protocol/result.c src/protocol/result.h \
|
||||||
src/CommandError.cxx src/CommandError.hxx \
|
src/CommandError.cxx src/CommandError.hxx \
|
||||||
src/AllCommands.cxx \
|
src/AllCommands.cxx src/AllCommands.h \
|
||||||
src/QueueCommands.cxx src/QueueCommands.hxx \
|
src/QueueCommands.cxx src/QueueCommands.hxx \
|
||||||
src/PlayerCommands.cxx src/PlayerCommands.hxx \
|
src/PlayerCommands.cxx src/PlayerCommands.hxx \
|
||||||
src/PlaylistCommands.cxx src/PlaylistCommands.hxx \
|
src/PlaylistCommands.cxx src/PlaylistCommands.hxx \
|
||||||
|
@ -18,6 +18,11 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
|
extern "C" {
|
||||||
|
#include "AllCommands.h"
|
||||||
|
}
|
||||||
|
|
||||||
#include "command.h"
|
#include "command.h"
|
||||||
#include "QueueCommands.hxx"
|
#include "QueueCommands.hxx"
|
||||||
#include "PlayerCommands.hxx"
|
#include "PlayerCommands.hxx"
|
||||||
|
34
src/AllCommands.h
Normal file
34
src/AllCommands.h
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2003-2012 The Music Player Daemon Project
|
||||||
|
* http://www.musicpd.org
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License along
|
||||||
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef MPD_ALL_COMMANDS_H
|
||||||
|
#define MPD_ALL_COMMANDS_H
|
||||||
|
|
||||||
|
#include "command.h"
|
||||||
|
|
||||||
|
struct client;
|
||||||
|
|
||||||
|
void command_init(void);
|
||||||
|
|
||||||
|
void command_finish(void);
|
||||||
|
|
||||||
|
enum command_return
|
||||||
|
command_process(struct client *client, unsigned num, char *line);
|
||||||
|
|
||||||
|
#endif
|
@ -24,6 +24,8 @@
|
|||||||
#include "client_message.h"
|
#include "client_message.h"
|
||||||
#include "command.h"
|
#include "command.h"
|
||||||
|
|
||||||
|
#include <glib.h>
|
||||||
|
|
||||||
#undef G_LOG_DOMAIN
|
#undef G_LOG_DOMAIN
|
||||||
#define G_LOG_DOMAIN "client"
|
#define G_LOG_DOMAIN "client"
|
||||||
|
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "client_internal.h"
|
#include "client_internal.h"
|
||||||
#include "protocol/result.h"
|
#include "protocol/result.h"
|
||||||
|
#include "AllCommands.h"
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
@ -20,10 +20,6 @@
|
|||||||
#ifndef MPD_COMMAND_H
|
#ifndef MPD_COMMAND_H
|
||||||
#define MPD_COMMAND_H
|
#define MPD_COMMAND_H
|
||||||
|
|
||||||
#include "ack.h"
|
|
||||||
|
|
||||||
#include <stdbool.h>
|
|
||||||
|
|
||||||
enum command_return {
|
enum command_return {
|
||||||
/**
|
/**
|
||||||
* The command has succeeded, but the "OK" response was not
|
* The command has succeeded, but the "OK" response was not
|
||||||
@ -54,17 +50,4 @@ enum command_return {
|
|||||||
COMMAND_RETURN_KILL,
|
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
|
#endif
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
#include "client.h"
|
#include "client.h"
|
||||||
#include "client_idle.h"
|
#include "client_idle.h"
|
||||||
#include "idle.h"
|
#include "idle.h"
|
||||||
#include "command.h"
|
#include "AllCommands.h"
|
||||||
#include "playlist.h"
|
#include "playlist.h"
|
||||||
#include "stored_playlist.h"
|
#include "stored_playlist.h"
|
||||||
#include "database.h"
|
#include "database.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user