2006-07-13 21:20:34 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
2007-04-05 05:22:33 +02:00
|
|
|
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
|
2006-07-13 21:20:34 +02:00
|
|
|
* This project's homepage is: 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2004-10-28 07:14:55 +02:00
|
|
|
#include "audioOutput.h"
|
2008-09-07 22:41:22 +02:00
|
|
|
#include "output_api.h"
|
2008-09-08 11:43:13 +02:00
|
|
|
#include "output_list.h"
|
2004-10-10 15:51:33 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
void printAllOutputPluginTypes(FILE * fp)
|
|
|
|
{
|
2008-09-08 11:43:13 +02:00
|
|
|
unsigned i;
|
|
|
|
const struct audio_output_plugin *plugin;
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2008-09-08 11:43:13 +02:00
|
|
|
audio_output_plugins_for_each(plugin, i)
|
2006-07-31 01:32:39 +02:00
|
|
|
fprintf(fp, "%s ", plugin->name);
|
2008-09-08 11:43:13 +02:00
|
|
|
|
2006-07-31 01:32:39 +02:00
|
|
|
fprintf(fp, "\n");
|
|
|
|
fflush(fp);
|
2006-07-16 16:57:26 +02:00
|
|
|
}
|