aboutsummaryrefslogtreecommitdiffstats
path: root/src/UpdateRemove.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-02 19:22:15 +0100
committerMax Kellermann <max@duempel.org>2013-01-02 19:22:15 +0100
commita654f146d1b39a363cb10853a7670ef099570e54 (patch)
tree2c171646333f0b529655b57bee2c1eb6a3dd7c1c /src/UpdateRemove.cxx
parent67b46a151da4ca6f81fa63d30e2c629da352ec45 (diff)
downloadmpd-a654f146d1b39a363cb10853a7670ef099570e54.tar.gz
mpd-a654f146d1b39a363cb10853a7670ef099570e54.tar.xz
mpd-a654f146d1b39a363cb10853a7670ef099570e54.zip
update: convert to C++
Diffstat (limited to '')
-rw-r--r--src/UpdateRemove.cxx (renamed from src/update_remove.c)10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/update_remove.c b/src/UpdateRemove.cxx
index c2e353c63..71852ea96 100644
--- a/src/update_remove.c
+++ b/src/UpdateRemove.cxx
@@ -18,15 +18,21 @@
*/
#include "config.h" /* must be first for large file support */
-#include "update_remove.h"
+#include "UpdateRemove.hxx"
+
+extern "C" {
#include "event_pipe.h"
-#include "song.h"
#include "playlist.h"
+}
+
+#include "song.h"
#include "Main.hxx"
#ifdef ENABLE_SQLITE
+extern "C" {
#include "sticker.h"
#include "song_sticker.h"
+}
#endif
#include <glib.h>