media_app.log 128 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826
Module media_app is in DEFALUT mode
Compiling plutommi\CUI\CamcorderCui\CamcorderCui.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\CamcorderCui\CamcorderCui.c: 7 warnings, 0 errors
Compiling plutommi\CUI\CameraCui\CameraCui.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\CameraCui\CameraCui.c: 7 warnings, 0 errors
Compiling plutommi\mtkapp\fmradio\fmradiosrc\FMRadioSchd.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\fmradio\fmradiosrc\FMRadioSchd.c: 3 warnings, 0 errors
Compiling plutommi\cui\ImageClipCui\ImageClipCuiSrc\ImageClipCui.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\cui\ImageClipCui\ImageClipCuiSrc\ImageClipCui.c: 3 warnings, 0 errors
Compiling plutommi\cui\ImageClipCui\ImageClipCuiSrc\ImageClipCuiOSD.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\cui\ImageClipCui\ImageClipCuiSrc\ImageClipCuiOSD.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\ImageView\ImageViewSrc\ImgViewUtil.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\ImageView\ImageViewSrc\ImgViewUtil.c: 8 warnings, 0 errors
Compiling plutommi\mtkapp\ImageView\ImageViewSrc\ImgViewer.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\ImageView\ImageViewSrc\ImgViewer.c: 8 warnings, 0 errors
Compiling plutommi\mtkapp\ImageView\ImageViewSrc\ImgViewerCacheAdp.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\ImageView\ImageViewSrc\ImgViewerCacheAdp.c: 4 warnings, 0 errors
Compiling plutommi\mtkapp\ImageView\ImageViewSrc\ImgViewerCacheDB.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\ImageView\ImageViewSrc\ImgViewerCacheDB.c: 4 warnings, 0 errors
Compiling plutommi\mtkapp\ImageView\ImageViewSrc\ImgViewerCacheInfc.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\ImageView\ImageViewSrc\ImgViewerCacheInfc.c: 4 warnings, 0 errors
Compiling plutommi\mtkapp\ImageView\ImageViewSrc\ImgViewerCacheMgr.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\ImageView\ImageViewSrc\ImgViewerCacheMgr.c: 4 warnings, 0 errors
Compiling plutommi\mtkapp\ImageView\ImageViewSrc\ImgViewerSkin.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\ImageView\ImageViewSrc\ImgViewerSkin.c: 4 warnings, 0 errors
Compiling plutommi\CUI\ImageViewCui\ImgviewCui.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\ImageViewCui\ImgviewCui.c: 5 warnings, 0 errors
Compiling plutommi\CUI\ImageViewCui\ImgviewCuiScrn.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\ImageViewCui\ImgviewCuiScrn.c", line 2328: Warning:  #177-D: variable "pscrn_data" was declared but never referenced
      cui_iv_scrndata *pscrn_data = &pcui->scrn_data;
                       ^
"plutommi\CUI\ImageViewCui\ImgviewCuiScrn.c", line 2397: Warning:  #177-D: variable "h_layer" was declared but never referenced
      gdi_handle h_layer;
                 ^
"plutommi\CUI\ImageViewCui\ImgviewCuiScrn.c", line 2398: Warning:  #177-D: variable "h_switch" was declared but never referenced
      gdi_handle h_switch = GDI_LAYER_EMPTY_HANDLE;
                 ^
"plutommi\CUI\ImageViewCui\ImgviewCuiScrn.c", line 2399: Warning:  #177-D: variable "h_panel" was declared but never referenced
      gdi_handle h_panel = GDI_LAYER_EMPTY_HANDLE;
                 ^
"plutommi\CUI\ImageViewCui\ImgviewCuiScrn.c", line 2400: Warning:  #177-D: variable "h_title" was declared but never referenced
      gdi_handle h_title = GDI_LAYER_EMPTY_HANDLE;
                 ^
"plutommi\CUI\ImageViewCui\ImgviewCuiScrn.c", line 5665: Warning:  #223-D: function "IsUrduSet" declared implicitly
                   if(IsUrduSet()||IsPersianSet())
                      ^
"plutommi\CUI\ImageViewCui\ImgviewCuiScrn.c", line 5665: Warning:  #223-D: function "IsPersianSet" declared implicitly
                   if(IsUrduSet()||IsPersianSet())
                                   ^
"plutommi\CUI\ImageViewCui\ImgviewCuiScrn.c", line 5627: Warning:  #177-D: variable "active_layer" was declared but never referenced
  	gdi_handle active_layer;
  	           ^
"plutommi\CUI\ImageViewCui\ImgviewCuiScrn.c", line 5629: Warning:  #177-D: variable "pscrn_data" was declared but never referenced
      cui_iv_scrndata *pscrn_data = &pcui->scrn_data;
                       ^
"plutommi\CUI\ImageViewCui\ImgviewCuiScrn.c", line 5711: Warning:  #177-D: variable "active_layer" was declared but never referenced
  	gdi_handle active_layer;
  	           ^
"plutommi\CUI\ImageViewCui\ImgviewCuiScrn.c", line 9051: Warning:  #550-D: variable "pscrn" was set but never used
      cui_iv_scrndata *pscrn;
                       ^
"plutommi\CUI\ImageViewCui\ImgviewCuiScrn.c", line 9621: Warning:  #177-D: function "cui_iv_imgadp_pause" was declared but never referenced
  static void cui_iv_imgadp_pause(cui_iv_cntx *pcui, cui_iv_imgadp_img_struct *pImg)
              ^
"plutommi\CUI\ImageViewCui\ImgviewCuiScrn.c", line 9676: Warning:  #177-D: function "cui_iv_imgadp_resume" was declared but never referenced
  static void cui_iv_imgadp_resume(cui_iv_cntx *pcui, cui_iv_imgadp_img_struct *pImg)
              ^
plutommi\CUI\ImageViewCui\ImgviewCuiScrn.c: 21 warnings, 0 errors
Compiling plutommi\mtkapp\javaagency\javaagencysrc\JavaAgencyEMPerformance.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\javaagency\javaagencysrc\JavaAgencyEMPerformance.c: 7 warnings, 0 errors
Compiling plutommi\mtkapp\javaagency\javaagencysrc\JavaAgencyManager.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\javaagency\javaagencysrc\JavaAgencyManager.c: 7 warnings, 0 errors
Compiling plutommi\mtkapp\javaagency\javaagencysrc\JavaAgencyNCenter.cpp ... 
Compiling plutommi\mtkapp\javaagency\javaagencysrc\JavaAgencyNetworkProfile.c ... 
Compiling plutommi\mtkapp\javaagency\javaagencysrc\JavaAgencySettings.c ... 
Compiling plutommi\mtkapp\ImageView\ImageViewSrc\MediaAppFrame.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\ImageView\ImageViewSrc\MediaAppFrame.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\ImageView\ImageViewSrc\MediaAppPanel.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\ImageView\ImageViewSrc\MediaAppPanel.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\MediaPlayer\MediaPlayerSrc\MediaPlayerMain.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\MediaPlayer\MediaPlayerSrc\MediaPlayerMain.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\MediaPlayer\MediaPlayerSrc\MediaPlayerMsgHandler.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\MediaPlayer\MediaPlayerSrc\MediaPlayerMsgHandler.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\MediaPlayer\MediaPlayerSrc\MediaPlayerSingleApp.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\MediaPlayer\MediaPlayerSrc\MediaPlayerSingleApp.c: 3 warnings, 0 errors
Compiling plutommi\CUI\VdoRecCui\VdoRecCui.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\CUI\VdoRecCui\VdoRecCui.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\audioplayer\audioplayersrc\audioplayerdetails.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\audioplayer\audioplayersrc\audioplayerdetails.c", line 1508: Warning:  #177-D: variable "inline_id" was declared but never referenced
      mmi_id inline_id;
             ^
plutommi\mtkapp\audioplayer\audioplayersrc\audioplayerdetails.c: 9 warnings, 0 errors
Compiling plutommi\mtkapp\audioplayer\audioplayersrc\audioplayermainscreen.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\audioplayer\audioplayersrc\audioplayermainscreen.c", line 2969: Warning:  #188-D: enumerated type mixed with another type
                      0
                      ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayermainscreen.c", line 3435: Warning:  #177-D: variable "i" was declared but never referenced
      S32 i, x, y;
          ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayermainscreen.c", line 3435: Warning:  #177-D: variable "x" was declared but never referenced
      S32 i, x, y;
             ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayermainscreen.c", line 3435: Warning:  #177-D: variable "y" was declared but never referenced
      S32 i, x, y;
                ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayermainscreen.c", line 3436: Warning:  #177-D: variable "num_w" was declared but never referenced
      S32 num_w, col_w;
          ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayermainscreen.c", line 3436: Warning:  #177-D: variable "col_w" was declared but never referenced
      S32 num_w, col_w;
                 ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayermainscreen.c", line 3437: Warning:  #177-D: variable "offset_y" was declared but never referenced
      S32 offset_y;
          ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayermainscreen.c", line 3440: Warning:  #177-D: variable "time_width" was declared but never referenced
      S32 time_width = 0;
          ^
plutommi\mtkapp\audioplayer\audioplayersrc\audioplayermainscreen.c: 16 warnings, 0 errors
Compiling plutommi\mtkapp\audioplayer\audioplayersrc\audioplayermsghandler.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\audioplayer\audioplayersrc\audioplayermsghandler.c", line 2406: Warning:  #177-D: variable "error" was declared but never referenced
      S16 error;
          ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayermsghandler.c", line 2591: Warning:  #177-D: variable "error" was declared but never referenced
       S16 error;
           ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayermsghandler.c", line 654: Warning:  #177-D: function "mmi_audply_is_play_speed_normal" was declared but never referenced
  static MMI_BOOL mmi_audply_is_play_speed_normal(void);
                  ^
plutommi\mtkapp\audioplayer\audioplayersrc\audioplayermsghandler.c: 11 warnings, 0 errors
Compiling plutommi\mtkapp\audioplayer\audioplayersrc\audioplayerplaylist.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\audioplayer\audioplayersrc\audioplayerplaylist.c", line 3240: Warning:  #177-D: variable "error" was declared but never referenced
      S16 error;
          ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayerplaylist.c", line 3730: Warning:  #177-D: variable "error" was declared but never referenced
      	S16 error;
      	    ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayerplaylist.c", line 3846: Warning:  #177-D: variable "error" was declared but never referenced
  	S16 error;
  	    ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayerplaylist.c", line 13504: Warning:  #177-D: variable "error" was declared but never referenced
      S16 error;
          ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayerplaylist.c", line 13689: Warning:  #177-D: variable "error" was declared but never referenced
      S16 error;
          ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayerplaylist.c", line 11567: Warning:  #550-D: variable "counter" was set but never used
  static U32 counter = 0;
             ^
plutommi\mtkapp\audioplayer\audioplayersrc\audioplayerplaylist.c: 14 warnings, 0 errors
Compiling plutommi\mtkapp\audioplayer\audioplayersrc\audioplayersettings.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\audioplayer\audioplayersrc\audioplayersettings.c", line 1300: Warning:  #550-D: variable "i" was set but never used
      U16 i = 0;
          ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayersettings.c", line 2998: Warning:  #177-D: variable "error" was declared but never referenced
      S16 error;
          ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayersettings.c", line 476: Warning:  #177-D: variable "audply_setting_item_icons" was declared but never referenced
  static MMI_ID_TYPE audply_setting_item_icons[] = 
                     ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayersettings.c", line 596: Warning:  #177-D: variable "mmi_audply_player_setting_inline_screen" was declared but never referenced
  static const cui_inline_struct mmi_audply_player_setting_inline_screen = 
                                 ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayersettings.c", line 1035: Warning:  #550-D: variable "g_mmi_audply_two_layer_settings_highlighted_item" was set but never used
  static U16 g_mmi_audply_two_layer_settings_highlighted_item = 0;
             ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayersettings.c", line 2500: Warning:  #177-D: function "mmi_audply_settings_inline_set_storage" was declared but never referenced
  static void mmi_audply_settings_inline_set_storage(MMI_ID inline_id)
              ^
plutommi\mtkapp\audioplayer\audioplayersrc\audioplayersettings.c: 14 warnings, 0 errors
Compiling plutommi\mtkapp\audioplayer\audioplayersrc\audioplayersingleplayer.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\audioplayer\audioplayersrc\audioplayersingleplayer.c", line 547: Warning:  #223-D: function "mmi_audply_gdi_layer_push_clip" declared implicitly
      mmi_audply_gdi_layer_push_clip(x1, y1, x2, y2);
      ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayersingleplayer.c", line 572: Warning:  #223-D: function "mmi_audply_gdi_layer_pop_clip_blt" declared implicitly
     mmi_audply_gdi_layer_pop_clip_blt(x1, y1, x2, y2);
     ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayersingleplayer.c", line 749: Warning:  #177-D: variable "error" was declared but never referenced
      S16 error;
          ^
plutommi\mtkapp\audioplayer\audioplayersrc\audioplayersingleplayer.c: 11 warnings, 0 errors
Compiling plutommi\mtkapp\audioplayer\audioplayersrc\audioplayersrc.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\audioplayer\audioplayersrc\audioplayersrc.c", line 1422: Warning:  #177-D: variable "error" was declared but never referenced
      S16 error;
          ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayersrc.c", line 1579: Warning:  #177-D: variable "error" was declared but never referenced
      S16 error;
          ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayersrc.c", line 2159: Warning:  #177-D: variable "error" was declared but never referenced
  	S16 error;
  	    ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayersrc.c", line 2982: Warning:  #177-D: variable "error" was declared but never referenced
      S16 error;
          ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayersrc.c", line 3186: Warning:  #177-D: variable "error" was declared but never referenced
      S16 error;
          ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayersrc.c", line 5461: Warning:  #177-D: variable "error" was declared but never referenced
          S16 error;
              ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayersrc.c", line 5658: Warning:  #177-D: variable "error" was declared but never referenced
          S16 error;
              ^
"plutommi\mtkapp\audioplayer\audioplayersrc\audioplayersrc.c", line 1088: Warning:  #177-D: function "mmi_audply_press_button_canceled" was declared but never referenced
  static void mmi_audply_press_button_canceled(void)
              ^
plutommi\mtkapp\audioplayer\audioplayersrc\audioplayersrc.c: 16 warnings, 0 errors
Compiling plutommi\mtkapp\audioplayer\audioplayersrc\audioplayerutil.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\mtkapp\audioplayer\audioplayersrc\audioplayerutil.c: 5 warnings, 0 errors
Compiling plutommi\mtkapp\avatar\avatarsrc\avatar.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\avatar\avatarsrc\avatar.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\camera\camerasrc\cameraapp.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\camera\camerasrc\cameraapp.c", line 5299: Warning:  #177-D: variable "error" was declared but never referenced
  	S16 error;
  	    ^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 6889: Warning:  #177-D: variable "error" was declared but never referenced
  	S16 error;
  	    ^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 6977: Warning:  #14-D: extra text after expected end of preprocessing directive
  #endif __CAMERA_FEATURE_EFFECT_CUSTOM__
         ^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 7823: Warning:  #177-D: variable "create_result" was declared but never referenced
  	S32 create_result;
  	    ^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 8474: Warning:  #167-D: argument of type "U32 *" is incompatible with parameter of type "S32 *"
  		gdi_image_get_dimension_id(IMG_ID_CAMERA_OSD_ZOOM_HEAD, &zoom_head_width, &zoom_head_height);
  		                                                        ^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 8474: Warning:  #167-D: argument of type "U32 *" is incompatible with parameter of type "S32 *"
  		gdi_image_get_dimension_id(IMG_ID_CAMERA_OSD_ZOOM_HEAD, &zoom_head_width, &zoom_head_height);
  		                                                                          ^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 8475: Warning:  #167-D: argument of type "U32 *" is incompatible with parameter of type "S32 *"
  		gdi_image_get_dimension_id(IMG_ID_CAMERA_OSD_ZOOM_INC, &zoom_inc_width, &zoom_inc_height);
  		                                                       ^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 8475: Warning:  #167-D: argument of type "U32 *" is incompatible with parameter of type "S32 *"
  		gdi_image_get_dimension_id(IMG_ID_CAMERA_OSD_ZOOM_INC, &zoom_inc_width, &zoom_inc_height);
  		                                                                        ^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 8476: Warning:  #167-D: argument of type "U32 *" is incompatible with parameter of type "S32 *"
  		gdi_image_get_dimension_id(IMG_ID_CAMERA_OSD_ZOOM_DEC, &zoom_dec_width, &zoom_dec_height);
  		                                                       ^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 8476: Warning:  #167-D: argument of type "U32 *" is incompatible with parameter of type "S32 *"
  		gdi_image_get_dimension_id(IMG_ID_CAMERA_OSD_ZOOM_DEC, &zoom_dec_width, &zoom_dec_height);
  		                                                                        ^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 9754: Warning:  #940-D: missing return statement at end of non-void function "mmi_camera_check_storage"
  }
  ^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 10044: Warning:  #177-D: variable "layer_buf_size" was declared but never referenced
  	U32 layer_buf_size = 0;
  	    ^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 11632: Warning:  #14-D: extra text after expected end of preprocessing directive
  #endif __MMI_CAMERA_SLIM__   
         ^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 13525: Warning:  #14-D: extra text after expected end of preprocessing directive
  #ifdef __CAMERA_FEATURE_CONT_SHOT_BURST__)    
                                           ^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 13539: Warning:  #14-D: extra text after expected end of preprocessing directive
  #ifdef __CAMERA_FEATURE_CONT_SHOT_BURST__)  
                                           ^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 17074: Warning:  #144-D: a value of type "void (*)(camera_hotkey_item_struct *)" cannot be used to initialize an entity of type "void (*)(const struct camera_hotkey_item *)"
  	NULL, NULL, mmi_camera_preview_image_size_change 
  	            ^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 17228: Warning:  #144-D: a value of type "void (*)(void)" cannot be used to initialize an entity of type "void (*)(U16)"
  	NULL, mmi_camera_switch_to_vdorec_app, NULL 
  	      ^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 17708: Warning:  #177-D: variable "index" was declared but never referenced
  	S32 index;
  	    ^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 22064: Warning:  #223-D: function "mmi_camera_sub_entry_image_setting_screen" declared implicitly
  		mmi_camera_sub_entry_image_setting_screen();
  		^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 22129: Warning:  #223-D: function "mmi_camera_entry_forward_screen" declared implicitly
  			mmi_camera_entry_forward_screen();
  			^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 22256: Warning:  #177-D: variable "error" was declared but never referenced
  	S16 error;	
  	    ^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 17690: Warning:  #177-D: function "mmi_camera_contshot_quickview" was declared but never referenced
  static void mmi_camera_contshot_quickview(void)
              ^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 9737: Warning:  #177-D: function "mmi_camera_check_storage" was declared but never referenced
  static MMI_BOOL mmi_camera_check_storage(void)
                  ^
"plutommi\mtkapp\camera\camerasrc\cameraapp.c", line 17279: Warning:  #177-D: function "mmi_camera_icon_press" was declared but never referenced
  static void mmi_camera_icon_press(U16 icon_id)
              ^
plutommi\mtkapp\camera\camerasrc\cameraapp.c: 34 warnings, 0 errors
Compiling plutommi\mtkapp\camera\camerasrc\cameramenu.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\camera\camerasrc\cameramenu.c", line 3506: Warning:  #223-D: function "topwell_restore_camera_setting" declared implicitly
      topwell_restore_camera_setting();
      ^
"plutommi\mtkapp\camera\camerasrc\cameramenu.c", line 3560: Warning:  #177-D: variable "g_cat11_selected_item" was declared but never referenced
  static U16 g_cat11_selected_item;
             ^
plutommi\mtkapp\camera\camerasrc\cameramenu.c: 12 warnings, 0 errors
Compiling plutommi\mtkapp\fmradio\fmradiosrc\fmradiomainscreen.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\FMRadioDef.h", line 252: Warning:  #47-D: incompatible redefinition of macro "MAX_NAME_INPUT_LEN" (declared at line 1760 of "custom/common/PLUTO_MMI/custom_mmi_default_value.h")
  #define MAX_NAME_INPUT_LEN 12
          ^
"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\fmradio\fmradiosrc\fmradiomainscreen.c", line 2625: Warning:  #177-D: variable "flags" was declared but never referenced
      S32 flags = 0;
          ^
"plutommi\mtkapp\fmradio\fmradiosrc\fmradiomainscreen.c", line 3775: Warning:  #111-D: statement is unreachable
      if (is_shown)
      ^
plutommi\mtkapp\fmradio\fmradiosrc\fmradiomainscreen.c: 11 warnings, 0 errors
Compiling plutommi\mtkapp\fmradio\fmradiosrc\fmradiomsghdlr.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\FMRadioDef.h", line 252: Warning:  #47-D: incompatible redefinition of macro "MAX_NAME_INPUT_LEN" (declared at line 1760 of "custom/common/PLUTO_MMI/custom_mmi_default_value.h")
  #define MAX_NAME_INPUT_LEN 12
          ^
"header_temp\gui_typedef.h", line 4024: Warning:  #14-D: extra text after expected end of preprocessing directive
  #endif  /__MMI_AUDIO_REVERB_EFFECT__
          ^
plutommi\mtkapp\fmradio\fmradiosrc\fmradiomsghdlr.c: 6 warnings, 0 errors
Compiling plutommi\mtkapp\fmradio\fmradiosrc\fmradiosrc.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\FMRadioDef.h", line 252: Warning:  #47-D: incompatible redefinition of macro "MAX_NAME_INPUT_LEN" (declared at line 1760 of "custom/common/PLUTO_MMI/custom_mmi_default_value.h")
  #define MAX_NAME_INPUT_LEN 12
          ^
"plutommi\mtkapp\fmradio\fmradiosrc\fmradiosrc.c", line 4572: Warning:  #223-D: function "srv_mode_switch_is_network_service_available" declared implicitly
      if (srv_mode_switch_is_network_service_available() == MMI_FALSE)
          ^
"plutommi\mtkapp\fmradio\fmradiosrc\fmradiosrc.c", line 11420: Warning:  #223-D: function "topwell_mmi_fmrdo_goto_channel" declared implicitly
       topwell_mmi_fmrdo_goto_channel(next_channel);
       ^
"plutommi\mtkapp\fmradio\fmradiosrc\fmradiosrc.c", line 11481: Warning:  #223-D: function "topwell_mmi_fmrdo_goto_channel" declared implicitly
                      topwell_mmi_fmrdo_goto_channel(next_channel);   /* goto next channel */
                      ^
"plutommi\mtkapp\fmradio\fmradiosrc\fmradiosrc.c", line 11488: Warning:  #223-D: function "topwell_mmi_fmrdo_goto_channel" declared implicitly
                      topwell_mmi_fmrdo_goto_channel(next_channel);
                      ^
"plutommi\mtkapp\fmradio\fmradiosrc\fmradiosrc.c", line 11398: Warning: C3017W: next_channel may be used before being set
    S16 next_channel;
        ^
plutommi\mtkapp\fmradio\fmradiosrc\fmradiosrc.c: 14 warnings, 0 errors
Compiling plutommi\mtkapp\fmschedulerec\fmschedulerecsrc\fmschedulerec.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\fmschedulerec\fmschedulerecsrc\fmschedulerec.c: 7 warnings, 0 errors
Compiling plutommi\mtkapp\fmschedulerec\fmschedulerecsrc\fmschedulerecmsghdlr.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\fmschedulerec\fmschedulerecsrc\fmschedulerecmsghdlr.c: 7 warnings, 0 errors
Compiling plutommi\mtkapp\fmschedulerec\fmschedulerecsrc\fmschedulerecscreen.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\fmschedulerec\fmschedulerecsrc\fmschedulerecscreen.c: 7 warnings, 0 errors
Compiling plutommi\mtkapp\fmschedulerec\fmschedulerecsrc\fmschedulerecsetting.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\fmschedulerec\fmschedulerecsrc\fmschedulerecsetting.c: 7 warnings, 0 errors
Compiling plutommi\mmi\funandgames\funandgamessrc\funandgamessrc.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\funandgames\funandgamessrc\funandgamessrc.c", line 1213: Warning:  #223-D: function "mmi_imgview_init_app" declared implicitly
      mmi_imgview_init_app();
      ^
plutommi\mmi\funandgames\funandgamessrc\funandgamessrc.c: 9 warnings, 0 errors
Compiling plutommi\mtkapp\javaagency\javaagencysrc\javaagencyem.c ... 
Compiling plutommi\mtkapp\javaagency\javaagencysrc\javaagencymidsinstall.c ... 
Compiling plutommi\mtkapp\javaagency\javaagencysrc\javaagencysrc.c ... 
Compiling plutommi\mtkapp\javaagency\javaagencysrc\javaagencytaskswitch.c ... 
Compiling plutommi\mtkapp\javaagency\javaagencysrc\javaagencytimealarm.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\javaagency\javaagencysrc\javaagencytimealarm.c: 7 warnings, 0 errors
Compiling plutommi\mtkapp\javaagency\javaagencysrc\javaagencyutil.c ... 
Compiling plutommi\mmi\funandgames\funandgamessrc\javagame.c ... 
Compiling plutommi\mmi\funandgames\funandgamessrc\pictureeditor.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\mmi\funandgames\funandgamessrc\pictureeditor.c: 7 warnings, 0 errors
Compiling plutommi\mmi\funandgames\funandgamessrc\pictureeditorengine.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\mmi\funandgames\funandgamessrc\pictureeditorengine.c: 7 warnings, 0 errors
Compiling plutommi\mmi\funandgames\funandgamessrc\pictureeditorhandler.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\mmi\funandgames\funandgamessrc\pictureeditorhandler.c: 7 warnings, 0 errors
Compiling plutommi\mtkapp\sndrec\sndrecsrc\sndrecdraw.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\sndrec\sndrecsrc\sndrecdraw.c: 3 warnings, 0 errors
Compiling plutommi\mtkapp\sndrec\sndrecsrc\sndrecmsg.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\SndrecDef.h", line 206: Warning:  #47-D: incompatible redefinition of macro "MMI_SNDREC_DEFAULT_PATH_BG" (declared at line 203)
  #define MMI_SNDREC_DEFAULT_PATH_BG   L":\\Auto call record\\"
          ^
"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\sndrec\sndrecsrc\sndrecmsg.c: 9 warnings, 0 errors
Compiling plutommi\mtkapp\sndrec\sndrecsrc\sndrecui.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\SndrecDef.h", line 206: Warning:  #47-D: incompatible redefinition of macro "MMI_SNDREC_DEFAULT_PATH_BG" (declared at line 203)
  #define MMI_SNDREC_DEFAULT_PATH_BG   L":\\Auto call record\\"
          ^
"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\sndrec\sndrecsrc\sndrecui.c", line 1830: Warning:  #223-D: function "mmi_ucm_get_disp_name" declared implicitly
          mmi_ucm_get_disp_name(g_topwell_incall_name_path);
          ^
"plutommi\mtkapp\sndrec\sndrecsrc\sndrecui.c", line 2686: Warning:  #111-D: statement is unreachable
      return MMI_FALSE;
      ^
"plutommi\mtkapp\sndrec\sndrecsrc\sndrecui.c", line 2757: Warning:  #177-D: variable "attribut" was declared but never referenced
      S32 attribut;
          ^
"plutommi\mtkapp\sndrec\sndrecsrc\sndrecui.c", line 3037: Warning:  #223-D: function "PhnsetGetTimeFormat" declared implicitly
  	if (PhnsetGetTimeFormat())  
  	    ^
"plutommi\mtkapp\sndrec\sndrecsrc\sndrecui.c", line 3597: Warning:  #223-D: function "topwell_titlebar_set_background_flag" declared implicitly
      topwell_titlebar_set_background_flag();
      ^
"plutommi\mtkapp\sndrec\sndrecsrc\sndrecui.c", line 7279: Warning:  #177-D: variable "i" was declared but never referenced
  	U16 i = 0;
  	    ^
plutommi\mtkapp\sndrec\sndrecsrc\sndrecui.c: 15 warnings, 0 errors
Compiling plutommi\mtkapp\sndrec\sndrecsrc\sndrecutil.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\SndrecDef.h", line 206: Warning:  #47-D: incompatible redefinition of macro "MMI_SNDREC_DEFAULT_PATH_BG" (declared at line 203)
  #define MMI_SNDREC_DEFAULT_PATH_BG   L":\\Auto call record\\"
          ^
"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\sndrec\sndrecsrc\sndrecutil.c: 9 warnings, 0 errors
Compiling plutommi\mtkapp\soundrecorder\soundrecordersrc\soundrecordermsghandler.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\soundrecorder\soundrecordersrc\soundrecordermsghandler.c: 7 warnings, 0 errors
Compiling plutommi\mtkapp\soundrecorder\soundrecordersrc\soundrecordersrc.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\soundrecorder\soundrecordersrc\soundrecordersrc.c: 7 warnings, 0 errors
Compiling plutommi\mtkapp\swflash\swflashsrc\swflashdlsrc.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\swflash\swflashsrc\swflashdlsrc.c: 7 warnings, 0 errors
Compiling plutommi\mtkapp\swflash\swflashsrc\swflashplayer.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\swflash\swflashsrc\swflashplayer.c: 7 warnings, 0 errors
Compiling plutommi\mtkapp\video\videosrc\vdoplyapp.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\video\videosrc\vdoplyapp.c", line 5865: Warning:  #177-D: variable "error" was declared but never referenced
      S16 error;
          ^
"plutommi\mtkapp\video\videosrc\vdoplyapp.c", line 7884: Warning:  #550-D: variable "width" was set but never used
  	S32 width;
  	    ^
"plutommi\mtkapp\video\videosrc\vdoplyapp.c", line 7885: Warning:  #550-D: variable "height" was set but never used
  	S32 height; 
  	    ^
"plutommi\mtkapp\video\videosrc\vdoplyapp.c", line 7886: Warning:  #177-D: variable "load_width" was declared but never referenced
  	S32 load_width, load_height;
  	    ^
"plutommi\mtkapp\video\videosrc\vdoplyapp.c", line 7886: Warning:  #177-D: variable "load_height" was declared but never referenced
  	S32 load_width, load_height;
  	                ^
"plutommi\mtkapp\video\videosrc\vdoplyapp.c", line 18489: Warning:  #177-D: variable "video_info" was declared but never referenced
      mdi_video_info_struct video_info;    
                            ^
"plutommi\mtkapp\video\videosrc\vdoplyapp.c", line 18957: Warning:  #550-D: variable "prev_ui_type" was set but never used
      vdoply_ui_type_neum prev_ui_type;
                          ^
"plutommi\mtkapp\video\videosrc\vdoplyapp.c", line 20087: Warning:  #177-D: variable "error" was declared but never referenced
      S16 error;
          ^
"plutommi\mtkapp\video\videosrc\vdoplyapp.c", line 32123: Warning:  #177-D: variable "error" was declared but never referenced
      S16 error;
          ^
"plutommi\mtkapp\video\videosrc\vdoplyapp.c", line 32155: Warning:  #177-D: variable "error" was declared but never referenced
      S16 error;
          ^
"plutommi\mtkapp\video\videosrc\vdoplyapp.c", line 32294: Warning:  #177-D: variable "error" was declared but never referenced
      S16 error;
          ^
"plutommi\mtkapp\video\videosrc\vdoplyapp.c", line 3312: Warning:  #177-D: variable "lastPressSeekKeyTime" was declared but never referenced
  static kal_uint32 lastPressSeekKeyTime;
                    ^
"plutommi\mtkapp\video\videosrc\vdoplyapp.c", line 3313: Warning:  #550-D: variable "isFirstSeek" was set but never used
  static kal_bool isFirstSeek;
                  ^
"plutommi\mtkapp\video\videosrc\vdoplyapp.c", line 3314: Warning:  #177-D: variable "isInvalidSeek" was declared but never referenced
  static kal_bool isInvalidSeek;
                  ^
"plutommi\mtkapp\video\videosrc\vdoplyapp.c", line 26182: Warning:  #177-D: function "mmi_vdoply_app_launch_proc" was declared but never referenced
  static MMI_RET mmi_vdoply_app_launch_proc(mmi_event_struct *evt)
                 ^
"plutommi\mtkapp\video\videosrc\vdoplyapp.c", line 5237: Warning:  #177-D: function "mmi_vdoply_connect_bt" was declared but never referenced
  static void mmi_vdoply_connect_bt(void)
              ^
"plutommi\mtkapp\video\videosrc\vdoplyapp.c", line 7824: Warning:  #177-D: function "mmi_vdoply_draw_fullscr_play_region_bg" was declared but never referenced
  static void mmi_vdoply_draw_fullscr_play_region_bg(void)
              ^
"plutommi\mtkapp\video\videosrc\vdoplyapp.c", line 15689: Warning:  #177-D: function "mmi_vdoply_ck_press" was declared but never referenced
  static void mmi_vdoply_ck_press(void)
              ^
"plutommi\mtkapp\video\videosrc\vdoplyapp.c", line 15716: Warning:  #177-D: function "mmi_vdoply_ck_release" was declared but never referenced
  static void mmi_vdoply_ck_release(void)
              ^
plutommi\mtkapp\video\videosrc\vdoplyapp.c: 29 warnings, 0 errors
Compiling plutommi\mtkapp\video\videosrc\vdorecapp.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\video\videosrc\vdorecapp.c", line 9302: Warning:  #177-D: variable "error" was declared but never referenced
      S16 error;
          ^
"plutommi\mtkapp\video\videosrc\vdorecapp.c", line 9347: Warning:  #177-D: variable "error" was declared but never referenced
      S16 error;
          ^
"plutommi\mtkapp\video\videosrc\vdorecapp.c", line 9523: Warning:  #177-D: variable "error" was declared but never referenced
      S16 error = 0;
          ^
"plutommi\mtkapp\video\videosrc\vdorecapp.c", line 11001: Warning:  #177-D: variable "error" was declared but never referenced
      S16 error;
          ^
"plutommi\mtkapp\video\videosrc\vdorecapp.c", line 11553: Warning:  #177-D: variable "event_type" was declared but never referenced
      mmi_event_notify_enum event_type;
                            ^
"plutommi\mtkapp\video\videosrc\vdorecapp.c", line 12325: Warning:  #177-D: variable "i" was declared but never referenced
      U32 i;
          ^
"plutommi\mtkapp\video\videosrc\vdorecapp.c", line 13679: Warning:  #177-D: variable "error" was declared but never referenced
      S16 error;
          ^
"plutommi\mtkapp\video\videosrc\vdorecapp.c", line 16664: Warning:  #167-D: argument of type "U32 *" is incompatible with parameter of type "S32 *"
          gdi_image_get_dimension_id(IMG_ID_VDOREC_TOUCH_OSD_ZOOM_HEAD, &zoom_head_width, &zoom_head_height);
                                                                        ^
"plutommi\mtkapp\video\videosrc\vdorecapp.c", line 16664: Warning:  #167-D: argument of type "U32 *" is incompatible with parameter of type "S32 *"
          gdi_image_get_dimension_id(IMG_ID_VDOREC_TOUCH_OSD_ZOOM_HEAD, &zoom_head_width, &zoom_head_height);
                                                                                          ^
"plutommi\mtkapp\video\videosrc\vdorecapp.c", line 16665: Warning:  #167-D: argument of type "U32 *" is incompatible with parameter of type "S32 *"
          gdi_image_get_dimension_id(IMG_ID_VDOREC_TOUCH_OSD_ZOOM_INC, &zoom_inc_width, &zoom_inc_height);
                                                                       ^
"plutommi\mtkapp\video\videosrc\vdorecapp.c", line 16665: Warning:  #167-D: argument of type "U32 *" is incompatible with parameter of type "S32 *"
          gdi_image_get_dimension_id(IMG_ID_VDOREC_TOUCH_OSD_ZOOM_INC, &zoom_inc_width, &zoom_inc_height);
                                                                                        ^
"plutommi\mtkapp\video\videosrc\vdorecapp.c", line 16666: Warning:  #167-D: argument of type "U32 *" is incompatible with parameter of type "S32 *"
          gdi_image_get_dimension_id(IMG_ID_VDOREC_TOUCH_OSD_ZOOM_DEC, &zoom_dec_width, &zoom_dec_height);
                                                                       ^
"plutommi\mtkapp\video\videosrc\vdorecapp.c", line 16666: Warning:  #167-D: argument of type "U32 *" is incompatible with parameter of type "S32 *"
          gdi_image_get_dimension_id(IMG_ID_VDOREC_TOUCH_OSD_ZOOM_DEC, &zoom_dec_width, &zoom_dec_height);
                                                                                        ^
"plutommi\mtkapp\video\videosrc\vdorecapp.c", line 3019: Warning:  #550-D: variable "total_pre_region_size" was set but never used
  static S32 total_pre_region_size = 0;
             ^
"plutommi\mtkapp\video\videosrc\vdorecapp.c", line 15596: Warning:  #177-D: function "mmi_vdorec_draw_title" was declared but never referenced
  static void mmi_vdorec_draw_title(void)
              ^
"plutommi\mtkapp\video\videosrc\vdorecapp.c", line 5802: Warning:  #177-D: function "mmi_vdorec_draw_panel_ev" was declared but never referenced
  static void mmi_vdorec_draw_panel_ev(void)
              ^
"plutommi\mtkapp\video\videosrc\vdorecapp.c", line 17661: Warning:  #177-D: function "mmi_vdorec_draw_hint" was declared but never referenced
  static void mmi_vdorec_draw_hint(void)
              ^
"plutommi\mtkapp\video\videosrc\vdorecapp.c", line 7704: Warning:  #177-D: function "mmi_vdorec_draw_panel_progress_bar" was declared but never referenced
  static void mmi_vdorec_draw_panel_progress_bar(U8 ratio)
              ^
"plutommi\mtkapp\video\videosrc\vdorecapp.c", line 7647: Warning:  #177-D: function "mmi_vdorec_clear_panel_progress_bar" was declared but never referenced
  static void mmi_vdorec_clear_panel_progress_bar(void)
              ^
"plutommi\mtkapp\video\videosrc\vdorecapp.c", line 7820: Warning:  #177-D: function "mmi_vdorec_clear_ev" was declared but never referenced
  static void mmi_vdorec_clear_ev(void)
              ^
"plutommi\mtkapp\video\videosrc\vdorecapp.c", line 16919: Warning:  #177-D: function "mmi_vdorec_init_ui_region" was declared but never referenced
  static void mmi_vdorec_init_ui_region(video_rect_struct *rect_ptr,S32 region,PU8 gdi_layer_buffer_ptr)
              ^
plutommi\mtkapp\video\videosrc\vdorecapp.c: 29 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/media_app.lib --via .\build\KEYTAK61D_GB_11C\gprs\MT6261o\media_app\media_app_sort.via
Warning: L3910W: Old syntax, please use '--create'.
./build/KEYTAK61D_GB_11C/gprs/MT6261o/lib/media_app.lib is updated

.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\audioplayerdetails.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\audioplayermainscreen.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\audioplayermsghandler.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\audioplayerplaylist.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\audioplayersettings.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\audioplayersingleplayer.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\audioplayersrc.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\audioplayerutil.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\avatar.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\CamcorderCui.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\cameraapp.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\CameraCui.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\cameramenu.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\fmradiomainscreen.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\fmradiomsghdlr.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\FMRadioSchd.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\fmradiosrc.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\fmschedulerec.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\fmschedulerecmsghdlr.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\fmschedulerecscreen.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\fmschedulerecsetting.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\funandgamessrc.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\ImageClipCui.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\ImageClipCuiOSD.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\ImgviewCui.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\ImgviewCuiScrn.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\ImgViewer.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\ImgViewerCacheAdp.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\ImgViewerCacheDB.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\ImgViewerCacheInfc.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\ImgViewerCacheMgr.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\ImgViewerSkin.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\ImgViewUtil.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\javaagencyem.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\JavaAgencyEMPerformance.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\JavaAgencyManager.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\javaagencymidsinstall.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\JavaAgencyNCenter.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\JavaAgencyNetworkProfile.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\JavaAgencySettings.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\javaagencysrc.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\javaagencytaskswitch.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\javaagencytimealarm.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\javaagencyutil.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\javagame.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\MediaAppFrame.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\MediaAppPanel.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\MediaPlayerMain.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\MediaPlayerMsgHandler.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\MediaPlayerSingleApp.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\pictureeditor.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\pictureeditorengine.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\pictureeditorhandler.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\sndrecdraw.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\sndrecmsg.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\sndrecui.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\sndrecutil.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\soundrecordermsghandler.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\soundrecordersrc.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\swflashdlsrc.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\swflashplayer.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\vdoplyapp.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\vdorecapp.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\media_app_dep\VdoRecCui.det


Processing audioplayerdetails.det audioplayermainscreen.det audioplayermsghandler.det audioplayerplaylist.det audioplayersettings.det audioplayersingleplayer.det audioplayersrc.det audioplayerutil.det avatar.det CamcorderCui.det cameraapp.det CameraCui.det cameramenu.det fmradiomainscreen.det fmradiomsghdlr.det FMRadioSchd.det fmradiosrc.det fmschedulerec.det fmschedulerecmsghdlr.det fmschedulerecscreen.det fmschedulerecsetting.det funandgamessrc.det ImageClipCui.det ImageClipCuiOSD.det ImgviewCui.det ImgviewCuiScrn.det ImgViewer.det ImgViewerCacheAdp.det ImgViewerCacheDB.det ImgViewerCacheInfc.det ImgViewerCacheMgr.det ImgViewerSkin.det ImgViewUtil.det javaagencyem.det JavaAgencyEMPerformance.det JavaAgencyManager.det javaagencymidsinstall.det JavaAgencyNCenter.det JavaAgencyNetworkProfile.det JavaAgencySettings.det javaagencysrc.det javaagencytaskswitch.det javaagencytimealarm.det javaagencyutil.det javagame.det MediaAppFrame.det MediaAppPanel.det MediaPlayerMain.det MediaPlayerMsgHandler.det MediaPlayerSingleApp.det pictureeditor.det pictureeditorengine.det pictureeditorhandler.det sndrecdraw.det sndrecmsg.det sndrecui.det sndrecutil.det soundrecordermsghandler.det soundrecordersrc.det swflashdlsrc.det swflashplayer.det vdoplyapp.det vdorecapp.det VdoRecCui.det
make[2]: Leaving directory `D:/Project/61D_GPRS_1418/CODE_V00'