diff options
author | Michal Ratajsky <[email protected]> | 2014-08-18 20:49:17 +0200 |
---|---|---|
committer | Michal Ratajsky <[email protected]> | 2014-08-18 20:49:17 +0200 |
commit | 5f20ab328add9442082277a57c23273a3a2125ed (patch) | |
tree | fb458ba63f25db35de6b5a9c9acf0f967020107f /backends/pulse/pulse-monitor.h | |
parent | 94d24482d8b1013947c0e2dac7330180b6ae02f6 (diff) | |
download | libmatemixer-5f20ab328add9442082277a57c23273a3a2125ed.tar.bz2 libmatemixer-5f20ab328add9442082277a57c23273a3a2125ed.tar.xz |
Global update
Diffstat (limited to 'backends/pulse/pulse-monitor.h')
-rw-r--r-- | backends/pulse/pulse-monitor.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/backends/pulse/pulse-monitor.h b/backends/pulse/pulse-monitor.h index 41147f5..e371ec3 100644 --- a/backends/pulse/pulse-monitor.h +++ b/backends/pulse/pulse-monitor.h @@ -23,6 +23,8 @@ #include <pulse/pulseaudio.h> +#include "pulse-types.h" + G_BEGIN_DECLS #define PULSE_TYPE_MONITOR \ @@ -38,7 +40,6 @@ G_BEGIN_DECLS #define PULSE_MONITOR_GET_CLASS(o) \ (G_TYPE_INSTANCE_GET_CLASS ((o), PULSE_TYPE_MONITOR, PulseMonitorClass)) -typedef struct _PulseMonitor PulseMonitor; typedef struct _PulseMonitorClass PulseMonitorClass; typedef struct _PulseMonitorPrivate PulseMonitorPrivate; @@ -54,7 +55,7 @@ struct _PulseMonitorClass { GObjectClass parent_class; - /* Signals */ + /*< private >*/ void (*value) (PulseMonitor *monitor, gdouble value); }; @@ -63,7 +64,6 @@ GType pulse_monitor_get_type (void) G_GNUC_CONST; PulseMonitor *pulse_monitor_new (pa_context *context, pa_proplist *proplist, - const gchar *name, guint32 index_source, guint32 index_sink_input); @@ -71,10 +71,6 @@ gboolean pulse_monitor_get_enabled (PulseMonitor *monitor); gboolean pulse_monitor_set_enabled (PulseMonitor *monitor, gboolean enabled); -const gchar * pulse_monitor_get_name (PulseMonitor *monitor); -gboolean pulse_monitor_set_name (PulseMonitor *monitor, - const gchar *name); - G_END_DECLS #endif /* PULSE_MONITOR_H */ |