Defined a stub glk_schannel_struct to fix another regression
[rodin/chimara.git] / libchimara / schannel.h
1 #ifndef __SCHANNEL_H__
2 #define __SCHANNEL_H__
3
4 #include <glib.h>
5 #include "glk.h"
6 #include "gi_dispa.h"
7
8 struct glk_schannel_struct
9 {
10         /*< private >*/
11         glui32 magic, rock;
12         gidispatch_rock_t disprock;
13         /* Pointer to the list node in the global sound channel list that contains 
14          this sound channel */
15         GList *schannel_list;
16 };
17
18 #endif