aboutsummaryrefslogtreecommitdiffstats
path: root/src/mixer/PulseMixerPlugin.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-04-16 20:47:55 +0200
committerMax Kellermann <max@duempel.org>2013-04-16 21:18:54 +0200
commit9f625b0a0da86b0a75de5b3805085301d6690cf1 (patch)
treecea9e06e4789bf0d4313d670669f791da9e4208e /src/mixer/PulseMixerPlugin.hxx
parentbc1b4131cbee13fa892ff2d5be5b5e0bbf1ae43d (diff)
downloadmpd-9f625b0a0da86b0a75de5b3805085301d6690cf1.tar.gz
mpd-9f625b0a0da86b0a75de5b3805085301d6690cf1.tar.xz
mpd-9f625b0a0da86b0a75de5b3805085301d6690cf1.zip
mixer/Pulse: convert to a class
Diffstat (limited to 'src/mixer/PulseMixerPlugin.hxx')
-rw-r--r--src/mixer/PulseMixerPlugin.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mixer/PulseMixerPlugin.hxx b/src/mixer/PulseMixerPlugin.hxx
index 4c12beffb..debc2cf3c 100644
--- a/src/mixer/PulseMixerPlugin.hxx
+++ b/src/mixer/PulseMixerPlugin.hxx
@@ -22,7 +22,7 @@
#include <pulse/def.h>
-struct pulse_mixer;
+struct PulseMixer;
struct pa_context;
struct pa_stream;
@@ -31,13 +31,13 @@ extern "C" {
#endif
void
-pulse_mixer_on_connect(struct pulse_mixer *pm, struct pa_context *context);
+pulse_mixer_on_connect(PulseMixer *pm, struct pa_context *context);
void
-pulse_mixer_on_disconnect(struct pulse_mixer *pm);
+pulse_mixer_on_disconnect(PulseMixer *pm);
void
-pulse_mixer_on_change(struct pulse_mixer *pm,
+pulse_mixer_on_change(PulseMixer *pm,
struct pa_context *context, struct pa_stream *stream);
#ifdef __cplusplus