diff options
author | François Revol <revol@free.fr> | 2015-09-17 22:18:16 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-09-17 22:46:46 +0200 |
commit | 7743647460575fd9ea4d5e29e5a23e3faf56c58c (patch) | |
tree | 345a617582882dbe72170e4f09248fcb0867b940 /src/output/plugins/HaikuOutputPlugin.hxx | |
parent | 352ec364f02aaf40fee571a1f7258cb3be0c17f3 (diff) | |
download | mpd-7743647460575fd9ea4d5e29e5a23e3faf56c58c.tar.gz mpd-7743647460575fd9ea4d5e29e5a23e3faf56c58c.tar.xz mpd-7743647460575fd9ea4d5e29e5a23e3faf56c58c.zip |
output: add native Haiku audio output and mixer support
Also uses the notification system to display tags.
Diffstat (limited to '')
-rw-r--r-- | src/output/plugins/HaikuOutputPlugin.hxx | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/output/plugins/HaikuOutputPlugin.hxx b/src/output/plugins/HaikuOutputPlugin.hxx new file mode 100644 index 000000000..fb85d4b83 --- /dev/null +++ b/src/output/plugins/HaikuOutputPlugin.hxx @@ -0,0 +1,34 @@ +/* + * Copyright (C) 2003-2015 The Music Player Daemon Project + * http://www.musicpd.org + * Copyright (C) 2014-2015 François 'mmu_man' Revol + * + * 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 + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifndef MPD_HAIKU_OUTPUT_PLUGIN_HXX +#define MPD_HAIKU_OUTPUT_PLUGIN_HXX + +class HaikuOutput; + +extern const struct AudioOutputPlugin haiku_output_plugin; + +int +haiku_output_get_volume(HaikuOutput &haiku); + +bool +haiku_output_set_volume(HaikuOutput &haiku, unsigned volume); + +#endif |