diff options
author | Max Kellermann <max@duempel.org> | 2013-01-30 17:18:48 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-30 17:18:48 +0100 |
commit | 01dd540d7ea062d08c5c6000422dbba197511efc (patch) | |
tree | 17f30dd6a3de1cbde161b50a5a7da54fd3a6ace2 /test | |
parent | 814208063300d9791d1695e1dbbd784ec5818280 (diff) | |
download | mpd-01dd540d7ea062d08c5c6000422dbba197511efc.tar.gz mpd-01dd540d7ea062d08c5c6000422dbba197511efc.tar.xz mpd-01dd540d7ea062d08c5c6000422dbba197511efc.zip |
decoder_list: convert to C++
Diffstat (limited to '')
-rw-r--r-- | test/dump_playlist.cxx | 5 | ||||
-rw-r--r-- | test/read_tags.cxx | 4 | ||||
-rw-r--r-- | test/run_decoder.cxx | 4 |
3 files changed, 3 insertions, 10 deletions
diff --git a/test/dump_playlist.cxx b/test/dump_playlist.cxx index ec09bcb29..6e1f4858e 100644 --- a/test/dump_playlist.cxx +++ b/test/dump_playlist.cxx @@ -24,16 +24,13 @@ #include "input_stream.h" #include "conf.h" #include "decoder_api.h" +#include "DecoderList.hxx" #include "InputInit.hxx" #include "IOThread.hxx" #include "PlaylistRegistry.hxx" #include "PlaylistPlugin.hxx" #include "fs/Path.hxx" -extern "C" { -#include "decoder_list.h" -} - #include <glib.h> #include <unistd.h> diff --git a/test/read_tags.cxx b/test/read_tags.cxx index ddd278ffd..1ceddf1d5 100644 --- a/test/read_tags.cxx +++ b/test/read_tags.cxx @@ -19,9 +19,7 @@ #include "config.h" #include "IOThread.hxx" -extern "C" { -#include "decoder_list.h" -} +#include "DecoderList.hxx" #include "decoder_api.h" #include "InputInit.hxx" #include "InputStream.hxx" diff --git a/test/run_decoder.cxx b/test/run_decoder.cxx index 288b83f95..d5c7c3139 100644 --- a/test/run_decoder.cxx +++ b/test/run_decoder.cxx @@ -19,9 +19,7 @@ #include "config.h" #include "IOThread.hxx" -extern "C" { -#include "decoder_list.h" -} +#include "DecoderList.hxx" #include "decoder_api.h" #include "InputInit.hxx" #include "input_stream.h" |