diff options
author | Max Kellermann <max@duempel.org> | 2013-08-04 23:48:01 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-08-04 23:48:01 +0200 |
commit | 85b77b81caa40f8bcd03921380246cb5863d5d21 (patch) | |
tree | cf4bc60a6760c52bcbd642a253b45f3bc5ad8775 /src/mixer/AlsaMixerPlugin.cxx | |
parent | 5bf2ec5a74bb1247a8cc84e90577eecbee116c62 (diff) | |
download | mpd-85b77b81caa40f8bcd03921380246cb5863d5d21.tar.gz mpd-85b77b81caa40f8bcd03921380246cb5863d5d21.tar.xz mpd-85b77b81caa40f8bcd03921380246cb5863d5d21.zip |
*: use gcc.h macros instead of GLib
Diffstat (limited to 'src/mixer/AlsaMixerPlugin.cxx')
-rw-r--r-- | src/mixer/AlsaMixerPlugin.cxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mixer/AlsaMixerPlugin.cxx b/src/mixer/AlsaMixerPlugin.cxx index 31e9997e3..8f7cd608e 100644 --- a/src/mixer/AlsaMixerPlugin.cxx +++ b/src/mixer/AlsaMixerPlugin.cxx @@ -73,6 +73,7 @@ public: /** * The quark used for GError.domain. */ +gcc_const static inline GQuark alsa_mixer_quark(void) { @@ -124,7 +125,7 @@ AlsaMixerMonitor::DispatchSockets() */ static int -alsa_mixer_elem_callback(G_GNUC_UNUSED snd_mixer_elem_t *elem, unsigned mask) +alsa_mixer_elem_callback(gcc_unused snd_mixer_elem_t *elem, unsigned mask) { if (mask & SND_CTL_EVENT_MASK_VALUE) GlobalEvents::Emit(GlobalEvents::MIXER); @@ -149,8 +150,8 @@ AlsaMixer::Configure(const config_param ¶m) } static Mixer * -alsa_mixer_init(G_GNUC_UNUSED void *ao, const config_param ¶m, - G_GNUC_UNUSED GError **error_r) +alsa_mixer_init(gcc_unused void *ao, const config_param ¶m, + gcc_unused GError **error_r) { AlsaMixer *am = new AlsaMixer(); am->Configure(param); @@ -169,7 +170,7 @@ alsa_mixer_finish(Mixer *data) snd_config_update_free_global(); } -G_GNUC_PURE +gcc_pure static snd_mixer_elem_t * alsa_mixer_lookup_elem(snd_mixer_t *handle, const char *name, unsigned idx) { |