diff options
author | Max Kellermann <max@duempel.org> | 2013-02-22 20:51:23 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-02-22 20:51:23 +0100 |
commit | 496f70fc0d717719a6defb645918785381efa22b (patch) | |
tree | 7b0e8b58d53ebac96fd5ece67158038bb1c10dcc /test | |
parent | 9ede4c5f3c5b72e8be2ee2e58ffdf36af019b607 (diff) |
mixer_plugin: convert to C++
Diffstat (limited to 'test')
-rw-r--r-- | test/read_mixer.cxx | 8 | ||||
-rw-r--r-- | test/run_filter.cxx | 2 |
2 files changed, 3 insertions, 7 deletions
diff --git a/test/read_mixer.cxx b/test/read_mixer.cxx index 5cd9b2c52..45344a2f6 100644 --- a/test/read_mixer.cxx +++ b/test/read_mixer.cxx @@ -18,12 +18,8 @@ */ #include "config.h" - -extern "C" { -#include "mixer_control.h" -#include "mixer_list.h" -} - +#include "MixerControl.hxx" +#include "MixerList.hxx" #include "FilterRegistry.hxx" #include "PcmVolume.hxx" #include "GlobalEvents.hxx" diff --git a/test/run_filter.cxx b/test/run_filter.cxx index 09d755db2..9ea50ff55 100644 --- a/test/run_filter.cxx +++ b/test/run_filter.cxx @@ -25,7 +25,7 @@ #include "FilterPlugin.hxx" #include "FilterInternal.hxx" #include "PcmVolume.hxx" -#include "mixer_control.h" +#include "MixerControl.hxx" #include "stdbin.h" #include <glib.h> |