1 extern int  which_suicide(
2 #ifndef _NO_PROTO
3 playerp player
4 #endif
5 );
6 
7 extern int  do_or_die_sw(
8 #ifndef _NO_PROTO
9 playerp player
10 #endif
11 );
12 
13 extern int  stronger_attack(
14 #ifndef _NO_PROTO
15 playerp player
16 #endif
17 );
18 
19 extern int  weaker_attack(
20 #ifndef _NO_PROTO
21 playerp player
22 #endif
23 );
24 
25 extern int  show_do_or_die(
26 #ifndef _NO_PROTO
27 playerp player
28 #endif
29 );
30 
31 extern int  show_att_force(
32 #ifndef _NO_PROTO
33 playerp player
34 #endif
35 );
36 
37 extern int  show_exit_text(
38 #ifndef _NO_PROTO
39 playerp player
40 #endif
41 );
42 
43 extern int  show_mission(
44 #ifndef _NO_PROTO
45 playerp player
46 #endif
47 );
48 
49 extern int  write_misson(
50 #ifndef _NO_PROTO
51 playerp player
52 #endif
53 );
54 
55 extern int  clear_mission(
56 #ifndef _NO_PROTO
57 playerp player
58 #endif
59 );
60 
61 extern int  refresh(
62 #ifndef _NO_PROTO
63 playerp player
64 #endif
65 );
66 
67 extern int  show_refresh(
68 #ifndef _NO_PROTO
69 playerp player
70 #endif
71 );
72 
73 extern int  show_write_line(
74 #ifndef _NO_PROTO
75 playerp player
76 #endif
77 );
78 
79 static struct Actions_Other_Win actions_menu_but[]=
80 {
81 /*Window	,mB1-func	,mB1-next_1	,mB1-next_2	,mB2-func	,mB2-next_1	,mB2-next_2	,mB3-func	,mB3-next_1	,mB3-next_2	,*/
82 {MENU_EXIT      ,{{which_suicide,{END_GAME	,CLOSE_GAME   }},{show_exit_text  ,{DUMMY_FUNC	,DUMMY_FUNC   }},{NULL	        ,{DUMMY_FUNC	,DUMMY_FUNC   }}}},
83 {MENU_DO_DIE    ,{{do_or_die_sw	,{DUMMY_FUNC	,DUMMY_FUNC   }},{show_do_or_die  ,{DUMMY_FUNC	,DUMMY_FUNC   }},{do_or_die_sw	,{DUMMY_FUNC	,DUMMY_FUNC   }}}},
84 {MENU_ATT_FORCE ,{{stronger_attack,{DUMMY_FUNC	,DUMMY_FUNC   }},{show_att_force  ,{DUMMY_FUNC	,DUMMY_FUNC   }},{weaker_attack	,{DUMMY_FUNC	,DUMMY_FUNC   }}}},
85 {MENU_MISSION   ,{{write_misson	,{DUMMY_FUNC	,DUMMY_FUNC   }},{show_mission	  ,{DUMMY_FUNC	,DUMMY_FUNC   }},{clear_mission	,{DUMMY_FUNC	,DUMMY_FUNC   }}}},
86 {MENU_REFRESH   ,{{refresh	,{DUMMY_FUNC	,DUMMY_FUNC   }},{show_refresh	  ,{DUMMY_FUNC	,DUMMY_FUNC   }},{refresh	,{DUMMY_FUNC	,DUMMY_FUNC   }}}},
87 {MENU_WRITE     ,{{NULL		,{DUMMY_FUNC	,DUMMY_FUNC   }},{show_write_line ,{DUMMY_FUNC	,DUMMY_FUNC   }},{NULL		,{DUMMY_FUNC	,DUMMY_FUNC   }}}}
88 };
89