14 lines
304 B
C++
Raw Normal View History

2015-02-09 21:44:32 +01:00
/** @file
* @author Edouard DUPIN
2014-03-12 23:55:49 +01:00
* @copyright 2011, Edouard DUPIN, all right reserved
2015-02-09 21:44:32 +01:00
* @license APACHE v2.0 (see license file)
* @fork from RTAudio
2014-03-12 23:55:49 +01:00
*/
#include <airtaudio/debug.h>
int32_t airtaudio::getLogId() {
2014-04-30 22:18:00 +02:00
static int32_t g_val = etk::log::registerInstance("airtaudio");
return g_val;
}