1 /**
2  * DinkC script engine
3 
4  * Copyright (C) 1997, 1998, 1999, 2002, 2003  Seth A. Robinson
5  * Copyright (C) 2005, 2007, 2008  Sylvain Beucler
6 
7  * This file is part of GNU FreeDink
8 
9  * GNU FreeDink is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License as
11  * published by the Free Software Foundation; either version 3 of the
12  * License, or (at your option) any later version.
13 
14  * GNU FreeDink is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * General Public License for more details.
18 
19  * You should have received a copy of the GNU General Public License
20  * along with this program.  If not, see
21  * <http://www.gnu.org/licenses/>.
22  */
23 
24 #ifndef _BGM_H
25 #define _BGM_H
26 
27 extern int last_cd_track;
28 
29 extern int cdplaying();
30 extern int killcd();
31 extern int PlayCD(int cd_track);
32 extern int something_playing(void);
33 extern int PlayMidi(char *sFileName);
34 extern int PauseMidi();
35 extern int ResumeMidi();
36 extern int StopMidi();
37 extern int ReplayMidi();
38 extern void check_midi();
39 extern void bgm_init(void);
40 extern void bgm_quit(void);
41 extern void loopmidi(int loop_midi);
42 
43 #endif
44