1 #ifndef _CORONA_32
2 #define _CORONA_32
3 
4 /*
5  * This file is released under the GNU General Public Licence
6  *
7  * authors:
8  * Richard Ashbury       <richard.asbury@btinternet.com>
9  * Jean-Christophe Hoelt <jeko@ios-software.com>
10  */
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 typedef struct _Corona32 Corona32;
17 
18 Corona32 *corona32_new(void);
19 void      corona32_delete(Corona32 *_this);
20 
21 void      corona32_resize(Corona32 *_this, int widht, int height);
22 void      corona32_update(Corona32 *_this, int timeInMilli, short frequency[2][512]);
23 void      corona32_displayRGBA(Corona32 *_this, int *screen);
24 
25 #ifdef __cplusplus
26 };
27 #endif
28 
29 #endif
30