FreeCalypso > hg > fc-magnetite
comparison src/aci2/bmi/mmiSimToolkit.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/MmiSimToolkit.h@93999a60b835 |
children |
comparison
equal
deleted
inserted
replaced
119:b92a33c204b6 | 120:3c2acfa1a72f |
---|---|
1 /******************************************************************************* | |
2 | |
3 CONDAT (UK) | |
4 | |
5 ******************************************************************************** | |
6 | |
7 This software product is the property of Condat (UK) Ltd and may not be | |
8 disclosed to any third party without the express permission of the owner. | |
9 | |
10 ******************************************************************************** | |
11 | |
12 $Project name: Basic MMI | |
13 $Project code: BMI (6349) | |
14 $Module: MMI | |
15 $File: MmiSimToolkit.h | |
16 $Revision: 1.0 | |
17 | |
18 $Author: Condat(UK) | |
19 $Date: 25/10/00 | |
20 | |
21 ******************************************************************************** | |
22 | |
23 Description: | |
24 | |
25 This provides the root mofule for the basic MMI | |
26 | |
27 ******************************************************************************** | |
28 $History: MmiSimToolkit.h | |
29 | |
30 25/10/00 Original Condat(UK) BMI version. | |
31 | |
32 $End | |
33 | |
34 *******************************************************************************/ | |
35 | |
36 #ifndef _DEF_MMI_SAT_H_ | |
37 #define _DEF_MMI_SAT_H_ | |
38 | |
39 #include "mfw_mfw.h" | |
40 | |
41 /* | |
42 * External Interfaces | |
43 */ | |
44 | |
45 USHORT sim_toolkit_check (struct MfwMnuTag *m, struct MfwMnuAttrTag *ma, struct MfwMnuItemTag *mi); | |
46 extern void simToolkitInit(T_MFW_HND parentWindow); | |
47 extern void simToolkitExit(void); | |
48 void sat_add_unicode_tag_if_needed(char* string); /*SPR 1257, added new function for unicode handling*/ | |
49 void set_sat_redial_flag(UBYTE flag); /* SPR#1784 - DS - Added prototype */ | |
50 UBYTE get_sat_redial_flag(void); /* SPR#1784 - DS - Added prototype */ | |
51 | |
52 // ADDED - RAVI - 25-11-2005 | |
53 void sat_release_the_editor (void); | |
54 // END - RAVI | |
55 | |
56 | |
57 #endif /* _DEF_MMI_SAT_H_ */ | |
58 |