1 #ifndef __FESTAH_FESTALONH
2 #define __FESTAH_FESTALONH
3 
4 typedef struct {
5            int disabled;
6            int soundq;
7            int lowpass;
8 } FCEUS;
9 
10 typedef struct {
11         char *GameName, *Artist, *Copyright, *Ripper;
12 
13         char **SongNames;
14         int32 *SongLengths;
15         int32 *SongFades;
16 
17         int TotalSongs;
18         int StartingSong;
19 	int CurrentSong;
20         int TotalChannels;
21         int VideoSystem;
22 
23 	int OutChannels;
24         FCEUS FSettings;
25 
26 	void *nsf;
27 	void *hes;
28 } FESTALON;
29 
30 uint32 uppow2(uint32 n);
31 char *FESTA_FixString(char *);
32 
33 void *FESTA_malloc(uint32 align, uint32 total);
34 void FESTA_free(void *m);
35 
36 #endif
37