diff options
author | Michal Ratajsky <[email protected]> | 2014-05-24 21:01:21 +0200 |
---|---|---|
committer | Michal Ratajsky <[email protected]> | 2014-05-24 21:01:21 +0200 |
commit | 4db8dc0cbb3959d6278a9e7650d5103a475ab897 (patch) | |
tree | 4bc508298ce65013a5819cf0cdde7444c23abdb2 /backends/pulse/pulse-device.h | |
parent | caf4d9b8b8b0d26856d2d64f00ab23756867a923 (diff) | |
download | libmatemixer-4db8dc0cbb3959d6278a9e7650d5103a475ab897.tar.bz2 libmatemixer-4db8dc0cbb3959d6278a9e7650d5103a475ab897.tar.xz |
General additions and improvements
Diffstat (limited to 'backends/pulse/pulse-device.h')
-rw-r--r-- | backends/pulse/pulse-device.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/backends/pulse/pulse-device.h b/backends/pulse/pulse-device.h index f8b5a07..ab997fe 100644 --- a/backends/pulse/pulse-device.h +++ b/backends/pulse/pulse-device.h @@ -60,18 +60,20 @@ struct _MateMixerPulseDeviceClass GType mate_mixer_pulse_device_get_type (void) G_GNUC_CONST; MateMixerPulseDevice *mate_mixer_pulse_device_new (const pa_card_info *info); -GList *mate_mixer_pulse_device_list_tracks (MateMixerPulseDevice *device); -const GList *mate_mixer_pulse_device_get_ports (MateMixerPulseDevice *device); -const GList *mate_mixer_pulse_device_get_profiles (MateMixerPulseDevice *device); +gboolean mate_mixer_pulse_device_update (MateMixerPulseDevice *device, + const pa_card_info *info); -MateMixerDeviceProfile *mate_mixer_pulse_device_get_active_profile (MateMixerPulseDevice *device); +/* Interface implementation */ +const GList *mate_mixer_pulse_device_list_tracks (MateMixerDevice *device); -gboolean mate_mixer_pulse_device_set_active_profile (MateMixerPulseDevice *device, - MateMixerDeviceProfile *profile); +const GList *mate_mixer_pulse_device_get_ports (MateMixerDevice *device); +const GList *mate_mixer_pulse_device_get_profiles (MateMixerDevice *device); -gboolean mate_mixer_pulse_device_update (MateMixerPulseDevice *device, - const pa_card_info *info); +MateMixerDeviceProfile *mate_mixer_pulse_device_get_active_profile (MateMixerDevice *device); + +gboolean mate_mixer_pulse_device_set_active_profile (MateMixerDevice *device, + MateMixerDeviceProfile *profile); G_END_DECLS |