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
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
//
// DO NOT EDIT.  THIS FILE IS GENERATED FROM ../../../dist/idl/nsINavHistoryService.idl
//


/// `interface nsINavHistoryResultNode : nsISupports`
///


// The actual type definition for the interface. This struct has methods
// declared on it which will call through its vtable. You never want to pass
// this type around by value, always pass it behind a reference.

#[repr(C)]
pub struct nsINavHistoryResultNode {
    vtable: *const nsINavHistoryResultNodeVTable,

    /// This field is a phantomdata to ensure that the VTable type and any
    /// struct containing it is not safe to send across threads, as XPCOM is
    /// generally not threadsafe.
    ///
    /// XPCOM interfaces in general are not safe to send across threads.
    __nosync: ::std::marker::PhantomData<::std::rc::Rc<u8>>,
}

// Implementing XpCom for an interface exposes its IID, which allows for easy
// use of the `.query_interface<T>` helper method. This also defines that
// method for nsINavHistoryResultNode.
unsafe impl XpCom for nsINavHistoryResultNode {
    const IID: nsIID = nsID(0x91d104bb, 0x17ef, 0x404b,
        [0x9f, 0x9a, 0xd9, 0xed, 0x8d, 0xe6, 0x82, 0x4c]);
}

// We need to implement the RefCounted trait so we can be used with `RefPtr`.
// This trait teaches `RefPtr` how to manage our memory.
unsafe impl RefCounted for nsINavHistoryResultNode {
    #[inline]
    unsafe fn addref(&self) {
        self.AddRef();
    }
    #[inline]
    unsafe fn release(&self) {
        self.Release();
    }
}

// This trait is implemented on all types which can be coerced to from nsINavHistoryResultNode.
// It is used in the implementation of `fn coerce<T>`. We hide it from the
// documentation, because it clutters it up a lot.
#[doc(hidden)]
pub trait nsINavHistoryResultNodeCoerce {
    /// Cheaply cast a value of this type from a `nsINavHistoryResultNode`.
    fn coerce_from(v: &nsINavHistoryResultNode) -> &Self;
}

// The trivial implementation: We can obviously coerce ourselves to ourselves.
impl nsINavHistoryResultNodeCoerce for nsINavHistoryResultNode {
    #[inline]
    fn coerce_from(v: &nsINavHistoryResultNode) -> &Self {
        v
    }
}

impl nsINavHistoryResultNode {
    /// Cast this `nsINavHistoryResultNode` to one of its base interfaces.
    #[inline]
    pub fn coerce<T: nsINavHistoryResultNodeCoerce>(&self) -> &T {
        T::coerce_from(self)
    }
}

// Every interface struct type implements `Deref` to its base interface. This
// causes methods on the base interfaces to be directly avaliable on the
// object. For example, you can call `.AddRef` or `.QueryInterface` directly
// on any interface which inherits from `nsISupports`.
impl ::std::ops::Deref for nsINavHistoryResultNode {
    type Target = nsISupports;
    #[inline]
    fn deref(&self) -> &nsISupports {
        unsafe {
            ::std::mem::transmute(self)
        }
    }
}

// Ensure we can use .coerce() to cast to our base types as well. Any type which
// our base interface can coerce from should be coercable from us as well.
impl<T: nsISupportsCoerce> nsINavHistoryResultNodeCoerce for T {
    #[inline]
    fn coerce_from(v: &nsINavHistoryResultNode) -> &Self {
        T::coerce_from(v)
    }
}

// This struct represents the interface's VTable. A pointer to a statically
// allocated version of this struct is at the beginning of every nsINavHistoryResultNode
// object. It contains one pointer field for each method in the interface. In
// the case where we can't generate a binding for a method, we include a void
// pointer.
#[doc(hidden)]
#[repr(C)]
pub struct nsINavHistoryResultNodeVTable {
    /// We need to include the members from the base interface's vtable at the start
    /// of the VTable definition.
    pub __base: nsISupportsVTable,

    /* readonly attribute nsINavHistoryContainerResultNode parent; */
    pub GetParent: unsafe extern "system" fn (this: *const nsINavHistoryResultNode, aParent: *mut *const nsINavHistoryContainerResultNode) -> nsresult,

    /* readonly attribute nsINavHistoryResult parentResult; */
    pub GetParentResult: unsafe extern "system" fn (this: *const nsINavHistoryResultNode, aParentResult: *mut *const nsINavHistoryResult) -> nsresult,

    /* readonly attribute AUTF8String uri; */
    pub GetUri: unsafe extern "system" fn (this: *const nsINavHistoryResultNode, aUri: &mut ::nsstring::nsACString) -> nsresult,

    /* readonly attribute unsigned long type; */
    pub GetType: unsafe extern "system" fn (this: *const nsINavHistoryResultNode, aType: *mut libc::uint32_t) -> nsresult,

    /* readonly attribute AUTF8String title; */
    pub GetTitle: unsafe extern "system" fn (this: *const nsINavHistoryResultNode, aTitle: &mut ::nsstring::nsACString) -> nsresult,

    /* readonly attribute unsigned long accessCount; */
    pub GetAccessCount: unsafe extern "system" fn (this: *const nsINavHistoryResultNode, aAccessCount: *mut libc::uint32_t) -> nsresult,

    /* readonly attribute PRTime time; */
    pub GetTime: unsafe extern "system" fn (this: *const nsINavHistoryResultNode, aTime: *mut PRTime) -> nsresult,

    /* readonly attribute AUTF8String icon; */
    pub GetIcon: unsafe extern "system" fn (this: *const nsINavHistoryResultNode, aIcon: &mut ::nsstring::nsACString) -> nsresult,

    /* readonly attribute long indentLevel; */
    pub GetIndentLevel: unsafe extern "system" fn (this: *const nsINavHistoryResultNode, aIndentLevel: *mut libc::int32_t) -> nsresult,

    /* readonly attribute long bookmarkIndex; */
    pub GetBookmarkIndex: unsafe extern "system" fn (this: *const nsINavHistoryResultNode, aBookmarkIndex: *mut libc::int32_t) -> nsresult,

    /* readonly attribute long long itemId; */
    pub GetItemId: unsafe extern "system" fn (this: *const nsINavHistoryResultNode, aItemId: *mut libc::int64_t) -> nsresult,

    /* readonly attribute PRTime dateAdded; */
    pub GetDateAdded: unsafe extern "system" fn (this: *const nsINavHistoryResultNode, aDateAdded: *mut PRTime) -> nsresult,

    /* readonly attribute PRTime lastModified; */
    pub GetLastModified: unsafe extern "system" fn (this: *const nsINavHistoryResultNode, aLastModified: *mut PRTime) -> nsresult,

    /* readonly attribute AString tags; */
    pub GetTags: unsafe extern "system" fn (this: *const nsINavHistoryResultNode, aTags: &mut ::nsstring::nsAString) -> nsresult,

    /* readonly attribute ACString pageGuid; */
    pub GetPageGuid: unsafe extern "system" fn (this: *const nsINavHistoryResultNode, aPageGuid: &mut ::nsstring::nsACString) -> nsresult,

    /* readonly attribute ACString bookmarkGuid; */
    pub GetBookmarkGuid: unsafe extern "system" fn (this: *const nsINavHistoryResultNode, aBookmarkGuid: &mut ::nsstring::nsACString) -> nsresult,

    /* readonly attribute long long visitId; */
    pub GetVisitId: unsafe extern "system" fn (this: *const nsINavHistoryResultNode, aVisitId: *mut libc::int64_t) -> nsresult,

    /* readonly attribute long long fromVisitId; */
    pub GetFromVisitId: unsafe extern "system" fn (this: *const nsINavHistoryResultNode, aFromVisitId: *mut libc::int64_t) -> nsresult,

    /* readonly attribute unsigned long visitType; */
    pub GetVisitType: unsafe extern "system" fn (this: *const nsINavHistoryResultNode, aVisitType: *mut libc::uint32_t) -> nsresult,
}


// The implementations of the function wrappers which are exposed to rust code.
// Call these methods rather than manually calling through the VTable struct.
impl nsINavHistoryResultNode {
    /// ```text
    /// /**
    ///    * Identifies the type of this node. This node can then be QI-ed to the
    ///    * corresponding specialized result node interface.
    ///    */
    /// ```
    ///

    pub const RESULT_TYPE_URI: i64 = 0;


    pub const RESULT_TYPE_QUERY: i64 = 5;


    pub const RESULT_TYPE_FOLDER: i64 = 6;


    pub const RESULT_TYPE_SEPARATOR: i64 = 7;


    pub const RESULT_TYPE_FOLDER_SHORTCUT: i64 = 9;

    /// ```text
    /// /**
    ///    * Indentifies the parent result node in the result set. This is null for
    ///    * top level nodes.
    ///    */
    /// ```
    ///

    /// `readonly attribute nsINavHistoryContainerResultNode parent;`
    #[inline]
    pub unsafe fn GetParent(&self, aParent: *mut *const nsINavHistoryContainerResultNode) -> nsresult {
        ((*self.vtable).GetParent)(self, aParent)
    }


    /// ```text
    /// /**
    ///    * The history-result to which this node belongs.
    ///    */
    /// ```
    ///

    /// `readonly attribute nsINavHistoryResult parentResult;`
    #[inline]
    pub unsafe fn GetParentResult(&self, aParentResult: *mut *const nsINavHistoryResult) -> nsresult {
        ((*self.vtable).GetParentResult)(self, aParentResult)
    }


    /// ```text
    /// /**
    ///    * URI of the resource in question. For visits and URLs, this is the URL of
    ///    * the page. For folders and queries, this is the place: URI of the
    ///    * corresponding folder or query. This may be empty for other types of
    ///    * objects like host containers.
    ///    */
    /// ```
    ///

    /// `readonly attribute AUTF8String uri;`
    #[inline]
    pub unsafe fn GetUri(&self, aUri: &mut ::nsstring::nsACString) -> nsresult {
        ((*self.vtable).GetUri)(self, aUri)
    }



    /// `readonly attribute unsigned long type;`
    #[inline]
    pub unsafe fn GetType(&self, aType: *mut libc::uint32_t) -> nsresult {
        ((*self.vtable).GetType)(self, aType)
    }


    /// ```text
    /// /**
    ///    * Title of the web page, or of the node's query (day, host, folder, etc)
    ///    */
    /// ```
    ///

    /// `readonly attribute AUTF8String title;`
    #[inline]
    pub unsafe fn GetTitle(&self, aTitle: &mut ::nsstring::nsACString) -> nsresult {
        ((*self.vtable).GetTitle)(self, aTitle)
    }


    /// ```text
    /// /**
    ///    * Total number of times the URI has ever been accessed. For hosts, this
    ///    * is the total of the children under it, NOT the total times the host has
    ///    * been accessed (this would require an additional query, so is not given
        ///    * by default when most of the time it is never needed).
    ///    */
    /// ```
    ///

    /// `readonly attribute unsigned long accessCount;`
    #[inline]
    pub unsafe fn GetAccessCount(&self, aAccessCount: *mut libc::uint32_t) -> nsresult {
        ((*self.vtable).GetAccessCount)(self, aAccessCount)
    }


    /// ```text
    /// /**
    ///    * This is the time the user accessed the page.
    ///    *
    ///    * If this is a visit, it is the exact time that the page visit occurred.
    ///    *
    ///    * If this is a URI, it is the most recent time that the URI was visited.
    ///    * Even if you ask for all URIs for a given date range long ago, this might
    ///    * contain today's date if the URI was visited today.
    ///    *
    ///    * For hosts, or other node types with children, this is the most recent
    ///    * access time for any of the children.
    ///    *
    ///    * For days queries this is the respective endTime - a maximum possible
    ///    * visit time to fit in the day range.
    ///    */
    /// ```
    ///

    /// `readonly attribute PRTime time;`
    #[inline]
    pub unsafe fn GetTime(&self, aTime: *mut PRTime) -> nsresult {
        ((*self.vtable).GetTime)(self, aTime)
    }


    /// ```text
    /// /**
    ///    * This URI can be used as an image source URI and will give you the favicon
    ///    * for the page. It is *not* the URI of the favicon, but rather something
    ///    * that will resolve to the actual image.
    ///    *
    ///    * In most cases, this is an annotation URI that will query the favicon
    ///    * service. If the entry has no favicon, this is the chrome URI of the
    ///    * default favicon. If the favicon originally lived in chrome, this will
    ///    * be the original chrome URI of the icon.
    ///    */
    /// ```
    ///

    /// `readonly attribute AUTF8String icon;`
    #[inline]
    pub unsafe fn GetIcon(&self, aIcon: &mut ::nsstring::nsACString) -> nsresult {
        ((*self.vtable).GetIcon)(self, aIcon)
    }


    /// ```text
    /// /**
    ///    * This is the number of levels between this node and the top of the
    ///    * hierarchy. The members of result.children have indentLevel = 0, their
    ///    * children have indentLevel = 1, etc. The indent level of the root node is
    ///    * set to -1.
    ///    */
    /// ```
    ///

    /// `readonly attribute long indentLevel;`
    #[inline]
    pub unsafe fn GetIndentLevel(&self, aIndentLevel: *mut libc::int32_t) -> nsresult {
        ((*self.vtable).GetIndentLevel)(self, aIndentLevel)
    }


    /// ```text
    /// /**
    ///    * When this item is in a bookmark folder (parent is of type folder), this is
    ///    * the index into that folder of this node. These indices start at 0 and
    ///    * increase in the order that they appear in the bookmark folder. For items
    ///    * that are not in a bookmark folder, this value is -1.
    ///    */
    /// ```
    ///

    /// `readonly attribute long bookmarkIndex;`
    #[inline]
    pub unsafe fn GetBookmarkIndex(&self, aBookmarkIndex: *mut libc::int32_t) -> nsresult {
        ((*self.vtable).GetBookmarkIndex)(self, aBookmarkIndex)
    }


    /// ```text
    /// /**
    ///    * If the node is an item (bookmark, folder or a separator) this value is the
    ///    * row ID of that bookmark in the database. For other nodes, this value is
    ///    * set to -1.
    ///    */
    /// ```
    ///

    /// `readonly attribute long long itemId;`
    #[inline]
    pub unsafe fn GetItemId(&self, aItemId: *mut libc::int64_t) -> nsresult {
        ((*self.vtable).GetItemId)(self, aItemId)
    }


    /// ```text
    /// /**
    ///    * If the node is an item (bookmark, folder or a separator) this value is the
    ///    * time that the item was created. For other nodes, this value is 0.
    ///    */
    /// ```
    ///

    /// `readonly attribute PRTime dateAdded;`
    #[inline]
    pub unsafe fn GetDateAdded(&self, aDateAdded: *mut PRTime) -> nsresult {
        ((*self.vtable).GetDateAdded)(self, aDateAdded)
    }


    /// ```text
    /// /**
    ///    * If the node is an item (bookmark, folder or a separator) this value is the
    ///    * time that the item was last modified. For other nodes, this value is 0.
    ///    *
    ///    *  @note When an item is added lastModified is set to the same value as
    ///    *        dateAdded.
    ///    */
    /// ```
    ///

    /// `readonly attribute PRTime lastModified;`
    #[inline]
    pub unsafe fn GetLastModified(&self, aLastModified: *mut PRTime) -> nsresult {
        ((*self.vtable).GetLastModified)(self, aLastModified)
    }


    /// ```text
    /// /**
    ///    * For uri nodes, this is a sorted list of the tags, delimited with commans,
    ///    * for the uri represented by this node. Otherwise this is an empty string.
    ///    */
    /// ```
    ///

    /// `readonly attribute AString tags;`
    #[inline]
    pub unsafe fn GetTags(&self, aTags: &mut ::nsstring::nsAString) -> nsresult {
        ((*self.vtable).GetTags)(self, aTags)
    }


    /// ```text
    /// /**
    ///    * The unique ID associated with the page. It my return an empty string
    ///    * if the result node is a non-URI node.
    ///    */
    /// ```
    ///

    /// `readonly attribute ACString pageGuid;`
    #[inline]
    pub unsafe fn GetPageGuid(&self, aPageGuid: &mut ::nsstring::nsACString) -> nsresult {
        ((*self.vtable).GetPageGuid)(self, aPageGuid)
    }


    /// ```text
    /// /**
    ///    * The unique ID associated with the bookmark. It returns an empty string
    ///    * if the result node is not associated with a bookmark, a folder or a
    ///    * separator.
    ///    */
    /// ```
    ///

    /// `readonly attribute ACString bookmarkGuid;`
    #[inline]
    pub unsafe fn GetBookmarkGuid(&self, aBookmarkGuid: &mut ::nsstring::nsACString) -> nsresult {
        ((*self.vtable).GetBookmarkGuid)(self, aBookmarkGuid)
    }


    /// ```text
    /// /**
    ///    * The unique ID associated with the history visit. For node types other than
    ///    * history visit nodes, this value is -1.
    ///    */
    /// ```
    ///

    /// `readonly attribute long long visitId;`
    #[inline]
    pub unsafe fn GetVisitId(&self, aVisitId: *mut libc::int64_t) -> nsresult {
        ((*self.vtable).GetVisitId)(self, aVisitId)
    }


    /// ```text
    /// /**
    ///    * The unique ID associated with visit node which was the referrer of this
    ///    * history visit. For node types other than history visit nodes, or visits
    ///    * without any known referrer, this value is -1.
    ///    */
    /// ```
    ///

    /// `readonly attribute long long fromVisitId;`
    #[inline]
    pub unsafe fn GetFromVisitId(&self, aFromVisitId: *mut libc::int64_t) -> nsresult {
        ((*self.vtable).GetFromVisitId)(self, aFromVisitId)
    }


    /// ```text
    /// /**
    ///    * The transition type associated with this visit. For node types other than
    ///    * history visit nodes, this value is 0.
    ///    */
    /// ```
    ///

    /// `readonly attribute unsigned long visitType;`
    #[inline]
    pub unsafe fn GetVisitType(&self, aVisitType: *mut libc::uint32_t) -> nsresult {
        ((*self.vtable).GetVisitType)(self, aVisitType)
    }


}


/// `interface nsINavHistoryContainerResultNode : nsINavHistoryResultNode`
///


// The actual type definition for the interface. This struct has methods
// declared on it which will call through its vtable. You never want to pass
// this type around by value, always pass it behind a reference.

#[repr(C)]
pub struct nsINavHistoryContainerResultNode {
    vtable: *const nsINavHistoryContainerResultNodeVTable,

    /// This field is a phantomdata to ensure that the VTable type and any
    /// struct containing it is not safe to send across threads, as XPCOM is
    /// generally not threadsafe.
    ///
    /// XPCOM interfaces in general are not safe to send across threads.
    __nosync: ::std::marker::PhantomData<::std::rc::Rc<u8>>,
}

// Implementing XpCom for an interface exposes its IID, which allows for easy
// use of the `.query_interface<T>` helper method. This also defines that
// method for nsINavHistoryContainerResultNode.
unsafe impl XpCom for nsINavHistoryContainerResultNode {
    const IID: nsIID = nsID(0x3e9cc95f, 0x0d93, 0x45f1,
        [0x89, 0x4f, 0x90, 0x8e, 0xeb, 0x98, 0x66, 0xd7]);
}

// We need to implement the RefCounted trait so we can be used with `RefPtr`.
// This trait teaches `RefPtr` how to manage our memory.
unsafe impl RefCounted for nsINavHistoryContainerResultNode {
    #[inline]
    unsafe fn addref(&self) {
        self.AddRef();
    }
    #[inline]
    unsafe fn release(&self) {
        self.Release();
    }
}

// This trait is implemented on all types which can be coerced to from nsINavHistoryContainerResultNode.
// It is used in the implementation of `fn coerce<T>`. We hide it from the
// documentation, because it clutters it up a lot.
#[doc(hidden)]
pub trait nsINavHistoryContainerResultNodeCoerce {
    /// Cheaply cast a value of this type from a `nsINavHistoryContainerResultNode`.
    fn coerce_from(v: &nsINavHistoryContainerResultNode) -> &Self;
}

// The trivial implementation: We can obviously coerce ourselves to ourselves.
impl nsINavHistoryContainerResultNodeCoerce for nsINavHistoryContainerResultNode {
    #[inline]
    fn coerce_from(v: &nsINavHistoryContainerResultNode) -> &Self {
        v
    }
}

impl nsINavHistoryContainerResultNode {
    /// Cast this `nsINavHistoryContainerResultNode` to one of its base interfaces.
    #[inline]
    pub fn coerce<T: nsINavHistoryContainerResultNodeCoerce>(&self) -> &T {
        T::coerce_from(self)
    }
}

// Every interface struct type implements `Deref` to its base interface. This
// causes methods on the base interfaces to be directly avaliable on the
// object. For example, you can call `.AddRef` or `.QueryInterface` directly
// on any interface which inherits from `nsISupports`.
impl ::std::ops::Deref for nsINavHistoryContainerResultNode {
    type Target = nsINavHistoryResultNode;
    #[inline]
    fn deref(&self) -> &nsINavHistoryResultNode {
        unsafe {
            ::std::mem::transmute(self)
        }
    }
}

// Ensure we can use .coerce() to cast to our base types as well. Any type which
// our base interface can coerce from should be coercable from us as well.
impl<T: nsINavHistoryResultNodeCoerce> nsINavHistoryContainerResultNodeCoerce for T {
    #[inline]
    fn coerce_from(v: &nsINavHistoryContainerResultNode) -> &Self {
        T::coerce_from(v)
    }
}

// This struct represents the interface's VTable. A pointer to a statically
// allocated version of this struct is at the beginning of every nsINavHistoryContainerResultNode
// object. It contains one pointer field for each method in the interface. In
// the case where we can't generate a binding for a method, we include a void
// pointer.
#[doc(hidden)]
#[repr(C)]
pub struct nsINavHistoryContainerResultNodeVTable {
    /// We need to include the members from the base interface's vtable at the start
    /// of the VTable definition.
    pub __base: nsINavHistoryResultNodeVTable,

    /* attribute boolean containerOpen; */
    pub GetContainerOpen: unsafe extern "system" fn (this: *const nsINavHistoryContainerResultNode, aContainerOpen: *mut bool) -> nsresult,

    /* attribute boolean containerOpen; */
    pub SetContainerOpen: unsafe extern "system" fn (this: *const nsINavHistoryContainerResultNode, aContainerOpen: bool) -> nsresult,

    /* readonly attribute unsigned short state; */
    pub GetState: unsafe extern "system" fn (this: *const nsINavHistoryContainerResultNode, aState: *mut libc::uint16_t) -> nsresult,

    /* readonly attribute boolean hasChildren; */
    pub GetHasChildren: unsafe extern "system" fn (this: *const nsINavHistoryContainerResultNode, aHasChildren: *mut bool) -> nsresult,

    /* readonly attribute unsigned long childCount; */
    pub GetChildCount: unsafe extern "system" fn (this: *const nsINavHistoryContainerResultNode, aChildCount: *mut libc::uint32_t) -> nsresult,

    /* nsINavHistoryResultNode getChild (in unsigned long aIndex); */
    pub GetChild: unsafe extern "system" fn (this: *const nsINavHistoryContainerResultNode, aIndex: libc::uint32_t, _retval: *mut *const nsINavHistoryResultNode) -> nsresult,

    /* unsigned long getChildIndex (in nsINavHistoryResultNode aNode); */
    pub GetChildIndex: unsafe extern "system" fn (this: *const nsINavHistoryContainerResultNode, aNode: *const nsINavHistoryResultNode, _retval: *mut libc::uint32_t) -> nsresult,
}


// The implementations of the function wrappers which are exposed to rust code.
// Call these methods rather than manually calling through the VTable struct.
impl nsINavHistoryContainerResultNode {

    pub const STATE_CLOSED: i64 = 0;


    pub const STATE_LOADING: i64 = 1;


    pub const STATE_OPENED: i64 = 2;

    /// ```text
    /// /**
    ///  * Base class for container results. This includes all types of groupings.
    ///  * Bookmark folders and places queries will be QueryResultNodes which extends
    ///  * these items.
    ///  */
    /// /**
    ///    * Set this to allow descent into the container. When closed, attempting
    ///    * to call getChildren or childCount will result in an error. You should
    ///    * set this to false when you are done reading.
    ///    *
    ///    * For HOST and DAY groupings, doing this is free since the children have
    ///    * been precomputed. For queries and bookmark folders, being open means they
    ///    * will keep themselves up-to-date by listening for updates and re-querying
    ///    * as needed.
    ///    */
    /// ```
    ///

    /// `attribute boolean containerOpen;`
    #[inline]
    pub unsafe fn GetContainerOpen(&self, aContainerOpen: *mut bool) -> nsresult {
        ((*self.vtable).GetContainerOpen)(self, aContainerOpen)
    }


    /// ```text
    /// /**
    ///  * Base class for container results. This includes all types of groupings.
    ///  * Bookmark folders and places queries will be QueryResultNodes which extends
    ///  * these items.
    ///  */
    /// /**
    ///    * Set this to allow descent into the container. When closed, attempting
    ///    * to call getChildren or childCount will result in an error. You should
    ///    * set this to false when you are done reading.
    ///    *
    ///    * For HOST and DAY groupings, doing this is free since the children have
    ///    * been precomputed. For queries and bookmark folders, being open means they
    ///    * will keep themselves up-to-date by listening for updates and re-querying
    ///    * as needed.
    ///    */
    /// ```
    ///

    /// `attribute boolean containerOpen;`
    #[inline]
    pub unsafe fn SetContainerOpen(&self, aContainerOpen: bool) -> nsresult {
        ((*self.vtable).SetContainerOpen)(self, aContainerOpen)
    }


    /// ```text
    /// /**
    ///    * Indicates whether the container is closed, loading, or opened.  Loading
    ///    * implies that the container has been opened asynchronously and has not yet
    ///    * fully opened.
    ///    */
    /// ```
    ///

    /// `readonly attribute unsigned short state;`
    #[inline]
    pub unsafe fn GetState(&self, aState: *mut libc::uint16_t) -> nsresult {
        ((*self.vtable).GetState)(self, aState)
    }


    /// ```text
    /// /**
    ///    * This indicates whether this node "may" have children, and can be used
    ///    * when the container is open or closed. When the container is closed, it
    ///    * will give you an exact answer if the node can easily be populated (for
        ///    * example, a bookmark folder). If not (for example, a complex history query),
    ///    * it will return true. When the container is open, it will always be
    ///    * accurate. It is intended to be used to see if we should draw the "+" next
    ///    * to a tree item.
    ///    */
    /// ```
    ///

    /// `readonly attribute boolean hasChildren;`
    #[inline]
    pub unsafe fn GetHasChildren(&self, aHasChildren: *mut bool) -> nsresult {
        ((*self.vtable).GetHasChildren)(self, aHasChildren)
    }


    /// ```text
    /// /**
    ///    * This gives you the children of the nodes. It is preferrable to use this
    ///    * interface over the array one, since it avoids creating an nsIArray object
    ///    * and the interface is already the correct type.
    ///    *
    ///    * @throws NS_ERROR_NOT_AVAILABLE if containerOpen is false.
    ///    */
    /// ```
    ///

    /// `readonly attribute unsigned long childCount;`
    #[inline]
    pub unsafe fn GetChildCount(&self, aChildCount: *mut libc::uint32_t) -> nsresult {
        ((*self.vtable).GetChildCount)(self, aChildCount)
    }



    /// `nsINavHistoryResultNode getChild (in unsigned long aIndex);`
    #[inline]
    pub unsafe fn GetChild(&self, aIndex: libc::uint32_t, _retval: *mut *const nsINavHistoryResultNode) -> nsresult {
        ((*self.vtable).GetChild)(self, aIndex, _retval)
    }


    /// ```text
    /// /**
    ///    * Get the index of a direct child in this container.
    ///    *
    ///    * @param aNode
    ///    *        a result node.
    ///    *
    ///    * @return aNode's index in this container.
    ///    * @throws NS_ERROR_NOT_AVAILABLE if containerOpen is false.
    ///    * @throws NS_ERROR_INVALID_ARG if aNode isn't a direct child of this
    ///    * container.
    ///    */
    /// ```
    ///

    /// `unsigned long getChildIndex (in nsINavHistoryResultNode aNode);`
    #[inline]
    pub unsafe fn GetChildIndex(&self, aNode: *const nsINavHistoryResultNode, _retval: *mut libc::uint32_t) -> nsresult {
        ((*self.vtable).GetChildIndex)(self, aNode, _retval)
    }


}


/// `interface nsINavHistoryQueryResultNode : nsINavHistoryContainerResultNode`
///


// The actual type definition for the interface. This struct has methods
// declared on it which will call through its vtable. You never want to pass
// this type around by value, always pass it behind a reference.

#[repr(C)]
pub struct nsINavHistoryQueryResultNode {
    vtable: *const nsINavHistoryQueryResultNodeVTable,

    /// This field is a phantomdata to ensure that the VTable type and any
    /// struct containing it is not safe to send across threads, as XPCOM is
    /// generally not threadsafe.
    ///
    /// XPCOM interfaces in general are not safe to send across threads.
    __nosync: ::std::marker::PhantomData<::std::rc::Rc<u8>>,
}

// Implementing XpCom for an interface exposes its IID, which allows for easy
// use of the `.query_interface<T>` helper method. This also defines that
// method for nsINavHistoryQueryResultNode.
unsafe impl XpCom for nsINavHistoryQueryResultNode {
    const IID: nsIID = nsID(0x62817759, 0x4fee, 0x44a3,
        [0xb5, 0x8c, 0x3e, 0x2f, 0x5a, 0xfc, 0x9d, 0x0a]);
}

// We need to implement the RefCounted trait so we can be used with `RefPtr`.
// This trait teaches `RefPtr` how to manage our memory.
unsafe impl RefCounted for nsINavHistoryQueryResultNode {
    #[inline]
    unsafe fn addref(&self) {
        self.AddRef();
    }
    #[inline]
    unsafe fn release(&self) {
        self.Release();
    }
}

// This trait is implemented on all types which can be coerced to from nsINavHistoryQueryResultNode.
// It is used in the implementation of `fn coerce<T>`. We hide it from the
// documentation, because it clutters it up a lot.
#[doc(hidden)]
pub trait nsINavHistoryQueryResultNodeCoerce {
    /// Cheaply cast a value of this type from a `nsINavHistoryQueryResultNode`.
    fn coerce_from(v: &nsINavHistoryQueryResultNode) -> &Self;
}

// The trivial implementation: We can obviously coerce ourselves to ourselves.
impl nsINavHistoryQueryResultNodeCoerce for nsINavHistoryQueryResultNode {
    #[inline]
    fn coerce_from(v: &nsINavHistoryQueryResultNode) -> &Self {
        v
    }
}

impl nsINavHistoryQueryResultNode {
    /// Cast this `nsINavHistoryQueryResultNode` to one of its base interfaces.
    #[inline]
    pub fn coerce<T: nsINavHistoryQueryResultNodeCoerce>(&self) -> &T {
        T::coerce_from(self)
    }
}

// Every interface struct type implements `Deref` to its base interface. This
// causes methods on the base interfaces to be directly avaliable on the
// object. For example, you can call `.AddRef` or `.QueryInterface` directly
// on any interface which inherits from `nsISupports`.
impl ::std::ops::Deref for nsINavHistoryQueryResultNode {
    type Target = nsINavHistoryContainerResultNode;
    #[inline]
    fn deref(&self) -> &nsINavHistoryContainerResultNode {
        unsafe {
            ::std::mem::transmute(self)
        }
    }
}

// Ensure we can use .coerce() to cast to our base types as well. Any type which
// our base interface can coerce from should be coercable from us as well.
impl<T: nsINavHistoryContainerResultNodeCoerce> nsINavHistoryQueryResultNodeCoerce for T {
    #[inline]
    fn coerce_from(v: &nsINavHistoryQueryResultNode) -> &Self {
        T::coerce_from(v)
    }
}

// This struct represents the interface's VTable. A pointer to a statically
// allocated version of this struct is at the beginning of every nsINavHistoryQueryResultNode
// object. It contains one pointer field for each method in the interface. In
// the case where we can't generate a binding for a method, we include a void
// pointer.
#[doc(hidden)]
#[repr(C)]
pub struct nsINavHistoryQueryResultNodeVTable {
    /// We need to include the members from the base interface's vtable at the start
    /// of the VTable definition.
    pub __base: nsINavHistoryContainerResultNodeVTable,

    /* void getQueries ([optional] out unsigned long queryCount, [array, size_is (queryCount), retval] out nsINavHistoryQuery queries); */
    pub GetQueries: unsafe extern "system" fn (this: *const nsINavHistoryQueryResultNode, queryCount: *mut libc::uint32_t, queries: *mut *mut *const nsINavHistoryQuery) -> nsresult,

    /* readonly attribute nsINavHistoryQueryOptions queryOptions; */
    pub GetQueryOptions: unsafe extern "system" fn (this: *const nsINavHistoryQueryResultNode, aQueryOptions: *mut *const nsINavHistoryQueryOptions) -> nsresult,

    /* readonly attribute long long folderItemId; */
    pub GetFolderItemId: unsafe extern "system" fn (this: *const nsINavHistoryQueryResultNode, aFolderItemId: *mut libc::int64_t) -> nsresult,

    /* readonly attribute ACString targetFolderGuid; */
    pub GetTargetFolderGuid: unsafe extern "system" fn (this: *const nsINavHistoryQueryResultNode, aTargetFolderGuid: &mut ::nsstring::nsACString) -> nsresult,
}


// The implementations of the function wrappers which are exposed to rust code.
// Call these methods rather than manually calling through the VTable struct.
impl nsINavHistoryQueryResultNode {

    /// ```text
    /// /**
    ///  * Used for places queries and as a base for bookmark folders.
    ///  *
    ///  * Note that if you request places to *not* be expanded in the options that
    ///  * generated this node, this item will report it has no children and never try
    ///  * to populate itself.
    ///  */
    /// /**
    ///    * Get the queries which build this node's children.
    ///    * Only valid for RESULT_TYPE_QUERY nodes.
    ///    */
    /// ```
    ///

    /// `void getQueries ([optional] out unsigned long queryCount, [array, size_is (queryCount), retval] out nsINavHistoryQuery queries);`
    #[inline]
    pub unsafe fn GetQueries(&self, queryCount: *mut libc::uint32_t, queries: *mut *mut *const nsINavHistoryQuery) -> nsresult {
        ((*self.vtable).GetQueries)(self, queryCount, queries)
    }


    /// ```text
    /// /**
    ///    * Get the options which group this node's children.
    ///    * Only valid for RESULT_TYPE_QUERY nodes.
    ///    */
    /// ```
    ///

    /// `readonly attribute nsINavHistoryQueryOptions queryOptions;`
    #[inline]
    pub unsafe fn GetQueryOptions(&self, aQueryOptions: *mut *const nsINavHistoryQueryOptions) -> nsresult {
        ((*self.vtable).GetQueryOptions)(self, aQueryOptions)
    }


    /// ```text
    /// /**
    ///    * For both simple folder queries and folder shortcut queries, this is set to
    ///    * the concrete itemId of the folder (i.e. for folder shortcuts it's the
        ///    * target folder id).  Otherwise, this is set to -1.
    ///    */
    /// ```
    ///

    /// `readonly attribute long long folderItemId;`
    #[inline]
    pub unsafe fn GetFolderItemId(&self, aFolderItemId: *mut libc::int64_t) -> nsresult {
        ((*self.vtable).GetFolderItemId)(self, aFolderItemId)
    }


    /// ```text
    /// /**
    ///    * For both simple folder queries and folder shortcut queries, this is set to
    ///    * the concrete guid of the folder (i.e. for folder shortcuts it's the target
        ///    * folder guid). Otherwise, this is set to an empty string.
    ///    */
    /// ```
    ///

    /// `readonly attribute ACString targetFolderGuid;`
    #[inline]
    pub unsafe fn GetTargetFolderGuid(&self, aTargetFolderGuid: &mut ::nsstring::nsACString) -> nsresult {
        ((*self.vtable).GetTargetFolderGuid)(self, aTargetFolderGuid)
    }


}


/// `interface nsINavHistoryResultObserver : nsISupports`
///

/// ```text
/// /**
///  * Allows clients to observe what is happening to a result as it updates itself
///  * according to history and bookmark system events. Register this observer on a
///  * result using nsINavHistoryResult::addObserver.
///  */
/// ```
///

// The actual type definition for the interface. This struct has methods
// declared on it which will call through its vtable. You never want to pass
// this type around by value, always pass it behind a reference.

#[repr(C)]
pub struct nsINavHistoryResultObserver {
    vtable: *const nsINavHistoryResultObserverVTable,

    /// This field is a phantomdata to ensure that the VTable type and any
    /// struct containing it is not safe to send across threads, as XPCOM is
    /// generally not threadsafe.
    ///
    /// XPCOM interfaces in general are not safe to send across threads.
    __nosync: ::std::marker::PhantomData<::std::rc::Rc<u8>>,
}

// Implementing XpCom for an interface exposes its IID, which allows for easy
// use of the `.query_interface<T>` helper method. This also defines that
// method for nsINavHistoryResultObserver.
unsafe impl XpCom for nsINavHistoryResultObserver {
    const IID: nsIID = nsID(0xf62d8b6b, 0x3c4e, 0x4a9f,
        [0xa8, 0x97, 0xdb, 0x60, 0x5d, 0x0b, 0x7a, 0x0f]);
}

// We need to implement the RefCounted trait so we can be used with `RefPtr`.
// This trait teaches `RefPtr` how to manage our memory.
unsafe impl RefCounted for nsINavHistoryResultObserver {
    #[inline]
    unsafe fn addref(&self) {
        self.AddRef();
    }
    #[inline]
    unsafe fn release(&self) {
        self.Release();
    }
}

// This trait is implemented on all types which can be coerced to from nsINavHistoryResultObserver.
// It is used in the implementation of `fn coerce<T>`. We hide it from the
// documentation, because it clutters it up a lot.
#[doc(hidden)]
pub trait nsINavHistoryResultObserverCoerce {
    /// Cheaply cast a value of this type from a `nsINavHistoryResultObserver`.
    fn coerce_from(v: &nsINavHistoryResultObserver) -> &Self;
}

// The trivial implementation: We can obviously coerce ourselves to ourselves.
impl nsINavHistoryResultObserverCoerce for nsINavHistoryResultObserver {
    #[inline]
    fn coerce_from(v: &nsINavHistoryResultObserver) -> &Self {
        v
    }
}

impl nsINavHistoryResultObserver {
    /// Cast this `nsINavHistoryResultObserver` to one of its base interfaces.
    #[inline]
    pub fn coerce<T: nsINavHistoryResultObserverCoerce>(&self) -> &T {
        T::coerce_from(self)
    }
}

// Every interface struct type implements `Deref` to its base interface. This
// causes methods on the base interfaces to be directly avaliable on the
// object. For example, you can call `.AddRef` or `.QueryInterface` directly
// on any interface which inherits from `nsISupports`.
impl ::std::ops::Deref for nsINavHistoryResultObserver {
    type Target = nsISupports;
    #[inline]
    fn deref(&self) -> &nsISupports {
        unsafe {
            ::std::mem::transmute(self)
        }
    }
}

// Ensure we can use .coerce() to cast to our base types as well. Any type which
// our base interface can coerce from should be coercable from us as well.
impl<T: nsISupportsCoerce> nsINavHistoryResultObserverCoerce for T {
    #[inline]
    fn coerce_from(v: &nsINavHistoryResultObserver) -> &Self {
        T::coerce_from(v)
    }
}

// This struct represents the interface's VTable. A pointer to a statically
// allocated version of this struct is at the beginning of every nsINavHistoryResultObserver
// object. It contains one pointer field for each method in the interface. In
// the case where we can't generate a binding for a method, we include a void
// pointer.
#[doc(hidden)]
#[repr(C)]
pub struct nsINavHistoryResultObserverVTable {
    /// We need to include the members from the base interface's vtable at the start
    /// of the VTable definition.
    pub __base: nsISupportsVTable,

    /* void nodeInserted (in nsINavHistoryContainerResultNode aParent, in nsINavHistoryResultNode aNode, in unsigned long aNewIndex); */
    pub NodeInserted: unsafe extern "system" fn (this: *const nsINavHistoryResultObserver, aParent: *const nsINavHistoryContainerResultNode, aNode: *const nsINavHistoryResultNode, aNewIndex: libc::uint32_t) -> nsresult,

    /* void nodeRemoved (in nsINavHistoryContainerResultNode aParent, in nsINavHistoryResultNode aItem, in unsigned long aOldIndex); */
    pub NodeRemoved: unsafe extern "system" fn (this: *const nsINavHistoryResultObserver, aParent: *const nsINavHistoryContainerResultNode, aItem: *const nsINavHistoryResultNode, aOldIndex: libc::uint32_t) -> nsresult,

    /* void nodeMoved (in nsINavHistoryResultNode aNode, in nsINavHistoryContainerResultNode aOldParent, in unsigned long aOldIndex, in nsINavHistoryContainerResultNode aNewParent, in unsigned long aNewIndex); */
    pub NodeMoved: unsafe extern "system" fn (this: *const nsINavHistoryResultObserver, aNode: *const nsINavHistoryResultNode, aOldParent: *const nsINavHistoryContainerResultNode, aOldIndex: libc::uint32_t, aNewParent: *const nsINavHistoryContainerResultNode, aNewIndex: libc::uint32_t) -> nsresult,

    /* void nodeTitleChanged (in nsINavHistoryResultNode aNode, in AUTF8String aNewTitle); */
    pub NodeTitleChanged: unsafe extern "system" fn (this: *const nsINavHistoryResultObserver, aNode: *const nsINavHistoryResultNode, aNewTitle: &::nsstring::nsACString) -> nsresult,

    /* void nodeURIChanged (in nsINavHistoryResultNode aNode, in AUTF8String aOldURI); */
    pub NodeURIChanged: unsafe extern "system" fn (this: *const nsINavHistoryResultObserver, aNode: *const nsINavHistoryResultNode, aOldURI: &::nsstring::nsACString) -> nsresult,

    /* void nodeIconChanged (in nsINavHistoryResultNode aNode); */
    pub NodeIconChanged: unsafe extern "system" fn (this: *const nsINavHistoryResultObserver, aNode: *const nsINavHistoryResultNode) -> nsresult,

    /* void nodeHistoryDetailsChanged (in nsINavHistoryResultNode aNode, in PRTime aOldVisitDate, in unsigned long aOldAccessCount); */
    pub NodeHistoryDetailsChanged: unsafe extern "system" fn (this: *const nsINavHistoryResultObserver, aNode: *const nsINavHistoryResultNode, aOldVisitDate: PRTime, aOldAccessCount: libc::uint32_t) -> nsresult,

    /* void nodeTagsChanged (in nsINavHistoryResultNode aNode); */
    pub NodeTagsChanged: unsafe extern "system" fn (this: *const nsINavHistoryResultObserver, aNode: *const nsINavHistoryResultNode) -> nsresult,

    /* void nodeKeywordChanged (in nsINavHistoryResultNode aNode, in AUTF8String aNewKeyword); */
    pub NodeKeywordChanged: unsafe extern "system" fn (this: *const nsINavHistoryResultObserver, aNode: *const nsINavHistoryResultNode, aNewKeyword: &::nsstring::nsACString) -> nsresult,

    /* void nodeAnnotationChanged (in nsINavHistoryResultNode aNode, in AUTF8String aAnnoName); */
    pub NodeAnnotationChanged: unsafe extern "system" fn (this: *const nsINavHistoryResultObserver, aNode: *const nsINavHistoryResultNode, aAnnoName: &::nsstring::nsACString) -> nsresult,

    /* void nodeDateAddedChanged (in nsINavHistoryResultNode aNode, in PRTime aNewValue); */
    pub NodeDateAddedChanged: unsafe extern "system" fn (this: *const nsINavHistoryResultObserver, aNode: *const nsINavHistoryResultNode, aNewValue: PRTime) -> nsresult,

    /* void nodeLastModifiedChanged (in nsINavHistoryResultNode aNode, in PRTime aNewValue); */
    pub NodeLastModifiedChanged: unsafe extern "system" fn (this: *const nsINavHistoryResultObserver, aNode: *const nsINavHistoryResultNode, aNewValue: PRTime) -> nsresult,

    /* void containerStateChanged (in nsINavHistoryContainerResultNode aContainerNode, in unsigned long aOldState, in unsigned long aNewState); */
    pub ContainerStateChanged: unsafe extern "system" fn (this: *const nsINavHistoryResultObserver, aContainerNode: *const nsINavHistoryContainerResultNode, aOldState: libc::uint32_t, aNewState: libc::uint32_t) -> nsresult,

    /* void invalidateContainer (in nsINavHistoryContainerResultNode aContainerNode); */
    pub InvalidateContainer: unsafe extern "system" fn (this: *const nsINavHistoryResultObserver, aContainerNode: *const nsINavHistoryContainerResultNode) -> nsresult,

    /* void sortingChanged (in unsigned short sortingMode); */
    pub SortingChanged: unsafe extern "system" fn (this: *const nsINavHistoryResultObserver, sortingMode: libc::uint16_t) -> nsresult,

    /* void batching (in boolean aToggleMode); */
    pub Batching: unsafe extern "system" fn (this: *const nsINavHistoryResultObserver, aToggleMode: bool) -> nsresult,

    /* attribute nsINavHistoryResult result; */
    pub GetResult: unsafe extern "system" fn (this: *const nsINavHistoryResultObserver, aResult: *mut *const nsINavHistoryResult) -> nsresult,

    /* attribute nsINavHistoryResult result; */
    pub SetResult: unsafe extern "system" fn (this: *const nsINavHistoryResultObserver, aResult: *const nsINavHistoryResult) -> nsresult,
}


// The implementations of the function wrappers which are exposed to rust code.
// Call these methods rather than manually calling through the VTable struct.
impl nsINavHistoryResultObserver {

    /// ```text
    /// /**
    ///    * Called when 'aItem' is inserted into 'aParent' at index 'aNewIndex'.
    ///    * The item previously at index (if any) and everything below it will have
    ///    * been shifted down by one. The item may be a container or a leaf.
    ///    */
    /// ```
    ///

    /// `void nodeInserted (in nsINavHistoryContainerResultNode aParent, in nsINavHistoryResultNode aNode, in unsigned long aNewIndex);`
    #[inline]
    pub unsafe fn NodeInserted(&self, aParent: *const nsINavHistoryContainerResultNode, aNode: *const nsINavHistoryResultNode, aNewIndex: libc::uint32_t) -> nsresult {
        ((*self.vtable).NodeInserted)(self, aParent, aNode, aNewIndex)
    }


    /// ```text
    /// /**
    ///    * Called whan 'aItem' is removed from 'aParent' at 'aOldIndex'. The item
    ///    * may be a container or a leaf. This function will be called after the item
    ///    * has been removed from its parent list, but before anything else (including
        ///    * NULLing out the item's parent) has happened.
    ///    */
    /// ```
    ///

    /// `void nodeRemoved (in nsINavHistoryContainerResultNode aParent, in nsINavHistoryResultNode aItem, in unsigned long aOldIndex);`
    #[inline]
    pub unsafe fn NodeRemoved(&self, aParent: *const nsINavHistoryContainerResultNode, aItem: *const nsINavHistoryResultNode, aOldIndex: libc::uint32_t) -> nsresult {
        ((*self.vtable).NodeRemoved)(self, aParent, aItem, aOldIndex)
    }


    /// ```text
    /// /**
    ///    * Called whan 'aItem' is moved from 'aOldParent' at 'aOldIndex' to
    ///    * aNewParent at aNewIndex. The item may be a container or a leaf.
    ///    *
    ///    * XXX: at the moment, this method is called only when an item is moved
    ///    * within the same container. When an item is moved between containers,
    ///    * a new node is created for the item, and the itemRemoved/itemAdded methods
    ///    * are used.
    ///    */
    /// ```
    ///

    /// `void nodeMoved (in nsINavHistoryResultNode aNode, in nsINavHistoryContainerResultNode aOldParent, in unsigned long aOldIndex, in nsINavHistoryContainerResultNode aNewParent, in unsigned long aNewIndex);`
    #[inline]
    pub unsafe fn NodeMoved(&self, aNode: *const nsINavHistoryResultNode, aOldParent: *const nsINavHistoryContainerResultNode, aOldIndex: libc::uint32_t, aNewParent: *const nsINavHistoryContainerResultNode, aNewIndex: libc::uint32_t) -> nsresult {
        ((*self.vtable).NodeMoved)(self, aNode, aOldParent, aOldIndex, aNewParent, aNewIndex)
    }


    /// ```text
    /// /**
    ///    * Called right after aNode's title has changed.
    ///    *
    ///    * @param aNode
    ///    *        a result node
    ///    * @param aNewTitle
    ///    *        the new title
    ///    */
    /// ```
    ///

    /// `void nodeTitleChanged (in nsINavHistoryResultNode aNode, in AUTF8String aNewTitle);`
    #[inline]
    pub unsafe fn NodeTitleChanged(&self, aNode: *const nsINavHistoryResultNode, aNewTitle: &::nsstring::nsACString) -> nsresult {
        ((*self.vtable).NodeTitleChanged)(self, aNode, aNewTitle)
    }


    /// ```text
    /// /**
    ///    * Called right after aNode's uri property has changed.
    ///    *
    ///    * @param aNode
    ///    *        a result node
    ///    * @param aNewURI
    ///    *        the old uri
    ///    */
    /// ```
    ///

    /// `void nodeURIChanged (in nsINavHistoryResultNode aNode, in AUTF8String aOldURI);`
    #[inline]
    pub unsafe fn NodeURIChanged(&self, aNode: *const nsINavHistoryResultNode, aOldURI: &::nsstring::nsACString) -> nsresult {
        ((*self.vtable).NodeURIChanged)(self, aNode, aOldURI)
    }


    /// ```text
    /// /**
    ///    * Called right after aNode's icon property has changed.
    ///    *
    ///    * @param aNode
    ///    *        a result node
    ///    *
    ///    * @note: The new icon is accessible through aNode.icon.
    ///    */
    /// ```
    ///

    /// `void nodeIconChanged (in nsINavHistoryResultNode aNode);`
    #[inline]
    pub unsafe fn NodeIconChanged(&self, aNode: *const nsINavHistoryResultNode) -> nsresult {
        ((*self.vtable).NodeIconChanged)(self, aNode)
    }


    /// ```text
    /// /**
    ///    * Called right after aNode's time property or accessCount property, or both,
    ///    * have changed.
    ///    *
    ///    * @param aNode
    ///    *        a uri result node
    ///    * @param aOldVisitDate
    ///    *        the old visit date
    ///    * @param aOldAccessCount
    ///    *        the old access-count
    ///    */
    /// ```
    ///

    /// `void nodeHistoryDetailsChanged (in nsINavHistoryResultNode aNode, in PRTime aOldVisitDate, in unsigned long aOldAccessCount);`
    #[inline]
    pub unsafe fn NodeHistoryDetailsChanged(&self, aNode: *const nsINavHistoryResultNode, aOldVisitDate: PRTime, aOldAccessCount: libc::uint32_t) -> nsresult {
        ((*self.vtable).NodeHistoryDetailsChanged)(self, aNode, aOldVisitDate, aOldAccessCount)
    }


    /// ```text
    /// /**
    ///    * Called when the tags set on the uri represented by aNode have changed.
    ///    *
    ///    * @param aNode
    ///    *        a uri result node
    ///    *
    ///    * @note: The new tags list is accessible through aNode.tags.
    ///    */
    /// ```
    ///

    /// `void nodeTagsChanged (in nsINavHistoryResultNode aNode);`
    #[inline]
    pub unsafe fn NodeTagsChanged(&self, aNode: *const nsINavHistoryResultNode) -> nsresult {
        ((*self.vtable).NodeTagsChanged)(self, aNode)
    }


    /// ```text
    /// /**
    ///    * Called right after the aNode's keyword property has changed.
    ///    *
    ///    * @param aNode
    ///    *        a uri result node
    ///    * @param aNewKeyword
    ///    *        the new keyword
    ///    */
    /// ```
    ///

    /// `void nodeKeywordChanged (in nsINavHistoryResultNode aNode, in AUTF8String aNewKeyword);`
    #[inline]
    pub unsafe fn NodeKeywordChanged(&self, aNode: *const nsINavHistoryResultNode, aNewKeyword: &::nsstring::nsACString) -> nsresult {
        ((*self.vtable).NodeKeywordChanged)(self, aNode, aNewKeyword)
    }


    /// ```text
    /// /**
    ///    * Called right after an annotation of aNode's has changed (set, altered, or
        ///    * unset).
    ///    *
    ///    * @param aNode
    ///    *        a result node
    ///    * @param aAnnoName
    ///    *        the name of the annotation that changed
    ///    */
    /// ```
    ///

    /// `void nodeAnnotationChanged (in nsINavHistoryResultNode aNode, in AUTF8String aAnnoName);`
    #[inline]
    pub unsafe fn NodeAnnotationChanged(&self, aNode: *const nsINavHistoryResultNode, aAnnoName: &::nsstring::nsACString) -> nsresult {
        ((*self.vtable).NodeAnnotationChanged)(self, aNode, aAnnoName)
    }


    /// ```text
    /// /**
    ///    * Called right after aNode's dateAdded property has changed.
    ///    *
    ///    * @param aNode
    ///    *        a result node
    ///    * @param aNewValue
    ///    *        the new value of the dateAdded property
    ///    */
    /// ```
    ///

    /// `void nodeDateAddedChanged (in nsINavHistoryResultNode aNode, in PRTime aNewValue);`
    #[inline]
    pub unsafe fn NodeDateAddedChanged(&self, aNode: *const nsINavHistoryResultNode, aNewValue: PRTime) -> nsresult {
        ((*self.vtable).NodeDateAddedChanged)(self, aNode, aNewValue)
    }


    /// ```text
    /// /**
    ///    * Called right after aNode's dateModified property has changed.
    ///    *
    ///    * @param aNode
    ///    *        a result node
    ///    * @param aNewValue
    ///    *        the new value of the dateModified property
    ///    */
    /// ```
    ///

    /// `void nodeLastModifiedChanged (in nsINavHistoryResultNode aNode, in PRTime aNewValue);`
    #[inline]
    pub unsafe fn NodeLastModifiedChanged(&self, aNode: *const nsINavHistoryResultNode, aNewValue: PRTime) -> nsresult {
        ((*self.vtable).NodeLastModifiedChanged)(self, aNode, aNewValue)
    }


    /// ```text
    /// /**
    ///    * Called after a container changes state.
    ///    *
    ///    * @param aContainerNode
    ///    *        The container that has changed state.
    ///    * @param aOldState
    ///    *        The state that aContainerNode has transitioned out of.
    ///    * @param aNewState
    ///    *        The state that aContainerNode has transitioned into.
    ///    */
    /// ```
    ///

    /// `void containerStateChanged (in nsINavHistoryContainerResultNode aContainerNode, in unsigned long aOldState, in unsigned long aNewState);`
    #[inline]
    pub unsafe fn ContainerStateChanged(&self, aContainerNode: *const nsINavHistoryContainerResultNode, aOldState: libc::uint32_t, aNewState: libc::uint32_t) -> nsresult {
        ((*self.vtable).ContainerStateChanged)(self, aContainerNode, aOldState, aNewState)
    }


    /// ```text
    /// /**
    ///    * Called when something significant has happened within the container. The
    ///    * contents of the container should be re-built.
    ///    *
    ///    * @param aContainerNode
    ///    *        the container node to invalidate
    ///    */
    /// ```
    ///

    /// `void invalidateContainer (in nsINavHistoryContainerResultNode aContainerNode);`
    #[inline]
    pub unsafe fn InvalidateContainer(&self, aContainerNode: *const nsINavHistoryContainerResultNode) -> nsresult {
        ((*self.vtable).InvalidateContainer)(self, aContainerNode)
    }


    /// ```text
    /// /**
    ///    * This is called to indicate to the UI that the sort has changed to the
    ///    * given mode. For trees, for example, this would update the column headers
    ///    * to reflect the sorting. For many other types of views, this won't be
    ///    * applicable.
    ///    *
    ///    * @param sortingMode  One of nsINavHistoryQueryOptions.SORT_BY_* that
    ///    *                     indicates the new sorting mode.
    ///    *
    ///    * This only is expected to update the sorting UI. invalidateAll() will also
    ///    * get called if the sorting changes to update everything.
    ///    */
    /// ```
    ///

    /// `void sortingChanged (in unsigned short sortingMode);`
    #[inline]
    pub unsafe fn SortingChanged(&self, sortingMode: libc::uint16_t) -> nsresult {
        ((*self.vtable).SortingChanged)(self, sortingMode)
    }


    /// ```text
    /// /**
    ///    * This is called to indicate that a batch operation is about to start or end.
    ///    * The observer could want to disable some events or updates during batches,
    ///    * since multiple operations are packed in a short time.
    ///    * For example treeviews could temporarily suppress select notifications.
    ///    *
    ///    * @param aToggleMode
    ///    *        true if a batch is starting, false if it's ending.
    ///    */
    /// ```
    ///

    /// `void batching (in boolean aToggleMode);`
    #[inline]
    pub unsafe fn Batching(&self, aToggleMode: bool) -> nsresult {
        ((*self.vtable).Batching)(self, aToggleMode)
    }


    /// ```text
    /// /**
    ///    * Called by the result when this observer is added.
    ///    */
    /// ```
    ///

    /// `attribute nsINavHistoryResult result;`
    #[inline]
    pub unsafe fn GetResult(&self, aResult: *mut *const nsINavHistoryResult) -> nsresult {
        ((*self.vtable).GetResult)(self, aResult)
    }


    /// ```text
    /// /**
    ///    * Called by the result when this observer is added.
    ///    */
    /// ```
    ///

    /// `attribute nsINavHistoryResult result;`
    #[inline]
    pub unsafe fn SetResult(&self, aResult: *const nsINavHistoryResult) -> nsresult {
        ((*self.vtable).SetResult)(self, aResult)
    }


}


/// `interface nsINavHistoryResultTreeViewer : nsINavHistoryResultObserver`
///

/// ```text
/// /**
///  * TODO: Bug 517719.
///  *
///  * A predefined view adaptor for interfacing results with an nsITree. This
///  * object will remove itself from its associated result when the tree has been
///  * detached. This prevents circular references. Users should be aware of this,
///  * if you want to re-use the same viewer, you will need to keep your own
///  * reference to it and re-initialize it when the tree changes. If you use this
///  * object, attach it to a result, never attach it to a tree, and forget about
///  * it, it will leak!
///  */
/// ```
///

// The actual type definition for the interface. This struct has methods
// declared on it which will call through its vtable. You never want to pass
// this type around by value, always pass it behind a reference.

#[repr(C)]
pub struct nsINavHistoryResultTreeViewer {
    vtable: *const nsINavHistoryResultTreeViewerVTable,

    /// This field is a phantomdata to ensure that the VTable type and any
    /// struct containing it is not safe to send across threads, as XPCOM is
    /// generally not threadsafe.
    ///
    /// XPCOM interfaces in general are not safe to send across threads.
    __nosync: ::std::marker::PhantomData<::std::rc::Rc<u8>>,
}

// Implementing XpCom for an interface exposes its IID, which allows for easy
// use of the `.query_interface<T>` helper method. This also defines that
// method for nsINavHistoryResultTreeViewer.
unsafe impl XpCom for nsINavHistoryResultTreeViewer {
    const IID: nsIID = nsID(0xf8b518c0, 0x1faf, 0x11df,
        [0x8a, 0x39, 0x08, 0x00, 0x20, 0x0c, 0x9a, 0x66]);
}

// We need to implement the RefCounted trait so we can be used with `RefPtr`.
// This trait teaches `RefPtr` how to manage our memory.
unsafe impl RefCounted for nsINavHistoryResultTreeViewer {
    #[inline]
    unsafe fn addref(&self) {
        self.AddRef();
    }
    #[inline]
    unsafe fn release(&self) {
        self.Release();
    }
}

// This trait is implemented on all types which can be coerced to from nsINavHistoryResultTreeViewer.
// It is used in the implementation of `fn coerce<T>`. We hide it from the
// documentation, because it clutters it up a lot.
#[doc(hidden)]
pub trait nsINavHistoryResultTreeViewerCoerce {
    /// Cheaply cast a value of this type from a `nsINavHistoryResultTreeViewer`.
    fn coerce_from(v: &nsINavHistoryResultTreeViewer) -> &Self;
}

// The trivial implementation: We can obviously coerce ourselves to ourselves.
impl nsINavHistoryResultTreeViewerCoerce for nsINavHistoryResultTreeViewer {
    #[inline]
    fn coerce_from(v: &nsINavHistoryResultTreeViewer) -> &Self {
        v
    }
}

impl nsINavHistoryResultTreeViewer {
    /// Cast this `nsINavHistoryResultTreeViewer` to one of its base interfaces.
    #[inline]
    pub fn coerce<T: nsINavHistoryResultTreeViewerCoerce>(&self) -> &T {
        T::coerce_from(self)
    }
}

// Every interface struct type implements `Deref` to its base interface. This
// causes methods on the base interfaces to be directly avaliable on the
// object. For example, you can call `.AddRef` or `.QueryInterface` directly
// on any interface which inherits from `nsISupports`.
impl ::std::ops::Deref for nsINavHistoryResultTreeViewer {
    type Target = nsINavHistoryResultObserver;
    #[inline]
    fn deref(&self) -> &nsINavHistoryResultObserver {
        unsafe {
            ::std::mem::transmute(self)
        }
    }
}

// Ensure we can use .coerce() to cast to our base types as well. Any type which
// our base interface can coerce from should be coercable from us as well.
impl<T: nsINavHistoryResultObserverCoerce> nsINavHistoryResultTreeViewerCoerce for T {
    #[inline]
    fn coerce_from(v: &nsINavHistoryResultTreeViewer) -> &Self {
        T::coerce_from(v)
    }
}

// This struct represents the interface's VTable. A pointer to a statically
// allocated version of this struct is at the beginning of every nsINavHistoryResultTreeViewer
// object. It contains one pointer field for each method in the interface. In
// the case where we can't generate a binding for a method, we include a void
// pointer.
#[doc(hidden)]
#[repr(C)]
pub struct nsINavHistoryResultTreeViewerVTable {
    /// We need to include the members from the base interface's vtable at the start
    /// of the VTable definition.
    pub __base: nsINavHistoryResultObserverVTable,

    /* nsINavHistoryResultNode nodeForTreeIndex (in unsigned long aIndex); */
    pub NodeForTreeIndex: unsafe extern "system" fn (this: *const nsINavHistoryResultTreeViewer, aIndex: libc::uint32_t, _retval: *mut *const nsINavHistoryResultNode) -> nsresult,

    /* unsigned long treeIndexForNode (in nsINavHistoryResultNode aNode); */
    pub TreeIndexForNode: unsafe extern "system" fn (this: *const nsINavHistoryResultTreeViewer, aNode: *const nsINavHistoryResultNode, _retval: *mut libc::uint32_t) -> nsresult,
}


// The implementations of the function wrappers which are exposed to rust code.
// Call these methods rather than manually calling through the VTable struct.
impl nsINavHistoryResultTreeViewer {
    /// ```text
    /// /**
    ///    * Reverse of nodeForFlatIndex, returns the row index for a given result node.
    ///    * Returns INDEX_INVISIBLE if the item is not visible (for example, its
        ///    * parent is collapsed). This is only valid when a tree is attached. The
    ///    * the result will always be INDEX_INVISIBLE if not.
    ///    *
    ///    * Note: This sounds sort of obvious, but it got me: aNode must be a node
    ///    *       retrieved from the same result that this viewer is for. If you
    ///    *       execute another query and get a node from a _different_ result, this
    ///    *       function will always return the index of that node in the tree that
    ///    *       is attached to that result.
    ///    */
    /// ```
    ///

    pub const INDEX_INVISIBLE: i64 = 4294967295;

    /// ```text
    /// /**
    ///    * This allows you to get at the real node for a given row index. This is
    ///    * only valid when a tree is attached.
    ///    */
    /// ```
    ///

    /// `nsINavHistoryResultNode nodeForTreeIndex (in unsigned long aIndex);`
    #[inline]
    pub unsafe fn NodeForTreeIndex(&self, aIndex: libc::uint32_t, _retval: *mut *const nsINavHistoryResultNode) -> nsresult {
        ((*self.vtable).NodeForTreeIndex)(self, aIndex, _retval)
    }



    /// `unsigned long treeIndexForNode (in nsINavHistoryResultNode aNode);`
    #[inline]
    pub unsafe fn TreeIndexForNode(&self, aNode: *const nsINavHistoryResultNode, _retval: *mut libc::uint32_t) -> nsresult {
        ((*self.vtable).TreeIndexForNode)(self, aNode, _retval)
    }


}


/// `interface nsINavHistoryResult : nsISupports`
///


// The actual type definition for the interface. This struct has methods
// declared on it which will call through its vtable. You never want to pass
// this type around by value, always pass it behind a reference.

#[repr(C)]
pub struct nsINavHistoryResult {
    vtable: *const nsINavHistoryResultVTable,

    /// This field is a phantomdata to ensure that the VTable type and any
    /// struct containing it is not safe to send across threads, as XPCOM is
    /// generally not threadsafe.
    ///
    /// XPCOM interfaces in general are not safe to send across threads.
    __nosync: ::std::marker::PhantomData<::std::rc::Rc<u8>>,
}

// Implementing XpCom for an interface exposes its IID, which allows for easy
// use of the `.query_interface<T>` helper method. This also defines that
// method for nsINavHistoryResult.
unsafe impl XpCom for nsINavHistoryResult {
    const IID: nsIID = nsID(0xc2229ce3, 0x2159, 0x4001,
        [0x85, 0x9c, 0x70, 0x13, 0xc5, 0x2f, 0x76, 0x19]);
}

// We need to implement the RefCounted trait so we can be used with `RefPtr`.
// This trait teaches `RefPtr` how to manage our memory.
unsafe impl RefCounted for nsINavHistoryResult {
    #[inline]
    unsafe fn addref(&self) {
        self.AddRef();
    }
    #[inline]
    unsafe fn release(&self) {
        self.Release();
    }
}

// This trait is implemented on all types which can be coerced to from nsINavHistoryResult.
// It is used in the implementation of `fn coerce<T>`. We hide it from the
// documentation, because it clutters it up a lot.
#[doc(hidden)]
pub trait nsINavHistoryResultCoerce {
    /// Cheaply cast a value of this type from a `nsINavHistoryResult`.
    fn coerce_from(v: &nsINavHistoryResult) -> &Self;
}

// The trivial implementation: We can obviously coerce ourselves to ourselves.
impl nsINavHistoryResultCoerce for nsINavHistoryResult {
    #[inline]
    fn coerce_from(v: &nsINavHistoryResult) -> &Self {
        v
    }
}

impl nsINavHistoryResult {
    /// Cast this `nsINavHistoryResult` to one of its base interfaces.
    #[inline]
    pub fn coerce<T: nsINavHistoryResultCoerce>(&self) -> &T {
        T::coerce_from(self)
    }
}

// Every interface struct type implements `Deref` to its base interface. This
// causes methods on the base interfaces to be directly avaliable on the
// object. For example, you can call `.AddRef` or `.QueryInterface` directly
// on any interface which inherits from `nsISupports`.
impl ::std::ops::Deref for nsINavHistoryResult {
    type Target = nsISupports;
    #[inline]
    fn deref(&self) -> &nsISupports {
        unsafe {
            ::std::mem::transmute(self)
        }
    }
}

// Ensure we can use .coerce() to cast to our base types as well. Any type which
// our base interface can coerce from should be coercable from us as well.
impl<T: nsISupportsCoerce> nsINavHistoryResultCoerce for T {
    #[inline]
    fn coerce_from(v: &nsINavHistoryResult) -> &Self {
        T::coerce_from(v)
    }
}

// This struct represents the interface's VTable. A pointer to a statically
// allocated version of this struct is at the beginning of every nsINavHistoryResult
// object. It contains one pointer field for each method in the interface. In
// the case where we can't generate a binding for a method, we include a void
// pointer.
#[doc(hidden)]
#[repr(C)]
pub struct nsINavHistoryResultVTable {
    /// We need to include the members from the base interface's vtable at the start
    /// of the VTable definition.
    pub __base: nsISupportsVTable,

    /* attribute unsigned short sortingMode; */
    pub GetSortingMode: unsafe extern "system" fn (this: *const nsINavHistoryResult, aSortingMode: *mut libc::uint16_t) -> nsresult,

    /* attribute unsigned short sortingMode; */
    pub SetSortingMode: unsafe extern "system" fn (this: *const nsINavHistoryResult, aSortingMode: libc::uint16_t) -> nsresult,

    /* attribute AUTF8String sortingAnnotation; */
    pub GetSortingAnnotation: unsafe extern "system" fn (this: *const nsINavHistoryResult, aSortingAnnotation: &mut ::nsstring::nsACString) -> nsresult,

    /* attribute AUTF8String sortingAnnotation; */
    pub SetSortingAnnotation: unsafe extern "system" fn (this: *const nsINavHistoryResult, aSortingAnnotation: &::nsstring::nsACString) -> nsresult,

    /* attribute boolean suppressNotifications; */
    pub GetSuppressNotifications: unsafe extern "system" fn (this: *const nsINavHistoryResult, aSuppressNotifications: *mut bool) -> nsresult,

    /* attribute boolean suppressNotifications; */
    pub SetSuppressNotifications: unsafe extern "system" fn (this: *const nsINavHistoryResult, aSuppressNotifications: bool) -> nsresult,

    /* void addObserver (in nsINavHistoryResultObserver aObserver, [optional] in boolean aOwnsWeak); */
    pub AddObserver: unsafe extern "system" fn (this: *const nsINavHistoryResult, aObserver: *const nsINavHistoryResultObserver, aOwnsWeak: bool) -> nsresult,

    /* void removeObserver (in nsINavHistoryResultObserver aObserver); */
    pub RemoveObserver: unsafe extern "system" fn (this: *const nsINavHistoryResult, aObserver: *const nsINavHistoryResultObserver) -> nsresult,

    /* readonly attribute nsINavHistoryContainerResultNode root; */
    pub GetRoot: unsafe extern "system" fn (this: *const nsINavHistoryResult, aRoot: *mut *const nsINavHistoryContainerResultNode) -> nsresult,
}


// The implementations of the function wrappers which are exposed to rust code.
// Call these methods rather than manually calling through the VTable struct.
impl nsINavHistoryResult {

    /// ```text
    /// /**
    ///  * The result of a history/bookmark query.
    ///  */
    /// /**
    ///    * Sorts all nodes recursively by the given parameter, one of
    ///    * nsINavHistoryQueryOptions.SORT_BY_*  This will update the corresponding
    ///    * options for this result, so that re-using the current options/queries will
    ///    * always give you the current view.
    ///    */
    /// ```
    ///

    /// `attribute unsigned short sortingMode;`
    #[inline]
    pub unsafe fn GetSortingMode(&self, aSortingMode: *mut libc::uint16_t) -> nsresult {
        ((*self.vtable).GetSortingMode)(self, aSortingMode)
    }


    /// ```text
    /// /**
    ///  * The result of a history/bookmark query.
    ///  */
    /// /**
    ///    * Sorts all nodes recursively by the given parameter, one of
    ///    * nsINavHistoryQueryOptions.SORT_BY_*  This will update the corresponding
    ///    * options for this result, so that re-using the current options/queries will
    ///    * always give you the current view.
    ///    */
    /// ```
    ///

    /// `attribute unsigned short sortingMode;`
    #[inline]
    pub unsafe fn SetSortingMode(&self, aSortingMode: libc::uint16_t) -> nsresult {
        ((*self.vtable).SetSortingMode)(self, aSortingMode)
    }


    /// ```text
    /// /**
    ///    * The annotation to use in SORT_BY_ANNOTATION_* sorting modes, set this
    ///    * before setting the sortingMode attribute.
    ///    */
    /// ```
    ///

    /// `attribute AUTF8String sortingAnnotation;`
    #[inline]
    pub unsafe fn GetSortingAnnotation(&self, aSortingAnnotation: &mut ::nsstring::nsACString) -> nsresult {
        ((*self.vtable).GetSortingAnnotation)(self, aSortingAnnotation)
    }


    /// ```text
    /// /**
    ///    * The annotation to use in SORT_BY_ANNOTATION_* sorting modes, set this
    ///    * before setting the sortingMode attribute.
    ///    */
    /// ```
    ///

    /// `attribute AUTF8String sortingAnnotation;`
    #[inline]
    pub unsafe fn SetSortingAnnotation(&self, aSortingAnnotation: &::nsstring::nsACString) -> nsresult {
        ((*self.vtable).SetSortingAnnotation)(self, aSortingAnnotation)
    }


    /// ```text
    /// /**
    ///    * Whether or not notifications on result changes are suppressed.
    ///    * Initially set to false.
    ///    *
    ///    * Use this to avoid flickering and to improve performance when you
    ///    * do temporary changes to the result structure (e.g. when searching for a
        ///    * node recursively).
    ///    */
    /// ```
    ///

    /// `attribute boolean suppressNotifications;`
    #[inline]
    pub unsafe fn GetSuppressNotifications(&self, aSuppressNotifications: *mut bool) -> nsresult {
        ((*self.vtable).GetSuppressNotifications)(self, aSuppressNotifications)
    }


    /// ```text
    /// /**
    ///    * Whether or not notifications on result changes are suppressed.
    ///    * Initially set to false.
    ///    *
    ///    * Use this to avoid flickering and to improve performance when you
    ///    * do temporary changes to the result structure (e.g. when searching for a
        ///    * node recursively).
    ///    */
    /// ```
    ///

    /// `attribute boolean suppressNotifications;`
    #[inline]
    pub unsafe fn SetSuppressNotifications(&self, aSuppressNotifications: bool) -> nsresult {
        ((*self.vtable).SetSuppressNotifications)(self, aSuppressNotifications)
    }


    /// ```text
    /// /**
    ///    * Adds an observer for changes done in the result.
    ///    *
    ///    * @param aObserver
    ///    *        a result observer.
    ///    * @param aOwnsWeak
    ///    *        If false, the result will keep an owning reference to the observer,
    ///    *        which must be removed using removeObserver.
    ///    *        If true, the result will keep a weak reference to the observer, which
    ///    *        must implement nsISupportsWeakReference.
    ///    *
    ///    * @see nsINavHistoryResultObserver
    ///    */
    /// ```
    ///

    /// `void addObserver (in nsINavHistoryResultObserver aObserver, [optional] in boolean aOwnsWeak);`
    #[inline]
    pub unsafe fn AddObserver(&self, aObserver: *const nsINavHistoryResultObserver, aOwnsWeak: bool) -> nsresult {
        ((*self.vtable).AddObserver)(self, aObserver, aOwnsWeak)
    }


    /// ```text
    /// /**
    ///    * Removes an observer that was added by addObserver.
    ///    *
    ///    * @param aObserver
    ///    *        a result observer that was added by addObserver.
    ///    */
    /// ```
    ///

    /// `void removeObserver (in nsINavHistoryResultObserver aObserver);`
    #[inline]
    pub unsafe fn RemoveObserver(&self, aObserver: *const nsINavHistoryResultObserver) -> nsresult {
        ((*self.vtable).RemoveObserver)(self, aObserver)
    }


    /// ```text
    /// /**
    ///    * This is the root of the results. Remember that you need to open all
    ///    * containers for their contents to be valid.
    ///    *
    ///    * When a result goes out of scope it will continue to observe changes till
    ///    * it is cycle collected.  While the result waits to be collected it will stay
    ///    * in memory, and continue to update itself, potentially causing unwanted
    ///    * additional work.  When you close the root node the result will stop
    ///    * observing changes, so it is good practice to close the root node when you
    ///    * are done with a result, since that will avoid unwanted performance hits.
    ///    */
    /// ```
    ///

    /// `readonly attribute nsINavHistoryContainerResultNode root;`
    #[inline]
    pub unsafe fn GetRoot(&self, aRoot: *mut *const nsINavHistoryContainerResultNode) -> nsresult {
        ((*self.vtable).GetRoot)(self, aRoot)
    }


}


/// `interface nsINavHistoryObserver : nsISupports`
///

/// ```text
/// /**
///  * Similar to nsIRDFObserver for history. Note that we don't pass the data
///  * source since that is always the global history.
///  *
///  * DANGER! If you are in the middle of a batch transaction, there may be a
///  * database transaction active. You can still access the DB, but be careful.
///  */
/// ```
///

// The actual type definition for the interface. This struct has methods
// declared on it which will call through its vtable. You never want to pass
// this type around by value, always pass it behind a reference.

#[repr(C)]
pub struct nsINavHistoryObserver {
    vtable: *const nsINavHistoryObserverVTable,

    /// This field is a phantomdata to ensure that the VTable type and any
    /// struct containing it is not safe to send across threads, as XPCOM is
    /// generally not threadsafe.
    ///
    /// XPCOM interfaces in general are not safe to send across threads.
    __nosync: ::std::marker::PhantomData<::std::rc::Rc<u8>>,
}

// Implementing XpCom for an interface exposes its IID, which allows for easy
// use of the `.query_interface<T>` helper method. This also defines that
// method for nsINavHistoryObserver.
unsafe impl XpCom for nsINavHistoryObserver {
    const IID: nsIID = nsID(0x0f0f45b0, 0x13a1, 0x44ae,
        [0xa0, 0xab, 0xc6, 0x04, 0x6e, 0xc6, 0xd4, 0xda]);
}

// We need to implement the RefCounted trait so we can be used with `RefPtr`.
// This trait teaches `RefPtr` how to manage our memory.
unsafe impl RefCounted for nsINavHistoryObserver {
    #[inline]
    unsafe fn addref(&self) {
        self.AddRef();
    }
    #[inline]
    unsafe fn release(&self) {
        self.Release();
    }
}

// This trait is implemented on all types which can be coerced to from nsINavHistoryObserver.
// It is used in the implementation of `fn coerce<T>`. We hide it from the
// documentation, because it clutters it up a lot.
#[doc(hidden)]
pub trait nsINavHistoryObserverCoerce {
    /// Cheaply cast a value of this type from a `nsINavHistoryObserver`.
    fn coerce_from(v: &nsINavHistoryObserver) -> &Self;
}

// The trivial implementation: We can obviously coerce ourselves to ourselves.
impl nsINavHistoryObserverCoerce for nsINavHistoryObserver {
    #[inline]
    fn coerce_from(v: &nsINavHistoryObserver) -> &Self {
        v
    }
}

impl nsINavHistoryObserver {
    /// Cast this `nsINavHistoryObserver` to one of its base interfaces.
    #[inline]
    pub fn coerce<T: nsINavHistoryObserverCoerce>(&self) -> &T {
        T::coerce_from(self)
    }
}

// Every interface struct type implements `Deref` to its base interface. This
// causes methods on the base interfaces to be directly avaliable on the
// object. For example, you can call `.AddRef` or `.QueryInterface` directly
// on any interface which inherits from `nsISupports`.
impl ::std::ops::Deref for nsINavHistoryObserver {
    type Target = nsISupports;
    #[inline]
    fn deref(&self) -> &nsISupports {
        unsafe {
            ::std::mem::transmute(self)
        }
    }
}

// Ensure we can use .coerce() to cast to our base types as well. Any type which
// our base interface can coerce from should be coercable from us as well.
impl<T: nsISupportsCoerce> nsINavHistoryObserverCoerce for T {
    #[inline]
    fn coerce_from(v: &nsINavHistoryObserver) -> &Self {
        T::coerce_from(v)
    }
}

// This struct represents the interface's VTable. A pointer to a statically
// allocated version of this struct is at the beginning of every nsINavHistoryObserver
// object. It contains one pointer field for each method in the interface. In
// the case where we can't generate a binding for a method, we include a void
// pointer.
#[doc(hidden)]
#[repr(C)]
pub struct nsINavHistoryObserverVTable {
    /// We need to include the members from the base interface's vtable at the start
    /// of the VTable definition.
    pub __base: nsISupportsVTable,

    /* void onBeginUpdateBatch (); */
    pub OnBeginUpdateBatch: unsafe extern "system" fn (this: *const nsINavHistoryObserver) -> nsresult,

    /* void onEndUpdateBatch (); */
    pub OnEndUpdateBatch: unsafe extern "system" fn (this: *const nsINavHistoryObserver) -> nsresult,

    /* void onVisit (in nsIURI aURI, in long long aVisitId, in PRTime aTime, in long long aSessionId, in long long aReferrerVisitId, in unsigned long aTransitionType, in ACString aGuid, in boolean aHidden, in unsigned long aVisitCount, in unsigned long aTyped, in AString aLastKnownTitle); */
    pub OnVisit: unsafe extern "system" fn (this: *const nsINavHistoryObserver, aURI: *const nsIURI, aVisitId: libc::int64_t, aTime: PRTime, aSessionId: libc::int64_t, aReferrerVisitId: libc::int64_t, aTransitionType: libc::uint32_t, aGuid: &::nsstring::nsACString, aHidden: bool, aVisitCount: libc::uint32_t, aTyped: libc::uint32_t, aLastKnownTitle: &::nsstring::nsAString) -> nsresult,

    /* void onTitleChanged (in nsIURI aURI, in AString aPageTitle, in ACString aGUID); */
    pub OnTitleChanged: unsafe extern "system" fn (this: *const nsINavHistoryObserver, aURI: *const nsIURI, aPageTitle: &::nsstring::nsAString, aGUID: &::nsstring::nsACString) -> nsresult,

    /* void onFrecencyChanged (in nsIURI aURI, in long aNewFrecency, in ACString aGUID, in boolean aHidden, in PRTime aVisitDate); */
    pub OnFrecencyChanged: unsafe extern "system" fn (this: *const nsINavHistoryObserver, aURI: *const nsIURI, aNewFrecency: libc::int32_t, aGUID: &::nsstring::nsACString, aHidden: bool, aVisitDate: PRTime) -> nsresult,

    /* void onManyFrecenciesChanged (); */
    pub OnManyFrecenciesChanged: unsafe extern "system" fn (this: *const nsINavHistoryObserver) -> nsresult,

    /* void onDeleteURI (in nsIURI aURI, in ACString aGUID, in unsigned short aReason); */
    pub OnDeleteURI: unsafe extern "system" fn (this: *const nsINavHistoryObserver, aURI: *const nsIURI, aGUID: &::nsstring::nsACString, aReason: libc::uint16_t) -> nsresult,

    /* void onClearHistory (); */
    pub OnClearHistory: unsafe extern "system" fn (this: *const nsINavHistoryObserver) -> nsresult,

    /* void onPageChanged (in nsIURI aURI, in unsigned long aChangedAttribute, in AString aNewValue, in ACString aGUID); */
    pub OnPageChanged: unsafe extern "system" fn (this: *const nsINavHistoryObserver, aURI: *const nsIURI, aChangedAttribute: libc::uint32_t, aNewValue: &::nsstring::nsAString, aGUID: &::nsstring::nsACString) -> nsresult,

    /* void onDeleteVisits (in nsIURI aURI, in PRTime aVisitTime, in ACString aGUID, in unsigned short aReason, in unsigned long aTransitionType); */
    pub OnDeleteVisits: unsafe extern "system" fn (this: *const nsINavHistoryObserver, aURI: *const nsIURI, aVisitTime: PRTime, aGUID: &::nsstring::nsACString, aReason: libc::uint16_t, aTransitionType: libc::uint32_t) -> nsresult,
}


// The implementations of the function wrappers which are exposed to rust code.
// Call these methods rather than manually calling through the VTable struct.
impl nsINavHistoryObserver {
    /// ```text
    /// /**
    ///    * Removed by the user.
    ///    */
    /// ```
    ///

    pub const REASON_DELETED: i64 = 0;

    /// ```text
    /// /**
    ///    * Removed by automatic expiration.
    ///    */
    /// ```
    ///

    pub const REASON_EXPIRED: i64 = 1;

    /// ```text
    /// /**
    ///    * onPageChanged attribute indicating that favicon has been updated.
    ///    * aNewValue parameter will be set to the new favicon URI string.
    ///    */
    /// ```
    ///

    pub const ATTRIBUTE_FAVICON: i64 = 3;

    /// ```text
    /// /**
    ///    * Notifies you that a bunch of things are about to change, don't do any
    ///    * heavy-duty processing until onEndUpdateBatch is called.
    ///    */
    /// ```
    ///

    /// `void onBeginUpdateBatch ();`
    #[inline]
    pub unsafe fn OnBeginUpdateBatch(&self, ) -> nsresult {
        ((*self.vtable).OnBeginUpdateBatch)(self, )
    }


    /// ```text
    /// /**
    ///    * Notifies you that we are done doing a bunch of things and you should go
    ///    * ahead and update UI, etc.
    ///    */
    /// ```
    ///

    /// `void onEndUpdateBatch ();`
    #[inline]
    pub unsafe fn OnEndUpdateBatch(&self, ) -> nsresult {
        ((*self.vtable).OnEndUpdateBatch)(self, )
    }


    /// ```text
    /// /**
    ///    * Called everytime a URI is visited.
    ///    *
    ///    * @note TRANSITION_EMBED visits (corresponding to images in a page, for
        ///    *       example) are not displayed in history results. Most observers can
    ///    *       ignore TRANSITION_EMBED visit notifications (which will comprise the
        ///    *       majority of visit notifications) to save work.
    ///    *
    ///    * @param aVisitId
    ///    *        Id of the visit that was just created.
    ///    * @param aTime
    ///    *        Time of the visit.
    ///    * @param aSessionId
    ///    *        No longer supported and always set to 0.
    ///    * @param aReferrerVisitId
    ///    *        The id of the visit the user came from, defaults to 0 for no referrer.
    ///    * @param aTransitionType
    ///    *        One of nsINavHistory.TRANSITION_*
    ///    * @param aGuid
    ///    *        The unique id associated with the page.
    ///    * @param aHidden
    ///    *        Whether the visited page is marked as hidden.
    ///    * @param aVisitCount
    ///    *        Number of visits (included this one) for this URI.
    ///    * @param aTyped
    ///    *        Whether the URI has been typed or not.
    ///    *        TODO (Bug 1271801): This will become a count, rather than a boolean.
    ///    *        For future compatibility, always compare it with "> 0".
    ///    * @param aLastKnownTitle
    ///    *        The last known title of the page. Might not be from the current visit,
    ///    *        and might be null if it is not known.
    ///    */
    /// ```
    ///

    /// `void onVisit (in nsIURI aURI, in long long aVisitId, in PRTime aTime, in long long aSessionId, in long long aReferrerVisitId, in unsigned long aTransitionType, in ACString aGuid, in boolean aHidden, in unsigned long aVisitCount, in unsigned long aTyped, in AString aLastKnownTitle);`
    #[inline]
    pub unsafe fn OnVisit(&self, aURI: *const nsIURI, aVisitId: libc::int64_t, aTime: PRTime, aSessionId: libc::int64_t, aReferrerVisitId: libc::int64_t, aTransitionType: libc::uint32_t, aGuid: &::nsstring::nsACString, aHidden: bool, aVisitCount: libc::uint32_t, aTyped: libc::uint32_t, aLastKnownTitle: &::nsstring::nsAString) -> nsresult {
        ((*self.vtable).OnVisit)(self, aURI, aVisitId, aTime, aSessionId, aReferrerVisitId, aTransitionType, aGuid, aHidden, aVisitCount, aTyped, aLastKnownTitle)
    }


    /// ```text
    /// /**
    ///    * Called whenever either the "real" title or the custom title of the page
    ///    * changed. BOTH TITLES ARE ALWAYS INCLUDED in this notification, even though
    ///    * only one will change at a time. Often, consumers will want to display the
    ///    * user title if it is available, and fall back to the page title (the one
        ///    * specified in the <title> tag of the page).
    ///    *
    ///    * Note that there is a difference between an empty title and a NULL title.
    ///    * An empty string means that somebody specifically set the title to be
    ///    * nothing. NULL means nobody set it. From C++: use IsVoid() and SetIsVoid()
    ///    * to see whether an empty string is "null" or not (it will always be an
        ///    * empty string in either case).
    ///    *
    ///    * @param aURI
    ///    *        The URI of the page.
    ///    * @param aPageTitle
    ///    *        The new title of the page.
    ///    * @param aGUID
    ///    *        The unique ID associated with the page.
    ///    */
    /// ```
    ///

    /// `void onTitleChanged (in nsIURI aURI, in AString aPageTitle, in ACString aGUID);`
    #[inline]
    pub unsafe fn OnTitleChanged(&self, aURI: *const nsIURI, aPageTitle: &::nsstring::nsAString, aGUID: &::nsstring::nsACString) -> nsresult {
        ((*self.vtable).OnTitleChanged)(self, aURI, aPageTitle, aGUID)
    }


    /// ```text
    /// /**
    ///    * Called when an individual page's frecency has changed.
    ///    *
    ///    * This is not called for pages whose frecencies change as the result of some
    ///    * large operation where some large or unknown number of frecencies change at
    ///    * once.  Use onManyFrecenciesChanged to detect such changes.
    ///    *
    ///    * @param aURI
    ///    *        The page's URI.
    ///    * @param aNewFrecency
    ///    *        The page's new frecency.
    ///    * @param aGUID
    ///    *        The page's GUID.
    ///    * @param aHidden
    ///    *        True if the page is marked as hidden.
    ///    * @param aVisitDate
    ///    *        The page's last visit date.
    ///    */
    /// ```
    ///

    /// `void onFrecencyChanged (in nsIURI aURI, in long aNewFrecency, in ACString aGUID, in boolean aHidden, in PRTime aVisitDate);`
    #[inline]
    pub unsafe fn OnFrecencyChanged(&self, aURI: *const nsIURI, aNewFrecency: libc::int32_t, aGUID: &::nsstring::nsACString, aHidden: bool, aVisitDate: PRTime) -> nsresult {
        ((*self.vtable).OnFrecencyChanged)(self, aURI, aNewFrecency, aGUID, aHidden, aVisitDate)
    }


    /// ```text
    /// /**
    ///    * Called when the frecencies of many pages have changed at once.
    ///    *
    ///    * onFrecencyChanged is not called for each of those pages.
    ///    */
    /// ```
    ///

    /// `void onManyFrecenciesChanged ();`
    #[inline]
    pub unsafe fn OnManyFrecenciesChanged(&self, ) -> nsresult {
        ((*self.vtable).OnManyFrecenciesChanged)(self, )
    }


    /// ```text
    /// /**
    ///    * This page and all of its visits are being deleted. Note: the page may not
    ///    * necessarily have actually existed for this function to be called.
    ///    *
    ///    * Delete notifications are only 99.99% accurate. Batch delete operations
    ///    * must be done in two steps, so first come notifications, then a bulk
    ///    * delete. If there is some error in the middle (for example, out of memory)
    ///    * then you'll get a notification and it won't get deleted. There's no easy
    ///    * way around this.
    ///    *
    ///    * @param aURI
    ///    *        The URI that was deleted.
    ///    * @param aGUID
    ///    *        The unique ID associated with the page.
    ///    * @param aReason
    ///    *        Indicates the reason for the removal.  see REASON_* constants.
    ///    */
    /// ```
    ///

    /// `void onDeleteURI (in nsIURI aURI, in ACString aGUID, in unsigned short aReason);`
    #[inline]
    pub unsafe fn OnDeleteURI(&self, aURI: *const nsIURI, aGUID: &::nsstring::nsACString, aReason: libc::uint16_t) -> nsresult {
        ((*self.vtable).OnDeleteURI)(self, aURI, aGUID, aReason)
    }


    /// ```text
    /// /**
    ///    * Notification that all of history is being deleted.
    ///    */
    /// ```
    ///

    /// `void onClearHistory ();`
    #[inline]
    pub unsafe fn OnClearHistory(&self, ) -> nsresult {
        ((*self.vtable).OnClearHistory)(self, )
    }


    /// ```text
    /// /**
    ///    * An attribute of this page changed.
    ///    *
    ///    * @param aURI
    ///    *        The URI of the page on which an attribute changed.
    ///    * @param aChangedAttribute
    ///    *        The attribute whose value changed.  See ATTRIBUTE_* constants.
    ///    * @param aNewValue
    ///    *        The attribute's new value.
    ///    * @param aGUID
    ///    *        The unique ID associated with the page.
    ///    */
    /// ```
    ///

    /// `void onPageChanged (in nsIURI aURI, in unsigned long aChangedAttribute, in AString aNewValue, in ACString aGUID);`
    #[inline]
    pub unsafe fn OnPageChanged(&self, aURI: *const nsIURI, aChangedAttribute: libc::uint32_t, aNewValue: &::nsstring::nsAString, aGUID: &::nsstring::nsACString) -> nsresult {
        ((*self.vtable).OnPageChanged)(self, aURI, aChangedAttribute, aNewValue, aGUID)
    }


    /// ```text
    /// /**
    ///    * Called when some visits of an history entry are expired.
    ///    *
    ///    * @param aURI
    ///    *        The page whose visits have been expired.
    ///    * @param aVisitTime
    ///    *        The largest visit time in microseconds that has been expired.  We
    ///    *        guarantee that we don't have any visit older than this date.
    ///    * @param aGUID
    ///    *        The unique ID associated with the page.
    ///    *
    ///    * @note: when all visits for a page are expired and also the full page entry
    ///    *        is expired, you will only get an onDeleteURI notification.  If a
    ///    *        page entry is removed, then you can be sure that we don't have
    ///    *        anymore visits for it.
    ///    * @param aReason
    ///    *        Indicates the reason for the removal.  see REASON_* constants.
    ///    * @param aTransitionType
    ///    *        If it's a valid TRANSITION_* value, all visits of the specified type
    ///    *        have been removed.
    ///    */
    /// ```
    ///

    /// `void onDeleteVisits (in nsIURI aURI, in PRTime aVisitTime, in ACString aGUID, in unsigned short aReason, in unsigned long aTransitionType);`
    #[inline]
    pub unsafe fn OnDeleteVisits(&self, aURI: *const nsIURI, aVisitTime: PRTime, aGUID: &::nsstring::nsACString, aReason: libc::uint16_t, aTransitionType: libc::uint32_t) -> nsresult {
        ((*self.vtable).OnDeleteVisits)(self, aURI, aVisitTime, aGUID, aReason, aTransitionType)
    }


}


/// `interface nsINavHistoryQuery : nsISupports`
///


// The actual type definition for the interface. This struct has methods
// declared on it which will call through its vtable. You never want to pass
// this type around by value, always pass it behind a reference.

#[repr(C)]
pub struct nsINavHistoryQuery {
    vtable: *const nsINavHistoryQueryVTable,

    /// This field is a phantomdata to ensure that the VTable type and any
    /// struct containing it is not safe to send across threads, as XPCOM is
    /// generally not threadsafe.
    ///
    /// XPCOM interfaces in general are not safe to send across threads.
    __nosync: ::std::marker::PhantomData<::std::rc::Rc<u8>>,
}

// Implementing XpCom for an interface exposes its IID, which allows for easy
// use of the `.query_interface<T>` helper method. This also defines that
// method for nsINavHistoryQuery.
unsafe impl XpCom for nsINavHistoryQuery {
    const IID: nsIID = nsID(0xdc87ae79, 0x22f1, 0x4dcf,
        [0x97, 0x5b, 0x85, 0x2b, 0x01, 0xd2, 0x10, 0xcb]);
}

// We need to implement the RefCounted trait so we can be used with `RefPtr`.
// This trait teaches `RefPtr` how to manage our memory.
unsafe impl RefCounted for nsINavHistoryQuery {
    #[inline]
    unsafe fn addref(&self) {
        self.AddRef();
    }
    #[inline]
    unsafe fn release(&self) {
        self.Release();
    }
}

// This trait is implemented on all types which can be coerced to from nsINavHistoryQuery.
// It is used in the implementation of `fn coerce<T>`. We hide it from the
// documentation, because it clutters it up a lot.
#[doc(hidden)]
pub trait nsINavHistoryQueryCoerce {
    /// Cheaply cast a value of this type from a `nsINavHistoryQuery`.
    fn coerce_from(v: &nsINavHistoryQuery) -> &Self;
}

// The trivial implementation: We can obviously coerce ourselves to ourselves.
impl nsINavHistoryQueryCoerce for nsINavHistoryQuery {
    #[inline]
    fn coerce_from(v: &nsINavHistoryQuery) -> &Self {
        v
    }
}

impl nsINavHistoryQuery {
    /// Cast this `nsINavHistoryQuery` to one of its base interfaces.
    #[inline]
    pub fn coerce<T: nsINavHistoryQueryCoerce>(&self) -> &T {
        T::coerce_from(self)
    }
}

// Every interface struct type implements `Deref` to its base interface. This
// causes methods on the base interfaces to be directly avaliable on the
// object. For example, you can call `.AddRef` or `.QueryInterface` directly
// on any interface which inherits from `nsISupports`.
impl ::std::ops::Deref for nsINavHistoryQuery {
    type Target = nsISupports;
    #[inline]
    fn deref(&self) -> &nsISupports {
        unsafe {
            ::std::mem::transmute(self)
        }
    }
}

// Ensure we can use .coerce() to cast to our base types as well. Any type which
// our base interface can coerce from should be coercable from us as well.
impl<T: nsISupportsCoerce> nsINavHistoryQueryCoerce for T {
    #[inline]
    fn coerce_from(v: &nsINavHistoryQuery) -> &Self {
        T::coerce_from(v)
    }
}

// This struct represents the interface's VTable. A pointer to a statically
// allocated version of this struct is at the beginning of every nsINavHistoryQuery
// object. It contains one pointer field for each method in the interface. In
// the case where we can't generate a binding for a method, we include a void
// pointer.
#[doc(hidden)]
#[repr(C)]
pub struct nsINavHistoryQueryVTable {
    /// We need to include the members from the base interface's vtable at the start
    /// of the VTable definition.
    pub __base: nsISupportsVTable,

    /* attribute PRTime beginTime; */
    pub GetBeginTime: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aBeginTime: *mut PRTime) -> nsresult,

    /* attribute PRTime beginTime; */
    pub SetBeginTime: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aBeginTime: PRTime) -> nsresult,

    /* attribute unsigned long beginTimeReference; */
    pub GetBeginTimeReference: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aBeginTimeReference: *mut libc::uint32_t) -> nsresult,

    /* attribute unsigned long beginTimeReference; */
    pub SetBeginTimeReference: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aBeginTimeReference: libc::uint32_t) -> nsresult,

    /* readonly attribute boolean hasBeginTime; */
    pub GetHasBeginTime: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aHasBeginTime: *mut bool) -> nsresult,

    /* readonly attribute PRTime absoluteBeginTime; */
    pub GetAbsoluteBeginTime: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aAbsoluteBeginTime: *mut PRTime) -> nsresult,

    /* attribute PRTime endTime; */
    pub GetEndTime: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aEndTime: *mut PRTime) -> nsresult,

    /* attribute PRTime endTime; */
    pub SetEndTime: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aEndTime: PRTime) -> nsresult,

    /* attribute unsigned long endTimeReference; */
    pub GetEndTimeReference: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aEndTimeReference: *mut libc::uint32_t) -> nsresult,

    /* attribute unsigned long endTimeReference; */
    pub SetEndTimeReference: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aEndTimeReference: libc::uint32_t) -> nsresult,

    /* readonly attribute boolean hasEndTime; */
    pub GetHasEndTime: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aHasEndTime: *mut bool) -> nsresult,

    /* readonly attribute PRTime absoluteEndTime; */
    pub GetAbsoluteEndTime: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aAbsoluteEndTime: *mut PRTime) -> nsresult,

    /* attribute AString searchTerms; */
    pub GetSearchTerms: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aSearchTerms: &mut ::nsstring::nsAString) -> nsresult,

    /* attribute AString searchTerms; */
    pub SetSearchTerms: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aSearchTerms: &::nsstring::nsAString) -> nsresult,

    /* readonly attribute boolean hasSearchTerms; */
    pub GetHasSearchTerms: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aHasSearchTerms: *mut bool) -> nsresult,

    /* attribute long minVisits; */
    pub GetMinVisits: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aMinVisits: *mut libc::int32_t) -> nsresult,

    /* attribute long minVisits; */
    pub SetMinVisits: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aMinVisits: libc::int32_t) -> nsresult,

    /* attribute long maxVisits; */
    pub GetMaxVisits: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aMaxVisits: *mut libc::int32_t) -> nsresult,

    /* attribute long maxVisits; */
    pub SetMaxVisits: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aMaxVisits: libc::int32_t) -> nsresult,

    /* void setTransitions ([array, size_is (count), const] in unsigned long transitions, in unsigned long count); */
    pub SetTransitions: unsafe extern "system" fn (this: *const nsINavHistoryQuery, transitions: *const libc::uint32_t, count: libc::uint32_t) -> nsresult,

    /* void getTransitions ([optional] out unsigned long count, [array, size_is (count), retval] out unsigned long transitions); */
    pub GetTransitions: unsafe extern "system" fn (this: *const nsINavHistoryQuery, count: *mut libc::uint32_t, transitions: *mut *mut libc::uint32_t) -> nsresult,

    /* readonly attribute unsigned long transitionCount; */
    pub GetTransitionCount: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aTransitionCount: *mut libc::uint32_t) -> nsresult,

    /* attribute boolean onlyBookmarked; */
    pub GetOnlyBookmarked: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aOnlyBookmarked: *mut bool) -> nsresult,

    /* attribute boolean onlyBookmarked; */
    pub SetOnlyBookmarked: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aOnlyBookmarked: bool) -> nsresult,

    /* attribute boolean domainIsHost; */
    pub GetDomainIsHost: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aDomainIsHost: *mut bool) -> nsresult,

    /* attribute boolean domainIsHost; */
    pub SetDomainIsHost: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aDomainIsHost: bool) -> nsresult,

    /* attribute AUTF8String domain; */
    pub GetDomain: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aDomain: &mut ::nsstring::nsACString) -> nsresult,

    /* attribute AUTF8String domain; */
    pub SetDomain: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aDomain: &::nsstring::nsACString) -> nsresult,

    /* readonly attribute boolean hasDomain; */
    pub GetHasDomain: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aHasDomain: *mut bool) -> nsresult,

    /* attribute nsIURI uri; */
    pub GetUri: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aUri: *mut *const nsIURI) -> nsresult,

    /* attribute nsIURI uri; */
    pub SetUri: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aUri: *const nsIURI) -> nsresult,

    /* readonly attribute boolean hasUri; */
    pub GetHasUri: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aHasUri: *mut bool) -> nsresult,

    /* attribute boolean annotationIsNot; */
    pub GetAnnotationIsNot: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aAnnotationIsNot: *mut bool) -> nsresult,

    /* attribute boolean annotationIsNot; */
    pub SetAnnotationIsNot: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aAnnotationIsNot: bool) -> nsresult,

    /* attribute AUTF8String annotation; */
    pub GetAnnotation: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aAnnotation: &mut ::nsstring::nsACString) -> nsresult,

    /* attribute AUTF8String annotation; */
    pub SetAnnotation: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aAnnotation: &::nsstring::nsACString) -> nsresult,

    /* readonly attribute boolean hasAnnotation; */
    pub GetHasAnnotation: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aHasAnnotation: *mut bool) -> nsresult,

    /* attribute nsIVariant tags; */
    pub GetTags: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aTags: *mut *const nsIVariant) -> nsresult,

    /* attribute nsIVariant tags; */
    pub SetTags: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aTags: *const nsIVariant) -> nsresult,

    /* attribute boolean tagsAreNot; */
    pub GetTagsAreNot: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aTagsAreNot: *mut bool) -> nsresult,

    /* attribute boolean tagsAreNot; */
    pub SetTagsAreNot: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aTagsAreNot: bool) -> nsresult,

    /* void getFolders ([optional] out unsigned long count, [array, size_is (count), retval] out long long folders); */
    pub GetFolders: unsafe extern "system" fn (this: *const nsINavHistoryQuery, count: *mut libc::uint32_t, folders: *mut *mut libc::int64_t) -> nsresult,

    /* readonly attribute unsigned long folderCount; */
    pub GetFolderCount: unsafe extern "system" fn (this: *const nsINavHistoryQuery, aFolderCount: *mut libc::uint32_t) -> nsresult,

    /* void setFolders ([array, size_is (folderCount), const] in long long folders, in unsigned long folderCount); */
    pub SetFolders: unsafe extern "system" fn (this: *const nsINavHistoryQuery, folders: *const libc::int64_t, folderCount: libc::uint32_t) -> nsresult,

    /* nsINavHistoryQuery clone (); */
    pub Clone: unsafe extern "system" fn (this: *const nsINavHistoryQuery, _retval: *mut *const nsINavHistoryQuery) -> nsresult,
}


// The implementations of the function wrappers which are exposed to rust code.
// Call these methods rather than manually calling through the VTable struct.
impl nsINavHistoryQuery {
    /// ```text
    /// /**
    ///  * This object encapsulates all the query parameters you're likely to need
    ///  * when building up history UI. All parameters are ANDed together.
    ///  *
    ///  * This is not intended to be a super-general query mechanism. This was designed
    ///  * so that most queries can be done in only one SQL query. This is important
    ///  * because, if the user has their profile on a networked drive, query latency
    ///  * can be non-negligible.
    ///  */
    /// /**
    ///    * Time range for results (INCLUSIVE). The *TimeReference is one of the
    ///    * constants TIME_RELATIVE_* which indicates how to interpret the
    ///    * corresponding time value.
    ///    *   TIME_RELATIVE_EPOCH (default):
    ///    *     The time is relative to Jan 1 1970 GMT, (this is a normal PRTime)
    ///    *   TIME_RELATIVE_TODAY:
    ///    *     The time is relative to this morning at midnight. Normally used for
    ///    *     queries relative to today. For example, a "past week" query would be
    ///    *     today-6 days -> today+1 day
    ///    *   TIME_RELATIVE_NOW:
    ///    *     The time is relative to right now.
    ///    *
    ///    * Note: PRTime is in MICROseconds since 1 Jan 1970. Javascript date objects
    ///    * are expressed in MILLIseconds since 1 Jan 1970.
    ///    *
    ///    * As a special case, a 0 time relative to TIME_RELATIVE_EPOCH indicates that
    ///    * the time is not part of the query. This is the default, so an empty query
    ///    * will match any time. The has* functions return whether the corresponding
    ///    * time is considered.
    ///    *
    ///    * You can read absolute*Time to get the time value that the currently loaded
    ///    * reference points + offset resolve to.
    ///    */
    /// ```
    ///

    pub const TIME_RELATIVE_EPOCH: i64 = 0;


    pub const TIME_RELATIVE_TODAY: i64 = 1;


    pub const TIME_RELATIVE_NOW: i64 = 2;


    /// `attribute PRTime beginTime;`
    #[inline]
    pub unsafe fn GetBeginTime(&self, aBeginTime: *mut PRTime) -> nsresult {
        ((*self.vtable).GetBeginTime)(self, aBeginTime)
    }



    /// `attribute PRTime beginTime;`
    #[inline]
    pub unsafe fn SetBeginTime(&self, aBeginTime: PRTime) -> nsresult {
        ((*self.vtable).SetBeginTime)(self, aBeginTime)
    }



    /// `attribute unsigned long beginTimeReference;`
    #[inline]
    pub unsafe fn GetBeginTimeReference(&self, aBeginTimeReference: *mut libc::uint32_t) -> nsresult {
        ((*self.vtable).GetBeginTimeReference)(self, aBeginTimeReference)
    }



    /// `attribute unsigned long beginTimeReference;`
    #[inline]
    pub unsafe fn SetBeginTimeReference(&self, aBeginTimeReference: libc::uint32_t) -> nsresult {
        ((*self.vtable).SetBeginTimeReference)(self, aBeginTimeReference)
    }



    /// `readonly attribute boolean hasBeginTime;`
    #[inline]
    pub unsafe fn GetHasBeginTime(&self, aHasBeginTime: *mut bool) -> nsresult {
        ((*self.vtable).GetHasBeginTime)(self, aHasBeginTime)
    }



    /// `readonly attribute PRTime absoluteBeginTime;`
    #[inline]
    pub unsafe fn GetAbsoluteBeginTime(&self, aAbsoluteBeginTime: *mut PRTime) -> nsresult {
        ((*self.vtable).GetAbsoluteBeginTime)(self, aAbsoluteBeginTime)
    }



    /// `attribute PRTime endTime;`
    #[inline]
    pub unsafe fn GetEndTime(&self, aEndTime: *mut PRTime) -> nsresult {
        ((*self.vtable).GetEndTime)(self, aEndTime)
    }



    /// `attribute PRTime endTime;`
    #[inline]
    pub unsafe fn SetEndTime(&self, aEndTime: PRTime) -> nsresult {
        ((*self.vtable).SetEndTime)(self, aEndTime)
    }



    /// `attribute unsigned long endTimeReference;`
    #[inline]
    pub unsafe fn GetEndTimeReference(&self, aEndTimeReference: *mut libc::uint32_t) -> nsresult {
        ((*self.vtable).GetEndTimeReference)(self, aEndTimeReference)
    }



    /// `attribute unsigned long endTimeReference;`
    #[inline]
    pub unsafe fn SetEndTimeReference(&self, aEndTimeReference: libc::uint32_t) -> nsresult {
        ((*self.vtable).SetEndTimeReference)(self, aEndTimeReference)
    }



    /// `readonly attribute boolean hasEndTime;`
    #[inline]
    pub unsafe fn GetHasEndTime(&self, aHasEndTime: *mut bool) -> nsresult {
        ((*self.vtable).GetHasEndTime)(self, aHasEndTime)
    }



    /// `readonly attribute PRTime absoluteEndTime;`
    #[inline]
    pub unsafe fn GetAbsoluteEndTime(&self, aAbsoluteEndTime: *mut PRTime) -> nsresult {
        ((*self.vtable).GetAbsoluteEndTime)(self, aAbsoluteEndTime)
    }


    /// ```text
    /// /**
    ///    * Text search terms.
    ///    */
    /// ```
    ///

    /// `attribute AString searchTerms;`
    #[inline]
    pub unsafe fn GetSearchTerms(&self, aSearchTerms: &mut ::nsstring::nsAString) -> nsresult {
        ((*self.vtable).GetSearchTerms)(self, aSearchTerms)
    }


    /// ```text
    /// /**
    ///    * Text search terms.
    ///    */
    /// ```
    ///

    /// `attribute AString searchTerms;`
    #[inline]
    pub unsafe fn SetSearchTerms(&self, aSearchTerms: &::nsstring::nsAString) -> nsresult {
        ((*self.vtable).SetSearchTerms)(self, aSearchTerms)
    }



    /// `readonly attribute boolean hasSearchTerms;`
    #[inline]
    pub unsafe fn GetHasSearchTerms(&self, aHasSearchTerms: *mut bool) -> nsresult {
        ((*self.vtable).GetHasSearchTerms)(self, aHasSearchTerms)
    }


    /// ```text
    /// /**
    ///    * Set lower or upper limits for how many times an item has been
    ///    * visited.  The default is -1, and in that case all items are
    ///    * matched regardless of their visit count.
    ///    */
    /// ```
    ///

    /// `attribute long minVisits;`
    #[inline]
    pub unsafe fn GetMinVisits(&self, aMinVisits: *mut libc::int32_t) -> nsresult {
        ((*self.vtable).GetMinVisits)(self, aMinVisits)
    }


    /// ```text
    /// /**
    ///    * Set lower or upper limits for how many times an item has been
    ///    * visited.  The default is -1, and in that case all items are
    ///    * matched regardless of their visit count.
    ///    */
    /// ```
    ///

    /// `attribute long minVisits;`
    #[inline]
    pub unsafe fn SetMinVisits(&self, aMinVisits: libc::int32_t) -> nsresult {
        ((*self.vtable).SetMinVisits)(self, aMinVisits)
    }



    /// `attribute long maxVisits;`
    #[inline]
    pub unsafe fn GetMaxVisits(&self, aMaxVisits: *mut libc::int32_t) -> nsresult {
        ((*self.vtable).GetMaxVisits)(self, aMaxVisits)
    }



    /// `attribute long maxVisits;`
    #[inline]
    pub unsafe fn SetMaxVisits(&self, aMaxVisits: libc::int32_t) -> nsresult {
        ((*self.vtable).SetMaxVisits)(self, aMaxVisits)
    }


    /// ```text
    /// /**
    ///    * When the set of transitions is nonempty, results are limited to pages which
    ///    * have at least one visit for each of the transition types.
    ///    * @note: For searching on more than one transition this can be very slow.
    ///    *
    ///    * Limit results to the specified list of transition types.
    ///    */
    /// ```
    ///

    /// `void setTransitions ([array, size_is (count), const] in unsigned long transitions, in unsigned long count);`
    #[inline]
    pub unsafe fn SetTransitions(&self, transitions: *const libc::uint32_t, count: libc::uint32_t) -> nsresult {
        ((*self.vtable).SetTransitions)(self, transitions, count)
    }


    /// ```text
    /// /**
    ///    * Get the transitions set for this query.
    ///    */
    /// ```
    ///

    /// `void getTransitions ([optional] out unsigned long count, [array, size_is (count), retval] out unsigned long transitions);`
    #[inline]
    pub unsafe fn GetTransitions(&self, count: *mut libc::uint32_t, transitions: *mut *mut libc::uint32_t) -> nsresult {
        ((*self.vtable).GetTransitions)(self, count, transitions)
    }


    /// ```text
    /// /**
    ///    * Get the count of the set query transitions.
    ///    */
    /// ```
    ///

    /// `readonly attribute unsigned long transitionCount;`
    #[inline]
    pub unsafe fn GetTransitionCount(&self, aTransitionCount: *mut libc::uint32_t) -> nsresult {
        ((*self.vtable).GetTransitionCount)(self, aTransitionCount)
    }


    /// ```text
    /// /**
    ///    * When set, returns only bookmarked items, when unset, returns anything. Setting this
    ///    * is equivalent to listing all bookmark folders in the 'folders' parameter.
    ///    */
    /// ```
    ///

    /// `attribute boolean onlyBookmarked;`
    #[inline]
    pub unsafe fn GetOnlyBookmarked(&self, aOnlyBookmarked: *mut bool) -> nsresult {
        ((*self.vtable).GetOnlyBookmarked)(self, aOnlyBookmarked)
    }


    /// ```text
    /// /**
    ///    * When set, returns only bookmarked items, when unset, returns anything. Setting this
    ///    * is equivalent to listing all bookmark folders in the 'folders' parameter.
    ///    */
    /// ```
    ///

    /// `attribute boolean onlyBookmarked;`
    #[inline]
    pub unsafe fn SetOnlyBookmarked(&self, aOnlyBookmarked: bool) -> nsresult {
        ((*self.vtable).SetOnlyBookmarked)(self, aOnlyBookmarked)
    }


    /// ```text
    /// /**
    ///    * This controls the meaning of 'domain', and whether it is an exact match
    ///    * 'domainIsHost' = true, or hierarchical (= false).
    ///    */
    /// ```
    ///

    /// `attribute boolean domainIsHost;`
    #[inline]
    pub unsafe fn GetDomainIsHost(&self, aDomainIsHost: *mut bool) -> nsresult {
        ((*self.vtable).GetDomainIsHost)(self, aDomainIsHost)
    }


    /// ```text
    /// /**
    ///    * This controls the meaning of 'domain', and whether it is an exact match
    ///    * 'domainIsHost' = true, or hierarchical (= false).
    ///    */
    /// ```
    ///

    /// `attribute boolean domainIsHost;`
    #[inline]
    pub unsafe fn SetDomainIsHost(&self, aDomainIsHost: bool) -> nsresult {
        ((*self.vtable).SetDomainIsHost)(self, aDomainIsHost)
    }


    /// ```text
    /// /**
    ///    * This is the host or domain name (controlled by domainIsHost). When
    ///    * domainIsHost, domain only does exact matching on host names. Otherwise,
    ///    * it will return anything whose host name ends in 'domain'.
    ///    *
    ///    * This one is a little different than most. Setting it to an empty string
    ///    * is a real query and will match any URI that has no host name (local files
        ///    * and such). Set this to NULL (in C++ use SetIsVoid) if you don't want
    ///    * domain matching.
    ///    */
    /// ```
    ///

    /// `attribute AUTF8String domain;`
    #[inline]
    pub unsafe fn GetDomain(&self, aDomain: &mut ::nsstring::nsACString) -> nsresult {
        ((*self.vtable).GetDomain)(self, aDomain)
    }


    /// ```text
    /// /**
    ///    * This is the host or domain name (controlled by domainIsHost). When
    ///    * domainIsHost, domain only does exact matching on host names. Otherwise,
    ///    * it will return anything whose host name ends in 'domain'.
    ///    *
    ///    * This one is a little different than most. Setting it to an empty string
    ///    * is a real query and will match any URI that has no host name (local files
        ///    * and such). Set this to NULL (in C++ use SetIsVoid) if you don't want
    ///    * domain matching.
    ///    */
    /// ```
    ///

    /// `attribute AUTF8String domain;`
    #[inline]
    pub unsafe fn SetDomain(&self, aDomain: &::nsstring::nsACString) -> nsresult {
        ((*self.vtable).SetDomain)(self, aDomain)
    }



    /// `readonly attribute boolean hasDomain;`
    #[inline]
    pub unsafe fn GetHasDomain(&self, aHasDomain: *mut bool) -> nsresult {
        ((*self.vtable).GetHasDomain)(self, aHasDomain)
    }


    /// ```text
    /// /**
    ///    * This is a URI to match, to, for example, find out every time you visited
    ///    * a given URI. This is an exact match.
    ///    */
    /// ```
    ///

    /// `attribute nsIURI uri;`
    #[inline]
    pub unsafe fn GetUri(&self, aUri: *mut *const nsIURI) -> nsresult {
        ((*self.vtable).GetUri)(self, aUri)
    }


    /// ```text
    /// /**
    ///    * This is a URI to match, to, for example, find out every time you visited
    ///    * a given URI. This is an exact match.
    ///    */
    /// ```
    ///

    /// `attribute nsIURI uri;`
    #[inline]
    pub unsafe fn SetUri(&self, aUri: *const nsIURI) -> nsresult {
        ((*self.vtable).SetUri)(self, aUri)
    }



    /// `readonly attribute boolean hasUri;`
    #[inline]
    pub unsafe fn GetHasUri(&self, aHasUri: *mut bool) -> nsresult {
        ((*self.vtable).GetHasUri)(self, aHasUri)
    }


    /// ```text
    /// /**
    ///    * Test for existence or non-existence of a given annotation. We don't
    ///    * currently support >1 annotation name per query. If 'annotationIsNot' is
    ///    * true, we test for the non-existence of the specified annotation.
    ///    *
    ///    * Testing for not annotation will do the same thing as a normal query and
    ///    * remove everything that doesn't have that annotation. Asking for things
    ///    * that DO have a given annotation is a little different. It also includes
    ///    * things that have never been visited. This allows place queries to be
    ///    * returned as well as anything else that may have been tagged with an
    ///    * annotation. This will only work for RESULTS_AS_URI since there will be
    ///    * no visits for these items.
    ///    */
    /// ```
    ///

    /// `attribute boolean annotationIsNot;`
    #[inline]
    pub unsafe fn GetAnnotationIsNot(&self, aAnnotationIsNot: *mut bool) -> nsresult {
        ((*self.vtable).GetAnnotationIsNot)(self, aAnnotationIsNot)
    }


    /// ```text
    /// /**
    ///    * Test for existence or non-existence of a given annotation. We don't
    ///    * currently support >1 annotation name per query. If 'annotationIsNot' is
    ///    * true, we test for the non-existence of the specified annotation.
    ///    *
    ///    * Testing for not annotation will do the same thing as a normal query and
    ///    * remove everything that doesn't have that annotation. Asking for things
    ///    * that DO have a given annotation is a little different. It also includes
    ///    * things that have never been visited. This allows place queries to be
    ///    * returned as well as anything else that may have been tagged with an
    ///    * annotation. This will only work for RESULTS_AS_URI since there will be
    ///    * no visits for these items.
    ///    */
    /// ```
    ///

    /// `attribute boolean annotationIsNot;`
    #[inline]
    pub unsafe fn SetAnnotationIsNot(&self, aAnnotationIsNot: bool) -> nsresult {
        ((*self.vtable).SetAnnotationIsNot)(self, aAnnotationIsNot)
    }



    /// `attribute AUTF8String annotation;`
    #[inline]
    pub unsafe fn GetAnnotation(&self, aAnnotation: &mut ::nsstring::nsACString) -> nsresult {
        ((*self.vtable).GetAnnotation)(self, aAnnotation)
    }



    /// `attribute AUTF8String annotation;`
    #[inline]
    pub unsafe fn SetAnnotation(&self, aAnnotation: &::nsstring::nsACString) -> nsresult {
        ((*self.vtable).SetAnnotation)(self, aAnnotation)
    }



    /// `readonly attribute boolean hasAnnotation;`
    #[inline]
    pub unsafe fn GetHasAnnotation(&self, aHasAnnotation: *mut bool) -> nsresult {
        ((*self.vtable).GetHasAnnotation)(self, aHasAnnotation)
    }


    /// ```text
    /// /**
    ///    * Limit results to items that are tagged with all of the given tags.  This
    ///    * attribute must be set to an array of strings.  When called as a getter it
    ///    * will return an array of strings sorted ascending in lexicographical order.
    ///    * The array may be empty in either case.  Duplicate tags may be specified
    ///    * when setting the attribute, but the getter returns only unique tags.
    ///    *
    ///    * To search for items that are tagged with any given tags rather than all,
    ///    * multiple queries may be passed to nsINavHistoryService.executeQueries().
    ///    */
    /// ```
    ///

    /// `attribute nsIVariant tags;`
    #[inline]
    pub unsafe fn GetTags(&self, aTags: *mut *const nsIVariant) -> nsresult {
        ((*self.vtable).GetTags)(self, aTags)
    }


    /// ```text
    /// /**
    ///    * Limit results to items that are tagged with all of the given tags.  This
    ///    * attribute must be set to an array of strings.  When called as a getter it
    ///    * will return an array of strings sorted ascending in lexicographical order.
    ///    * The array may be empty in either case.  Duplicate tags may be specified
    ///    * when setting the attribute, but the getter returns only unique tags.
    ///    *
    ///    * To search for items that are tagged with any given tags rather than all,
    ///    * multiple queries may be passed to nsINavHistoryService.executeQueries().
    ///    */
    /// ```
    ///

    /// `attribute nsIVariant tags;`
    #[inline]
    pub unsafe fn SetTags(&self, aTags: *const nsIVariant) -> nsresult {
        ((*self.vtable).SetTags)(self, aTags)
    }


    /// ```text
    /// /**
    ///    * If 'tagsAreNot' is true, the results are instead limited to items that
    ///    * are not tagged with any of the given tags.  This attribute is used in
    ///    * conjunction with the 'tags' attribute.
    ///    */
    /// ```
    ///

    /// `attribute boolean tagsAreNot;`
    #[inline]
    pub unsafe fn GetTagsAreNot(&self, aTagsAreNot: *mut bool) -> nsresult {
        ((*self.vtable).GetTagsAreNot)(self, aTagsAreNot)
    }


    /// ```text
    /// /**
    ///    * If 'tagsAreNot' is true, the results are instead limited to items that
    ///    * are not tagged with any of the given tags.  This attribute is used in
    ///    * conjunction with the 'tags' attribute.
    ///    */
    /// ```
    ///

    /// `attribute boolean tagsAreNot;`
    #[inline]
    pub unsafe fn SetTagsAreNot(&self, aTagsAreNot: bool) -> nsresult {
        ((*self.vtable).SetTagsAreNot)(self, aTagsAreNot)
    }


    /// ```text
    /// /**
    ///    * Limit results to items that are in all of the given folders.
    ///    */
    /// ```
    ///

    /// `void getFolders ([optional] out unsigned long count, [array, size_is (count), retval] out long long folders);`
    #[inline]
    pub unsafe fn GetFolders(&self, count: *mut libc::uint32_t, folders: *mut *mut libc::int64_t) -> nsresult {
        ((*self.vtable).GetFolders)(self, count, folders)
    }



    /// `readonly attribute unsigned long folderCount;`
    #[inline]
    pub unsafe fn GetFolderCount(&self, aFolderCount: *mut libc::uint32_t) -> nsresult {
        ((*self.vtable).GetFolderCount)(self, aFolderCount)
    }


    /// ```text
    /// /**
    ///    * For the special result type RESULTS_AS_TAG_CONTENTS we can define only
    ///    * one folder that must be a tag folder. This is not recursive so results
    ///    * will be returned from the first level of that folder.
    ///    */
    /// ```
    ///

    /// `void setFolders ([array, size_is (folderCount), const] in long long folders, in unsigned long folderCount);`
    #[inline]
    pub unsafe fn SetFolders(&self, folders: *const libc::int64_t, folderCount: libc::uint32_t) -> nsresult {
        ((*self.vtable).SetFolders)(self, folders, folderCount)
    }


    /// ```text
    /// /**
    ///    * Creates a new query item with the same parameters of this one.
    ///    */
    /// ```
    ///

    /// `nsINavHistoryQuery clone ();`
    #[inline]
    pub unsafe fn Clone(&self, _retval: *mut *const nsINavHistoryQuery) -> nsresult {
        ((*self.vtable).Clone)(self, _retval)
    }


}


/// `interface nsINavHistoryQueryOptions : nsISupports`
///


// The actual type definition for the interface. This struct has methods
// declared on it which will call through its vtable. You never want to pass
// this type around by value, always pass it behind a reference.

#[repr(C)]
pub struct nsINavHistoryQueryOptions {
    vtable: *const nsINavHistoryQueryOptionsVTable,

    /// This field is a phantomdata to ensure that the VTable type and any
    /// struct containing it is not safe to send across threads, as XPCOM is
    /// generally not threadsafe.
    ///
    /// XPCOM interfaces in general are not safe to send across threads.
    __nosync: ::std::marker::PhantomData<::std::rc::Rc<u8>>,
}

// Implementing XpCom for an interface exposes its IID, which allows for easy
// use of the `.query_interface<T>` helper method. This also defines that
// method for nsINavHistoryQueryOptions.
unsafe impl XpCom for nsINavHistoryQueryOptions {
    const IID: nsIID = nsID(0x8198dfa7, 0x8061, 0x4766,
        [0x95, 0xcb, 0xfa, 0x86, 0xb3, 0xc0, 0x0a, 0x47]);
}

// We need to implement the RefCounted trait so we can be used with `RefPtr`.
// This trait teaches `RefPtr` how to manage our memory.
unsafe impl RefCounted for nsINavHistoryQueryOptions {
    #[inline]
    unsafe fn addref(&self) {
        self.AddRef();
    }
    #[inline]
    unsafe fn release(&self) {
        self.Release();
    }
}

// This trait is implemented on all types which can be coerced to from nsINavHistoryQueryOptions.
// It is used in the implementation of `fn coerce<T>`. We hide it from the
// documentation, because it clutters it up a lot.
#[doc(hidden)]
pub trait nsINavHistoryQueryOptionsCoerce {
    /// Cheaply cast a value of this type from a `nsINavHistoryQueryOptions`.
    fn coerce_from(v: &nsINavHistoryQueryOptions) -> &Self;
}

// The trivial implementation: We can obviously coerce ourselves to ourselves.
impl nsINavHistoryQueryOptionsCoerce for nsINavHistoryQueryOptions {
    #[inline]
    fn coerce_from(v: &nsINavHistoryQueryOptions) -> &Self {
        v
    }
}

impl nsINavHistoryQueryOptions {
    /// Cast this `nsINavHistoryQueryOptions` to one of its base interfaces.
    #[inline]
    pub fn coerce<T: nsINavHistoryQueryOptionsCoerce>(&self) -> &T {
        T::coerce_from(self)
    }
}

// Every interface struct type implements `Deref` to its base interface. This
// causes methods on the base interfaces to be directly avaliable on the
// object. For example, you can call `.AddRef` or `.QueryInterface` directly
// on any interface which inherits from `nsISupports`.
impl ::std::ops::Deref for nsINavHistoryQueryOptions {
    type Target = nsISupports;
    #[inline]
    fn deref(&self) -> &nsISupports {
        unsafe {
            ::std::mem::transmute(self)
        }
    }
}

// Ensure we can use .coerce() to cast to our base types as well. Any type which
// our base interface can coerce from should be coercable from us as well.
impl<T: nsISupportsCoerce> nsINavHistoryQueryOptionsCoerce for T {
    #[inline]
    fn coerce_from(v: &nsINavHistoryQueryOptions) -> &Self {
        T::coerce_from(v)
    }
}

// This struct represents the interface's VTable. A pointer to a statically
// allocated version of this struct is at the beginning of every nsINavHistoryQueryOptions
// object. It contains one pointer field for each method in the interface. In
// the case where we can't generate a binding for a method, we include a void
// pointer.
#[doc(hidden)]
#[repr(C)]
pub struct nsINavHistoryQueryOptionsVTable {
    /// We need to include the members from the base interface's vtable at the start
    /// of the VTable definition.
    pub __base: nsISupportsVTable,

    /* attribute unsigned short sortingMode; */
    pub GetSortingMode: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, aSortingMode: *mut libc::uint16_t) -> nsresult,

    /* attribute unsigned short sortingMode; */
    pub SetSortingMode: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, aSortingMode: libc::uint16_t) -> nsresult,

    /* attribute AUTF8String sortingAnnotation; */
    pub GetSortingAnnotation: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, aSortingAnnotation: &mut ::nsstring::nsACString) -> nsresult,

    /* attribute AUTF8String sortingAnnotation; */
    pub SetSortingAnnotation: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, aSortingAnnotation: &::nsstring::nsACString) -> nsresult,

    /* attribute unsigned short resultType; */
    pub GetResultType: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, aResultType: *mut libc::uint16_t) -> nsresult,

    /* attribute unsigned short resultType; */
    pub SetResultType: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, aResultType: libc::uint16_t) -> nsresult,

    /* attribute boolean excludeItems; */
    pub GetExcludeItems: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, aExcludeItems: *mut bool) -> nsresult,

    /* attribute boolean excludeItems; */
    pub SetExcludeItems: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, aExcludeItems: bool) -> nsresult,

    /* attribute boolean excludeQueries; */
    pub GetExcludeQueries: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, aExcludeQueries: *mut bool) -> nsresult,

    /* attribute boolean excludeQueries; */
    pub SetExcludeQueries: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, aExcludeQueries: bool) -> nsresult,

    /* attribute boolean excludeReadOnlyFolders; */
    pub GetExcludeReadOnlyFolders: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, aExcludeReadOnlyFolders: *mut bool) -> nsresult,

    /* attribute boolean excludeReadOnlyFolders; */
    pub SetExcludeReadOnlyFolders: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, aExcludeReadOnlyFolders: bool) -> nsresult,

    /* attribute boolean expandQueries; */
    pub GetExpandQueries: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, aExpandQueries: *mut bool) -> nsresult,

    /* attribute boolean expandQueries; */
    pub SetExpandQueries: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, aExpandQueries: bool) -> nsresult,

    /* attribute boolean includeHidden; */
    pub GetIncludeHidden: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, aIncludeHidden: *mut bool) -> nsresult,

    /* attribute boolean includeHidden; */
    pub SetIncludeHidden: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, aIncludeHidden: bool) -> nsresult,

    /* attribute unsigned long maxResults; */
    pub GetMaxResults: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, aMaxResults: *mut libc::uint32_t) -> nsresult,

    /* attribute unsigned long maxResults; */
    pub SetMaxResults: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, aMaxResults: libc::uint32_t) -> nsresult,

    /* attribute unsigned short queryType; */
    pub GetQueryType: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, aQueryType: *mut libc::uint16_t) -> nsresult,

    /* attribute unsigned short queryType; */
    pub SetQueryType: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, aQueryType: libc::uint16_t) -> nsresult,

    /* attribute boolean asyncEnabled; */
    pub GetAsyncEnabled: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, aAsyncEnabled: *mut bool) -> nsresult,

    /* attribute boolean asyncEnabled; */
    pub SetAsyncEnabled: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, aAsyncEnabled: bool) -> nsresult,

    /* nsINavHistoryQueryOptions clone (); */
    pub Clone: unsafe extern "system" fn (this: *const nsINavHistoryQueryOptions, _retval: *mut *const nsINavHistoryQueryOptions) -> nsresult,
}


// The implementations of the function wrappers which are exposed to rust code.
// Call these methods rather than manually calling through the VTable struct.
impl nsINavHistoryQueryOptions {
    /// ```text
    /// /**
    ///  * This object represents the global options for executing a query.
    ///  */
    /// /**
    ///    * You can ask for the results to be pre-sorted. Since the DB has indices
    ///    * of many items, it can produce sorted results almost for free. These should
    ///    * be self-explanatory.
    ///    *
    ///    * Note: re-sorting is slower, as is sorting by title or when you have a
    ///    * host name.
    ///    *
    ///    * For bookmark items, SORT_BY_NONE means sort by the natural bookmark order.
    ///    */
    /// ```
    ///

    pub const SORT_BY_NONE: i64 = 0;


    pub const SORT_BY_TITLE_ASCENDING: i64 = 1;


    pub const SORT_BY_TITLE_DESCENDING: i64 = 2;


    pub const SORT_BY_DATE_ASCENDING: i64 = 3;


    pub const SORT_BY_DATE_DESCENDING: i64 = 4;


    pub const SORT_BY_URI_ASCENDING: i64 = 5;


    pub const SORT_BY_URI_DESCENDING: i64 = 6;


    pub const SORT_BY_VISITCOUNT_ASCENDING: i64 = 7;


    pub const SORT_BY_VISITCOUNT_DESCENDING: i64 = 8;


    pub const SORT_BY_KEYWORD_ASCENDING: i64 = 9;


    pub const SORT_BY_KEYWORD_DESCENDING: i64 = 10;


    pub const SORT_BY_DATEADDED_ASCENDING: i64 = 11;


    pub const SORT_BY_DATEADDED_DESCENDING: i64 = 12;


    pub const SORT_BY_LASTMODIFIED_ASCENDING: i64 = 13;


    pub const SORT_BY_LASTMODIFIED_DESCENDING: i64 = 14;


    pub const SORT_BY_TAGS_ASCENDING: i64 = 17;


    pub const SORT_BY_TAGS_DESCENDING: i64 = 18;


    pub const SORT_BY_ANNOTATION_ASCENDING: i64 = 19;


    pub const SORT_BY_ANNOTATION_DESCENDING: i64 = 20;


    pub const SORT_BY_FRECENCY_ASCENDING: i64 = 21;


    pub const SORT_BY_FRECENCY_DESCENDING: i64 = 22;

    /// ```text
    /// /**
    ///    * "URI" results, one for each URI visited in the range. Individual result
    ///    * nodes will be of type "URI".
    ///    */
    /// ```
    ///

    pub const RESULTS_AS_URI: i64 = 0;

    /// ```text
    /// /**
    ///    * "Visit" results, with one for each time a page was visited (this will
        ///    * often give you multiple results for one URI). Individual result nodes will
    ///    * have type "Visit"
    ///    *
    ///    * @note This result type is only supported by QUERY_TYPE_HISTORY.
    ///    */
    /// ```
    ///

    pub const RESULTS_AS_VISIT: i64 = 1;

    /// ```text
    /// /**
    ///    * This returns query nodes for each predefined date range where we
    ///    * had visits. The node contains information how to load its content:
    ///    * - visits for the given date range will be loaded.
    ///    *
    ///    * @note This result type is only supported by QUERY_TYPE_HISTORY.
    ///    */
    /// ```
    ///

    pub const RESULTS_AS_DATE_QUERY: i64 = 3;

    /// ```text
    /// /**
    ///    * This returns nsINavHistoryQueryResultNode nodes for each site where we
    ///    * have visits. The node contains information how to load its content:
    ///    * - last visit for each url in the given host will be loaded.
    ///    *
    ///    * @note This result type is only supported by QUERY_TYPE_HISTORY.
    ///    */
    /// ```
    ///

    pub const RESULTS_AS_SITE_QUERY: i64 = 4;

    /// ```text
    /// /**
    ///    * This returns nsINavHistoryQueryResultNode nodes for each day where we
    ///    * have visits. The node contains information how to load its content:
    ///    * - list of hosts visited in the given period will be loaded.
    ///    *
    ///    * @note This result type is only supported by QUERY_TYPE_HISTORY.
    ///    */
    /// ```
    ///

    pub const RESULTS_AS_DATE_SITE_QUERY: i64 = 5;

    /// ```text
    /// /**
    ///    * This returns nsINavHistoryQueryResultNode nodes for each tag.
    ///    * The node contains information how to load its content:
    ///    * - list of bookmarks with the given tag will be loaded.
    ///    *
    ///    * @note Setting this resultType will force queryType to QUERY_TYPE_BOOKMARKS.
    ///    */
    /// ```
    ///

    pub const RESULTS_AS_TAG_QUERY: i64 = 6;

    /// ```text
    /// /**
    ///    * This is a container with an URI result type that contains the last
    ///    * modified bookmarks for the given tag.
    ///    * Tag folder id must be defined in the query.
    ///    *
    ///    * @note Setting this resultType will force queryType to QUERY_TYPE_BOOKMARKS.
    ///    */
    /// ```
    ///

    pub const RESULTS_AS_TAG_CONTENTS: i64 = 7;


    pub const QUERY_TYPE_HISTORY: i64 = 0;


    pub const QUERY_TYPE_BOOKMARKS: i64 = 1;


    pub const QUERY_TYPE_UNIFIED: i64 = 2;

    /// ```text
    /// /**
    ///    * The sorting mode to be used for this query.
    ///    * mode is one of SORT_BY_*
    ///    */
    /// ```
    ///

    /// `attribute unsigned short sortingMode;`
    #[inline]
    pub unsafe fn GetSortingMode(&self, aSortingMode: *mut libc::uint16_t) -> nsresult {
        ((*self.vtable).GetSortingMode)(self, aSortingMode)
    }


    /// ```text
    /// /**
    ///    * The sorting mode to be used for this query.
    ///    * mode is one of SORT_BY_*
    ///    */
    /// ```
    ///

    /// `attribute unsigned short sortingMode;`
    #[inline]
    pub unsafe fn SetSortingMode(&self, aSortingMode: libc::uint16_t) -> nsresult {
        ((*self.vtable).SetSortingMode)(self, aSortingMode)
    }


    /// ```text
    /// /**
    ///    * The annotation to use in SORT_BY_ANNOTATION_* sorting modes.
    ///    */
    /// ```
    ///

    /// `attribute AUTF8String sortingAnnotation;`
    #[inline]
    pub unsafe fn GetSortingAnnotation(&self, aSortingAnnotation: &mut ::nsstring::nsACString) -> nsresult {
        ((*self.vtable).GetSortingAnnotation)(self, aSortingAnnotation)
    }


    /// ```text
    /// /**
    ///    * The annotation to use in SORT_BY_ANNOTATION_* sorting modes.
    ///    */
    /// ```
    ///

    /// `attribute AUTF8String sortingAnnotation;`
    #[inline]
    pub unsafe fn SetSortingAnnotation(&self, aSortingAnnotation: &::nsstring::nsACString) -> nsresult {
        ((*self.vtable).SetSortingAnnotation)(self, aSortingAnnotation)
    }


    /// ```text
    /// /**
    ///    * Sets the result type. One of RESULT_TYPE_* which includes how URIs are
    ///    * represented.
    ///    */
    /// ```
    ///

    /// `attribute unsigned short resultType;`
    #[inline]
    pub unsafe fn GetResultType(&self, aResultType: *mut libc::uint16_t) -> nsresult {
        ((*self.vtable).GetResultType)(self, aResultType)
    }


    /// ```text
    /// /**
    ///    * Sets the result type. One of RESULT_TYPE_* which includes how URIs are
    ///    * represented.
    ///    */
    /// ```
    ///

    /// `attribute unsigned short resultType;`
    #[inline]
    pub unsafe fn SetResultType(&self, aResultType: libc::uint16_t) -> nsresult {
        ((*self.vtable).SetResultType)(self, aResultType)
    }


    /// ```text
    /// /**
    ///    * This option excludes all URIs and separators from a bookmarks query.
    ///    * This would be used if you just wanted a list of bookmark folders and
    ///    * queries (such as the left pane of the places page).
    ///    * Defaults to false.
    ///    */
    /// ```
    ///

    /// `attribute boolean excludeItems;`
    #[inline]
    pub unsafe fn GetExcludeItems(&self, aExcludeItems: *mut bool) -> nsresult {
        ((*self.vtable).GetExcludeItems)(self, aExcludeItems)
    }


    /// ```text
    /// /**
    ///    * This option excludes all URIs and separators from a bookmarks query.
    ///    * This would be used if you just wanted a list of bookmark folders and
    ///    * queries (such as the left pane of the places page).
    ///    * Defaults to false.
    ///    */
    /// ```
    ///

    /// `attribute boolean excludeItems;`
    #[inline]
    pub unsafe fn SetExcludeItems(&self, aExcludeItems: bool) -> nsresult {
        ((*self.vtable).SetExcludeItems)(self, aExcludeItems)
    }


    /// ```text
    /// /**
    ///    * Set to true to exclude queries ("place:" URIs) from the query results.
    ///    * Simple folder queries (bookmark folder symlinks) will still be included.
    ///    * Defaults to false.
    ///    */
    /// ```
    ///

    /// `attribute boolean excludeQueries;`
    #[inline]
    pub unsafe fn GetExcludeQueries(&self, aExcludeQueries: *mut bool) -> nsresult {
        ((*self.vtable).GetExcludeQueries)(self, aExcludeQueries)
    }


    /// ```text
    /// /**
    ///    * Set to true to exclude queries ("place:" URIs) from the query results.
    ///    * Simple folder queries (bookmark folder symlinks) will still be included.
    ///    * Defaults to false.
    ///    */
    /// ```
    ///

    /// `attribute boolean excludeQueries;`
    #[inline]
    pub unsafe fn SetExcludeQueries(&self, aExcludeQueries: bool) -> nsresult {
        ((*self.vtable).SetExcludeQueries)(self, aExcludeQueries)
    }


    /// ```text
    /// /**
    ///    * DO NOT USE THIS API. IT'LL BE REMOVED IN BUG 1072833.
    ///    *
    ///    * Set to true to exclude live bookmarks from the query results.
    ///    */
    /// ```
    ///

    /// `attribute boolean excludeReadOnlyFolders;`
    #[inline]
    pub unsafe fn GetExcludeReadOnlyFolders(&self, aExcludeReadOnlyFolders: *mut bool) -> nsresult {
        ((*self.vtable).GetExcludeReadOnlyFolders)(self, aExcludeReadOnlyFolders)
    }


    /// ```text
    /// /**
    ///    * DO NOT USE THIS API. IT'LL BE REMOVED IN BUG 1072833.
    ///    *
    ///    * Set to true to exclude live bookmarks from the query results.
    ///    */
    /// ```
    ///

    /// `attribute boolean excludeReadOnlyFolders;`
    #[inline]
    pub unsafe fn SetExcludeReadOnlyFolders(&self, aExcludeReadOnlyFolders: bool) -> nsresult {
        ((*self.vtable).SetExcludeReadOnlyFolders)(self, aExcludeReadOnlyFolders)
    }


    /// ```text
    /// /**
    ///    * When set, allows items with "place:" URIs to appear as containers,
    ///    * with the container's contents filled in from the stored query.
    ///    * If not set, these will appear as normal items. Doesn't do anything if
    ///    * excludeQueries is set. Defaults to false.
    ///    *
    ///    * Note that this has no effect on folder links, which are place: URIs
    ///    * returned by nsINavBookmarkService.GetFolderURI. These are always expanded
    ///    * and will appear as bookmark folders.
    ///    */
    /// ```
    ///

    /// `attribute boolean expandQueries;`
    #[inline]
    pub unsafe fn GetExpandQueries(&self, aExpandQueries: *mut bool) -> nsresult {
        ((*self.vtable).GetExpandQueries)(self, aExpandQueries)
    }


    /// ```text
    /// /**
    ///    * When set, allows items with "place:" URIs to appear as containers,
    ///    * with the container's contents filled in from the stored query.
    ///    * If not set, these will appear as normal items. Doesn't do anything if
    ///    * excludeQueries is set. Defaults to false.
    ///    *
    ///    * Note that this has no effect on folder links, which are place: URIs
    ///    * returned by nsINavBookmarkService.GetFolderURI. These are always expanded
    ///    * and will appear as bookmark folders.
    ///    */
    /// ```
    ///

    /// `attribute boolean expandQueries;`
    #[inline]
    pub unsafe fn SetExpandQueries(&self, aExpandQueries: bool) -> nsresult {
        ((*self.vtable).SetExpandQueries)(self, aExpandQueries)
    }


    /// ```text
    /// /**
    ///    * Some pages in history are marked "hidden" and thus don't appear by default
    ///    * in queries.  These include automatic framed visits and redirects.  Setting
    ///    * this attribute will return all pages, even hidden ones.  Does nothing for
    ///    * bookmark queries. Defaults to false.
    ///    */
    /// ```
    ///

    /// `attribute boolean includeHidden;`
    #[inline]
    pub unsafe fn GetIncludeHidden(&self, aIncludeHidden: *mut bool) -> nsresult {
        ((*self.vtable).GetIncludeHidden)(self, aIncludeHidden)
    }


    /// ```text
    /// /**
    ///    * Some pages in history are marked "hidden" and thus don't appear by default
    ///    * in queries.  These include automatic framed visits and redirects.  Setting
    ///    * this attribute will return all pages, even hidden ones.  Does nothing for
    ///    * bookmark queries. Defaults to false.
    ///    */
    /// ```
    ///

    /// `attribute boolean includeHidden;`
    #[inline]
    pub unsafe fn SetIncludeHidden(&self, aIncludeHidden: bool) -> nsresult {
        ((*self.vtable).SetIncludeHidden)(self, aIncludeHidden)
    }


    /// ```text
    /// /**
    ///    * This is the maximum number of results that you want. The query is exeucted,
    ///    * the results are sorted, and then the top 'maxResults' results are taken
    ///    * and returned. Set to 0 (the default) to get all results.
    ///    *
    ///    * THIS DOES NOT WORK IN CONJUNCTION WITH SORTING BY TITLE. This is because
    ///    * sorting by title requires us to sort after using locale-sensetive sorting
    ///    * (as opposed to letting the database do it for us).
    ///    *
    ///    * Instead, we get the result ordered by date, pick the maxResult most recent
    ///    * ones, and THEN sort by title.
    ///    */
    /// ```
    ///

    /// `attribute unsigned long maxResults;`
    #[inline]
    pub unsafe fn GetMaxResults(&self, aMaxResults: *mut libc::uint32_t) -> nsresult {
        ((*self.vtable).GetMaxResults)(self, aMaxResults)
    }


    /// ```text
    /// /**
    ///    * This is the maximum number of results that you want. The query is exeucted,
    ///    * the results are sorted, and then the top 'maxResults' results are taken
    ///    * and returned. Set to 0 (the default) to get all results.
    ///    *
    ///    * THIS DOES NOT WORK IN CONJUNCTION WITH SORTING BY TITLE. This is because
    ///    * sorting by title requires us to sort after using locale-sensetive sorting
    ///    * (as opposed to letting the database do it for us).
    ///    *
    ///    * Instead, we get the result ordered by date, pick the maxResult most recent
    ///    * ones, and THEN sort by title.
    ///    */
    /// ```
    ///

    /// `attribute unsigned long maxResults;`
    #[inline]
    pub unsafe fn SetMaxResults(&self, aMaxResults: libc::uint32_t) -> nsresult {
        ((*self.vtable).SetMaxResults)(self, aMaxResults)
    }


    /// ```text
    /// /**
    ///    * The type of search to use when querying the DB; This attribute is only
    ///    * honored by query nodes. It is silently ignored for simple folder queries.
    ///    */
    /// ```
    ///

    /// `attribute unsigned short queryType;`
    #[inline]
    pub unsafe fn GetQueryType(&self, aQueryType: *mut libc::uint16_t) -> nsresult {
        ((*self.vtable).GetQueryType)(self, aQueryType)
    }


    /// ```text
    /// /**
    ///    * The type of search to use when querying the DB; This attribute is only
    ///    * honored by query nodes. It is silently ignored for simple folder queries.
    ///    */
    /// ```
    ///

    /// `attribute unsigned short queryType;`
    #[inline]
    pub unsafe fn SetQueryType(&self, aQueryType: libc::uint16_t) -> nsresult {
        ((*self.vtable).SetQueryType)(self, aQueryType)
    }


    /// ```text
    /// /**
    ///    * When this is true, the root container node generated by these options and
    ///    * its descendant containers will be opened asynchronously if they support it.
    ///    * This is false by default.
    ///    *
    ///    * @note Currently only bookmark folder containers support being opened
    ///    *       asynchronously.
    ///    */
    /// ```
    ///

    /// `attribute boolean asyncEnabled;`
    #[inline]
    pub unsafe fn GetAsyncEnabled(&self, aAsyncEnabled: *mut bool) -> nsresult {
        ((*self.vtable).GetAsyncEnabled)(self, aAsyncEnabled)
    }


    /// ```text
    /// /**
    ///    * When this is true, the root container node generated by these options and
    ///    * its descendant containers will be opened asynchronously if they support it.
    ///    * This is false by default.
    ///    *
    ///    * @note Currently only bookmark folder containers support being opened
    ///    *       asynchronously.
    ///    */
    /// ```
    ///

    /// `attribute boolean asyncEnabled;`
    #[inline]
    pub unsafe fn SetAsyncEnabled(&self, aAsyncEnabled: bool) -> nsresult {
        ((*self.vtable).SetAsyncEnabled)(self, aAsyncEnabled)
    }


    /// ```text
    /// /**
    ///    * Creates a new options item with the same parameters of this one.
    ///    */
    /// ```
    ///

    /// `nsINavHistoryQueryOptions clone ();`
    #[inline]
    pub unsafe fn Clone(&self, _retval: *mut *const nsINavHistoryQueryOptions) -> nsresult {
        ((*self.vtable).Clone)(self, _retval)
    }


}


/// `interface nsINavHistoryService : nsISupports`
///


// The actual type definition for the interface. This struct has methods
// declared on it which will call through its vtable. You never want to pass
// this type around by value, always pass it behind a reference.

#[repr(C)]
pub struct nsINavHistoryService {
    vtable: *const nsINavHistoryServiceVTable,

    /// This field is a phantomdata to ensure that the VTable type and any
    /// struct containing it is not safe to send across threads, as XPCOM is
    /// generally not threadsafe.
    ///
    /// XPCOM interfaces in general are not safe to send across threads.
    __nosync: ::std::marker::PhantomData<::std::rc::Rc<u8>>,
}

// Implementing XpCom for an interface exposes its IID, which allows for easy
// use of the `.query_interface<T>` helper method. This also defines that
// method for nsINavHistoryService.
unsafe impl XpCom for nsINavHistoryService {
    const IID: nsIID = nsID(0x8a1f527e, 0xc9d7, 0x4a51,
        [0xbf, 0x0c, 0xd8, 0x6f, 0x03, 0x79, 0xb7, 0x01]);
}

// We need to implement the RefCounted trait so we can be used with `RefPtr`.
// This trait teaches `RefPtr` how to manage our memory.
unsafe impl RefCounted for nsINavHistoryService {
    #[inline]
    unsafe fn addref(&self) {
        self.AddRef();
    }
    #[inline]
    unsafe fn release(&self) {
        self.Release();
    }
}

// This trait is implemented on all types which can be coerced to from nsINavHistoryService.
// It is used in the implementation of `fn coerce<T>`. We hide it from the
// documentation, because it clutters it up a lot.
#[doc(hidden)]
pub trait nsINavHistoryServiceCoerce {
    /// Cheaply cast a value of this type from a `nsINavHistoryService`.
    fn coerce_from(v: &nsINavHistoryService) -> &Self;
}

// The trivial implementation: We can obviously coerce ourselves to ourselves.
impl nsINavHistoryServiceCoerce for nsINavHistoryService {
    #[inline]
    fn coerce_from(v: &nsINavHistoryService) -> &Self {
        v
    }
}

impl nsINavHistoryService {
    /// Cast this `nsINavHistoryService` to one of its base interfaces.
    #[inline]
    pub fn coerce<T: nsINavHistoryServiceCoerce>(&self) -> &T {
        T::coerce_from(self)
    }
}

// Every interface struct type implements `Deref` to its base interface. This
// causes methods on the base interfaces to be directly avaliable on the
// object. For example, you can call `.AddRef` or `.QueryInterface` directly
// on any interface which inherits from `nsISupports`.
impl ::std::ops::Deref for nsINavHistoryService {
    type Target = nsISupports;
    #[inline]
    fn deref(&self) -> &nsISupports {
        unsafe {
            ::std::mem::transmute(self)
        }
    }
}

// Ensure we can use .coerce() to cast to our base types as well. Any type which
// our base interface can coerce from should be coercable from us as well.
impl<T: nsISupportsCoerce> nsINavHistoryServiceCoerce for T {
    #[inline]
    fn coerce_from(v: &nsINavHistoryService) -> &Self {
        T::coerce_from(v)
    }
}

// This struct represents the interface's VTable. A pointer to a statically
// allocated version of this struct is at the beginning of every nsINavHistoryService
// object. It contains one pointer field for each method in the interface. In
// the case where we can't generate a binding for a method, we include a void
// pointer.
#[doc(hidden)]
#[repr(C)]
pub struct nsINavHistoryServiceVTable {
    /// We need to include the members from the base interface's vtable at the start
    /// of the VTable definition.
    pub __base: nsISupportsVTable,

    /* readonly attribute unsigned short databaseStatus; */
    pub GetDatabaseStatus: unsafe extern "system" fn (this: *const nsINavHistoryService, aDatabaseStatus: *mut libc::uint16_t) -> nsresult,

    /* readonly attribute boolean hasHistoryEntries; */
    pub GetHasHistoryEntries: unsafe extern "system" fn (this: *const nsINavHistoryService, aHasHistoryEntries: *mut bool) -> nsresult,

    /* AString getPageTitle (in nsIURI aURI); */
    pub GetPageTitle: unsafe extern "system" fn (this: *const nsINavHistoryService, aURI: *const nsIURI, _retval: &mut ::nsstring::nsAString) -> nsresult,

    /* void markPageAsFollowedBookmark (in nsIURI aURI); */
    pub MarkPageAsFollowedBookmark: unsafe extern "system" fn (this: *const nsINavHistoryService, aURI: *const nsIURI) -> nsresult,

    /* void markPageAsTyped (in nsIURI aURI); */
    pub MarkPageAsTyped: unsafe extern "system" fn (this: *const nsINavHistoryService, aURI: *const nsIURI) -> nsresult,

    /* void markPageAsFollowedLink (in nsIURI aURI); */
    pub MarkPageAsFollowedLink: unsafe extern "system" fn (this: *const nsINavHistoryService, aURI: *const nsIURI) -> nsresult,

    /* boolean canAddURI (in nsIURI aURI); */
    pub CanAddURI: unsafe extern "system" fn (this: *const nsINavHistoryService, aURI: *const nsIURI, _retval: *mut bool) -> nsresult,

    /* nsINavHistoryQuery getNewQuery (); */
    pub GetNewQuery: unsafe extern "system" fn (this: *const nsINavHistoryService, _retval: *mut *const nsINavHistoryQuery) -> nsresult,

    /* nsINavHistoryQueryOptions getNewQueryOptions (); */
    pub GetNewQueryOptions: unsafe extern "system" fn (this: *const nsINavHistoryService, _retval: *mut *const nsINavHistoryQueryOptions) -> nsresult,

    /* nsINavHistoryResult executeQuery (in nsINavHistoryQuery aQuery, in nsINavHistoryQueryOptions options); */
    pub ExecuteQuery: unsafe extern "system" fn (this: *const nsINavHistoryService, aQuery: *const nsINavHistoryQuery, options: *const nsINavHistoryQueryOptions, _retval: *mut *const nsINavHistoryResult) -> nsresult,

    /* nsINavHistoryResult executeQueries ([array, size_is (aQueryCount)] in nsINavHistoryQuery aQueries, in unsigned long aQueryCount, in nsINavHistoryQueryOptions options); */
    pub ExecuteQueries: unsafe extern "system" fn (this: *const nsINavHistoryService, aQueries: *mut *const nsINavHistoryQuery, aQueryCount: libc::uint32_t, options: *const nsINavHistoryQueryOptions, _retval: *mut *const nsINavHistoryResult) -> nsresult,

    /* void queryStringToQueries (in AUTF8String aQueryString, [array, size_is (aResultCount)] out nsINavHistoryQuery aQueries, out unsigned long aResultCount, out nsINavHistoryQueryOptions options); */
    pub QueryStringToQueries: unsafe extern "system" fn (this: *const nsINavHistoryService, aQueryString: &::nsstring::nsACString, aQueries: *mut *mut *const nsINavHistoryQuery, aResultCount: *mut libc::uint32_t, options: *mut *const nsINavHistoryQueryOptions) -> nsresult,

    /* AUTF8String queriesToQueryString ([array, size_is (aQueryCount)] in nsINavHistoryQuery aQueries, in unsigned long aQueryCount, in nsINavHistoryQueryOptions options); */
    pub QueriesToQueryString: unsafe extern "system" fn (this: *const nsINavHistoryService, aQueries: *mut *const nsINavHistoryQuery, aQueryCount: libc::uint32_t, options: *const nsINavHistoryQueryOptions, _retval: &mut ::nsstring::nsACString) -> nsresult,

    /* void addObserver (in nsINavHistoryObserver observer, [optional] in boolean ownsWeak); */
    pub AddObserver: unsafe extern "system" fn (this: *const nsINavHistoryService, observer: *const nsINavHistoryObserver, ownsWeak: bool) -> nsresult,

    /* void removeObserver (in nsINavHistoryObserver observer); */
    pub RemoveObserver: unsafe extern "system" fn (this: *const nsINavHistoryService, observer: *const nsINavHistoryObserver) -> nsresult,

    /* void getObservers ([optional] out unsigned long count, [array, size_is (count), retval] out nsINavHistoryObserver observers); */
    pub GetObservers: unsafe extern "system" fn (this: *const nsINavHistoryService, count: *mut libc::uint32_t, observers: *mut *mut *const nsINavHistoryObserver) -> nsresult,

    /* void runInBatchMode (in nsINavHistoryBatchCallback aCallback, in nsISupports aClosure); */
    pub RunInBatchMode: unsafe extern "system" fn (this: *const nsINavHistoryService, aCallback: *const nsINavHistoryBatchCallback, aClosure: *const nsISupports) -> nsresult,

    /* readonly attribute boolean historyDisabled; */
    pub GetHistoryDisabled: unsafe extern "system" fn (this: *const nsINavHistoryService, aHistoryDisabled: *mut bool) -> nsresult,

    /* void clearEmbedVisits (); */
    pub ClearEmbedVisits: unsafe extern "system" fn (this: *const nsINavHistoryService) -> nsresult,

    /* ACString makeGuid (); */
    pub MakeGuid: unsafe extern "system" fn (this: *const nsINavHistoryService, _retval: &mut ::nsstring::nsACString) -> nsresult,

    /* unsigned long long hashURL (in ACString aSpec, [optional] in ACString aMode); */
    pub HashURL: unsafe extern "system" fn (this: *const nsINavHistoryService, aSpec: &::nsstring::nsACString, aMode: &::nsstring::nsACString, _retval: *mut libc::uint64_t) -> nsresult,
}


// The implementations of the function wrappers which are exposed to rust code.
// Call these methods rather than manually calling through the VTable struct.
impl nsINavHistoryService {
    /// ```text
    /// /**
    ///    * System Notifications:
    ///    *
    ///    * places-init-complete - Sent once the History service is completely
    ///    *                        initialized successfully.
    ///    * places-database-locked - Sent if initialization of the History service
    ///    *                          failed due to the inability to open the places.sqlite
    ///    *                          for access reasons.
    ///    */
    /// /**
    ///    * This transition type means the user followed a link and got a new toplevel
    ///    * window.
    ///    */
    /// ```
    ///

    pub const TRANSITION_LINK: i64 = 1;

    /// ```text
    /// /**
    ///    * This transition type means that the user typed the page's URL in the
    ///    * URL bar or selected it from URL bar autocomplete results, clicked on
    ///    * it from a history query (from the History sidebar, History menu,
        ///    * or history query in the personal toolbar or Places organizer.
        ///    */
        /// ```
        ///

        pub const TRANSITION_TYPED: i64 = 2;

        /// ```text
        /// /**
        ///    * This transition is set when the user followed a bookmark to get to the
        ///    * page.
        ///    */
        /// ```
        ///

        pub const TRANSITION_BOOKMARK: i64 = 3;

        /// ```text
        /// /**
        ///    * This transition type is set when some inner content is loaded. This is
        ///    * true of all images on a page, and the contents of the iframe. It is also
        ///    * true of any content in a frame if the user did not explicitly follow
        ///    * a link to get there.
        ///    */
        /// ```
        ///

        pub const TRANSITION_EMBED: i64 = 4;

        /// ```text
        /// /**
        ///    * Set when the transition was a permanent redirect.
        ///    */
        /// ```
        ///

        pub const TRANSITION_REDIRECT_PERMANENT: i64 = 5;

        /// ```text
        /// /**
        ///    * Set when the transition was a temporary redirect.
        ///    */
        /// ```
        ///

        pub const TRANSITION_REDIRECT_TEMPORARY: i64 = 6;

        /// ```text
        /// /**
        ///    * Set when the transition is a download.
        ///    */
        /// ```
        ///

        pub const TRANSITION_DOWNLOAD: i64 = 7;

        /// ```text
        /// /**
        ///    * This transition type means the user followed a link and got a visit in
        ///    * a frame.
        ///    */
        /// ```
        ///

        pub const TRANSITION_FRAMED_LINK: i64 = 8;

        /// ```text
        /// /**
        ///    * This transition type means the page has been reloaded.
        ///    */
        /// ```
        ///

        pub const TRANSITION_RELOAD: i64 = 9;

        /// ```text
        /// /**
        ///    * Set when database is coherent
        ///    */
        /// ```
        ///

        pub const DATABASE_STATUS_OK: i64 = 0;

        /// ```text
        /// /**
        ///    * Set when database did not exist and we created a new one.
        ///    */
        /// ```
        ///

        pub const DATABASE_STATUS_CREATE: i64 = 1;

        /// ```text
        /// /**
        ///    * Set when database was corrupt and we replaced it with a new one.
        ///    */
        /// ```
        ///

        pub const DATABASE_STATUS_CORRUPT: i64 = 2;

        /// ```text
        /// /**
        ///    * Set when database schema has been upgraded.
        ///    */
        /// ```
        ///

        pub const DATABASE_STATUS_UPGRADED: i64 = 3;

        /// ```text
        /// /**
        ///    * Set when database couldn't be opened.
        ///    */
        /// ```
        ///

        pub const DATABASE_STATUS_LOCKED: i64 = 4;

        /// ```text
        /// /**
        ///    * Returns the current database status
        ///    */
        /// ```
        ///

        /// `readonly attribute unsigned short databaseStatus;`
        #[inline]
        pub unsafe fn GetDatabaseStatus(&self, aDatabaseStatus: *mut libc::uint16_t) -> nsresult {
            ((*self.vtable).GetDatabaseStatus)(self, aDatabaseStatus)
        }


        /// ```text
        /// /**
        ///    * True if there is any history. This can be used in UI to determine whether
        ///    * the "clear history" button should be enabled or not. This is much better
        ///    * than using BrowserHistory.count since that can be very slow if there is
        ///    * a lot of history (it must enumerate each item). This is pretty fast.
        ///    */
        /// ```
        ///

        /// `readonly attribute boolean hasHistoryEntries;`
        #[inline]
        pub unsafe fn GetHasHistoryEntries(&self, aHasHistoryEntries: *mut bool) -> nsresult {
            ((*self.vtable).GetHasHistoryEntries)(self, aHasHistoryEntries)
        }


        /// ```text
        /// /**
        ///    * Gets the original title of the page.
        ///    * @deprecated use PlacesUtils.history.fetch instead.
        ///    */
        /// ```
        ///

        /// `AString getPageTitle (in nsIURI aURI);`
        #[inline]
        pub unsafe fn GetPageTitle(&self, aURI: *const nsIURI, _retval: &mut ::nsstring::nsAString) -> nsresult {
            ((*self.vtable).GetPageTitle)(self, aURI, _retval)
        }


        /// ```text
        /// /**
        ///    * This is just like markPageAsTyped (in nsIBrowserHistory, also implemented
            ///    * by the history service), but for bookmarks. It declares that the given URI
        ///    * is being opened as a result of following a bookmark. If this URI is loaded
        ///    * soon after this message has been received, that transition will be marked
        ///    * as following a bookmark.
        ///    */
        /// ```
        ///

        /// `void markPageAsFollowedBookmark (in nsIURI aURI);`
        #[inline]
        pub unsafe fn MarkPageAsFollowedBookmark(&self, aURI: *const nsIURI) -> nsresult {
            ((*self.vtable).MarkPageAsFollowedBookmark)(self, aURI)
        }


        /// ```text
        /// /**
        ///    * Designates the url as having been explicitly typed in by the user.
        ///    *
        ///    * @param aURI
        ///    *        URI of the page to be marked.
        ///    */
        /// ```
        ///

        /// `void markPageAsTyped (in nsIURI aURI);`
        #[inline]
        pub unsafe fn MarkPageAsTyped(&self, aURI: *const nsIURI) -> nsresult {
            ((*self.vtable).MarkPageAsTyped)(self, aURI)
        }


        /// ```text
        /// /**
        ///    * Designates the url as coming from a link explicitly followed by
        ///    * the user (for example by clicking on it).
        ///    *
        ///    * @param aURI
        ///    *        URI of the page to be marked.
        ///    */
        /// ```
        ///

        /// `void markPageAsFollowedLink (in nsIURI aURI);`
        #[inline]
        pub unsafe fn MarkPageAsFollowedLink(&self, aURI: *const nsIURI) -> nsresult {
            ((*self.vtable).MarkPageAsFollowedLink)(self, aURI)
        }


        /// ```text
        /// /**
        ///    * Returns true if this URI would be added to the history. You don't have to
        ///    * worry about calling this, adding a visit will always check before
        ///    * actually adding the page. This function is public because some components
        ///    * may want to check if this page would go in the history (i.e. for
            ///    * annotations).
        ///    */
        /// ```
        ///

        /// `boolean canAddURI (in nsIURI aURI);`
        #[inline]
        pub unsafe fn CanAddURI(&self, aURI: *const nsIURI, _retval: *mut bool) -> nsresult {
            ((*self.vtable).CanAddURI)(self, aURI, _retval)
        }


        /// ```text
        /// /**
        ///    * This returns a new query object that you can pass to executeQuer[y/ies].
        ///    * It will be initialized to all empty (so using it will give you all history).
        ///    */
        /// ```
        ///

        /// `nsINavHistoryQuery getNewQuery ();`
        #[inline]
        pub unsafe fn GetNewQuery(&self, _retval: *mut *const nsINavHistoryQuery) -> nsresult {
            ((*self.vtable).GetNewQuery)(self, _retval)
        }


        /// ```text
        /// /**
        ///    * This returns a new options object that you can pass to executeQuer[y/ies]
        ///    * after setting the desired options.
        ///    */
        /// ```
        ///

        /// `nsINavHistoryQueryOptions getNewQueryOptions ();`
        #[inline]
        pub unsafe fn GetNewQueryOptions(&self, _retval: *mut *const nsINavHistoryQueryOptions) -> nsresult {
            ((*self.vtable).GetNewQueryOptions)(self, _retval)
        }


        /// ```text
        /// /**
        ///    * Executes a single query.
        ///    */
        /// ```
        ///

        /// `nsINavHistoryResult executeQuery (in nsINavHistoryQuery aQuery, in nsINavHistoryQueryOptions options);`
        #[inline]
        pub unsafe fn ExecuteQuery(&self, aQuery: *const nsINavHistoryQuery, options: *const nsINavHistoryQueryOptions, _retval: *mut *const nsINavHistoryResult) -> nsresult {
            ((*self.vtable).ExecuteQuery)(self, aQuery, options, _retval)
        }


        /// ```text
        /// /**
        ///    * Executes an array of queries. All of the query objects are ORed
        ///    * together. Within a query, all the terms are ANDed together as in
        ///    * executeQuery. See executeQuery()
        ///    */
        /// ```
        ///

        /// `nsINavHistoryResult executeQueries ([array, size_is (aQueryCount)] in nsINavHistoryQuery aQueries, in unsigned long aQueryCount, in nsINavHistoryQueryOptions options);`
        #[inline]
        pub unsafe fn ExecuteQueries(&self, aQueries: *mut *const nsINavHistoryQuery, aQueryCount: libc::uint32_t, options: *const nsINavHistoryQueryOptions, _retval: *mut *const nsINavHistoryResult) -> nsresult {
            ((*self.vtable).ExecuteQueries)(self, aQueries, aQueryCount, options, _retval)
        }


        /// ```text
        /// /**
        ///    * Converts a query URI-like string to an array of actual query objects for
        ///    * use to executeQueries(). The output query array may be empty if there is
        ///    * no information. However, there will always be an options structure returned
        ///    * (if nothing is defined, it will just have the default values).
        ///    */
        /// ```
        ///

        /// `void queryStringToQueries (in AUTF8String aQueryString, [array, size_is (aResultCount)] out nsINavHistoryQuery aQueries, out unsigned long aResultCount, out nsINavHistoryQueryOptions options);`
        #[inline]
        pub unsafe fn QueryStringToQueries(&self, aQueryString: &::nsstring::nsACString, aQueries: *mut *mut *const nsINavHistoryQuery, aResultCount: *mut libc::uint32_t, options: *mut *const nsINavHistoryQueryOptions) -> nsresult {
            ((*self.vtable).QueryStringToQueries)(self, aQueryString, aQueries, aResultCount, options)
        }


        /// ```text
        /// /**
        ///    * Converts a query into an equivalent string that can be persisted. Inverse
        ///    * of queryStringToQueries()
        ///    */
        /// ```
        ///

        /// `AUTF8String queriesToQueryString ([array, size_is (aQueryCount)] in nsINavHistoryQuery aQueries, in unsigned long aQueryCount, in nsINavHistoryQueryOptions options);`
        #[inline]
        pub unsafe fn QueriesToQueryString(&self, aQueries: *mut *const nsINavHistoryQuery, aQueryCount: libc::uint32_t, options: *const nsINavHistoryQueryOptions, _retval: &mut ::nsstring::nsACString) -> nsresult {
            ((*self.vtable).QueriesToQueryString)(self, aQueries, aQueryCount, options, _retval)
        }


        /// ```text
        /// /**
        ///    * Adds a history observer. If ownsWeak is false, the history service will
        ///    * keep an owning reference to the observer.  If ownsWeak is true, then
        ///    * aObserver must implement nsISupportsWeakReference, and the history service
        ///    * will keep a weak reference to the observer.
        ///    */
        /// ```
        ///

        /// `void addObserver (in nsINavHistoryObserver observer, [optional] in boolean ownsWeak);`
        #[inline]
        pub unsafe fn AddObserver(&self, observer: *const nsINavHistoryObserver, ownsWeak: bool) -> nsresult {
            ((*self.vtable).AddObserver)(self, observer, ownsWeak)
        }


        /// ```text
        /// /**
        ///    * Removes a history observer.
        ///    */
        /// ```
        ///

        /// `void removeObserver (in nsINavHistoryObserver observer);`
        #[inline]
        pub unsafe fn RemoveObserver(&self, observer: *const nsINavHistoryObserver) -> nsresult {
            ((*self.vtable).RemoveObserver)(self, observer)
        }


        /// ```text
        /// /**
        ///    * Gets an array of registered nsINavHistoryObserver objects.
        ///    */
        /// ```
        ///

        /// `void getObservers ([optional] out unsigned long count, [array, size_is (count), retval] out nsINavHistoryObserver observers);`
        #[inline]
        pub unsafe fn GetObservers(&self, count: *mut libc::uint32_t, observers: *mut *mut *const nsINavHistoryObserver) -> nsresult {
            ((*self.vtable).GetObservers)(self, count, observers)
        }


        /// ```text
        /// /**
        ///    * Runs the passed callback in batch mode. Use this when a lot of things
        ///    * are about to change. Calls can be nested, observers will only be
        ///    * notified when all batches begin/end.
        ///    *
        ///    * @param aCallback
        ///    *        nsINavHistoryBatchCallback interface to call.
        ///    * @param aUserData
        ///    *        Opaque parameter passed to nsINavBookmarksBatchCallback
        ///    */
        /// ```
        ///

        /// `void runInBatchMode (in nsINavHistoryBatchCallback aCallback, in nsISupports aClosure);`
        #[inline]
        pub unsafe fn RunInBatchMode(&self, aCallback: *const nsINavHistoryBatchCallback, aClosure: *const nsISupports) -> nsresult {
            ((*self.vtable).RunInBatchMode)(self, aCallback, aClosure)
        }


        /// ```text
        /// /**
        ///    * True if history is disabled. currently,
        ///    * history is disabled if the places.history.enabled pref is false.
        ///    */
        /// ```
        ///

        /// `readonly attribute boolean historyDisabled;`
        #[inline]
        pub unsafe fn GetHistoryDisabled(&self, aHistoryDisabled: *mut bool) -> nsresult {
            ((*self.vtable).GetHistoryDisabled)(self, aHistoryDisabled)
        }


        /// ```text
        /// /**
        ///    * Clear all TRANSITION_EMBED visits.
        ///    */
        /// ```
        ///

        /// `void clearEmbedVisits ();`
        #[inline]
        pub unsafe fn ClearEmbedVisits(&self, ) -> nsresult {
            ((*self.vtable).ClearEmbedVisits)(self, )
        }


        /// ```text
        /// /**
        ///    * Generate a guid.
        ///    * Guids can be used for any places purposes (history, bookmarks, etc.)
        ///    * Returns null if the generation of the guid failed.
        ///    */
        /// ```
        ///

        /// `ACString makeGuid ();`
        #[inline]
        pub unsafe fn MakeGuid(&self, _retval: &mut ::nsstring::nsACString) -> nsresult {
            ((*self.vtable).MakeGuid)(self, _retval)
        }


        /// ```text
        /// /**
        ///    * Returns a 48-bit hash for a URI spec.
        ///    *
        ///    * @param aSpec
        ///    *        The URI spec to hash.
        ///    * @param aMode
        ///    *        The hash mode: `""` (default), `"prefix_lo"`, or `"prefix_hi"`.
        ///    */
        /// ```
        ///

        /// `unsigned long long hashURL (in ACString aSpec, [optional] in ACString aMode);`
        #[inline]
        pub unsafe fn HashURL(&self, aSpec: &::nsstring::nsACString, aMode: &::nsstring::nsACString, _retval: *mut libc::uint64_t) -> nsresult {
            ((*self.vtable).HashURL)(self, aSpec, aMode, _retval)
        }


    }


    /// `interface nsINavHistoryBatchCallback : nsISupports`
    ///


    // The actual type definition for the interface. This struct has methods
    // declared on it which will call through its vtable. You never want to pass
    // this type around by value, always pass it behind a reference.

    #[repr(C)]
    pub struct nsINavHistoryBatchCallback {
        vtable: *const nsINavHistoryBatchCallbackVTable,

        /// This field is a phantomdata to ensure that the VTable type and any
        /// struct containing it is not safe to send across threads, as XPCOM is
        /// generally not threadsafe.
        ///
        /// XPCOM interfaces in general are not safe to send across threads.
        __nosync: ::std::marker::PhantomData<::std::rc::Rc<u8>>,
    }

    // Implementing XpCom for an interface exposes its IID, which allows for easy
    // use of the `.query_interface<T>` helper method. This also defines that
    // method for nsINavHistoryBatchCallback.
    unsafe impl XpCom for nsINavHistoryBatchCallback {
        const IID: nsIID = nsID(0x5a5a9154, 0x95ac, 0x4e3d,
            [0x90, 0xdf, 0x55, 0x88, 0x16, 0x29, 0x74, 0x07]);
    }

    // We need to implement the RefCounted trait so we can be used with `RefPtr`.
    // This trait teaches `RefPtr` how to manage our memory.
    unsafe impl RefCounted for nsINavHistoryBatchCallback {
        #[inline]
        unsafe fn addref(&self) {
            self.AddRef();
        }
        #[inline]
        unsafe fn release(&self) {
            self.Release();
        }
    }

    // This trait is implemented on all types which can be coerced to from nsINavHistoryBatchCallback.
    // It is used in the implementation of `fn coerce<T>`. We hide it from the
    // documentation, because it clutters it up a lot.
    #[doc(hidden)]
    pub trait nsINavHistoryBatchCallbackCoerce {
        /// Cheaply cast a value of this type from a `nsINavHistoryBatchCallback`.
        fn coerce_from(v: &nsINavHistoryBatchCallback) -> &Self;
    }

    // The trivial implementation: We can obviously coerce ourselves to ourselves.
    impl nsINavHistoryBatchCallbackCoerce for nsINavHistoryBatchCallback {
        #[inline]
        fn coerce_from(v: &nsINavHistoryBatchCallback) -> &Self {
            v
        }
    }

    impl nsINavHistoryBatchCallback {
        /// Cast this `nsINavHistoryBatchCallback` to one of its base interfaces.
        #[inline]
        pub fn coerce<T: nsINavHistoryBatchCallbackCoerce>(&self) -> &T {
            T::coerce_from(self)
        }
    }

    // Every interface struct type implements `Deref` to its base interface. This
    // causes methods on the base interfaces to be directly avaliable on the
    // object. For example, you can call `.AddRef` or `.QueryInterface` directly
    // on any interface which inherits from `nsISupports`.
    impl ::std::ops::Deref for nsINavHistoryBatchCallback {
        type Target = nsISupports;
        #[inline]
        fn deref(&self) -> &nsISupports {
            unsafe {
                ::std::mem::transmute(self)
            }
        }
    }

    // Ensure we can use .coerce() to cast to our base types as well. Any type which
    // our base interface can coerce from should be coercable from us as well.
    impl<T: nsISupportsCoerce> nsINavHistoryBatchCallbackCoerce for T {
        #[inline]
        fn coerce_from(v: &nsINavHistoryBatchCallback) -> &Self {
            T::coerce_from(v)
        }
    }

    // This struct represents the interface's VTable. A pointer to a statically
    // allocated version of this struct is at the beginning of every nsINavHistoryBatchCallback
    // object. It contains one pointer field for each method in the interface. In
    // the case where we can't generate a binding for a method, we include a void
    // pointer.
    #[doc(hidden)]
    #[repr(C)]
    pub struct nsINavHistoryBatchCallbackVTable {
        /// We need to include the members from the base interface's vtable at the start
        /// of the VTable definition.
        pub __base: nsISupportsVTable,

        /* void runBatched (in nsISupports aUserData); */
        pub RunBatched: unsafe extern "system" fn (this: *const nsINavHistoryBatchCallback, aUserData: *const nsISupports) -> nsresult,
    }


    // The implementations of the function wrappers which are exposed to rust code.
    // Call these methods rather than manually calling through the VTable struct.
    impl nsINavHistoryBatchCallback {

        /// ```text
        /// /**
        ///  * @see runInBatchMode of nsINavHistoryService/nsINavBookmarksService
        ///  */
        /// ```
        ///

        /// `void runBatched (in nsISupports aUserData);`
        #[inline]
        pub unsafe fn RunBatched(&self, aUserData: *const nsISupports) -> nsresult {
            ((*self.vtable).RunBatched)(self, aUserData)
        }


    }