aboutsummaryrefslogtreecommitdiffstats
path: root/src/output/OutputList.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-01-28 11:22:27 +0100
committerMax Kellermann <max@duempel.org>2014-01-28 11:33:15 +0100
commite0dc721324f34d8b3803dce64545871aec42e537 (patch)
tree5cc5177d022bf337e2dcc80ef1cc5a88f70d8fba /src/output/OutputList.hxx
parent2f873edc9c61a55c7a524a48f16cb197cd08b37d (diff)
downloadmpd-e0dc721324f34d8b3803dce64545871aec42e537.tar.gz
mpd-e0dc721324f34d8b3803dce64545871aec42e537.tar.xz
mpd-e0dc721324f34d8b3803dce64545871aec42e537.zip
OutputPlugin: rename struct audio_output_plugin to AudioOutputPlugin
Diffstat (limited to 'src/output/OutputList.hxx')
-rw-r--r--src/output/OutputList.hxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/output/OutputList.hxx b/src/output/OutputList.hxx
index dfcf7487c..bc9c1ae2b 100644
--- a/src/output/OutputList.hxx
+++ b/src/output/OutputList.hxx
@@ -20,13 +20,15 @@
#ifndef MPD_OUTPUT_LIST_HXX
#define MPD_OUTPUT_LIST_HXX
-extern const struct audio_output_plugin *const audio_output_plugins[];
+struct AudioOutputPlugin;
-const struct audio_output_plugin *
-audio_output_plugin_get(const char *name);
+extern const AudioOutputPlugin *const audio_output_plugins[];
+
+const AudioOutputPlugin *
+AudioOutputPlugin_get(const char *name);
#define audio_output_plugins_for_each(plugin) \
- for (const struct audio_output_plugin *plugin, \
+ for (const AudioOutputPlugin *plugin, \
*const*output_plugin_iterator = &audio_output_plugins[0]; \
(plugin = *output_plugin_iterator) != nullptr; ++output_plugin_iterator)