mpd/src/command/PlayerCommands.hxx

91 lines
2.4 KiB
C++
Raw Normal View History

2012-08-25 12:59:54 +02:00
/*
2013-10-30 23:37:06 +01:00
* Copyright (C) 2003-2013 The Music Player Daemon Project
2012-08-25 12:59:54 +02:00
* 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_PLAYER_COMMANDS_HXX
#define MPD_PLAYER_COMMANDS_HXX
#include "CommandResult.hxx"
2012-08-25 12:59:54 +02:00
class Client;
CommandResult
2013-10-19 18:48:38 +02:00
handle_play(Client &client, int argc, char *argv[]);
2012-08-25 12:59:54 +02:00
CommandResult
2013-10-19 18:48:38 +02:00
handle_playid(Client &client, int argc, char *argv[]);
2012-08-25 12:59:54 +02:00
CommandResult
2013-10-19 18:48:38 +02:00
handle_stop(Client &client, int argc, char *argv[]);
2012-08-25 12:59:54 +02:00
CommandResult
2013-10-19 18:48:38 +02:00
handle_currentsong(Client &client, int argc, char *argv[]);
2012-08-25 12:59:54 +02:00
CommandResult
2013-10-19 18:48:38 +02:00
handle_pause(Client &client, int argc, char *argv[]);
2012-08-25 12:59:54 +02:00
CommandResult
2013-10-19 18:48:38 +02:00
handle_status(Client &client, int argc, char *argv[]);
2012-08-25 12:59:54 +02:00
CommandResult
2013-10-19 18:48:38 +02:00
handle_next(Client &client, int argc, char *argv[]);
2012-08-25 12:59:54 +02:00
CommandResult
2013-10-19 18:48:38 +02:00
handle_previous(Client &client, int argc, char *avg[]);
2012-08-25 12:59:54 +02:00
CommandResult
2013-10-19 18:48:38 +02:00
handle_repeat(Client &client, int argc, char *argv[]);
2012-08-25 12:59:54 +02:00
CommandResult
2013-10-19 18:48:38 +02:00
handle_single(Client &client, int argc, char *argv[]);
2012-08-25 12:59:54 +02:00
CommandResult
2013-10-19 18:48:38 +02:00
handle_consume(Client &client, int argc, char *argv[]);
2012-08-25 12:59:54 +02:00
CommandResult
2013-10-19 18:48:38 +02:00
handle_random(Client &client, int argc, char *argv[]);
2012-08-25 12:59:54 +02:00
CommandResult
2013-10-19 18:48:38 +02:00
handle_clearerror(Client &client, int argc, char *argv[]);
2012-08-25 12:59:54 +02:00
CommandResult
2013-10-19 18:48:38 +02:00
handle_seek(Client &client, int argc, char *argv[]);
2012-08-25 12:59:54 +02:00
CommandResult
2013-10-19 18:48:38 +02:00
handle_seekid(Client &client, int argc, char *argv[]);
2012-08-25 12:59:54 +02:00
CommandResult
2013-10-19 18:48:38 +02:00
handle_seekcur(Client &client, int argc, char *argv[]);
2012-08-25 12:59:54 +02:00
CommandResult
2013-10-19 18:48:38 +02:00
handle_crossfade(Client &client, int argc, char *argv[]);
2012-08-25 12:59:54 +02:00
CommandResult
2013-10-19 18:48:38 +02:00
handle_mixrampdb(Client &client, int argc, char *argv[]);
2012-08-25 12:59:54 +02:00
CommandResult
2013-10-19 18:48:38 +02:00
handle_mixrampdelay(Client &client, int argc, char *argv[]);
2012-08-25 12:59:54 +02:00
CommandResult
2013-10-19 18:48:38 +02:00
handle_replay_gain_mode(Client &client, int argc, char *argv[]);
2012-08-25 12:59:54 +02:00
CommandResult
2013-10-19 18:48:38 +02:00
handle_replay_gain_status(Client &client, int argc, char *argv[]);
2012-08-25 12:59:54 +02:00
#endif