24 lines
332 B
C++
24 lines
332 B
C++
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license BSD 3 clauses (see license file)
|
|
*/
|
|
|
|
|
|
#ifndef __EWOLSA_H__
|
|
#define __EWOLSA_H__
|
|
|
|
#include <etk/types.h>
|
|
#include <ewolsa/effects.h>
|
|
#include <ewolsa/music.h>
|
|
|
|
namespace ewolsa {
|
|
void init(void);
|
|
void unInit(void);
|
|
};
|
|
|
|
#endif
|
|
|