aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-04 22:31:53 +0100
committerMax Kellermann <max@duempel.org>2013-01-04 22:31:53 +0100
commit81f3d893d9e41120d76a3e710db77ccd829cbf42 (patch)
treee5d58dcd2d8541d76ce3f966521acae94aa0b6df /src
parent05c91082e3de0b0078c26ddb9da68fd00da8c90e (diff)
player_control.h: convert header to C++
Diffstat (limited to 'src')
-rw-r--r--src/Main.cxx2
-rw-r--r--src/OutputAll.cxx2
-rw-r--r--src/OutputCommand.cxx2
-rw-r--r--src/OutputThread.cxx2
-rw-r--r--src/PlayerCommands.cxx4
-rw-r--r--src/PlayerControl.cxx2
-rw-r--r--src/PlayerControl.hxx (renamed from src/player_control.h)0
-rw-r--r--src/PlayerThread.cxx2
-rw-r--r--src/Playlist.cxx2
-rw-r--r--src/PlaylistControl.cxx5
-rw-r--r--src/PlaylistEdit.cxx2
-rw-r--r--src/PlaylistState.cxx2
-rw-r--r--src/Stats.cxx2
13 files changed, 14 insertions, 15 deletions
diff --git a/src/Main.cxx b/src/Main.cxx
index 3340bf3d..b10e0f32 100644
--- a/src/Main.cxx
+++ b/src/Main.cxx
@@ -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"
diff --git a/src/OutputAll.cxx b/src/OutputAll.cxx
index 113eca43..d211cdce 100644
--- a/src/OutputAll.cxx
+++ b/src/OutputAll.cxx
@@ -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"
}
diff --git a/src/OutputCommand.cxx b/src/OutputCommand.cxx
index ed4cd8e8..cce1a5b0 100644
--- a/src/OutputCommand.cxx
+++ b/src/OutputCommand.cxx
@@ -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"
}
diff --git a/src/OutputThread.cxx b/src/OutputThread.cxx
index 6fddf15d..3d0d96f7 100644
--- a/src/OutputThread.cxx
+++ b/src/OutputThread.cxx
@@ -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"
diff --git a/src/PlayerCommands.cxx b/src/PlayerCommands.cxx
index 55bd83a1..25b82f37 100644
--- a/src/PlayerCommands.cxx
+++ b/src/PlayerCommands.cxx
@@ -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"
diff --git a/src/PlayerControl.cxx b/src/PlayerControl.cxx
index 07749b7f..7d729bfd 100644
--- a/src/PlayerControl.cxx
+++ b/src/PlayerControl.cxx
@@ -18,9 +18,9 @@
*/
#include "config.h"
+#include "PlayerControl.hxx"
extern "C" {
-#include "player_control.h"
#include "idle.h"
}
diff --git a/src/player_control.h b/src/PlayerControl.hxx
index 3b536b8b..3b536b8b 100644
--- a/src/player_control.h
+++ b/src/PlayerControl.hxx
diff --git a/src/PlayerThread.cxx b/src/PlayerThread.cxx
index 624698f5..0343b9fc 100644
--- a/src/PlayerThread.cxx
+++ b/src/PlayerThread.cxx
@@ -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"
diff --git a/src/Playlist.cxx b/src/Playlist.cxx
index de2daf14..9f08439a 100644
--- a/src/Playlist.cxx
+++ b/src/Playlist.cxx
@@ -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"
}
diff --git a/src/PlaylistControl.cxx b/src/PlaylistControl.cxx
index 464b25cf..89c68052 100644
--- a/src/PlaylistControl.cxx
+++ b/src/PlaylistControl.cxx
@@ -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
diff --git a/src/PlaylistEdit.cxx b/src/PlaylistEdit.cxx
index baf48342..90a65fd2 100644
--- a/src/PlaylistEdit.cxx
+++ b/src/PlaylistEdit.cxx
@@ -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"
diff --git a/src/PlaylistState.cxx b/src/PlaylistState.cxx
index 92aa6294..32929d07 100644
--- a/src/PlaylistState.cxx
+++ b/src/PlaylistState.cxx
@@ -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"
}
diff --git a/src/Stats.cxx b/src/Stats.cxx
index f96bcf17..f848a9b0 100644
--- a/src/Stats.cxx
+++ b/src/Stats.cxx
@@ -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"