diff options
author | Max Kellermann <max@duempel.org> | 2013-11-28 11:50:54 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-11-28 11:50:54 +0100 |
commit | f90abe9530ef1075bc9b60e0f08f405d2d86f799 (patch) | |
tree | 60f4052123e03cd326ec64f4b6cd711784d651b2 /src/mixer/PulseMixerPlugin.hxx | |
parent | 46bab7e4b921b79924643bacd08dcd3d1404ceb6 (diff) | |
download | mpd-f90abe9530ef1075bc9b60e0f08f405d2d86f799.tar.gz mpd-f90abe9530ef1075bc9b60e0f08f405d2d86f799.tar.xz mpd-f90abe9530ef1075bc9b60e0f08f405d2d86f799.zip |
include cleanup using iwyu
Diffstat (limited to 'src/mixer/PulseMixerPlugin.hxx')
-rw-r--r-- | src/mixer/PulseMixerPlugin.hxx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/mixer/PulseMixerPlugin.hxx b/src/mixer/PulseMixerPlugin.hxx index fa73e0f5e..46bd06a01 100644 --- a/src/mixer/PulseMixerPlugin.hxx +++ b/src/mixer/PulseMixerPlugin.hxx @@ -20,20 +20,17 @@ #ifndef MPD_PULSE_MIXER_PLUGIN_HXX #define MPD_PULSE_MIXER_PLUGIN_HXX -#include <pulse/def.h> - struct PulseMixer; struct pa_context; struct pa_stream; void -pulse_mixer_on_connect(PulseMixer *pm, struct pa_context *context); +pulse_mixer_on_connect(PulseMixer *pm, pa_context *context); void pulse_mixer_on_disconnect(PulseMixer *pm); void -pulse_mixer_on_change(PulseMixer *pm, - struct pa_context *context, struct pa_stream *stream); +pulse_mixer_on_change(PulseMixer *pm, pa_context *context, pa_stream *stream); #endif |