Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
81f3d893
Commit
81f3d893
authored
Jan 04, 2013
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
player_control.h: convert header to C++
parent
05c91082
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
16 additions
and
18 deletions
+16
-18
Makefile.am
Makefile.am
+1
-2
Main.cxx
src/Main.cxx
+1
-1
OutputAll.cxx
src/OutputAll.cxx
+1
-1
OutputCommand.cxx
src/OutputCommand.cxx
+1
-1
OutputThread.cxx
src/OutputThread.cxx
+1
-1
PlayerCommands.cxx
src/PlayerCommands.cxx
+3
-1
PlayerControl.cxx
src/PlayerControl.cxx
+1
-1
PlayerControl.hxx
src/PlayerControl.hxx
+0
-0
PlayerThread.cxx
src/PlayerThread.cxx
+1
-1
Playlist.cxx
src/Playlist.cxx
+1
-1
PlaylistControl.cxx
src/PlaylistControl.cxx
+1
-4
PlaylistEdit.cxx
src/PlaylistEdit.cxx
+1
-1
PlaylistState.cxx
src/PlaylistState.cxx
+1
-1
Stats.cxx
src/Stats.cxx
+1
-1
run_output.cxx
test/run_output.cxx
+1
-1
No files found.
Makefile.am
View file @
81f3d893
...
...
@@ -114,7 +114,6 @@ mpd_headers = \
src/output/httpd_client.h
\
src/output/httpd_internal.h
\
src/page.h
\
src/player_control.h
\
src/Playlist.hxx
\
src/playlist_error.h
\
src/PlaylistInternal.hxx
\
...
...
@@ -265,7 +264,7 @@ src_mpd_SOURCES = \
src/page.c
\
src/Permission.cxx src/Permission.hxx
\
src/PlayerThread.cxx src/PlayerThread.hxx
\
src/PlayerControl.cxx
\
src/PlayerControl.cxx
src/PlayerControl.hxx
\
src/Playlist.cxx
\
src/PlaylistGlobal.cxx
\
src/PlaylistControl.cxx
\
...
...
src/Main.cxx
View file @
81f3d893
...
...
@@ -22,6 +22,7 @@
#include "CommandLine.hxx"
#include "Playlist.hxx"
#include "PlaylistFile.hxx"
#include "PlayerControl.hxx"
#include "UpdateGlue.hxx"
#include "MusicChunk.hxx"
#include "StateFile.hxx"
...
...
@@ -41,7 +42,6 @@ extern "C" {
#include "idle.h"
#include "conf.h"
#include "path.h"
#include "player_control.h"
#include "stats.h"
#include "sig_handlers.h"
#include "audio_config.h"
...
...
src/OutputAll.cxx
View file @
81f3d893
...
...
@@ -24,6 +24,7 @@ extern "C" {
#include "output_internal.h"
}
#include "PlayerControl.hxx"
#include "OutputControl.hxx"
#include "OutputError.hxx"
#include "MusicBuffer.hxx"
...
...
@@ -32,7 +33,6 @@ extern "C" {
#include "mpd_error.h"
extern
"C"
{
#include "player_control.h"
#include "conf.h"
#include "notify.h"
}
...
...
src/OutputCommand.cxx
View file @
81f3d893
...
...
@@ -26,13 +26,13 @@
#include "config.h"
#include "OutputCommand.hxx"
#include "PlayerControl.hxx"
extern
"C"
{
#include "output_all.h"
#include "output_internal.h"
#include "output_plugin.h"
#include "mixer_control.h"
#include "player_control.h"
#include "idle.h"
}
...
...
src/OutputThread.cxx
View file @
81f3d893
...
...
@@ -23,7 +23,6 @@
extern
"C"
{
#include "output_api.h"
#include "output_internal.h"
#include "player_control.h"
#include "pcm_mix.h"
#include "filter_plugin.h"
#include "filter/convert_filter_plugin.h"
...
...
@@ -31,6 +30,7 @@ extern "C" {
#include "notify.h"
}
#include "PlayerControl.hxx"
#include "MusicPipe.hxx"
#include "MusicChunk.hxx"
...
...
src/PlayerCommands.cxx
View file @
81f3d893
...
...
@@ -28,11 +28,13 @@
#include "protocol/ArgParser.hxx"
extern
"C"
{
#include "
player_control
.h"
#include "
audio_format
.h"
#include "volume.h"
#include "replay_gain_config.h"
}
#include "PlayerControl.hxx"
#include <errno.h>
#define COMMAND_STATUS_STATE "state"
...
...
src/PlayerControl.cxx
View file @
81f3d893
...
...
@@ -18,9 +18,9 @@
*/
#include "config.h"
#include "PlayerControl.hxx"
extern
"C"
{
#include "player_control.h"
#include "idle.h"
}
...
...
src/
player_control.h
→
src/
PlayerControl.hxx
View file @
81f3d893
File moved
src/PlayerThread.cxx
View file @
81f3d893
...
...
@@ -28,9 +28,9 @@
#include "Main.hxx"
#include "mpd_error.h"
#include "CrossFade.hxx"
#include "PlayerControl.hxx"
extern
"C"
{
#include "player_control.h"
#include "output_all.h"
#include "event_pipe.h"
#include "tag.h"
...
...
src/Playlist.cxx
View file @
81f3d893
...
...
@@ -19,10 +19,10 @@
#include "config.h"
#include "PlaylistInternal.hxx"
#include "PlayerControl.hxx"
#include "song.h"
extern
"C"
{
#include "player_control.h"
#include "conf.h"
#include "idle.h"
}
...
...
src/PlaylistControl.cxx
View file @
81f3d893
...
...
@@ -24,12 +24,9 @@
#include "config.h"
#include "PlaylistInternal.hxx"
#include "PlayerControl.hxx"
#include "song.h"
extern
"C"
{
#include "player_control.h"
}
#include <glib.h>
#undef G_LOG_DOMAIN
...
...
src/PlaylistEdit.cxx
View file @
81f3d893
...
...
@@ -25,9 +25,9 @@
#include "config.h"
#include "PlaylistInternal.hxx"
#include "PlayerControl.hxx"
extern
"C"
{
#include "player_control.h"
#include "uri.h"
#include "song.h"
#include "idle.h"
...
...
src/PlaylistState.cxx
View file @
81f3d893
...
...
@@ -27,9 +27,9 @@
#include "Playlist.hxx"
#include "QueueSave.hxx"
#include "TextFile.hxx"
#include "PlayerControl.hxx"
extern
"C"
{
#include "player_control.h"
#include "conf.h"
}
...
...
src/Stats.cxx
View file @
81f3d893
...
...
@@ -21,9 +21,9 @@
extern
"C"
{
#include "stats.h"
#include "player_control.h"
}
#include "PlayerControl.hxx"
#include "ClientInternal.hxx"
#include "DatabaseSelection.hxx"
#include "DatabaseGlue.hxx"
...
...
test/run_output.cxx
View file @
81f3d893
...
...
@@ -33,7 +33,7 @@ extern "C" {
}
#include "Playlist.hxx"
#include "
player_control.h
"
#include "
PlayerControl.hxx
"
#include "stdbin.h"
#include <glib.h>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment