comparison src/aci2/bmi/mmiGame.h @ 120:3c2acfa1a72f

src/aci2/bmi: file renames to make filename case consistent
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 07 Oct 2016 03:46:05 +0000
parents src/aci2/bmi/Mmigame.h@93999a60b835
children
comparison
equal deleted inserted replaced
119:b92a33c204b6 120:3c2acfa1a72f
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