aboutsummaryrefslogtreecommitdiffstats
path: root/src/output/PulseOutputPlugin.hxx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/output/PulseOutputPlugin.hxx (renamed from src/output/pulse_output_plugin.h)18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/output/pulse_output_plugin.h b/src/output/PulseOutputPlugin.hxx
index bcc8004a7..b120aa182 100644
--- a/src/output/pulse_output_plugin.h
+++ b/src/output/PulseOutputPlugin.hxx
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2011 The Music Player Daemon Project
+ * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
@@ -17,14 +17,14 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-#ifndef MPD_PULSE_OUTPUT_PLUGIN_H
-#define MPD_PULSE_OUTPUT_PLUGIN_H
+#ifndef MPD_PULSE_OUTPUT_PLUGIN_HXX
+#define MPD_PULSE_OUTPUT_PLUGIN_HXX
#include "gerror.h"
#include <stdbool.h>
-struct pulse_output;
+struct PulseOutput;
struct pulse_mixer;
struct pa_cvolume;
@@ -35,19 +35,19 @@ extern "C" {
#endif
void
-pulse_output_lock(struct pulse_output *po);
+pulse_output_lock(PulseOutput *po);
void
-pulse_output_unlock(struct pulse_output *po);
+pulse_output_unlock(PulseOutput *po);
void
-pulse_output_set_mixer(struct pulse_output *po, struct pulse_mixer *pm);
+pulse_output_set_mixer(PulseOutput *po, struct pulse_mixer *pm);
void
-pulse_output_clear_mixer(struct pulse_output *po, struct pulse_mixer *pm);
+pulse_output_clear_mixer(PulseOutput *po, struct pulse_mixer *pm);
bool
-pulse_output_set_volume(struct pulse_output *po,
+pulse_output_set_volume(PulseOutput *po,
const struct pa_cvolume *volume, GError **error_r);
#ifdef __cplusplus