comparison src/ui/bmi/mmiNetwork.h @ 116:5f0ddadda653

mmiNetwork.h: bogotab fixes
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 09 Nov 2020 01:46:04 +0000
parents c0052fe355d3
children
comparison
equal deleted inserted replaced
115:320fdf90f1c4 116:5f0ddadda653
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
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
98 /* 98 /*
99 * Menu entries 99 * Menu entries
100 */ 100 */
101 int network_set_mode_auto (T_MFW_MNU * m, T_MFW_MNU_ITEM * mi); 101 int network_set_mode_auto (T_MFW_MNU * m, T_MFW_MNU_ITEM * mi);
102 int network_set_mode_man (T_MFW_MNU * m, T_MFW_MNU_ITEM * mi); 102 int network_set_mode_man (T_MFW_MNU * m, T_MFW_MNU_ITEM * mi);
103 int network_pref_list (T_MFW_MNU * m, T_MFW_MNU_ITEM * mi); 103 int network_pref_list (T_MFW_MNU * m, T_MFW_MNU_ITEM * mi);
104 int network_log_on (T_MFW_MNU * m, T_MFW_MNU_ITEM * mi); 104 int network_log_on (T_MFW_MNU * m, T_MFW_MNU_ITEM * mi);
105 int network_log_off (T_MFW_MNU * m, T_MFW_MNU_ITEM * mi); 105 int network_log_off (T_MFW_MNU * m, T_MFW_MNU_ITEM * mi);
106 int settingsNITZ (T_MFW_MNU *m, T_MFW_MNU_ITEM *i);//x0066814 106 int settingsNITZ (T_MFW_MNU *m, T_MFW_MNU_ITEM *i);//x0066814
107 107
108 USHORT nm_flag_log_on (T_MFW_MNU * m, T_MFW_MNU_ATTR * ma, T_MFW_MNU_ITEM * mi); 108 USHORT nm_flag_log_on (T_MFW_MNU * m, T_MFW_MNU_ATTR * ma, T_MFW_MNU_ITEM * mi);
117 #ifdef FF_CPHS 117 #ifdef FF_CPHS
118 UBYTE getRoamingStatus(void); 118 UBYTE getRoamingStatus(void);
119 #endif 119 #endif
120 120
121 #endif 121 #endif
122