1 /*
2  * file menu_level.c - level selection menu
3  *
4  * $Id: menu_level.h,v 1.7 2006/02/10 15:07:42 fzago Exp $
5  *
6  * Program XBLAST
7  * (C) by Oliver Vogel (e-mail: m.vogel@ndh.net)
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published
11  * by the Free Software Foundation; either version 2; or (at your option)
12  * any later version
13  *
14  * This program is distributed in the hope that it will be entertaining,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILTY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
17  * Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License along
20  * with this program; if not, write to the Free Software Foundation, Inc.
21  * 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  */
23 #ifndef XBLAST_MENU_LEVEL_H
24 #define XBLAST_MENU_LEVEL_H
25 
26 /*
27  * type defintions
28  */
29 typedef struct
30 {
31 	const char *textAbort;
32 	MIC_button funcAbort;
33 	void *parAbort;
34 	const char *textDefault;
35 	MIC_button funcDefault;
36 	void *parDefault;
37 } XBMenuLevelPar;
38 
39 /*
40  * global prototypes
41  */
42 extern XBBool CreateLevelMenu (void *par);
43 extern void FinishLevelSelection (void);
44 
45 #endif
46 /*
47  * end of file menu_level.h
48  */
49