aboutsummaryrefslogtreecommitdiffstats
path: root/src/PlayerThread.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-10-28 10:12:21 +0100
committerMax Kellermann <max@duempel.org>2013-10-28 10:12:33 +0100
commit5b5675cc121eff6ba4b89719a523bfbe3993ce2f (patch)
tree92bd72d3f460d184d5769256270c76db0fb6080b /src/PlayerThread.hxx
parente699f6781e144d02336856d460a74fbaf988447d (diff)
downloadmpd-5b5675cc121eff6ba4b89719a523bfbe3993ce2f.tar.gz
mpd-5b5675cc121eff6ba4b89719a523bfbe3993ce2f.tar.xz
mpd-5b5675cc121eff6ba4b89719a523bfbe3993ce2f.zip
player_control: rename to PlayerControl
Diffstat (limited to 'src/PlayerThread.hxx')
-rw-r--r--src/PlayerThread.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/PlayerThread.hxx b/src/PlayerThread.hxx
index 97e773606..efdcf05ca 100644
--- a/src/PlayerThread.hxx
+++ b/src/PlayerThread.hxx
@@ -26,7 +26,7 @@
* audio outputs via audio_output_all_play().
*
* It is controlled by the main thread (the playlist code), see
- * player_control.h. The playlist enqueues new songs into the player
+ * PlayerControl.hxx. The playlist enqueues new songs into the player
* thread and sends it commands.
*
* The player thread itself does not do any I/O. It synchronizes with
@@ -37,9 +37,9 @@
#ifndef MPD_PLAYER_THREAD_HXX
#define MPD_PLAYER_THREAD_HXX
-struct player_control;
+struct PlayerControl;
void
-player_create(player_control &pc);
+player_create(PlayerControl &pc);
#endif