comparison src/ui/bmi/mmiSmsBroadcast.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 073242ccbb63
comparison
equal deleted inserted replaced
91:c3d28a37caad 92:c0052fe355d3
95 CHAR name[CB_TAG_LENGTH]; /* Alphanumeric message tag. */ 95 CHAR name[CB_TAG_LENGTH]; /* Alphanumeric message tag. */
96 CHAR * text; /* Pointer to cell broadcast msg */ 96 CHAR * text; /* Pointer to cell broadcast msg */
97 } T_SMS_CB_ATT; 97 } T_SMS_CB_ATT;
98 98
99 /* Cell Broadcast message list. */ 99 /* Cell Broadcast message list. */
100 typedef struct 100 typedef struct
101 { 101 {
102 int length; /* actual number of entries */ 102 int length; /* actual number of entries */
103 T_SMS_CB_ATT entry[MAX_MIDS]; 103 T_SMS_CB_ATT entry[MAX_MIDS];
104 } T_SMSCB_LIST; 104 } T_SMSCB_LIST;
105 105
106 /* Cell Broadcast topics attributes. */ 106 /* Cell Broadcast topics attributes. */
107 typedef struct 107 typedef struct
108 { 108 {
109 USHORT msg_id; /* Message identifier. */ 109 USHORT msg_id; /* Message identifier. */
110 SHORT dcs; /* data coding scheme */ 110 SHORT dcs; /* data coding scheme */
111 char name [CB_TAG_LENGTH];/* Alphanumeric message tag. */ 111 char name [CB_TAG_LENGTH];/* Alphanumeric message tag. */
112 } T_SMSCB_TOPICS_ENTRY; 112 } T_SMSCB_TOPICS_ENTRY;
113 113
114 /* Cell Broadcast topics list. */ 114 /* Cell Broadcast topics list. */
115 typedef struct 115 typedef struct
116 { 116 {
117 int length; /* actual number of entries */ 117 int length; /* actual number of entries */
118 T_SMSCB_TOPICS_ENTRY entry[MAX_MIDS]; 118 T_SMSCB_TOPICS_ENTRY entry[MAX_MIDS];
119 } T_SMSCB_TOPICS; 119 } T_SMSCB_TOPICS;
120 120
121 /*SPR 1920, removed defn of T_SMSCB_CLASS_0_MSG, not used*/ 121 /*SPR 1920, removed defn of T_SMSCB_CLASS_0_MSG, not used*/
122 /* class 0 Cell Broadcast Message */ 122 /* class 0 Cell Broadcast Message */
123 /* storage for Cell Broadcast lists */ 123 /* storage for Cell Broadcast lists */
124 typedef struct 124 typedef struct
125 { 125 {
126 T_SMSCB_TOPICS CBTopics; /* list of topics to be received */ 126 T_SMSCB_TOPICS CBTopics; /* list of topics to be received */
127 /*SPR 1920 removed SmsCbInfo, smsCBList, and Class0CBMessage from structure*/ 127 /*SPR 1920 removed SmsCbInfo, smsCBList, and Class0CBMessage from structure*/
128 } T_SMSCB_DATASTORE; 128 } T_SMSCB_DATASTORE;
129 129
134 134
135 // The CB fifo is organized over the 135 // The CB fifo is organized over the
136 // link list. The "used_pointer" is giving the 136 // link list. The "used_pointer" is giving the
137 // starting point of the CB-fifo list. The "next_xxx" 137 // starting point of the CB-fifo list. The "next_xxx"
138 // is giving the link to the next pointer and so on. 138 // is giving the link to the next pointer and so on.
139 // used_pointer = FF means ->no cb messages stored 139 // used_pointer = FF means ->no cb messages stored
140 // next_used = FF means ->end of the cb messages list. 140 // next_used = FF means ->end of the cb messages list.
141 // free_pointer = FF means ->no free spaces ! 141 // free_pointer = FF means ->no free spaces !
142 // next_used = FF means ->end of the free spaces list 142 // next_used = FF means ->end of the free spaces list
143 143
144 /* Stored Cell Broadcast message attributes. */ 144 /* Stored Cell Broadcast message attributes. */