2015-06-13 11:50:30 +02:00
|
|
|
/** @file
|
|
|
|
* @author Edouard DUPIN
|
|
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
|
|
* @license APACHE v2.0 (see license file)
|
|
|
|
* @fork from RTAudio
|
|
|
|
*/
|
2016-02-02 21:18:54 +01:00
|
|
|
#pragma once
|
|
|
|
#ifdef ORCHESTRA_BUILD_PULSE
|
2015-06-13 11:50:30 +02:00
|
|
|
|
2016-10-02 22:06:09 +02:00
|
|
|
#include <etk/types.hpp>
|
|
|
|
#include <audio/orchestra/DeviceInfo.hpp>
|
2015-06-13 11:50:30 +02:00
|
|
|
|
|
|
|
namespace audio {
|
|
|
|
namespace orchestra {
|
|
|
|
namespace api {
|
|
|
|
namespace pulse {
|
2017-08-28 00:08:41 +02:00
|
|
|
etk::Vector<audio::orchestra::DeviceInfo> getDeviceList();
|
2015-06-13 11:50:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|