diff options
author | Dimitris Papastamos <sin@2f30.org> | 2016-06-21 18:28:41 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2016-06-22 08:44:47 +0200 |
commit | 171da7a347f131117d17afb8315208fc6bc7322b (patch) | |
tree | f1b3af0a0620cacdaf338e653dcd6785df0bb78f /src/output/plugins/SndioOutputPlugin.hxx | |
parent | 3fd70a769a860c0b8aba8efe5a84b548dec44ed9 (diff) |
Add sndio output plugin
Diffstat (limited to 'src/output/plugins/SndioOutputPlugin.hxx')
-rw-r--r-- | src/output/plugins/SndioOutputPlugin.hxx | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/output/plugins/SndioOutputPlugin.hxx b/src/output/plugins/SndioOutputPlugin.hxx new file mode 100644 index 000000000..d8db1f636 --- /dev/null +++ b/src/output/plugins/SndioOutputPlugin.hxx @@ -0,0 +1,25 @@ +/* + * Copyright (C) 2016 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 + * 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_SNDIO_OUTPUT_PLUGIN_HXX +#define MPD_SNDIO_OUTPUT_PLUGIN_HXX + +extern const struct AudioOutputPlugin sndio_output_plugin; + +#endif |