2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2009-02-10 18:51:42 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Protocol specific code for the audio output library.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-01-03 10:58:39 +01:00
|
|
|
#ifndef MPD_OUTPUT_PRINT_HXX
|
|
|
|
#define MPD_OUTPUT_PRINT_HXX
|
2009-02-10 18:51:42 +01:00
|
|
|
|
2015-08-06 22:10:25 +02:00
|
|
|
class Response;
|
2014-01-27 08:20:25 +01:00
|
|
|
class MultipleOutputs;
|
2009-02-10 18:51:42 +01:00
|
|
|
|
|
|
|
void
|
2015-08-06 22:10:25 +02:00
|
|
|
printAudioDevices(Response &r, const MultipleOutputs &outputs);
|
2009-02-10 18:51:42 +01:00
|
|
|
|
|
|
|
#endif
|