conn_app.log
99.9 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
Module conn_app is in DEFALUT mode
Compiling plutommi\mtkapp\connectivity\connectivitysrc\btcommon\BtConnScr.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__)
^
plutommi\mtkapp\connectivity\connectivitysrc\btcommon\BtConnScr.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\connectivity\connectivitysrc\btmtk\BtMmiHfp.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)
^
plutommi\mtkapp\connectivity\connectivitysrc\btmtk\BtMmiHfp.c: 8 warnings, 0 errors
Compiling plutommi\mtkapp\connectivity\connectivitysrc\btmtk\BtMmiHsp.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
^
plutommi\mtkapp\connectivity\connectivitysrc\btmtk\BtMmiHsp.c: 7 warnings, 0 errors
Compiling plutommi\mtkapp\connectivity\connectivitysrc\btmtk\BtMmiObex.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)
^
plutommi\mtkapp\connectivity\connectivitysrc\btmtk\BtMmiObex.c: 4 warnings, 0 errors
Compiling plutommi\mtkapp\connectivity\connectivitysrc\btcommon\BtMmiObexScr.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)
^
"plutommi\mtkapp\connectivity\connectivitysrc\btcommon\BtMmiObexScr.c", line 1249: Warning: #550-D: variable "drv" was set but never used
U8 drv;
^
"plutommi\mtkapp\connectivity\connectivitysrc\btcommon\BtMmiObexScr.c", line 1362: Warning: #223-D: function "ShowCategory154Screen" declared implicitly
ShowCategory154Screen(
^
plutommi\mtkapp\connectivity\connectivitysrc\btcommon\BtMmiObexScr.c: 10 warnings, 0 errors
Compiling plutommi\mtkapp\connectivity\connectivitysrc\btmtk\BtMmiOpp.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)
^
plutommi\mtkapp\connectivity\connectivitysrc\btmtk\BtMmiOpp.c: 8 warnings, 0 errors
Compiling plutommi\mtkapp\connectivity\connectivitysrc\btmtk\BtMmiRecv.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)
^
plutommi\mtkapp\connectivity\connectivitysrc\btmtk\BtMmiRecv.c: 8 warnings, 0 errors
Compiling plutommi\mtkapp\connectivity\connectivitysrc\btcommon\BtMmiScr.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)
^
"plutommi\mtkapp\connectivity\connectivitysrc\btcommon\BtMmiScr.c", line 2966: Warning: #223-D: function "mmi_prof_deactivate_headset_profile" declared implicitly
mmi_prof_deactivate_headset_profile(MMI_FALSE); // 蓝牙使用一段时间后断开,情景模式仍然显示耳机模式
^
"plutommi\mtkapp\connectivity\connectivitysrc\btcommon\BtMmiScr.c", line 10392: Warning: #223-D: function "mmi_prof_deactivate_headset_profile" declared implicitly
mmi_prof_deactivate_headset_profile(MMI_FALSE); // 蓝牙使用一段时间后断开,情景模式仍然显示耳机模式
^
"plutommi\mtkapp\connectivity\connectivitysrc\btcommon\BtMmiScr.c", line 10373: Warning: #550-D: variable "dev_p" was set but never used
const srv_bt_cm_dev_struct* dev_p ;
^
"plutommi\mtkapp\connectivity\connectivitysrc\btcommon\BtMmiScr.c", line 12951: Warning: #14-D: extra text after expected end of preprocessing directive
#ifdef __MMI_PBAP_SUPPORT__ || defined(__MMI_BT_PBAP_CLIENT__)
^
plutommi\mtkapp\connectivity\connectivitysrc\btcommon\BtMmiScr.c: 12 warnings, 0 errors
Compiling plutommi\mtkapp\connectivity\connectivitysrc\btmtk\BtMmiSend.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)
^
"plutommi\mtkapp\connectivity\connectivitysrc\btmtk\BtMmiSend.c", line 488: Warning: #188-D: enumerated type mixed with another type
return ((mmi_oppc_p->flag) & a);
^
"plutommi\mtkapp\connectivity\connectivitysrc\btmtk\BtMmiSend.c", line 2038: Warning: #177-D: function "mmi_btsend_power_on" was declared but never referenced
U8 mmi_btsend_power_on(void)
^
plutommi\mtkapp\connectivity\connectivitysrc\btmtk\BtMmiSend.c: 12 warnings, 0 errors
Compiling plutommi\mtkapp\connectivity\connectivitysrc\btmtk\BtMmiSetting.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)
^
plutommi\mtkapp\connectivity\connectivitysrc\btmtk\BtMmiSetting.c: 8 warnings, 0 errors
Compiling plutommi\CUI\BTCMCui\BtcmCui.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__
^
plutommi\CUI\BTCMCui\BtcmCui.c: 5 warnings, 0 errors
Compiling plutommi\MMI\Cbm\CbmSrc\CbmAppMain.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)
^
"plutommi\MMI\Cbm\CbmSrc\CbmAppMain.c", line 437: Warning: #177-D: variable "sim_id" was declared but never referenced
cbm_sim_id_enum sim_id;
^
plutommi\MMI\Cbm\CbmSrc\CbmAppMain.c: 11 warnings, 0 errors
Compiling plutommi\CUI\CbmCui\CbmCui.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
^
plutommi\CUI\CbmCui\CbmCui.c: 7 warnings, 0 errors
Compiling plutommi\mmi\ConnectManagement\ConnectManagementSrc\ConnectManageMain.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__)
^
plutommi\mmi\ConnectManagement\ConnectManagementSrc\ConnectManageMain.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppCore.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)
^
plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppCore.c: 10 warnings, 0 errors
Compiling plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppEvtHdlr.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)
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppEvtHdlr.c", line 779: Warning: #177-D: variable "info" was declared but never referenced
srv_da_item_progress_struct info;
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppEvtHdlr.c", line 840: Warning: #223-D: function "mmi_da_scr_remove_screen" declared implicitly
mmi_da_scr_remove_screen(SCR_ID_DA_JOB_DETAIL);
^
plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppEvtHdlr.c: 12 warnings, 0 errors
Compiling plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppMain.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)
^
plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppMain.c: 10 warnings, 0 errors
Compiling plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppNCenter.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
^
plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppNCenter.c: 7 warnings, 0 errors
Compiling plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrDraw.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)
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrDraw.c", line 254: Warning: #177-D: variable "active_item" was declared but never referenced
srv_da_push_item_struct *active_item;
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrDraw.c", line 273: Warning: #177-D: variable "active_item" was declared but never referenced
srv_da_push_item_struct *active_item;
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrDraw.c", line 306: Warning: #177-D: variable "cntx" was declared but never referenced
mmi_da_scr_choice_screen_struct *cntx;
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrDraw.c", line 373: Warning: #177-D: variable "p" was declared but never referenced
mmi_frm_scrn_active_evt_struct * p=
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrDraw.c", line 364: Warning: #550-D: variable "item" was set but never used
srv_da_push_item_struct *item;
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrDraw.c", line 547: Warning: #167-D: argument of type "MMI_RET (*)(mmi_event_struct *)" is incompatible with parameter of type "mmi_noti_scrn_func_ptr"
mmi_frm_nmgr_notify_by_app(MMI_SCENARIO_ID_GENERAL,MMI_EVENT_DEFAULT,mmi_da_nmgr_proc,NULL);
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrDraw.c", line 1390: Warning: #177-D: variable "p" was declared but never referenced
mmi_frm_scrn_active_evt_struct * p=
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrDraw.c", line 1378: Warning: #550-D: variable "is_object_desc_available" was set but never used
MMI_BOOL is_object_desc_available;
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrDraw.c", line 1380: Warning: #177-D: variable "object_desc_string_id" was declared but never referenced
U16 object_desc_string_id = 0;
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrDraw.c", line 1866: Warning: #177-D: variable "p" was declared but never referenced
mmi_frm_scrn_active_evt_struct * p=
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrDraw.c", line 1944: Warning: #177-D: variable "guiBuffer" was declared but never referenced
U8 *guiBuffer;
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrDraw.c", line 2050: Warning: #177-D: variable "job" was declared but never referenced
srv_da_job_struct *job;
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrDraw.c", line 2051: Warning: #177-D: variable "guiBuffer" was declared but never referenced
U8 *guiBuffer;
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrDraw.c", line 2052: Warning: #177-D: variable "text_buffer" was declared but never referenced
U8 *text_buffer;
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrDraw.c", line 2053: Warning: #177-D: variable "text_buffer_in_U16" was declared but never referenced
U16 *text_buffer_in_U16;
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrDraw.c", line 2371: Warning: #223-D: function "mmi_da_scr_remove_screen" declared implicitly
mmi_da_scr_remove_screen(top_dummy->screen_id);
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrDraw.c", line 2399: Warning: #223-D: function "mmi_da_get_need_to_del_dummy" declared implicitly
if(mmi_da_get_need_to_del_dummy())
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrDraw.c", line 214: Warning: #177-D: variable "g_mmi_da_highlighted_index" was declared but never referenced
static S32 g_mmi_da_highlighted_index = -1;
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrDraw.c", line 234: Warning: #177-D: function "mmi_da_entry_new_push_accept" was declared but never referenced
static void mmi_da_entry_new_push_accept(srv_da_push_item_struct *item)
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrDraw.c", line 871: Warning: #177-D: function "mmi_da_app_scr_put_real_progressing" was declared but never referenced
static void mmi_da_app_scr_put_real_progressing(void *arg_p, S32 arg_v)
^
plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrDraw.c: 30 warnings, 0 errors
Compiling plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrHdlr.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)
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrHdlr.c", line 1559: Warning: #550-D: variable "prev" was set but never used
mmi_da_scr_select_storage_context_struct *prev;
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrHdlr.c", line 3540: Warning: #223-D: function "mmi_da_set_active_select_storage_instance" declared implicitly
mmi_da_set_active_select_storage_instance(NULL);
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrHdlr.c", line 3561: Warning: #223-D: function "mmi_da_set_active_select_storage_instance" declared implicitly
mmi_da_set_active_select_storage_instance(NULL);
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrHdlr.c", line 3608: Warning: #223-D: function "mmi_da_set_active_select_storage_instance" declared implicitly
mmi_da_set_active_select_storage_instance(NULL);
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrHdlr.c", line 3657: Warning: #223-D: function "mmi_da_set_active_select_storage_instance" declared implicitly
mmi_da_set_active_select_storage_instance(NULL);
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrHdlr.c", line 3665: Warning: #223-D: function "mmi_da_set_active_select_storage_instance" declared implicitly
mmi_da_set_active_select_storage_instance(NULL);
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrHdlr.c", line 3695: Warning: #223-D: function "mmi_da_set_active_select_storage_instance" declared implicitly
mmi_da_set_active_select_storage_instance(NULL);
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrHdlr.c", line 3722: Warning: #223-D: function "mmi_da_set_active_select_storage_instance" declared implicitly
mmi_da_set_active_select_storage_instance(NULL);
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrHdlr.c", line 5505: Warning: #177-D: variable "highlighted_job" was declared but never referenced
srv_da_job_struct *highlighted_job;
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrHdlr.c", line 6427: Warning: #177-D: variable "popup_string" was declared but never referenced
U16 *popup_string;
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrHdlr.c", line 6428: Warning: #177-D: variable "popup_suffix" was declared but never referenced
const U16 *popup_suffix;
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrHdlr.c", line 315: Warning: #177-D: function "mmi_da_app_scr_select_storage_final_ext" was declared but never referenced
static void mmi_da_app_scr_select_storage_final_ext(mmi_da_scr_select_storage_context_struct *cntx);
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrHdlr.c", line 333: Warning: #177-D: variable "g_da_del_choice_screen" was declared but never referenced
static MMI_BOOL g_da_del_choice_screen = MMI_TRUE;
^
"plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrHdlr.c", line 3625: Warning: #177-D: function "mmi_da_job_move_select_storage_callback" was declared but never referenced
static srv_da_acceptance_enum mmi_da_job_move_select_storage_callback(
^
plutommi\mtkapp\dlagent\dlagentsrc\DLAgentAppScrHdlr.c: 24 warnings, 0 errors
Compiling plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApi.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__
^
plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApi.c: 5 warnings, 0 errors
Compiling plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.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)
^
"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
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 2251: Warning: #550-D: variable "ret" was set but never used
MMI_BOOL ret;
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 2853: Warning: #550-D: variable "result" was set but never used
srv_dtcnt_result_enum result;
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 2856: Warning: #177-D: variable "csd_account" was declared but never referenced
srv_dtcnt_prof_csd_struct *csd_account, csd_acct_tmp;
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 2856: Warning: #177-D: variable "csd_acct_tmp" was declared but never referenced
srv_dtcnt_prof_csd_struct *csd_account, csd_acct_tmp;
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 3006: Warning: #177-D: variable "acct_file" was declared but never referenced
S32 acct_file;
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 3007: Warning: #177-D: variable "i" was declared but never referenced
U32 i;
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 3008: Warning: #177-D: variable "simEnum" was declared but never referenced
mmi_sim_enum simEnum = MMI_SIM1;
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 3566: Warning: #550-D: variable "ret" was set but never used
MMI_BOOL ret;
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 4537: Warning: #550-D: variable "ret" was set but never used
MMI_BOOL ret;
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 5496: Warning: #550-D: variable "ret" was set but never used
MMI_BOOL ret;
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 6741: Warning: #167-D: argument of type "U8 *" is incompatible with parameter of type "const CHAR *"
g_comm_disp_name_addr_arr[i].data_account_addr,
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 6742: Warning: #167-D: argument of type "U8 *" is incompatible with parameter of type "const CHAR *"
g_comm_disp_name_addr_arr[j].data_account_addr) == 0)
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 6801: Warning: #513-D: a value of type "CHAR *" cannot be assigned to an entity of type "const U8 *"
g_data_account_gprs_profile_srv.APN = APN;
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 6878: Warning: #550-D: variable "result" was set but never used
srv_dtcnt_result_enum result;
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 7045: Warning: #188-D: enumerated type mixed with another type
acct_id_query.qry_info.acc_type_info = i;
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 7022: Warning: #550-D: variable "result" was set but never used
srv_dtcnt_result_enum result;
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 7725: Warning: #550-D: variable "ret" was set but never used
MMI_BOOL ret;
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 7859: Warning: #223-D: function "mmi_frm_app_is_launched" declared implicitly
if(!mmi_frm_app_is_launched(APP_SETTING_NEW))
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 7885: Warning: #223-D: function "mmi_frm_app_is_launched" declared implicitly
if(!mmi_frm_app_is_launched(APP_SETTING_NEW))
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 1761: Warning: #177-D: variable "g_dtcnt_file_exist" was declared but never referenced
static S32 g_dtcnt_file_exist = 0;
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 1934: Warning: #177-D: variable "homepage_displayonly" was declared but never referenced
static const cui_inline_item_display_only_struct homepage_displayonly = {0};
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 1948: Warning: #177-D: variable "conn_type_displayonly" was declared but never referenced
static const cui_inline_item_display_only_struct conn_type_displayonly = {0};
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 1957: Warning: #177-D: variable "use_proxy_displayonly" was declared but never referenced
static const cui_inline_item_display_only_struct use_proxy_displayonly = {0};
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 1971: Warning: #177-D: variable "proxy_address_displayonly" was declared but never referenced
static const cui_inline_item_display_only_struct proxy_address_displayonly = {0};
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 1983: Warning: #177-D: variable "proxy_port_displayonly" was declared but never referenced
static const cui_inline_item_display_only_struct proxy_port_displayonly = {0};
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 1997: Warning: #177-D: variable "proxy_username_displayonly" was declared but never referenced
static const cui_inline_item_display_only_struct proxy_username_displayonly = {0};
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 2011: Warning: #177-D: variable "proxy_password_displayonly" was declared but never referenced
static const cui_inline_item_display_only_struct proxy_password_displayonly = {0};
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 2084: Warning: #177-D: variable "gprs_common_inline_view_items" was declared but never referenced
static const cui_inline_set_item_struct gprs_common_inline_view_items[GPRS_ADVANCE_DISPLAY_ID - CUI_INLINE_ITEM_ID_BASE] =
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 4431: Warning: #177-D: function "mmi_dtcnt_get_inline_ip_value" was declared but never referenced
void mmi_dtcnt_get_inline_ip_value(mmi_id group_id, U16 item_id, U8 *ip_array)
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 4890: Warning: #177-D: function "mmi_dtcnt_password_display" was declared but never referenced
void mmi_dtcnt_password_display(U8 *password_buf)
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c", line 2942: Warning: #177-D: function "mmi_dtcnt_is_conf_file_exit" was declared but never referenced
static S32 mmi_dtcnt_is_conf_file_exit(void)
^
plutommi\mmi\dataaccount\dataaccountsrc\DataAccountApp.c: 41 warnings, 0 errors
Compiling plutommi\CUI\DataAccountCui\DataAccountCui.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)
^
"plutommi\CUI\DataAccountCui\DataAccountCui.c", line 1375: Warning: #550-D: variable "ret" was set but never used
MMI_BOOL ret;
^
plutommi\CUI\DataAccountCui\DataAccountCui.c: 9 warnings, 0 errors
Compiling plutommi\mmi\dataaccount\dataaccountsrc\DataConnectionSIM.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)
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataConnectionSIM.c", line 429: Warning: #223-D: function "mmi_frm_app_is_launched" declared implicitly
if(!mmi_frm_app_is_launched(APP_SETTING_NEW))
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataConnectionSIM.c", line 317: Warning: #550-D: variable "ret" was set but never used
MMI_BOOL ret;
^
"plutommi\mmi\dataaccount\dataaccountsrc\DataConnectionSIM.c", line 446: Warning: #550-D: variable "ret" was set but never used
MMI_BOOL ret;
^
plutommi\mmi\dataaccount\dataaccountsrc\DataConnectionSIM.c: 11 warnings, 0 errors
Compiling plutommi\mtkapp\connectivity\connectivitysrc\DataRoaming.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__)
^
plutommi\mtkapp\connectivity\connectivitysrc\DataRoaming.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\connectivity\connectivitysrc\NfcSetting.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__)
^
plutommi\mtkapp\connectivity\connectivitysrc\NfcSetting.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\connectivity\connectivitysrc\UsbAdapt.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__)
^
"plutommi\mtkapp\connectivity\connectivitysrc\UsbAdapt.c", line 141: Warning: #940-D: missing return statement at end of non-void function "mmi_usb_shutdown_handler"
}
^
plutommi\mtkapp\connectivity\connectivitysrc\UsbAdapt.c: 4 warnings, 0 errors
Compiling plutommi\mtkapp\connectivity\connectivitysrc\btcommon\btmmiscopath.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__)
^
plutommi\mtkapp\connectivity\connectivitysrc\btcommon\btmmiscopath.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\connectivity\connectivitysrc\connectivity.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)
^
plutommi\mtkapp\connectivity\connectivitysrc\connectivity.c: 8 warnings, 0 errors
Compiling plutommi\mmi\dataaccount\dataaccountsrc\dataaccountxml.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__
^
plutommi\mmi\dataaccount\dataaccountsrc\dataaccountxml.c: 5 warnings, 0 errors
Compiling plutommi\mtkapp\syncml\syncmlsrc\syncmlaccount.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__)
^
plutommi\mtkapp\syncml\syncmlsrc\syncmlaccount.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\syncml\syncmlsrc\syncmlchangelog.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__)
^
plutommi\mtkapp\syncml\syncmlsrc\syncmlchangelog.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\syncml\syncmlsrc\syncmlcommon.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__)
^
plutommi\mtkapp\syncml\syncmlsrc\syncmlcommon.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\syncml\syncmlsrc\syncmldevice.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__)
^
plutommi\mtkapp\syncml\syncmlsrc\syncmldevice.c: 3 warnings, 0 errors
Compiling plutommi\MtkApp\SyncML\SyncMLSrc\syncmlemail.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
^
plutommi\MtkApp\SyncML\SyncMLSrc\syncmlemail.c: 7 warnings, 0 errors
Compiling plutommi\MtkApp\SyncML\SyncMLSrc\syncmlfolder.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
^
plutommi\MtkApp\SyncML\SyncMLSrc\syncmlfolder.c: 7 warnings, 0 errors
Compiling plutommi\mtkapp\syncml\syncmlsrc\syncmlhandler.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__)
^
plutommi\mtkapp\syncml\syncmlsrc\syncmlhandler.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\syncml\syncmlsrc\syncmlmain.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__)
^
plutommi\mtkapp\syncml\syncmlsrc\syncmlmain.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\syncml\syncmlsrc\syncmlotap.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__)
^
plutommi\mtkapp\syncml\syncmlsrc\syncmlotap.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\syncml\syncmlsrc\syncmlpcsync.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__)
^
plutommi\mtkapp\syncml\syncmlsrc\syncmlpcsync.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\syncml\syncmlsrc\syncmlregularity.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__)
^
plutommi\mtkapp\syncml\syncmlsrc\syncmlregularity.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\syncml\syncmlsrc\syncmlreport.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__)
^
plutommi\mtkapp\syncml\syncmlsrc\syncmlreport.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\syncml\syncmlsrc\syncmlsas.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
^
plutommi\mtkapp\syncml\syncmlsrc\syncmlsas.c: 7 warnings, 0 errors
Compiling plutommi\mtkapp\syncml\syncmlsrc\syncmlviewlog.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__)
^
plutommi\mtkapp\syncml\syncmlsrc\syncmlviewlog.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\connectivity\connectivitysrc\usbdevice.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)
^
"plutommi\mtkapp\connectivity\connectivitysrc\usbdevice.c", line 2434: Warning: #117-D: non-void function "mmi_usb_handle_plug_in" should return a value
return;
^
plutommi\mtkapp\connectivity\connectivitysrc\usbdevice.c: 9 warnings, 0 errors
Compiling plutommi\mtkapp\connectivity\connectivitysrc\usbpoweron.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)
^
"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
^
plutommi\mtkapp\connectivity\connectivitysrc\usbpoweron.c: 10 warnings, 0 errors
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 "__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 "T9LANG_Spanish SETL {TRUE}" -pd "T9LANG_French SETL {TRUE}" -pd "T9LANG_German SETL {TRUE}" -pd "T9LANG_Italian SETL {TRUE}" -pd "EMS_LITTLE_ENDIAN SETL {TRUE}" -pd "EMS_MEM_MANAGEMENT SETL {TRUE}" -pd "T9ALPHABETIC SETL {TRUE}" -pd "T9CHINESE SETL {TRUE}" -pd "MMS_VIRTUAL_FILE_SUPPORT SETL {TRUE}" -pd "COMPILER_SUPPORTS_LONG=1 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/conn_app.lib --via .\build\KEYTAK61D_GB_11C\gprs\MT6261o\conn_app\conn_app_sort.via
Warning: L3910W: Old syntax, please use '--create'.
./build/KEYTAK61D_GB_11C/gprs/MT6261o/lib/conn_app.lib is updated
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\BtcmCui.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\BtConnScr.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\BtMmiHfp.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\BtMmiHsp.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\BtMmiObex.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\BtMmiObexScr.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\BtMmiOpp.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\BtMmiRecv.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\btmmiscopath.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\BtMmiScr.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\BtMmiSend.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\BtMmiSetting.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\CbmAppMain.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\CbmCui.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\connectivity.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\ConnectManageMain.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\DataAccountApi.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\DataAccountApp.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\DataAccountCui.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\dataaccountxml.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\DataConnectionSIM.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\DataRoaming.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\DLAgentAppCore.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\DLAgentAppEvtHdlr.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\DLAgentAppMain.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\DLAgentAppNCenter.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\DLAgentAppScrDraw.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\DLAgentAppScrHdlr.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\NfcSetting.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\syncmlaccount.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\syncmlchangelog.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\syncmlcommon.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\syncmldevice.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\syncmlemail.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\syncmlfolder.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\syncmlhandler.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\syncmlmain.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\syncmlotap.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\syncmlpcsync.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\syncmlregularity.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\syncmlreport.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\syncmlsas.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\syncmlviewlog.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\UsbAdapt.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\usbdevice.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\conn_app_dep\usbpoweron.det
Processing BtcmCui.det BtConnScr.det BtMmiHfp.det BtMmiHsp.det BtMmiObex.det BtMmiObexScr.det BtMmiOpp.det BtMmiRecv.det btmmiscopath.det BtMmiScr.det BtMmiSend.det BtMmiSetting.det CbmAppMain.det CbmCui.det connectivity.det ConnectManageMain.det DataAccountApi.det DataAccountApp.det DataAccountCui.det dataaccountxml.det DataConnectionSIM.det DataRoaming.det DLAgentAppCore.det DLAgentAppEvtHdlr.det DLAgentAppMain.det DLAgentAppNCenter.det DLAgentAppScrDraw.det DLAgentAppScrHdlr.det NfcSetting.det syncmlaccount.det syncmlchangelog.det syncmlcommon.det syncmldevice.det syncmlemail.det syncmlfolder.det syncmlhandler.det syncmlmain.det syncmlotap.det syncmlpcsync.det syncmlregularity.det syncmlreport.det syncmlsas.det syncmlviewlog.det UsbAdapt.det usbdevice.det usbpoweron.det
make[2]: Leaving directory `D:/Project/61D_GPRS_1418/CODE_V00'