diff options
author | Max Kellermann <max@duempel.org> | 2011-09-17 08:54:28 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-09-17 19:51:41 +0200 |
commit | 3c9bcdd34701196c3d662888c3506a2a001cb252 (patch) | |
tree | 38d452f11a5d104e192cd1990947872e1713ea69 /src/output/roar_output_plugin.h | |
parent | 3934d2d30cf97271dc7b33e3b77b101f09f916e7 (diff) | |
download | mpd-3c9bcdd34701196c3d662888c3506a2a001cb252.tar.gz mpd-3c9bcdd34701196c3d662888c3506a2a001cb252.tar.xz mpd-3c9bcdd34701196c3d662888c3506a2a001cb252.zip |
output: per-plugin header
Move the "extern" declarations from output_list.c, for more type
safety.
Diffstat (limited to 'src/output/roar_output_plugin.h')
-rw-r--r-- | src/output/roar_output_plugin.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/output/roar_output_plugin.h b/src/output/roar_output_plugin.h index e6eff1e08..78b628cc4 100644 --- a/src/output/roar_output_plugin.h +++ b/src/output/roar_output_plugin.h @@ -1,7 +1,6 @@ /* - * Copyright (C) 2003-2010 The Music Player Daemon Project - * Copyright (C) 2010-2011 Philipp 'ph3-der-loewe' Schafft - * Copyright (C) 2010-2011 Hans-Kristian 'maister' Arntzen + * Copyright (C) 2003-2011 The Music Player Daemon Project + * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,14 +17,15 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - -#ifndef __ROAR_OUTPUT_H -#define __ROAR_OUTPUT_H +#ifndef MPD_ROAR_OUTPUT_PLUGIN_H +#define MPD_ROAR_OUTPUT_PLUGIN_H #include <stdbool.h> struct roar; +extern const struct audio_output_plugin roar_output_plugin; + int roar_output_get_volume(struct roar *roar); |