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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if !defined(__AUDIO_ORCHESTRA_API_PULSE_DEVICE_H__) && defined(ORCHESTRA_BUILD_PULSE)
|
|
|
|
#define __AUDIO_ORCHESTRA_API_PULSE_DEVICE_H__
|
|
|
|
|
|
|
|
#include <etk/types.h>
|
2015-06-14 18:32:08 +02:00
|
|
|
#include <audio/orchestra/DeviceInfo.h>
|
2015-06-13 11:50:30 +02:00
|
|
|
|
|
|
|
namespace audio {
|
|
|
|
namespace orchestra {
|
|
|
|
namespace api {
|
|
|
|
namespace pulse {
|
2015-06-14 18:32:08 +02:00
|
|
|
std::vector<audio::orchestra::DeviceInfo> getDeviceList();
|
2015-06-13 11:50:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|