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.c | |
parent | caf4d9b8b8b0d26856d2d64f00ab23756867a923 (diff) | |
download | libmatemixer-4db8dc0cbb3959d6278a9e7650d5103a475ab897.tar.bz2 libmatemixer-4db8dc0cbb3959d6278a9e7650d5103a475ab897.tar.xz |
General additions and improvements
Diffstat (limited to 'backends/pulse/pulse.c')
-rw-r--r-- | backends/pulse/pulse.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/backends/pulse/pulse.c b/backends/pulse/pulse.c index e969dcf..d306577 100644 --- a/backends/pulse/pulse.c +++ b/backends/pulse/pulse.c @@ -41,7 +41,6 @@ struct _MateMixerPulsePrivate /* Support function for dynamic loading of the backend module */ void backend_module_init (GTypeModule *module); -void backend_module_free (void); const MateMixerBackendModuleInfo *backend_module_get_info (void); @@ -81,11 +80,6 @@ backend_module_init (GTypeModule *module) info.backend_type = MATE_MIXER_BACKEND_TYPE_PULSE; } -void -backend_module_free (void) -{ -} - const MateMixerBackendModuleInfo * backend_module_get_info (void) { @@ -95,9 +89,9 @@ backend_module_get_info (void) static void mate_mixer_backend_interface_init (MateMixerBackendInterface *iface) { - iface->open = mate_mixer_pulse_open; - iface->close = mate_mixer_pulse_close; - iface->list_devices = mate_mixer_pulse_list_devices; + iface->open = mate_mixer_pulse_open; + iface->close = mate_mixer_pulse_close; + iface->list_devices = mate_mixer_pulse_list_devices; } static void |