diff options
author | Max Kellermann <max@duempel.org> | 2014-02-05 00:02:02 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-02-05 00:02:02 +0100 |
commit | e8938b1069739eca2bd2f27705c1c7783e834e59 (patch) | |
tree | 482330dbf228c12a60c9a401f0428cc4e292e234 /src/mixer/MixerControl.hxx | |
parent | 4a283330394fd2e1541a03bd312e5fadf54aa055 (diff) | |
download | mpd-e8938b1069739eca2bd2f27705c1c7783e834e59.tar.gz mpd-e8938b1069739eca2bd2f27705c1c7783e834e59.tar.xz mpd-e8938b1069739eca2bd2f27705c1c7783e834e59.zip |
MixerPlugin: add EventLoop& init() parameter
Diffstat (limited to 'src/mixer/MixerControl.hxx')
-rw-r--r-- | src/mixer/MixerControl.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mixer/MixerControl.hxx b/src/mixer/MixerControl.hxx index 3f8e11e86..8ffc683f4 100644 --- a/src/mixer/MixerControl.hxx +++ b/src/mixer/MixerControl.hxx @@ -27,11 +27,12 @@ class Error; class Mixer; +class EventLoop; struct mixer_plugin; struct config_param; Mixer * -mixer_new(const mixer_plugin *plugin, void *ao, +mixer_new(EventLoop &event_loop, const mixer_plugin *plugin, void *ao, const config_param ¶m, Error &error); |