FreeCalypso > hg > fc-magnetite
comparison src/aci2/bmi/Mmigame.h @ 3:93999a60b835
src/aci2, src/condat2: import of g23m/condat source pieces from TCS211
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 26 Sep 2016 00:29:36 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
2:c41a534f33c6 | 3:93999a60b835 |
---|---|
1 #ifndef _MMI_GAME_H_ | |
2 #define _MMI_GAME_H_ | |
3 | |
4 /******************************************************************************* | |
5 | |
6 CONDAT (UK) | |
7 | |
8 ******************************************************************************** | |
9 | |
10 This software product is the property of Condat (UK) Ltd and may not be | |
11 disclosed to any third party without the express permission of the owner. | |
12 | |
13 ******************************************************************************** | |
14 | |
15 $Project name: Basic MMI | |
16 $Project code: BMI (6349) | |
17 $Module: Calculator | |
18 $File: Mmigame.h | |
19 $Revision: 1.0 | |
20 | |
21 $Author: Condat(UK) | |
22 $Date: 03/07/01 | |
23 | |
24 ******************************************************************************** | |
25 | |
26 Description: | |
27 | |
28 This provides the main game functionality | |
29 | |
30 ******************************************************************************** | |
31 | |
32 ******************************************************************************* | |
33 | |
34 Include files | |
35 | |
36 *******************************************************************************/ | |
37 | |
38 | |
39 extern T_MFW_HND four_in_a_row_create(MfwHnd parent); | |
40 //extern void melody_generator_destroy (void); | |
41 extern void four_in_a_row (T_MFW_HND win, USHORT event, SHORT value, void * parameter); | |
42 extern int four_in_a_row_kbd_cb (MfwEvt e, MfwKbd *k); | |
43 extern int four_in_a_row_win_cb (MfwEvt e, MfwWin *w); | |
44 extern T_MFW_HND four_in_a_row_start (T_MFW_HND win_parent,char *character); | |
45 | |
46 /******************************************************************************* | |
47 | |
48 Interface types | |
49 | |
50 *******************************************************************************/ | |
51 typedef enum | |
52 { | |
53 SHOWGAMEINFO_INIT | |
54 } GameInfo_events; | |
55 | |
56 /******************************************************************************* | |
57 | |
58 Public methods | |
59 | |
60 *******************************************************************************/ | |
61 | |
62 /* pretty standard initialise, execute and exit methods | |
63 */ | |
64 int four_in_a_row_aktivate(MfwMnu* m, MfwMnuItem* i); | |
65 | |
66 /******************************************************************************* | |
67 | |
68 End of File | |
69 | |
70 *******************************************************************************/ | |
71 | |
72 #endif | |
73 |