26 lines
348 B
C++
26 lines
348 B
C++
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license APACHE v2.0 (see license file)
|
|
*/
|
|
|
|
|
|
#ifndef __EWOLSA_H__
|
|
#define __EWOLSA_H__
|
|
|
|
#include <etk/types.h>
|
|
#include <audio/ess/effects.h>
|
|
#include <audio/ess/music.h>
|
|
|
|
namespace audio {
|
|
namespace ess {
|
|
void init();
|
|
void unInit();
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|