FreeCalypso > hg > fc-tourmaline
comparison src/ui/bmi/mmiNetwork.h @ 92:c0052fe355d3
src/ui/bmi/*.[ch]: rm trailing white space
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 08 Nov 2020 06:39:16 +0000 |
parents | 67bfe9f274f6 |
children | 5f0ddadda653 |
comparison
equal
deleted
inserted
replaced
91:c3d28a37caad | 92:c0052fe355d3 |
---|---|
1 /******************************************************************************* | 1 /******************************************************************************* |
2 | 2 |
3 CONDAT (UK) | 3 CONDAT (UK) |
4 | 4 |
5 ******************************************************************************** | 5 ******************************************************************************** |
6 | 6 |
7 This software product is the property of Condat (UK) Ltd and may not be | 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. | 8 disclosed to any third party without the express permission of the owner. |
9 | 9 |
10 ******************************************************************************** | 10 ******************************************************************************** |
11 | 11 |
12 $Project name: Basic MMI | 12 $Project name: Basic MMI |
13 $Project code: BMI (6349) | 13 $Project code: BMI (6349) |
14 $Module: | 14 $Module: |
15 $File: MmiNetwork.h | 15 $File: MmiNetwork.h |
16 $Revision: 1.0 | 16 $Revision: 1.0 |
17 | 17 |
18 $Author: Condat(UK) | 18 $Author: Condat(UK) |
19 $Date: 25/10/00 | 19 $Date: 25/10/00 |
20 | 20 |
21 ******************************************************************************** | 21 ******************************************************************************** |
22 | 22 |
23 Description: | 23 Description: |
24 | 24 |
25 | 25 |
26 ******************************************************************************** | 26 ******************************************************************************** |
27 Jun 23, 2006 DR: OMAPS00082374 x0pleela | 27 Jun 23, 2006 DR: OMAPS00082374 x0pleela |
28 Description: EONS Failures - unexpected output from the MMI: 2 carriers; on the top always T-Mobile | 28 Description: EONS Failures - unexpected output from the MMI: 2 carriers; on the top always T-Mobile |
29 Solution:a) Changed the size of SIZE_NETWORK_NAME from 6 to 7 | 29 Solution:a) Changed the size of SIZE_NETWORK_NAME from 6 to 7 |
30 | 30 |
31 | 31 |
32 ******************************************************************************* | 32 ******************************************************************************* |
33 | 33 |
34 Required Include Files | 34 Required Include Files |
35 | 35 |
36 *******************************************************************************/ | 36 *******************************************************************************/ |
37 | 37 |
38 | 38 |
39 #ifndef _DEF_MMI_NETWORK_H_ | 39 #ifndef _DEF_MMI_NETWORK_H_ |
40 #define _DEF_MMI_NETWORK_H_ | 40 #define _DEF_MMI_NETWORK_H_ |
64 * | 64 * |
65 * NETWORK_NO_PLMN_XXX_AVAIL: no parameter | 65 * NETWORK_NO_PLMN_XXX_AVAIL: no parameter |
66 * | 66 * |
67 * The network has enabled network logging, but this network is not available. The logged | 67 * The network has enabled network logging, but this network is not available. The logged |
68 * network can be requested by the function network_get_plmn. | 68 * network can be requested by the function network_get_plmn. |
69 * | 69 * |
70 */ | 70 */ |
71 #define SIZE_PLMN_NAME 20 | 71 #define SIZE_PLMN_NAME 20 |
72 #define SIZE_NETWORK_NAME 7 //x0pleela 23 June, 2006 DR:OMAPS00082374 | 72 #define SIZE_NETWORK_NAME 7 //x0pleela 23 June, 2006 DR:OMAPS00082374 |
73 | 73 |
74 typedef struct | 74 typedef struct |
75 { | 75 { |
76 UBYTE plmn_name [SIZE_PLMN_NAME]; /* textual format of PLMN */ | 76 UBYTE plmn_name [SIZE_PLMN_NAME]; /* textual format of PLMN */ |
77 UBYTE network_name [SIZE_NETWORK_NAME]; /* numeric format of PLMN */ | 77 UBYTE network_name [SIZE_NETWORK_NAME]; /* numeric format of PLMN */ |
78 UBYTE service_provider_name[SP_NAME]; /* Marcus: Issue 1618: 24/01/2003 */ | 78 UBYTE service_provider_name[SP_NAME]; /* Marcus: Issue 1618: 24/01/2003 */ |
79 UBYTE roaming_indicator; /* Roaming Indicator */ | 79 UBYTE roaming_indicator; /* Roaming Indicator */ |
80 } T_CURRENT_NETWORK; | 80 } T_CURRENT_NETWORK; |
81 | 81 |
82 #ifdef FF_TIMEZONE | 82 #ifdef FF_TIMEZONE |
83 typedef enum | 83 typedef enum |
84 { | 84 { |
85 NitzAutomatic=0, | 85 NitzAutomatic=0, |
86 NitzOn, | 86 NitzOn, |
87 NitzOff | 87 NitzOff |
88 } T_NITZ_UPDATE; | 88 } T_NITZ_UPDATE; |