obigo03cadp.log
114 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
Module obigo03cadp is in DEFALUT mode
Compiling vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_cmn.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_cmn.c: 3 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_do_elem.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_do_elem.c: 3 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_env.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_env.c", line 829: Warning: #223-D: function "bam_sif_bearer_open_rsp_hdl" declared implicitly
bam_sif_bearer_open_rsp_hdl ((bam_bearer_open_rsp_struct*)p);
^
vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_env.c: 4 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_file.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_file.c: 3 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_hist.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_hist.c: 3 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_if.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_if.c", line 2944: Warning: #513-D: a value of type "MSF_UINT32 *" cannot be assigned to an entity of type "MSF_INT32 *"
param->int_value_table = (MSF_UINT32*)msf_cmmn_memndup (MSF_MODID_BAM,(void *)profile->int_value_table,BAM_SETTING_ID_TOTAL*(sizeof(MSF_INT32)));
^
vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_if.c: 6 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_main.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_main.c: 5 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_msg.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_msg.c", line 948: Warning: #111-D: statement is unreachable
bam_send_ilm(notify_app_ind, NULL, MSG_ID_WAP_BAM_NOTIFY_APP_IND, MOD_MMI);
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_msg.c", line 2861: Warning: #223-D: function "BAMif_changeSettingValue" declared implicitly
BAMif_changeSettingValue(
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_msg.c", line 2919: Warning: #188-D: enumerated type mixed with another type
set_profile_req->type,
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_msg.c", line 3218: Warning: #223-D: function "bam_get_net_acc_id" declared implicitly
STKif_closeConnectionsByNetAccId(MSF_MODID_BAM, bam_get_net_acc_id());
^
vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_msg.c: 9 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_offline.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_offline.c: 4 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_pipe.c ...
Compiling vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_registry.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"header_temp\SettingDefs.h", line 311: Warning: #47-D: incompatible redefinition of macro "FACTORY_RESTORE_DEFAULT_SCREENSAVER_STATUS" (declared at line 1893 of "custom/common/PLUTO_MMI/custom_mmi_default_value.h")
#define FACTORY_RESTORE_DEFAULT_SCREENSAVER_STATUS 1
^
"header_temp\SettingDefs.h", line 312: Warning: #47-D: incompatible redefinition of macro "FACTORY_RESTORE_DEFAULT_SCREENSAVER_WAITING_TIME" (declared at line 1894 of "custom/common/PLUTO_MMI/custom_mmi_default_value.h")
#define FACTORY_RESTORE_DEFAULT_SCREENSAVER_WAITING_TIME 35
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_registry.c", line 1086: Warning: #167-D: argument of type "unsigned char *" is incompatible with parameter of type "char *"
BRSif_set_preference_values(key,i_val,(unsigned char*)BAM_CMN_HNV(s_val));
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_registry.c", line 1204: Warning: #167-D: argument of type "unsigned char *" is incompatible with parameter of type "char *"
BRSif_set_preference_values(BAM_REGISTRY_ENUM_USER_AGT,0,(unsigned char*)BAM_CMN_HNV((unsigned char*)em_settings->value_str));
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_registry.c", line 1224: Warning: #167-D: argument of type "unsigned char *" is incompatible with parameter of type "char *"
BRSif_set_preference_values(BAM_REGISTRY_ENUM_ACCEPT_HEADER,0, (unsigned char*)BAM_CMN_HNV((unsigned char*)em_settings->value_str));
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_registry.c", line 1581: Warning: #550-D: variable "len" was set but never used
int i, len = 0;
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_registry.c", line 1890: Warning: #223-D: function "bam_sif_get_language" declared implicitly
return BAM_CFG_LANGUAGE_CODE;
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_registry.c", line 1917: Warning: #223-D: function "bam_sif_get_hw_release_version" declared implicitly
return BAM_CFG_HW_RELEASE_VER;
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_registry.c", line 2009: Warning: #167-D: argument of type "unsigned char *" is incompatible with parameter of type "const char *"
cmp=strcmp((unsigned char*)BAM_CMN_HNV(bam_registry_value_string_table[index]),(unsigned char*)BAM_CMN_HNV(value));
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_registry.c", line 2009: Warning: #167-D: argument of type "unsigned char *" is incompatible with parameter of type "const char *"
cmp=strcmp((unsigned char*)BAM_CMN_HNV(bam_registry_value_string_table[index]),(unsigned char*)BAM_CMN_HNV(value));
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_registry.c", line 2022: Warning: #167-D: argument of type "unsigned char *" is incompatible with parameter of type "char *"
BRSif_set_preference_values(index,0,(unsigned char*)BAM_CMN_HNV(value));
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_registry.c", line 2152: Warning: #177-D: variable "istype" was declared but never referenced
stk_check_parameter_enum istype;
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_registry.c", line 2215: Warning: #513-D: a value of type "unsigned char *" cannot be assigned to an entity of type "char *"
*s_value=(unsigned char*)BAM_CMN_HNV(bam_registry_value_string_table[key]);
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_registry.c", line 1328: Warning: #177-D: function "bam_registry_validate_proxy_addr" was declared but never referenced
bam_registry_validate_proxy_addr (char *proxy_ip)
^
vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_registry.c: 19 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_req.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_req.c: 3 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_resource.c ...
Compiling vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_shortcuts.c ...
Compiling vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_sif.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_sif.c", line 665: Warning: #223-D: function "BRSif_bearer_open_response" declared implicitly
BRSif_bearer_open_response(MSF_MODID_BAM, bam_sif_instance_id, p->error_code);
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_sif.c", line 883: Warning: #223-D: function "BRSc_kill" declared implicitly
BRSc_kill();
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_sif.c", line 1662: Warning: #223-D: function "msf_file_exist" declared implicitly
(MSF_FILE_EXIST (bam_sif_current_element->object_filePath) == HDI_FILE_ERROR_PATH))
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_sif.c", line 2159: Warning: #223-D: function "release_hw_ver" declared implicitly
return BAM_SIF_HW_RELEASE_VER;
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_sif.c", line 2167: Warning: #223-D: function "release_verno" declared implicitly
return BAM_SIF_RELEASE_VERSION;
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_sif.c", line 2175: Warning: #223-D: function "build_date_time" declared implicitly
return BAM_SIF_BUILD_DATE_TIME;
^
"vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_sif.c", line 2199: Warning: #223-D: function "Get_Current_Lang_CountryCode" declared implicitly
return BAM_SIF_LANGUAGE_CODE;
^
vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_sif.c: 10 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_sig.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_sig.c: 3 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_win.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
vendor\wap\obigo_Q03C\adaptation\modules\bam\src\bam_win.c: 3 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\modules\das\src\das_env.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
vendor\wap\obigo_Q03C\adaptation\modules\das\src\das_env.c: 3 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\modules\das\src\das_main.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"vendor\wap\obigo_Q03C\adaptation\modules\das\src\das_main.c", line 413: Warning: #177-D: variable "handle" was declared but never referenced
void *handle;
^
"vendor\wap\obigo_Q03C\adaptation\modules\das\src\das_main.c", line 1218: Warning: #188-D: enumerated type mixed with another type
das_send_file_dl_ind(job, TRUE);
^
"vendor\wap\obigo_Q03C\adaptation\modules\das\src\das_main.c", line 1829: Warning: #188-D: enumerated type mixed with another type
das_send_file_dl_ind(job, FALSE);
^
vendor\wap\obigo_Q03C\adaptation\modules\das\src\das_main.c: 6 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\modules\das\src\das_msg.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"vendor\wap\obigo_Q03C\adaptation\modules\das\src\das_msg.c", line 353: Warning: #188-D: enumerated type mixed with another type
ilm_ptr->msg_id = (kal_uint16) MSG_ID_MMI_DA_DISPATCH_FILE_REQ; /* Set the message id */
^
"vendor\wap\obigo_Q03C\adaptation\modules\das\src\das_msg.c", line 439: Warning: #188-D: enumerated type mixed with another type
ilm_ptr->msg_id = (kal_uint16) MSG_ID_WAP_MMI_FILE_DL_IND; /* Set the message id */
^
"vendor\wap\obigo_Q03C\adaptation\modules\das\src\das_msg.c", line 506: Warning: #188-D: enumerated type mixed with another type
ilm_ptr->msg_id = (kal_uint16) MSG_ID_WAP_MMI_FILE_DL_PROGRESS_IND; /* Set the message id */
^
"vendor\wap\obigo_Q03C\adaptation\modules\das\src\das_msg.c", line 558: Warning: #188-D: enumerated type mixed with another type
ilm_ptr->msg_id = (kal_uint16) MSG_ID_WAP_MMI_FILE_DL_STOP_RSP; /* Set the message id */
^
vendor\wap\obigo_Q03C\adaptation\modules\das\src\das_msg.c: 8 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\modules\das\src\das_view.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
vendor\wap\obigo_Q03C\adaptation\modules\das\src\das_view.c: 4 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"header_temp\SettingDefs.h", line 311: Warning: #47-D: incompatible redefinition of macro "FACTORY_RESTORE_DEFAULT_SCREENSAVER_STATUS" (declared at line 1893 of "custom/common/PLUTO_MMI/custom_mmi_default_value.h")
#define FACTORY_RESTORE_DEFAULT_SCREENSAVER_STATUS 1
^
"header_temp\SettingDefs.h", line 312: Warning: #47-D: incompatible redefinition of macro "FACTORY_RESTORE_DEFAULT_SCREENSAVER_WAITING_TIME" (declared at line 1894 of "custom/common/PLUTO_MMI/custom_mmi_default_value.h")
#define FACTORY_RESTORE_DEFAULT_SCREENSAVER_WAITING_TIME 35
^
"header_temp\Wgui_categories_util.h", line 2959: Warning: #47-D: incompatible redefinition of macro "wgui_title_change" (declared at line 278 of "header_temp\wgui_title.h")
#define wgui_title_change(_arg0, _arg1, _arg2, _arg3) wgui_title_change_ex(_arg2, _arg3)
^
"header_temp\Wgui_categories_util.h", line 3020: Warning: #47-D: incompatible redefinition of macro "ChangeTitleIcon" (declared at line 281 of "header_temp\wgui_title.h")
#define ChangeTitleIcon(_arg)
^
"header_temp\Wgui_categories_util.h", line 3021: Warning: #47-D: incompatible redefinition of macro "ChangeTitle" (declared at line 283 of "header_temp\wgui_title.h")
#define ChangeTitle(_arg0, _arg1) ChangeTitle_ex(_arg1)
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 4375: Warning: #188-D: enumerated type mixed with another type
display_on_idle_screen = (mmi_idle_is_active() || mmi_scr_saver_is_active()) && !widget_check_is_in_non_wap_call();
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 4420: Warning: #188-D: enumerated type mixed with another type
widget_dialog_get_popup_event(WGUI_CTX->dialog_type, &mmi_popup_event);
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 5235: Warning: #177-D: variable "ret" was declared but never referenced
U16 ret;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 5341: Warning: #177-D: variable "ret" was declared but never referenced
U16 ret = 0;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 5342: Warning: #177-D: variable "scrid" was declared but never referenced
U16 scrid = CTK_BASE;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 5674: Warning: #188-D: enumerated type mixed with another type
WGUI_CTX->is_widget_screen = 0;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 5675: Warning: #188-D: enumerated type mixed with another type
WGUI_CTX->resume_rendering = 0;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 5661: Warning: #550-D: variable "guiBuffer" was set but never used
U8 *guiBuffer = NULL;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 5662: Warning: #177-D: variable "left_softkey" was declared but never referenced
U16 left_softkey = STR_GLOBAL_OPTIONS;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 5895: Warning: #9-D: nested comment is not allowed
/* WCSS editor (Category115Screen) only supported in non touch screen project */
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 5898: Warning: #9-D: nested comment is not allowed
/*#else /* __MMI_WCSS_INPUT_FORMAT_SUPPORT__
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 5907: Warning: #9-D: nested comment is not allowed
#endif /* __MMI_WCSS_INPUT_FORMAT_SUPPORT__ */ // MAUI_02442437 starts
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 6592: Warning: #188-D: enumerated type mixed with another type
WGUI_CTX->is_widget_screen = 0;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 6593: Warning: #188-D: enumerated type mixed with another type
WGUI_CTX->resume_rendering = 0;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 6956: Warning: #188-D: enumerated type mixed with another type
WGUI_CTX->is_widget_screen = 0;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 6957: Warning: #188-D: enumerated type mixed with another type
WGUI_CTX->resume_rendering = 0;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 8225: Warning: #550-D: variable "ret" was set but never used
U16 ret;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 8388: Warning: #188-D: enumerated type mixed with another type
srv_profiles_stop_tone(tone);
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 8442: Warning: #188-D: enumerated type mixed with another type
WGUI_CTX->is_widget_screen = 0;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 8667: Warning: #188-D: enumerated type mixed with another type
WGUI_CTX->is_widget_screen = 1;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 8987: Warning: #188-D: enumerated type mixed with another type
return FALSE;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 4563: Warning: #177-D: function "wap_entry_fullscreen_editor_option" was declared but never referenced
static void wap_entry_fullscreen_editor_option(void)
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 3112: Warning: #177-D: function "widget_fullscreen_editor_highlight_done" was declared but never referenced
static void widget_fullscreen_editor_highlight_done(void);
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 3113: Warning: #177-D: function "widget_fullscreen_editor_highlight_cancel" was declared but never referenced
static void widget_fullscreen_editor_highlight_cancel(void);
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 3114: Warning: #177-D: function "widget_fullscreen_editor_highlight_input_method" was declared but never referenced
static void widget_fullscreen_editor_highlight_input_method(void);
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 3116: Warning: #177-D: function "widget_exit_fullscreen_editor" was declared but never referenced
static void widget_exit_fullscreen_editor(void);
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 5536: Warning: #177-D: function "widget_fullscreen_editor_insert_character_dot" was declared but never referenced
static void widget_fullscreen_editor_insert_character_dot(void)
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c", line 3127: Warning: #177-D: function "widget_wcss_event_handler_proc" was declared but never referenced
static mmi_ret widget_wcss_event_handler_proc(mmi_event_struct *evt);
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\mobile_suite_app.c: 38 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\integration\source\msf_file.c ...
Compiling vendor\wap\obigo_Q03C\adaptation\integration\source\msf_int.c ...
Compiling vendor\wap\obigo_Q03C\adaptation\integration\source\msf_misc.c ...
Compiling vendor\wap\obigo_Q03C\adaptation\integration\source\msf_nw_acc.c ...
Compiling vendor\wap\obigo_Q03C\adaptation\integration\source\msf_pipe.c ...
Compiling vendor\wap\obigo_Q03C\adaptation\integration\source\msf_signal.c ...
Compiling vendor\wap\obigo_Q03C\adaptation\integration\source\msf_socket.c ...
Compiling vendor\wap\obigo_Q03C\adaptation\integration\source\msm_int.c ...
Compiling wapadp\src\wap_cmmn_utils.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
wapadp\src\wap_cmmn_utils.c: 3 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\integration\source\wap_cmn.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
vendor\wap\obigo_Q03C\adaptation\integration\source\wap_cmn.c: 3 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\integration\source\wap_create.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"vendor\wap\obigo_Q03C\adaptation\integration\source\wap_create.c", line 1182: Warning: #188-D: enumerated type mixed with another type
ilm_ptr->msg_id = (kal_uint16) MSG_ID_WAP_BROWSER_POWEROFF_RSP;
^
"vendor\wap\obigo_Q03C\adaptation\integration\source\wap_create.c", line 2317: Warning: #188-D: enumerated type mixed with another type
is_handled = TRUE;
^
"vendor\wap\obigo_Q03C\adaptation\integration\source\wap_create.c", line 2328: Warning: #188-D: enumerated type mixed with another type
is_handled = TRUE;
^
"vendor\wap\obigo_Q03C\adaptation\integration\source\wap_create.c", line 2989: Warning: #188-D: enumerated type mixed with another type
return (wap_int_q_size == WAP_INT_QUEUE_SIZE);
^
vendor\wap\obigo_Q03C\adaptation\integration\source\wap_create.c: 9 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\integration\source\wap_mem.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
vendor\wap\obigo_Q03C\adaptation\integration\source\wap_mem.c: 3 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\integration\source\wap_um.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
vendor\wap\obigo_Q03C\adaptation\integration\source\wap_um.c: 4 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\integration\source\wapadp.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"vendor\wap\obigo_Q03C\adaptation\integration\source\wapadp.c", line 1157: Warning: #223-D: function "mmi_brw_is_rendered_page_open" declared implicitly
if (mmi_brw_is_rendered_page_open())
^
"vendor\wap\obigo_Q03C\adaptation\integration\source\wapadp.c", line 1277: Warning: #177-D: variable "ilm_ptr" was declared but never referenced
ilm_struct *ilm_ptr;
^
"vendor\wap\obigo_Q03C\adaptation\integration\source\wapadp.c", line 1296: Warning: #177-D: variable "p" was declared but never referenced
wap_browser_startup_req_struct *p = NULL;
^
"vendor\wap\obigo_Q03C\adaptation\integration\source\wapadp.c", line 1297: Warning: #177-D: variable "ilm_ptr" was declared but never referenced
ilm_struct *ilm_ptr = NULL;
^
"vendor\wap\obigo_Q03C\adaptation\integration\source\wapadp.c", line 1362: Warning: #177-D: variable "ilm_ptr" was declared but never referenced
ilm_struct *ilm_ptr = NULL;
^
vendor\wap\obigo_Q03C\adaptation\integration\source\wapadp.c: 10 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget.c", line 1399: Warning: #223-D: function "gmms_HDIc_widgetNotify" declared implicitly
HDIc_widgetNotify(h->module_id, (MSF_UINT32) h, type);
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget.c", line 1986: Warning: #9-D: nested comment is not allowed
/* Pending the timer until no scrolling
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget.c", line 2038: Warning: #9-D: nested comment is not allowed
/* Pending the timer until no scrolling
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget.c", line 581: Warning: #177-D: function "widget_convert" was declared but never referenced
void* widget_convert (MSF_UINT8 module, MSF_UINT16 signal, void* buffer)
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget.c", line 623: Warning: #177-D: function "widget_destruct" was declared but never referenced
void widget_destruct (MSF_UINT8 module, MSF_UINT16 signal, void* p)
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget.c", line 1561: Warning: #177-D: function "widget_delete_file_poll" was declared but never referenced
static void widget_delete_file_poll(widget_header_struct *object)
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget.c: 11 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_action.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_action.c", line 225: Warning: #223-D: function "gmms_HDIc_widgetAction" declared implicitly
HDIc_widgetAction(modId, object, (MSF_UINT32) act);
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_action.c: 6 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_ctk.c ...
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_dialog.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_dialog.c: 5 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_drawing.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_drawing.c", line 2112: Warning: #177-D: variable "i" was declared but never referenced
int line_height, i;
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_drawing.c: 6 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_editor.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_editor.c: 5 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_encoding.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_encoding.c", line 964: Warning: #177-D: variable "dst_char" was declared but never referenced
kal_uint16 src_char, dst_char;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_encoding.c", line 1475: Warning: #188-D: enumerated type mixed with another type
return widget_encoding_convert_charset_to_utf8(src, dst, *srcLen, *dstLen, srcLen, dstLen, charset);
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_encoding.c", line 1518: Warning: #188-D: enumerated type mixed with another type
return widget_encoding_convert_utf8_to_charset(src, dst, *srcLen, *dstLen, srcLen, dstLen, charset);
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_encoding.c: 8 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_font.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_font.c", line 1151: Warning: #550-D: variable "l" was set but never used
int l, m = 0, r;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_font.c", line 1152: Warning: #177-D: variable "cmp" was declared but never referenced
int cmp = 0;
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_font.c: 7 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_form.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_form.c: 5 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_gadget.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_gadget.c", line 452: Warning: #550-D: variable "raw_text" was set but never used
kal_uint8 *raw_text = NULL;
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_gadget.c: 6 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_general.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"header_temp\SettingDefs.h", line 311: Warning: #47-D: incompatible redefinition of macro "FACTORY_RESTORE_DEFAULT_SCREENSAVER_STATUS" (declared at line 1893 of "custom/common/PLUTO_MMI/custom_mmi_default_value.h")
#define FACTORY_RESTORE_DEFAULT_SCREENSAVER_STATUS 1
^
"header_temp\SettingDefs.h", line 312: Warning: #47-D: incompatible redefinition of macro "FACTORY_RESTORE_DEFAULT_SCREENSAVER_WAITING_TIME" (declared at line 1894 of "custom/common/PLUTO_MMI/custom_mmi_default_value.h")
#define FACTORY_RESTORE_DEFAULT_SCREENSAVER_WAITING_TIME 35
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_general.c", line 515: Warning: #223-D: function "wgui_reset_wallpaper_on_bottom" declared implicitly
wgui_reset_wallpaper_on_bottom();
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_general.c", line 1254: Warning: #223-D: function "widget_reset_image_delay_parameters" declared implicitly
widget_reset_image_delay_parameters();
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_general.c: 9 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_icon.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_icon.c", line 128: Warning: #223-D: function "get_image" declared implicitly
w->icon_data = (int)get_image(CHECKBOX_OFF_IMAGE_ID);
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_icon.c: 6 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_image.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"header_temp\SettingDefs.h", line 311: Warning: #47-D: incompatible redefinition of macro "FACTORY_RESTORE_DEFAULT_SCREENSAVER_STATUS" (declared at line 1893 of "custom/common/PLUTO_MMI/custom_mmi_default_value.h")
#define FACTORY_RESTORE_DEFAULT_SCREENSAVER_STATUS 1
^
"header_temp\SettingDefs.h", line 312: Warning: #47-D: incompatible redefinition of macro "FACTORY_RESTORE_DEFAULT_SCREENSAVER_WAITING_TIME" (declared at line 1894 of "custom/common/PLUTO_MMI/custom_mmi_default_value.h")
#define FACTORY_RESTORE_DEFAULT_SCREENSAVER_WAITING_TIME 35
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_image.c", line 857: Warning: #188-D: enumerated type mixed with another type
{Msf3gp, ".3gp", "video/3gpp", IMAGE_TYPE_3GP}, /* autumn */
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_image.c", line 858: Warning: #188-D: enumerated type mixed with another type
{Msf3gp, ".3g2", "video/3gpp2",IMAGE_TYPE_3GP}, /* autumn */
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_image.c", line 859: Warning: #188-D: enumerated type mixed with another type
{MsfMp4, ".mp4", "video/mp4", IMAGE_TYPE_MP4},
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_image.c", line 860: Warning: #188-D: enumerated type mixed with another type
{MsfMp4, ".mpeg", "video/mpeg", IMAGE_TYPE_MP4},
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_image.c", line 861: Warning: #188-D: enumerated type mixed with another type
{MsfAvi, ".avi", "video/x-msvideo", IMAGE_TYPE_AVI},
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_image.c", line 1878: Warning: #223-D: function "get_image" declared implicitly
data->src = (kal_uint8*)get_image(resId);
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_image.c", line 1887: Warning: #188-D: enumerated type mixed with another type
data->image_format = MsfBmpPI;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_image.c", line 1890: Warning: #188-D: enumerated type mixed with another type
data->image_format = MsfGifPI;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_image.c", line 1898: Warning: #188-D: enumerated type mixed with another type
data->image_format = MsfJpegPI;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_image.c", line 1901: Warning: #188-D: enumerated type mixed with another type
data->image_format = MsfPngPI;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_image.c", line 2583: Warning: #167-D: argument of type "kal_uint8 *" is incompatible with parameter of type "PS8"
gdi_type = gdi_image_get_type_from_mem(img->raw->data);
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_image.c", line 3186: Warning: #223-D: function "gmms_HDIc_widgetNotify" declared implicitly
HDIc_widgetNotify(img->module_id, (MSF_UINT32) img, MsfNotifyResourceLoaded);
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_image.c", line 3191: Warning: #223-D: function "gmms_HDIc_widgetNotify" declared implicitly
HDIc_widgetNotify(img->module_id, (MSF_UINT32) img, MsfNotifyResourceFailed);
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_image.c", line 3790: Warning: #177-D: variable "raw" was declared but never referenced
widget_raw_data_struct *raw = NULL;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_image.c", line 3792: Warning: #177-D: variable "return_value" was declared but never referenced
int return_value = 0;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_image.c", line 966: Warning: #177-D: function "widget_image_raw_file_check_time_hdlr" was declared but never referenced
static void widget_image_raw_file_check_time_hdlr(void *arg);
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_image.c", line 3211: Warning: #177-D: function "widget_create_image_resource" was declared but never referenced
static void widget_create_image_resource(widget_image_struct *img)
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_image.c: 24 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_key_handler.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_key_handler.c", line 194: Warning: #177-D: function "widget_form_scroll_up" was declared but never referenced
static void widget_form_scroll_up(void);
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_key_handler.c", line 195: Warning: #177-D: function "widget_form_scroll_down" was declared but never referenced
static void widget_form_scroll_down(void);
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_key_handler.c", line 196: Warning: #177-D: function "widget_form_scroll_right" was declared but never referenced
static void widget_form_scroll_right(void);
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_key_handler.c", line 197: Warning: #177-D: function "widget_form_scroll_left" was declared but never referenced
static void widget_form_scroll_left(void);
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_key_handler.c: 9 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_layout.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_layout.c: 5 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_menu.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_menu.c: 5 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_msg_hdr.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_msg_hdr.c", line 239: Warning: #175-D: subscript out of range
WAP_DBG_ASSERT(key_map[MAX_KEYS] == MsfKey_Undefined);
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_msg_hdr.c", line 307: Warning: #223-D: function "gmms_HDIc_widgetUserEvent" declared implicitly
HDIc_widgetUserEvent(active_screen->module_id, (MSF_UINT32) active_screen, &event);
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_msg_hdr.c", line 336: Warning: #223-D: function "gmms_HDIc_widgetUserEvent" declared implicitly
HDIc_widgetUserEvent(active_window->module_id, (MSF_UINT32) active_window, &event);
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_msg_hdr.c", line 368: Warning: #223-D: function "gmms_HDIc_widgetUserEvent" declared implicitly
foreach_childs(active_window, node,
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_msg_hdr.c", line 439: Warning: #223-D: function "gmms_HDIc_widgetUserEvent" declared implicitly
HDIc_widgetUserEvent(active_window->module_id, (MSF_UINT32) active_window, &event);
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_msg_hdr.c", line 475: Warning: #223-D: function "gmms_HDIc_widgetUserEvent" declared implicitly
HDIc_widgetUserEvent(active_screen->module_id, (MSF_UINT32) active_screen, &event);
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_msg_hdr.c: 11 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"header_temp\SettingDefs.h", line 311: Warning: #47-D: incompatible redefinition of macro "FACTORY_RESTORE_DEFAULT_SCREENSAVER_STATUS" (declared at line 1893 of "custom/common/PLUTO_MMI/custom_mmi_default_value.h")
#define FACTORY_RESTORE_DEFAULT_SCREENSAVER_STATUS 1
^
"header_temp\SettingDefs.h", line 312: Warning: #47-D: incompatible redefinition of macro "FACTORY_RESTORE_DEFAULT_SCREENSAVER_WAITING_TIME" (declared at line 1894 of "custom/common/PLUTO_MMI/custom_mmi_default_value.h")
#define FACTORY_RESTORE_DEFAULT_SCREENSAVER_WAITING_TIME 35
^
"header_temp\wgui_categories_util.h", line 2959: Warning: #47-D: incompatible redefinition of macro "wgui_title_change" (declared at line 278 of "header_temp\wgui_title.h")
#define wgui_title_change(_arg0, _arg1, _arg2, _arg3) wgui_title_change_ex(_arg2, _arg3)
^
"header_temp\wgui_categories_util.h", line 3020: Warning: #47-D: incompatible redefinition of macro "ChangeTitleIcon" (declared at line 281 of "header_temp\wgui_title.h")
#define ChangeTitleIcon(_arg)
^
"header_temp\wgui_categories_util.h", line 3021: Warning: #47-D: incompatible redefinition of macro "ChangeTitle" (declared at line 283 of "header_temp\wgui_title.h")
#define ChangeTitle(_arg0, _arg1) ChangeTitle_ex(_arg1)
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint.c", line 2249: Warning: #223-D: function "mmi_brw_is_temp_busy_screen_active" declared implicitly
if (mmi_brw_is_temp_busy_screen_active() && (!(IS_GADGET_INPUT_TYPE(handle) || IS_GADGET_SELECT_GROUP_TYPE(handle) || IS_PAINTBOX_TYPE(handle) || IS_SCREEN_TYPE(handle))))
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint.c", line 3129: Warning: #223-D: function "gui_fixed_icontext_menuitem_stop_scroll" declared implicitly
gui_fixed_icontext_menuitem_stop_scroll();
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint.c", line 3130: Warning: #223-D: function "gui_fixed_icontext_list_menuitem_stop_scroll" declared implicitly
gui_fixed_icontext_list_menuitem_stop_scroll();
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint.c", line 3133: Warning: #223-D: function "gui_fixed_twostate_menuitem_stop_scroll" declared implicitly
gui_fixed_twostate_menuitem_stop_scroll();
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint.c: 14 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_action.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_action.c: 5 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_dialog.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_dialog.c", line 371: Warning: #188-D: enumerated type mixed with another type
WGUI_CTX->is_widget_screen = 0;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_dialog.c", line 372: Warning: #188-D: enumerated type mixed with another type
WGUI_CTX->resume_rendering = 0;
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_dialog.c", line 389: Warning: #188-D: enumerated type mixed with another type
srv_prof_play_tone(tone, NULL);
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_dialog.c", line 185: Warning: #177-D: function "widget_dialog_left_softkey_dismiss_handler" was declared but never referenced
static void widget_dialog_left_softkey_dismiss_handler(void)
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_dialog.c: 9 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_editor.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_editor.c: 5 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_gadget_bar.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_gadget_bar.c: 5 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_gadget_image.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"header_temp\SettingDefs.h", line 311: Warning: #47-D: incompatible redefinition of macro "FACTORY_RESTORE_DEFAULT_SCREENSAVER_STATUS" (declared at line 1893 of "custom/common/PLUTO_MMI/custom_mmi_default_value.h")
#define FACTORY_RESTORE_DEFAULT_SCREENSAVER_STATUS 1
^
"header_temp\SettingDefs.h", line 312: Warning: #47-D: incompatible redefinition of macro "FACTORY_RESTORE_DEFAULT_SCREENSAVER_WAITING_TIME" (declared at line 1894 of "custom/common/PLUTO_MMI/custom_mmi_default_value.h")
#define FACTORY_RESTORE_DEFAULT_SCREENSAVER_WAITING_TIME 35
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_gadget_image.c", line 2736: Warning: #188-D: enumerated type mixed with another type
widget_MMI_image_draw(gimg, x, y, width, height, (U8*)data, widget_get_gdi_image_id(image_format), (U16)size, 0, KAL_FALSE);
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_gadget_image.c", line 2748: Warning: #188-D: enumerated type mixed with another type
widget_get_gdi_image_id(image_format),
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_gadget_image.c", line 2849: Warning: #177-D: variable "conflict" was declared but never referenced
kal_bool conflict = KAL_FALSE; /* The current image is different with the pre-cache one */
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_gadget_image.c", line 3213: Warning: #177-D: variable "mdi_ret" was declared but never referenced
MDI_RESULT mdi_ret;
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_gadget_image.c: 11 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_gadget_input.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_gadget_input.c", line 1047: Warning: #550-D: variable "is_selected_in_paintbox" was set but never used
kal_bool is_selected_in_paintbox = KAL_FALSE; /* Check displaying cursor or not */
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_gadget_input.c: 6 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_gadget_string.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_gadget_string.c: 5 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_menu.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"header_temp\wgui_categories_util.h", line 2959: Warning: #47-D: incompatible redefinition of macro "wgui_title_change" (declared at line 278 of "header_temp\wgui_title.h")
#define wgui_title_change(_arg0, _arg1, _arg2, _arg3) wgui_title_change_ex(_arg2, _arg3)
^
"header_temp\wgui_categories_util.h", line 3020: Warning: #47-D: incompatible redefinition of macro "ChangeTitleIcon" (declared at line 281 of "header_temp\wgui_title.h")
#define ChangeTitleIcon(_arg)
^
"header_temp\wgui_categories_util.h", line 3021: Warning: #47-D: incompatible redefinition of macro "ChangeTitle" (declared at line 283 of "header_temp\wgui_title.h")
#define ChangeTitle(_arg0, _arg1) ChangeTitle_ex(_arg1)
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paint_menu.c: 8 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paintbox.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_paintbox.c: 5 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_screen.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_screen.c: 5 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_sound.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_sound.c", line 2058: Warning: #188-D: enumerated type mixed with another type
srv_prof_play_tone(sound_id, NULL);
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_sound.c: 6 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_string.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
"vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_string.c", line 150: Warning: #223-D: function "get_string" declared implicitly
res = (const kal_uint8*)get_string((MMI_ID_TYPE) resid);
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_string.c: 6 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_style.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_style.c: 5 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_test.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_test.c: 5 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_text.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_text.c: 5 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_window.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"header_temp\gui_typedef.h", line 4024: Warning: #14-D: extra text after expected end of preprocessing directive
#endif /__MMI_AUDIO_REVERB_EFFECT__
^
vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_window.c: 5 warnings, 0 errors
Compiling vendor\wap\obigo_Q03C\adaptation\msf_ui\src\widget_winsocket.c ...
make[2]: Entering directory `D:/Project/61D_GPRS_1418/CODE_V00'
CFLAGS = --cpu ARM7EJ-S --littleend -O3 --remove_unneeded_entities -D__RVCT__ -JC:\ARM\RVCT31_569\Data\3.1\569\include\windows --fpmode=ieee_fixed --split_sections --diag_suppress 1,1295,1296,2548 --dwarf2 -D__SERIAL_FLASH_EN__ -D__SERIAL_FLASH_SUPPORT__ --bss_threshold=0
CPLUSFLAGS = --cpp --cpu ARM7EJ-S --littleend -O3 --remove_unneeded_entities -D__RVCT__ -JC:\ARM\RVCT31_569\Data\3.1\569\include\windows --fpmode=ieee_fixed --split_sections --diag_suppress 1,1295,1296,2548 --dwarf2 --bss_threshold=0
AFLAGS = --debug --littleend --cpu ARM7EJ-S --apcs /interwork -16
ADEFS = -pd "MMI_ON_HARDWARE_P SETL {TRUE}" -pd "__WAP__ SETL {TRUE}" -pd "__EMS__ SETL {TRUE}" -pd "SIM_APP_TOOLKIT SETL {TRUE}" -pd "TETRIS_GAME_APP SETL {TRUE}" -pd "CM_APPLICATION_ENABLE SETL {TRUE}" -pd "MESSAGES_APPLICATION SETL {TRUE}" -pd "__UCS2_ENCODING SETL {TRUE}" -pd "CELLBROADCAST_APP SETL {TRUE}" -pd "__CB__ SETL {TRUE}" -pd "VM_SUPPORT SETL {TRUE}" -pd "SHORTCUTS_APP SETL {TRUE}" -pd "T9LANG_English SETL {TRUE}" -pd "T9LANG_Chinese SETL {TRUE}" -pd "MTK_TMP_PATCH SETL {TRUE}" -pd "MT6261 SETL {TRUE}" -pd "MT6261_S00 SETL {TRUE}" -pd "__SV5_ENABLED__ SETL {TRUE}" -pd "__EVENT_BASED_TIMER__ SETL {TRUE}" -pd "__PRODUCTION_RELEASE__ SETL {TRUE}" -pd "KAL_ON_NUCLEUS SETL {TRUE}" -pd "__CHIP_VERSION_CHECK__ SETL {TRUE}" -pd "__ZIMAGE_SUPPORT__ SETL {TRUE}" -pd "ESAL_AR_STK_FPU_SUPPORT SETL {FALSE}" -pd "__ARM_FPUV2__ SETL {FALSE}" -pd "__SERIAL_FLASH_EN__ SETL {TRUE}" -pd "__SERIAL_FLASH_SUPPORT__ SETL {TRUE}"
C:\ARM\RVCT31_569\Programs\3.1\569\win_32-pentium\armar.exe -create ./build/KEYTAK61D_GB_11C/gprs/MT6261o/lib/obigo03cadp.lib --via .\build\KEYTAK61D_GB_11C\gprs\MT6261o\obigo03cadp\obigo03cadp_sort.via
Warning: L3910W: Old syntax, please use '--create'.
./build/KEYTAK61D_GB_11C/gprs/MT6261o/lib/obigo03cadp.lib is updated
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\bam_cmn.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\bam_do_elem.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\bam_env.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\bam_file.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\bam_hist.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\bam_if.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\bam_main.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\bam_msg.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\bam_offline.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\bam_pipe.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\bam_registry.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\bam_req.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\bam_resource.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\bam_shortcuts.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\bam_sif.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\bam_sig.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\bam_win.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\das_env.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\das_main.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\das_msg.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\das_view.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\mobile_suite_app.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\msf_file.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\msf_int.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\msf_misc.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\msf_nw_acc.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\msf_pipe.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\msf_signal.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\msf_socket.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\msm_int.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\wapadp.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\wap_cmmn_utils.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\wap_cmn.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\wap_create.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\wap_mem.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\wap_um.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_action.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_ctk.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_dialog.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_drawing.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_editor.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_encoding.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_font.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_form.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_gadget.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_general.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_icon.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_image.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_key_handler.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_layout.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_menu.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_msg_hdr.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_paint.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_paintbox.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_paint_action.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_paint_dialog.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_paint_editor.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_paint_gadget_bar.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_paint_gadget_image.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_paint_gadget_input.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_paint_gadget_string.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_paint_menu.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_screen.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_sound.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_string.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_style.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_test.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_text.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_window.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\obigo03cadp_dep\widget_winsocket.det
Processing bam_cmn.det bam_do_elem.det bam_env.det bam_file.det bam_hist.det bam_if.det bam_main.det bam_msg.det bam_offline.det bam_pipe.det bam_registry.det bam_req.det bam_resource.det bam_shortcuts.det bam_sif.det bam_sig.det bam_win.det das_env.det das_main.det das_msg.det das_view.det mobile_suite_app.det msf_file.det msf_int.det msf_misc.det msf_nw_acc.det msf_pipe.det msf_signal.det msf_socket.det msm_int.det wapadp.det wap_cmmn_utils.det wap_cmn.det wap_create.det wap_mem.det wap_um.det widget.det widget_action.det widget_ctk.det widget_dialog.det widget_drawing.det widget_editor.det widget_encoding.det widget_font.det widget_form.det widget_gadget.det widget_general.det widget_icon.det widget_image.det widget_key_handler.det widget_layout.det widget_menu.det widget_msg_hdr.det widget_paint.det widget_paintbox.det widget_paint_action.det widget_paint_dialog.det widget_paint_editor.det widget_paint_gadget_bar.det widget_paint_gadget_image.det widget_paint_gadget_input.det widget_paint_gadget_string.det widget_paint_menu.det widget_screen.det widget_sound.det widget_string.det widget_style.det widget_test.det widget_text.det widget_window.det widget_winsocket.det
make[2]: Leaving directory `D:/Project/61D_GPRS_1418/CODE_V00'