diff options
Diffstat (limited to '')
-rw-r--r-- | src/PlayerControl.cxx (renamed from src/player_control.c) | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/player_control.c b/src/PlayerControl.cxx index 5a16520c2..07749b7f0 100644 --- a/src/player_control.c +++ b/src/PlayerControl.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2011 The Music Player Daemon Project + * Copyright (C) 2003-2013 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -18,14 +18,14 @@ */ #include "config.h" + +extern "C" { #include "player_control.h" -#include "decoder_control.h" -#include "path.h" -#include "log.h" -#include "tag.h" -#include "song.h" #include "idle.h" -#include "pcm_volume.h" +} + +#include "song.h" +#include "DecoderControl.hxx" #include "Main.hxx" #include <assert.h> |