comparison src/ui/bmi/mmiMmi.h @ 65:482ce95bc49c

mmiMmi.h: white space fixes
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 23 Oct 2020 00:46:47 +0000
parents 67bfe9f274f6
children 62480f597962
comparison
equal deleted inserted replaced
64:6724664925c9 65:482ce95bc49c
1 #ifndef _MMIMMI_H_ 1 #ifndef _MMIMMI_H_
2 #define _MMIMMI_H_ 1 2 #define _MMIMMI_H_ 1
3 3
4 /******************************************************************************* 4 /*******************************************************************************
5 5
6 CONDAT (UK) 6 CONDAT (UK)
7 7
8 ******************************************************************************** 8 ********************************************************************************
9 9
10 This software product is the property of Condat (UK) Ltd and may not be 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. 11 disclosed to any third party without the express permission of the owner.
12 12
13 ******************************************************************************** 13 ********************************************************************************
14 14
15 $Project name: Basic MMI 15 $Project name: Basic MMI
16 $Project code: BMI (6349) 16 $Project code: BMI (6349)
17 $Module: MMI 17 $Module: MMI
18 $File: MmiMmi.h 18 $File: MmiMmi.h
19 $Revision: 1.0 19 $Revision: 1.0
20 20
21 $Author: Condat(UK) 21 $Author: Condat(UK)
22 $Date: 25/10/00 22 $Date: 25/10/00
23 23
24 ******************************************************************************** 24 ********************************************************************************
25 25
26 Description: 26 Description:
27 27
28 This provides the root mofule for the basic MMI 28 This provides the root mofule for the basic MMI
29 29
30 ******************************************************************************** 30 ********************************************************************************
31 $History: MmiMmi.h 31 $History: MmiMmi.h
32 32
33 25/10/00 Original Condat(UK) BMI version. 33 25/10/00 Original Condat(UK) BMI version.
34 34
35 $End 35 $End
36 36
37 *******************************************************************************/ 37 *******************************************************************************/
38 #include "MmiResources.h" //for screen size 38 #include "MmiResources.h" //for screen size
39 #include "mfw_win.h" //for MfwWinAttr definition 39 #include "mfw_win.h" //for MfwWinAttr definition
40 40
41 41
42 /******************************************************************************* 42 /*******************************************************************************
43 43
44 Type definitions 44 Type definitions
45 45
46 *******************************************************************************/ 46 *******************************************************************************/
47 47
48 48
49 typedef void ( *MmiState )( int, void( * ) ( ) ); 49 typedef void ( *MmiState )( int, void( * ) ( ) );
50 50
51 51
52 52
53 53
54 /******************************************************************************* 54 /*******************************************************************************
55 55
56 Definitions provided by the root module 56 Definitions provided by the root module
57 57
58 *******************************************************************************/ 58 *******************************************************************************/
59 59
60 /* Identifier ranges for applications. These are used to isolate 60 /* Identifier ranges for applications. These are used to isolate
61 particular message numbers for particular applications, hence 61 particular message numbers for particular applications, hence
62 preventing a rogue message being handled incorrectly. 62 preventing a rogue message being handled incorrectly.
63 */ 63 */
64 #define MenuDummy 0 64 #define MenuDummy 0
65 #define ExtrasDummy 50 65 #define ExtrasDummy 50
66 #define StartDummy 100 66 #define StartDummy 100
67 #define IdleDummy 200 67 #define IdleDummy 200
68 #define GlobalDummy 300 68 #define GlobalDummy 300
69 #define ServicesDummy 400 69 #define ServicesDummy 400
70 #define SoundsDummy 500 70 #define SoundsDummy 500
71 #define TimeDateDummy 600 71 #define TimeDateDummy 600
72 #define PhbkDummy 700 72 #define PhbkDummy 700
73 #define OrganiserDummy 800 73 #define OrganiserDummy 800
74 #define CallDummy 900 74 #define CallDummy 900
75 #define PinsDummy 1000 75 #define PinsDummy 1000
76 #define SatDummy 1100 76 #define SatDummy 1100
77 #define DialogsDummy 1200 77 #define DialogsDummy 1200
78 #define MsgsDummy 1300 78 #define MsgsDummy 1300
79 79
80 80
81 81
82 /* Define window areas 82 /* Define window areas
83 */ 83 */
97 97
98 98
99 99
100 100
101 /******************************************************************************* 101 /*******************************************************************************
102 102
103 Global data elements 103 Global data elements
104 104
105 *******************************************************************************/ 105 *******************************************************************************/
106 106
107 /* Root module attribute structures 107 /* Root module attribute structures
108 */ 108 */
109 extern MfwWinAttr g_MainWin; 109 extern MfwWinAttr g_MainWin;
119 extern UBYTE globalMobileMode; 119 extern UBYTE globalMobileMode;
120 120
121 121
122 122
123 /******************************************************************************* 123 /*******************************************************************************
124 124
125 Public Prototypes 125 Public Prototypes
126 126
127 *******************************************************************************/ 127 *******************************************************************************/
128 128
129 void mmi_main (void); /* initial entry point */ 129 void mmi_main (void); /* initial entry point */
130 void mmiInit (void); /* init MMI */ 130 void mmiInit (void); /* init MMI */
131 void mmiExit (void); /* exit MMI */ 131 void mmiExit (void); /* exit MMI */
132 132
133 133
134 134
135 /******************************************************************************* 135 /*******************************************************************************
136 136
137 End Of File 137 End Of File
138 138
139 *******************************************************************************/ 139 *******************************************************************************/
140 140
141 #endif 141 #endif
142 142