diff options
author | Max Kellermann <max@duempel.org> | 2013-01-04 09:46:41 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-04 09:46:41 +0100 |
commit | de0ab43bc12be345d85779e444266153ff5be007 (patch) | |
tree | ce024a0c25c6fc75c65438b562b6300c06737a33 /src/OutputAll.cxx | |
parent | e12cc01aa4b25798a2887ac6c5e01309e744ea8b (diff) | |
download | mpd-de0ab43bc12be345d85779e444266153ff5be007.tar.gz mpd-de0ab43bc12be345d85779e444266153ff5be007.tar.xz mpd-de0ab43bc12be345d85779e444266153ff5be007.zip |
output_*: convert to C++
Diffstat (limited to '')
-rw-r--r-- | src/OutputAll.cxx (renamed from src/output_all.c) | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/src/output_all.c b/src/OutputAll.cxx index b2ef1561f..ec716a411 100644 --- a/src/output_all.c +++ b/src/OutputAll.cxx @@ -18,17 +18,24 @@ */ #include "config.h" + +extern "C" { #include "output_all.h" -#include "output_error.h" #include "output_internal.h" -#include "output_control.h" -#include "chunk.h" +} + +#include "OutputControl.hxx" +#include "OutputError.hxx" +#include "mpd_error.h" + +extern "C" { +#include "player_control.h" #include "conf.h" +#include "chunk.h" #include "pipe.h" #include "buffer.h" -#include "player_control.h" -#include "mpd_error.h" #include "notify.h" +} #ifndef NDEBUG #include "chunk.h" |