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
use lv2_raw::*;type LV2_URID_Map = LV2UridMap; type LV2_Feature = LV2Feature;type LV2_Handle = LV2Handle; type LV2_Descriptor = LV2Descriptor; type LV2_URID_Unmap = ::std::os::raw::c_void;
/* automatically generated by rust-bindgen */

pub const LILV_NS_DOAP: &'static [u8; 30usize] = b"http://usefulinc.com/ns/doap#\0";
pub const LILV_NS_FOAF: &'static [u8; 27usize] = b"http://xmlns.com/foaf/0.1/\0";
pub const LILV_NS_LILV: &'static [u8; 29usize] = b"http://drobilla.net/ns/lilv#\0";
pub const LILV_NS_LV2: &'static [u8; 30usize] = b"http://lv2plug.in/ns/lv2core#\0";
pub const LILV_NS_OWL: &'static [u8; 31usize] = b"http://www.w3.org/2002/07/owl#\0";
pub const LILV_NS_RDF: &'static [u8; 44usize] = b"http://www.w3.org/1999/02/22-rdf-syntax-ns#\0";
pub const LILV_NS_RDFS: &'static [u8; 38usize] = b"http://www.w3.org/2000/01/rdf-schema#\0";
pub const LILV_NS_XSD: &'static [u8; 34usize] = b"http://www.w3.org/2001/XMLSchema#\0";
pub const LILV_URI_ATOM_PORT: &'static [u8; 39usize] = b"http://lv2plug.in/ns/ext/atom#AtomPort\0";
pub const LILV_URI_AUDIO_PORT: &'static [u8; 39usize] = b"http://lv2plug.in/ns/lv2core#AudioPort\0";
pub const LILV_URI_CONTROL_PORT: &'static [u8; 41usize] =
    b"http://lv2plug.in/ns/lv2core#ControlPort\0";
pub const LILV_URI_CV_PORT: &'static [u8; 36usize] = b"http://lv2plug.in/ns/lv2core#CVPort\0";
pub const LILV_URI_EVENT_PORT: &'static [u8; 41usize] =
    b"http://lv2plug.in/ns/ext/event#EventPort\0";
pub const LILV_URI_INPUT_PORT: &'static [u8; 39usize] = b"http://lv2plug.in/ns/lv2core#InputPort\0";
pub const LILV_URI_MIDI_EVENT: &'static [u8; 40usize] =
    b"http://lv2plug.in/ns/ext/midi#MidiEvent\0";
pub const LILV_URI_OUTPUT_PORT: &'static [u8; 40usize] =
    b"http://lv2plug.in/ns/lv2core#OutputPort\0";
pub const LILV_URI_PORT: &'static [u8; 34usize] = b"http://lv2plug.in/ns/lv2core#Port\0";
pub const LILV_OPTION_FILTER_LANG: &'static [u8; 40usize] =
    b"http://drobilla.net/ns/lilv#filter-lang\0";
pub const LILV_OPTION_DYN_MANIFEST: &'static [u8; 41usize] =
    b"http://drobilla.net/ns/lilv#dyn-manifest\0";
pub type va_list = __builtin_va_list;
pub type __uint32_t = ::std::os::raw::c_uint;
pub type __off_t = ::std::os::raw::c_long;
pub type __off64_t = ::std::os::raw::c_long;
pub type FILE = _IO_FILE;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct _IO_marker {
    _unused: [u8; 0],
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct _IO_codecvt {
    _unused: [u8; 0],
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct _IO_wide_data {
    _unused: [u8; 0],
}
pub type _IO_lock_t = ::std::os::raw::c_void;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct _IO_FILE {
    pub _flags: ::std::os::raw::c_int,
    pub _IO_read_ptr: *mut ::std::os::raw::c_char,
    pub _IO_read_end: *mut ::std::os::raw::c_char,
    pub _IO_read_base: *mut ::std::os::raw::c_char,
    pub _IO_write_base: *mut ::std::os::raw::c_char,
    pub _IO_write_ptr: *mut ::std::os::raw::c_char,
    pub _IO_write_end: *mut ::std::os::raw::c_char,
    pub _IO_buf_base: *mut ::std::os::raw::c_char,
    pub _IO_buf_end: *mut ::std::os::raw::c_char,
    pub _IO_save_base: *mut ::std::os::raw::c_char,
    pub _IO_backup_base: *mut ::std::os::raw::c_char,
    pub _IO_save_end: *mut ::std::os::raw::c_char,
    pub _markers: *mut _IO_marker,
    pub _chain: *mut _IO_FILE,
    pub _fileno: ::std::os::raw::c_int,
    pub _flags2: ::std::os::raw::c_int,
    pub _old_offset: __off_t,
    pub _cur_column: ::std::os::raw::c_ushort,
    pub _vtable_offset: ::std::os::raw::c_schar,
    pub _shortbuf: [::std::os::raw::c_char; 1usize],
    pub _lock: *mut _IO_lock_t,
    pub _offset: __off64_t,
    pub _codecvt: *mut _IO_codecvt,
    pub _wide_data: *mut _IO_wide_data,
    pub _freeres_list: *mut _IO_FILE,
    pub _freeres_buf: *mut ::std::os::raw::c_void,
    pub __pad5: usize,
    pub _mode: ::std::os::raw::c_int,
    pub _unused2: [::std::os::raw::c_char; 20usize],
}
#[test]
fn bindgen_test_layout__IO_FILE() {
    assert_eq!(
        ::std::mem::size_of::<_IO_FILE>(),
        216usize,
        concat!("Size of: ", stringify!(_IO_FILE))
    );
    assert_eq!(
        ::std::mem::align_of::<_IO_FILE>(),
        8usize,
        concat!("Alignment of ", stringify!(_IO_FILE))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._flags as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_flags)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._IO_read_ptr as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_IO_read_ptr)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._IO_read_end as *const _ as usize },
        16usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_IO_read_end)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._IO_read_base as *const _ as usize },
        24usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_IO_read_base)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._IO_write_base as *const _ as usize },
        32usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_IO_write_base)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._IO_write_ptr as *const _ as usize },
        40usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_IO_write_ptr)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._IO_write_end as *const _ as usize },
        48usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_IO_write_end)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._IO_buf_base as *const _ as usize },
        56usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_IO_buf_base)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._IO_buf_end as *const _ as usize },
        64usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_IO_buf_end)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._IO_save_base as *const _ as usize },
        72usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_IO_save_base)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._IO_backup_base as *const _ as usize },
        80usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_IO_backup_base)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._IO_save_end as *const _ as usize },
        88usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_IO_save_end)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._markers as *const _ as usize },
        96usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_markers)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._chain as *const _ as usize },
        104usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_chain)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._fileno as *const _ as usize },
        112usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_fileno)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._flags2 as *const _ as usize },
        116usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_flags2)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._old_offset as *const _ as usize },
        120usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_old_offset)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._cur_column as *const _ as usize },
        128usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_cur_column)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._vtable_offset as *const _ as usize },
        130usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_vtable_offset)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._shortbuf as *const _ as usize },
        131usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_shortbuf)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._lock as *const _ as usize },
        136usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_lock)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._offset as *const _ as usize },
        144usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_offset)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._codecvt as *const _ as usize },
        152usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_codecvt)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._wide_data as *const _ as usize },
        160usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_wide_data)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._freeres_list as *const _ as usize },
        168usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_freeres_list)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._freeres_buf as *const _ as usize },
        176usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_freeres_buf)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>())).__pad5 as *const _ as usize },
        184usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(__pad5)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._mode as *const _ as usize },
        192usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_mode)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<_IO_FILE>()))._unused2 as *const _ as usize },
        196usize,
        concat!(
            "Offset of field: ",
            stringify!(_IO_FILE),
            "::",
            stringify!(_unused2)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct LilvPluginImpl {
    _unused: [u8; 0],
}
pub type LilvPlugin = LilvPluginImpl;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct LilvPluginClassImpl {
    _unused: [u8; 0],
}
pub type LilvPluginClass = LilvPluginClassImpl;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct LilvPortImpl {
    _unused: [u8; 0],
}
pub type LilvPort = LilvPortImpl;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct LilvScalePointImpl {
    _unused: [u8; 0],
}
pub type LilvScalePoint = LilvScalePointImpl;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct LilvUIImpl {
    _unused: [u8; 0],
}
pub type LilvUI = LilvUIImpl;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct LilvNodeImpl {
    _unused: [u8; 0],
}
pub type LilvNode = LilvNodeImpl;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct LilvWorldImpl {
    _unused: [u8; 0],
}
pub type LilvWorld = LilvWorldImpl;
pub type LilvInstance = LilvInstanceImpl;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct LilvStateImpl {
    _unused: [u8; 0],
}
pub type LilvState = LilvStateImpl;
pub type LilvIter = ::std::os::raw::c_void;
pub type LilvPluginClasses = ::std::os::raw::c_void;
pub type LilvPlugins = ::std::os::raw::c_void;
pub type LilvScalePoints = ::std::os::raw::c_void;
pub type LilvUIs = ::std::os::raw::c_void;
pub type LilvNodes = ::std::os::raw::c_void;
extern "C" {
    #[doc = "Free memory allocated by Lilv."]
    #[doc = ""]
    #[doc = "This function exists because some systems require memory allocated by a"]
    #[doc = "library to be freed by code in the same library.  It is otherwise equivalent"]
    #[doc = "to the standard C free() function."]
    pub fn lilv_free(ptr: *mut ::std::os::raw::c_void);
}
extern "C" {
    #[doc = "Convert a file URI string to a local path string."]
    #[doc = "For example, \"file://foo/bar/baz.ttl\" returns \"/foo/bar/baz.ttl\"."]
    #[doc = "Return value is shared and must not be deleted by caller."]
    #[doc = "This function does not handle escaping correctly and should not be used for"]
    #[doc = "general file URIs.  Use lilv_file_uri_parse() instead."]
    #[doc = "@return `uri` converted to a path, or NULL on failure (URI is not local)."]
    pub fn lilv_uri_to_path(uri: *const ::std::os::raw::c_char) -> *const ::std::os::raw::c_char;
}
extern "C" {
    #[doc = "Convert a file URI string to a local path string."]
    #[doc = "For example, \"file://foo/bar%20one/baz.ttl\" returns \"/foo/bar one/baz.ttl\"."]
    #[doc = "Return value must be freed by caller with lilv_free()."]
    #[doc = "@param uri The file URI to parse."]
    #[doc = "@param hostname If non-NULL, set to the hostname in the URI, if any."]
    #[doc = "@return `uri` converted to a path, or NULL on failure (URI is not local)."]
    pub fn lilv_file_uri_parse(
        uri: *const ::std::os::raw::c_char,
        hostname: *mut *mut ::std::os::raw::c_char,
    ) -> *mut ::std::os::raw::c_char;
}
extern "C" {
    #[doc = "Create a new URI value."]
    #[doc = "Returned value must be freed by caller with lilv_node_free()."]
    pub fn lilv_new_uri(world: *mut LilvWorld, uri: *const ::std::os::raw::c_char)
        -> *mut LilvNode;
}
extern "C" {
    #[doc = "Create a new file URI value."]
    #[doc = "@param world The world."]
    #[doc = "@param host Host name, or NULL."]
    #[doc = "@param path Path on host."]
    #[doc = "@return A new node that must be freed by caller."]
    #[doc = ""]
    #[doc = "Relative paths are resolved against the current working directory.  Note"]
    #[doc = "that this may yield unexpected results if `host` is another machine."]
    pub fn lilv_new_file_uri(
        world: *mut LilvWorld,
        host: *const ::std::os::raw::c_char,
        path: *const ::std::os::raw::c_char,
    ) -> *mut LilvNode;
}
extern "C" {
    #[doc = "Create a new string value (with no language)."]
    #[doc = "Returned value must be freed by caller with lilv_node_free()."]
    pub fn lilv_new_string(
        world: *mut LilvWorld,
        str: *const ::std::os::raw::c_char,
    ) -> *mut LilvNode;
}
extern "C" {
    #[doc = "Create a new integer value."]
    #[doc = "Returned value must be freed by caller with lilv_node_free()."]
    pub fn lilv_new_int(world: *mut LilvWorld, val: ::std::os::raw::c_int) -> *mut LilvNode;
}
extern "C" {
    #[doc = "Create a new floating point value."]
    #[doc = "Returned value must be freed by caller with lilv_node_free()."]
    pub fn lilv_new_float(world: *mut LilvWorld, val: f32) -> *mut LilvNode;
}
extern "C" {
    #[doc = "Create a new boolean value."]
    #[doc = "Returned value must be freed by caller with lilv_node_free()."]
    pub fn lilv_new_bool(world: *mut LilvWorld, val: bool) -> *mut LilvNode;
}
extern "C" {
    #[doc = "Free a LilvNode."]
    #[doc = "It is safe to call this function on NULL."]
    pub fn lilv_node_free(val: *mut LilvNode);
}
extern "C" {
    #[doc = "Duplicate a LilvNode."]
    pub fn lilv_node_duplicate(val: *const LilvNode) -> *mut LilvNode;
}
extern "C" {
    #[doc = "Return whether two values are equivalent."]
    pub fn lilv_node_equals(value: *const LilvNode, other: *const LilvNode) -> bool;
}
extern "C" {
    #[doc = "Return this value as a Turtle/SPARQL token."]
    #[doc = "Returned value must be freed by caller with lilv_free()."]
    #[doc = "<table>"]
    #[doc = "<caption>Example Turtle Tokens</caption>"]
    #[doc = "<tr><th>URI</th><td>&lt;http://example.org/foo &gt;</td></tr>"]
    #[doc = "<tr><th>QName</th><td>doap:name</td></tr>"]
    #[doc = "<tr><th>String</th><td>\"this is a string\"</td></tr>"]
    #[doc = "<tr><th>Float</th><td>1.0</td></tr>"]
    #[doc = "<tr><th>Integer</th><td>1</td></tr>"]
    #[doc = "<tr><th>Boolean</th><td>true</td></tr>"]
    #[doc = "</table>"]
    pub fn lilv_node_get_turtle_token(value: *const LilvNode) -> *mut ::std::os::raw::c_char;
}
extern "C" {
    #[doc = "Return whether the value is a URI (resource)."]
    pub fn lilv_node_is_uri(value: *const LilvNode) -> bool;
}
extern "C" {
    #[doc = "Return this value as a URI string, e.g. \"http://example.org/foo\"."]
    #[doc = "Valid to call only if `lilv_node_is_uri(value)` returns true."]
    #[doc = "Returned value is owned by `value` and must not be freed by caller."]
    pub fn lilv_node_as_uri(value: *const LilvNode) -> *const ::std::os::raw::c_char;
}
extern "C" {
    #[doc = "Return whether the value is a blank node (resource with no URI)."]
    pub fn lilv_node_is_blank(value: *const LilvNode) -> bool;
}
extern "C" {
    #[doc = "Return this value as a blank node identifier, e.g. \"genid03\"."]
    #[doc = "Valid to call only if `lilv_node_is_blank(value)` returns true."]
    #[doc = "Returned value is owned by `value` and must not be freed by caller."]
    pub fn lilv_node_as_blank(value: *const LilvNode) -> *const ::std::os::raw::c_char;
}
extern "C" {
    #[doc = "Return whether this value is a literal (i.e. not a URI)."]
    #[doc = "Returns true if `value` is a string or numeric value."]
    pub fn lilv_node_is_literal(value: *const LilvNode) -> bool;
}
extern "C" {
    #[doc = "Return whether this value is a string literal."]
    #[doc = "Returns true if `value` is a string value (and not numeric)."]
    pub fn lilv_node_is_string(value: *const LilvNode) -> bool;
}
extern "C" {
    #[doc = "Return `value` as a string."]
    pub fn lilv_node_as_string(value: *const LilvNode) -> *const ::std::os::raw::c_char;
}
extern "C" {
    #[doc = "Return the path of a file URI node."]
    #[doc = "Returns NULL if `value` is not a file URI."]
    #[doc = "Returned value must be freed by caller with lilv_free()."]
    pub fn lilv_node_get_path(
        value: *const LilvNode,
        hostname: *mut *mut ::std::os::raw::c_char,
    ) -> *mut ::std::os::raw::c_char;
}
extern "C" {
    #[doc = "Return whether this value is a decimal literal."]
    pub fn lilv_node_is_float(value: *const LilvNode) -> bool;
}
extern "C" {
    #[doc = "Return `value` as a float."]
    #[doc = "Valid to call only if `lilv_node_is_float(value)` or"]
    #[doc = "`lilv_node_is_int(value)` returns true."]
    pub fn lilv_node_as_float(value: *const LilvNode) -> f32;
}
extern "C" {
    #[doc = "Return whether this value is an integer literal."]
    pub fn lilv_node_is_int(value: *const LilvNode) -> bool;
}
extern "C" {
    #[doc = "Return `value` as an integer."]
    #[doc = "Valid to call only if `lilv_node_is_int(value)` returns true."]
    pub fn lilv_node_as_int(value: *const LilvNode) -> ::std::os::raw::c_int;
}
extern "C" {
    #[doc = "Return whether this value is a boolean."]
    pub fn lilv_node_is_bool(value: *const LilvNode) -> bool;
}
extern "C" {
    #[doc = "Return `value` as a bool."]
    #[doc = "Valid to call only if `lilv_node_is_bool(value)` returns true."]
    pub fn lilv_node_as_bool(value: *const LilvNode) -> bool;
}
extern "C" {
    pub fn lilv_plugin_classes_free(collection: *mut LilvPluginClasses);
}
extern "C" {
    pub fn lilv_plugin_classes_size(collection: *const LilvPluginClasses)
        -> ::std::os::raw::c_uint;
}
extern "C" {
    pub fn lilv_plugin_classes_begin(collection: *const LilvPluginClasses) -> *mut LilvIter;
}
extern "C" {
    pub fn lilv_plugin_classes_get(
        collection: *const LilvPluginClasses,
        i: *mut LilvIter,
    ) -> *const LilvPluginClass;
}
extern "C" {
    pub fn lilv_plugin_classes_next(
        collection: *const LilvPluginClasses,
        i: *mut LilvIter,
    ) -> *mut LilvIter;
}
extern "C" {
    pub fn lilv_plugin_classes_is_end(
        collection: *const LilvPluginClasses,
        i: *mut LilvIter,
    ) -> bool;
}
extern "C" {
    #[doc = "Get a plugin class from `classes` by URI."]
    #[doc = "Return value is shared (stored in `classes`) and must not be freed or"]
    #[doc = "modified by the caller in any way."]
    #[doc = "@return NULL if no plugin class with `uri` is found in `classes`."]
    pub fn lilv_plugin_classes_get_by_uri(
        classes: *const LilvPluginClasses,
        uri: *const LilvNode,
    ) -> *const LilvPluginClass;
}
extern "C" {
    pub fn lilv_scale_points_free(collection: *mut LilvScalePoints);
}
extern "C" {
    pub fn lilv_scale_points_size(collection: *const LilvScalePoints) -> ::std::os::raw::c_uint;
}
extern "C" {
    pub fn lilv_scale_points_begin(collection: *const LilvScalePoints) -> *mut LilvIter;
}
extern "C" {
    pub fn lilv_scale_points_get(
        collection: *const LilvScalePoints,
        i: *mut LilvIter,
    ) -> *const LilvScalePoint;
}
extern "C" {
    pub fn lilv_scale_points_next(
        collection: *const LilvScalePoints,
        i: *mut LilvIter,
    ) -> *mut LilvIter;
}
extern "C" {
    pub fn lilv_scale_points_is_end(collection: *const LilvScalePoints, i: *mut LilvIter) -> bool;
}
extern "C" {
    pub fn lilv_uis_free(collection: *mut LilvUIs);
}
extern "C" {
    pub fn lilv_uis_size(collection: *const LilvUIs) -> ::std::os::raw::c_uint;
}
extern "C" {
    pub fn lilv_uis_begin(collection: *const LilvUIs) -> *mut LilvIter;
}
extern "C" {
    pub fn lilv_uis_get(collection: *const LilvUIs, i: *mut LilvIter) -> *const LilvUI;
}
extern "C" {
    pub fn lilv_uis_next(collection: *const LilvUIs, i: *mut LilvIter) -> *mut LilvIter;
}
extern "C" {
    pub fn lilv_uis_is_end(collection: *const LilvUIs, i: *mut LilvIter) -> bool;
}
extern "C" {
    #[doc = "Get a UI from `uis` by URI."]
    #[doc = "Return value is shared (stored in `uis`) and must not be freed or"]
    #[doc = "modified by the caller in any way."]
    #[doc = "@return NULL if no UI with `uri` is found in `list`."]
    pub fn lilv_uis_get_by_uri(uis: *const LilvUIs, uri: *const LilvNode) -> *const LilvUI;
}
extern "C" {
    pub fn lilv_nodes_free(collection: *mut LilvNodes);
}
extern "C" {
    pub fn lilv_nodes_size(collection: *const LilvNodes) -> ::std::os::raw::c_uint;
}
extern "C" {
    pub fn lilv_nodes_begin(collection: *const LilvNodes) -> *mut LilvIter;
}
extern "C" {
    pub fn lilv_nodes_get(collection: *const LilvNodes, i: *mut LilvIter) -> *const LilvNode;
}
extern "C" {
    pub fn lilv_nodes_next(collection: *const LilvNodes, i: *mut LilvIter) -> *mut LilvIter;
}
extern "C" {
    pub fn lilv_nodes_is_end(collection: *const LilvNodes, i: *mut LilvIter) -> bool;
}
extern "C" {
    pub fn lilv_nodes_get_first(collection: *const LilvNodes) -> *mut LilvNode;
}
extern "C" {
    #[doc = "Return whether `values` contains `value`."]
    pub fn lilv_nodes_contains(nodes: *const LilvNodes, value: *const LilvNode) -> bool;
}
extern "C" {
    #[doc = "Return a new LilvNodes that contains all nodes from both `a` and `b`."]
    pub fn lilv_nodes_merge(a: *const LilvNodes, b: *const LilvNodes) -> *mut LilvNodes;
}
extern "C" {
    pub fn lilv_plugins_size(collection: *const LilvPlugins) -> ::std::os::raw::c_uint;
}
extern "C" {
    pub fn lilv_plugins_begin(collection: *const LilvPlugins) -> *mut LilvIter;
}
extern "C" {
    pub fn lilv_plugins_get(collection: *const LilvPlugins, i: *mut LilvIter) -> *const LilvPlugin;
}
extern "C" {
    pub fn lilv_plugins_next(collection: *const LilvPlugins, i: *mut LilvIter) -> *mut LilvIter;
}
extern "C" {
    pub fn lilv_plugins_is_end(collection: *const LilvPlugins, i: *mut LilvIter) -> bool;
}
extern "C" {
    #[doc = "Get a plugin from `plugins` by URI."]
    #[doc = "Return value is shared (stored in `plugins`) and must not be freed or"]
    #[doc = "modified by the caller in any way."]
    #[doc = "@return NULL if no plugin with `uri` is found in `plugins`."]
    pub fn lilv_plugins_get_by_uri(
        plugins: *const LilvPlugins,
        uri: *const LilvNode,
    ) -> *const LilvPlugin;
}
extern "C" {
    #[doc = "Initialize a new, empty world."]
    #[doc = "If initialization fails, NULL is returned."]
    pub fn lilv_world_new() -> *mut LilvWorld;
}
extern "C" {
    #[doc = "Set an option option for `world`."]
    #[doc = ""]
    #[doc = "Currently recognized options:"]
    #[doc = "@ref LILV_OPTION_FILTER_LANG"]
    #[doc = "@ref LILV_OPTION_DYN_MANIFEST"]
    pub fn lilv_world_set_option(
        world: *mut LilvWorld,
        uri: *const ::std::os::raw::c_char,
        value: *const LilvNode,
    );
}
extern "C" {
    #[doc = "Destroy the world, mwahaha."]
    #[doc = "It is safe to call this function on NULL."]
    #[doc = "Note that destroying `world` will destroy all the objects it contains"]
    #[doc = "(e.g. instances of LilvPlugin).  Do not destroy the world until you are"]
    #[doc = "finished with all objects that came from it."]
    pub fn lilv_world_free(world: *mut LilvWorld);
}
extern "C" {
    #[doc = "Load all installed LV2 bundles on the system."]
    #[doc = "This is the recommended way for hosts to load LV2 data.  It implements the"]
    #[doc = "established/standard best practice for discovering all LV2 data on the"]
    #[doc = "system.  The environment variable LV2_PATH may be used to control where"]
    #[doc = "this function will look for bundles."]
    #[doc = ""]
    #[doc = "Hosts should use this function rather than explicitly load bundles, except"]
    #[doc = "in special circumstances (e.g. development utilities, or hosts that ship"]
    #[doc = "with special plugin bundles which are installed to a known location)."]
    pub fn lilv_world_load_all(world: *mut LilvWorld);
}
extern "C" {
    #[doc = "Load a specific bundle."]
    #[doc = "`bundle_uri` must be a fully qualified URI to the bundle directory,"]
    #[doc = "with the trailing slash, eg. file:///usr/lib/lv2/foo.lv2/"]
    #[doc = ""]
    #[doc = "Normal hosts should not need this function (use lilv_world_load_all())."]
    #[doc = ""]
    #[doc = "Hosts MUST NOT attach any long-term significance to bundle paths"]
    #[doc = "(e.g. in save files), since there are no guarantees they will remain"]
    #[doc = "unchanged between (or even during) program invocations. Plugins (among"]
    #[doc = "other things) MUST be identified by URIs (not paths) in save files."]
    pub fn lilv_world_load_bundle(world: *mut LilvWorld, bundle_uri: *const LilvNode);
}
extern "C" {
    #[doc = "Load all specifications from currently loaded bundles."]
    #[doc = ""]
    #[doc = "This is for hosts that explicitly load specific bundles, its use is not"]
    #[doc = "necessary when using lilv_world_load_all().  This function parses the"]
    #[doc = "specifications and adds them to the model."]
    pub fn lilv_world_load_specifications(world: *mut LilvWorld);
}
extern "C" {
    #[doc = "Load all plugin classes from currently loaded specifications."]
    #[doc = ""]
    #[doc = "Must be called after lilv_world_load_specifications().  This is for hosts"]
    #[doc = "that explicitly load specific bundles, its use is not necessary when using"]
    #[doc = "lilv_world_load_all()."]
    pub fn lilv_world_load_plugin_classes(world: *mut LilvWorld);
}
extern "C" {
    #[doc = "Unload a specific bundle."]
    #[doc = ""]
    #[doc = "This unloads statements loaded by lilv_world_load_bundle().  Note that this"]
    #[doc = "is not necessarily all information loaded from the bundle.  If any resources"]
    #[doc = "have been separately loaded with lilv_world_load_resource(), they must be"]
    #[doc = "separately unloaded with lilv_world_unload_resource()."]
    pub fn lilv_world_unload_bundle(
        world: *mut LilvWorld,
        bundle_uri: *const LilvNode,
    ) -> ::std::os::raw::c_int;
}
extern "C" {
    #[doc = "Load all the data associated with the given `resource`."]
    #[doc = "@param world The world."]
    #[doc = "@param resource Must be a subject (i.e. a URI or a blank node)."]
    #[doc = "@return The number of files parsed, or -1 on error"]
    #[doc = ""]
    #[doc = "All accessible data files linked to `resource` with rdfs:seeAlso will be"]
    #[doc = "loaded into the world model."]
    pub fn lilv_world_load_resource(
        world: *mut LilvWorld,
        resource: *const LilvNode,
    ) -> ::std::os::raw::c_int;
}
extern "C" {
    #[doc = "Unload all the data associated with the given `resource`."]
    #[doc = "@param world The world."]
    #[doc = "@param resource Must be a subject (i.e. a URI or a blank node)."]
    #[doc = ""]
    #[doc = "This unloads all data loaded by a previous call to"]
    #[doc = "lilv_world_load_resource() with the given `resource`."]
    pub fn lilv_world_unload_resource(
        world: *mut LilvWorld,
        resource: *const LilvNode,
    ) -> ::std::os::raw::c_int;
}
extern "C" {
    #[doc = "Get the parent of all other plugin classes, lv2:Plugin."]
    pub fn lilv_world_get_plugin_class(world: *const LilvWorld) -> *const LilvPluginClass;
}
extern "C" {
    #[doc = "Return a list of all found plugin classes."]
    #[doc = "Returned list is owned by world and must not be freed by the caller."]
    pub fn lilv_world_get_plugin_classes(world: *const LilvWorld) -> *const LilvPluginClasses;
}
extern "C" {
    #[doc = "Return a list of all found plugins."]
    #[doc = "The returned list contains just enough references to query"]
    #[doc = "or instantiate plugins.  The data for a particular plugin will not be"]
    #[doc = "loaded into memory until a call to an lilv_plugin_* function results in"]
    #[doc = "a query (at which time the data is cached with the LilvPlugin so future"]
    #[doc = "queries are very fast)."]
    #[doc = ""]
    #[doc = "The returned list and the plugins it contains are owned by `world`"]
    #[doc = "and must not be freed by caller."]
    pub fn lilv_world_get_all_plugins(world: *const LilvWorld) -> *const LilvPlugins;
}
extern "C" {
    #[doc = "Find nodes matching a triple pattern."]
    #[doc = "Either `subject` or `object` may be NULL (i.e. a wildcard), but not both."]
    #[doc = "@return All matches for the wildcard field, or NULL."]
    pub fn lilv_world_find_nodes(
        world: *mut LilvWorld,
        subject: *const LilvNode,
        predicate: *const LilvNode,
        object: *const LilvNode,
    ) -> *mut LilvNodes;
}
extern "C" {
    #[doc = "Find a single node that matches a pattern."]
    #[doc = "Exactly one of `subject`, `predicate`, `object` must be NULL."]
    #[doc = "This function is equivalent to"]
    #[doc = "lilv_nodes_get_first(lilv_world_find_nodes(...)) but simplifies the common"]
    #[doc = "case of only wanting a single value."]
    #[doc = "@return the first matching node, or NULL if no matches are found."]
    pub fn lilv_world_get(
        world: *mut LilvWorld,
        subject: *const LilvNode,
        predicate: *const LilvNode,
        object: *const LilvNode,
    ) -> *mut LilvNode;
}
extern "C" {
    #[doc = "Return true iff a statement matching a certain pattern exists."]
    #[doc = ""]
    #[doc = "This is useful for checking if particular statement exists without having to"]
    #[doc = "bother with collections and memory management."]
    #[doc = ""]
    #[doc = "@param world The world."]
    #[doc = "@param subject Subject of statement, or NULL for anything."]
    #[doc = "@param predicate Predicate (key) of statement, or NULL for anything."]
    #[doc = "@param object Object (value) of statement, or NULL for anything."]
    pub fn lilv_world_ask(
        world: *mut LilvWorld,
        subject: *const LilvNode,
        predicate: *const LilvNode,
        object: *const LilvNode,
    ) -> bool;
}
extern "C" {
    #[doc = "Get an LV2 symbol for some subject."]
    #[doc = ""]
    #[doc = "This will return the lv2:symbol property of the subject if it is given"]
    #[doc = "explicitly, and otherwise will attempt to derive a symbol from the URI."]
    #[doc = "@return A string node that is a valid LV2 symbol, or NULL on error."]
    pub fn lilv_world_get_symbol(world: *mut LilvWorld, subject: *const LilvNode) -> *mut LilvNode;
}
extern "C" {
    #[doc = "Check if `plugin` is valid."]
    #[doc = "This is not a rigorous validator, but can be used to reject some malformed"]
    #[doc = "plugins that could cause bugs (e.g. plugins with missing required fields)."]
    #[doc = ""]
    #[doc = "Note that normal hosts do NOT need to use this - lilv does not"]
    #[doc = "load invalid plugins into plugin lists.  This is included for plugin"]
    #[doc = "testing utilities, etc."]
    #[doc = "@return true iff `plugin` is valid."]
    pub fn lilv_plugin_verify(plugin: *const LilvPlugin) -> bool;
}
extern "C" {
    #[doc = "Get the URI of `plugin`."]
    #[doc = "Any serialization that refers to plugins should refer to them by this."]
    #[doc = "Hosts SHOULD NOT save any filesystem paths, plugin indexes, etc. in saved"]
    #[doc = "files; save only the URI."]
    #[doc = ""]
    #[doc = "The URI is a globally unique identifier for one specific plugin.  Two"]
    #[doc = "plugins with the same URI are compatible in port signature, and should"]
    #[doc = "be guaranteed to work in a compatible and consistent way.  If a plugin"]
    #[doc = "is upgraded in an incompatible way (eg if it has different ports), it"]
    #[doc = "MUST have a different URI than it's predecessor."]
    #[doc = ""]
    #[doc = "@return A shared URI value which must not be modified or freed."]
    pub fn lilv_plugin_get_uri(plugin: *const LilvPlugin) -> *const LilvNode;
}
extern "C" {
    #[doc = "Get the (resolvable) URI of the plugin's \"main\" bundle."]
    #[doc = "This returns the URI of the bundle where the plugin itself was found.  Note"]
    #[doc = "that the data for a plugin may be spread over many bundles, that is,"]
    #[doc = "lilv_plugin_get_data_uris() may return URIs which are not within this"]
    #[doc = "bundle."]
    #[doc = ""]
    #[doc = "Typical hosts should not need to use this function."]
    #[doc = "Note this always returns a fully qualified URI.  If you want a local"]
    #[doc = "filesystem path, use lilv_file_uri_parse()."]
    #[doc = "@return a shared string which must not be modified or freed."]
    pub fn lilv_plugin_get_bundle_uri(plugin: *const LilvPlugin) -> *const LilvNode;
}
extern "C" {
    #[doc = "Get the (resolvable) URIs of the RDF data files that define a plugin."]
    #[doc = "Typical hosts should not need to use this function."]
    #[doc = "Note this always returns fully qualified URIs.  If you want local"]
    #[doc = "filesystem paths, use lilv_file_uri_parse()."]
    #[doc = "@return a list of complete URLs eg. \"file:///foo/ABundle.lv2/aplug.ttl\","]
    #[doc = "which is shared and must not be modified or freed."]
    pub fn lilv_plugin_get_data_uris(plugin: *const LilvPlugin) -> *const LilvNodes;
}
extern "C" {
    #[doc = "Get the (resolvable) URI of the shared library for `plugin`."]
    #[doc = "Note this always returns a fully qualified URI.  If you want a local"]
    #[doc = "filesystem path, use lilv_file_uri_parse()."]
    #[doc = "@return a shared string which must not be modified or freed."]
    pub fn lilv_plugin_get_library_uri(plugin: *const LilvPlugin) -> *const LilvNode;
}
extern "C" {
    #[doc = "Get the name of `plugin`."]
    #[doc = "This returns the name (doap:name) of the plugin.  The name may be"]
    #[doc = "translated according to the current locale, this value MUST NOT be used"]
    #[doc = "as a plugin identifier (use the URI for that)."]
    #[doc = "Returned value must be freed by the caller."]
    pub fn lilv_plugin_get_name(plugin: *const LilvPlugin) -> *mut LilvNode;
}
extern "C" {
    #[doc = "Get the class this plugin belongs to (e.g. Filters)."]
    pub fn lilv_plugin_get_class(plugin: *const LilvPlugin) -> *const LilvPluginClass;
}
extern "C" {
    #[doc = "Get a value associated with the plugin in a plugin's data files."]
    #[doc = "`predicate` must be either a URI or a QName."]
    #[doc = ""]
    #[doc = "Returns the ?object of all triples found of the form:"]
    #[doc = ""]
    #[doc = "<code>&lt;plugin-uri&gt; predicate ?object</code>"]
    #[doc = ""]
    #[doc = "May return NULL if the property was not found, or if object(s) is not"]
    #[doc = "sensibly represented as a LilvNodes (e.g. blank nodes)."]
    #[doc = "Return value must be freed by caller with lilv_nodes_free()."]
    pub fn lilv_plugin_get_value(
        plugin: *const LilvPlugin,
        predicate: *const LilvNode,
    ) -> *mut LilvNodes;
}
extern "C" {
    #[doc = "Return whether a feature is supported by a plugin."]
    #[doc = "This will return true if the feature is an optional or required feature"]
    #[doc = "of the plugin."]
    pub fn lilv_plugin_has_feature(plugin: *const LilvPlugin, feature: *const LilvNode) -> bool;
}
extern "C" {
    #[doc = "Get the LV2 Features supported (required or optionally) by a plugin."]
    #[doc = "A feature is \"supported\" by a plugin if it is required OR optional."]
    #[doc = ""]
    #[doc = "Since required features have special rules the host must obey, this function"]
    #[doc = "probably shouldn't be used by normal hosts.  Using lilv_plugin_get_optional_features()"]
    #[doc = "and lilv_plugin_get_required_features() separately is best in most cases."]
    #[doc = ""]
    #[doc = "Returned value must be freed by caller with lilv_nodes_free()."]
    pub fn lilv_plugin_get_supported_features(plugin: *const LilvPlugin) -> *mut LilvNodes;
}
extern "C" {
    #[doc = "Get the LV2 Features required by a plugin."]
    #[doc = "If a feature is required by a plugin, hosts MUST NOT use the plugin if they do not"]
    #[doc = "understand (or are unable to support) that feature."]
    #[doc = ""]
    #[doc = "All values returned here MUST be passed to the plugin's instantiate method"]
    #[doc = "(along with data, if necessary, as defined by the feature specification)"]
    #[doc = "or plugin instantiation will fail."]
    #[doc = ""]
    #[doc = "Return value must be freed by caller with lilv_nodes_free()."]
    pub fn lilv_plugin_get_required_features(plugin: *const LilvPlugin) -> *mut LilvNodes;
}
extern "C" {
    #[doc = "Get the LV2 Features optionally supported by a plugin."]
    #[doc = "Hosts MAY ignore optional plugin features for whatever reasons.  Plugins"]
    #[doc = "MUST operate (at least somewhat) if they are instantiated without being"]
    #[doc = "passed optional features."]
    #[doc = ""]
    #[doc = "Return value must be freed by caller with lilv_nodes_free()."]
    pub fn lilv_plugin_get_optional_features(plugin: *const LilvPlugin) -> *mut LilvNodes;
}
extern "C" {
    #[doc = "Return whether or not a plugin provides a specific extension data."]
    pub fn lilv_plugin_has_extension_data(plugin: *const LilvPlugin, uri: *const LilvNode) -> bool;
}
extern "C" {
    #[doc = "Get a sequence of all extension data provided by a plugin."]
    #[doc = "This can be used to find which URIs lilv_instance_get_extension_data()"]
    #[doc = "will return a value for without instantiating the plugin."]
    pub fn lilv_plugin_get_extension_data(plugin: *const LilvPlugin) -> *mut LilvNodes;
}
extern "C" {
    #[doc = "Get the number of ports on this plugin."]
    pub fn lilv_plugin_get_num_ports(plugin: *const LilvPlugin) -> u32;
}
extern "C" {
    #[doc = "Get the port ranges (minimum, maximum and default values) for all ports."]
    #[doc = "`min_values`, `max_values` and `def_values` must either point to an array"]
    #[doc = "of N floats, where N is the value returned by lilv_plugin_get_num_ports()"]
    #[doc = "for this plugin, or NULL.  The elements of the array will be set to the"]
    #[doc = "the minimum, maximum and default values of the ports on this plugin,"]
    #[doc = "with array index corresponding to port index.  If a port doesn't have a"]
    #[doc = "minimum, maximum or default value, or the port's type is not float, the"]
    #[doc = "corresponding array element will be set to NAN."]
    #[doc = ""]
    #[doc = "This is a convenience method for the common case of getting the range of"]
    #[doc = "all float ports on a plugin, and may be significantly faster than"]
    #[doc = "repeated calls to lilv_port_get_range()."]
    pub fn lilv_plugin_get_port_ranges_float(
        plugin: *const LilvPlugin,
        min_values: *mut f32,
        max_values: *mut f32,
        def_values: *mut f32,
    );
}
extern "C" {
    #[doc = "Get the number of ports on this plugin that are members of some class(es)."]
    #[doc = "Note that this is a varargs function so ports fitting any type 'profile'"]
    #[doc = "desired can be found quickly.  REMEMBER TO TERMINATE THE PARAMETER LIST"]
    #[doc = "OF THIS FUNCTION WITH NULL OR VERY NASTY THINGS WILL HAPPEN."]
    pub fn lilv_plugin_get_num_ports_of_class(
        plugin: *const LilvPlugin,
        class_1: *const LilvNode,
        ...
    ) -> u32;
}
extern "C" {
    #[doc = "Variant of lilv_plugin_get_num_ports_of_class() that takes a va_list."]
    #[doc = ""]
    #[doc = "This function calls va_arg() on `args` but does not call va_end()."]
    pub fn lilv_plugin_get_num_ports_of_class_va(
        plugin: *const LilvPlugin,
        class_1: *const LilvNode,
        args: *mut __va_list_tag,
    ) -> u32;
}
extern "C" {
    #[doc = "Return whether or not the plugin introduces (and reports) latency."]
    #[doc = "The index of the latency port can be found with"]
    #[doc = "lilv_plugin_get_latency_port() ONLY if this function returns true."]
    pub fn lilv_plugin_has_latency(plugin: *const LilvPlugin) -> bool;
}
extern "C" {
    #[doc = "Return the index of the plugin's latency port."]
    #[doc = "It is a fatal error to call this on a plugin without checking if the port"]
    #[doc = "exists by first calling lilv_plugin_has_latency()."]
    #[doc = ""]
    #[doc = "Any plugin that introduces unwanted latency that should be compensated for"]
    #[doc = "(by hosts with the ability/need) MUST provide this port, which is a control"]
    #[doc = "rate output port that reports the latency for each cycle in frames."]
    pub fn lilv_plugin_get_latency_port_index(plugin: *const LilvPlugin) -> u32;
}
extern "C" {
    #[doc = "Get a port on `plugin` by `index`."]
    pub fn lilv_plugin_get_port_by_index(plugin: *const LilvPlugin, index: u32) -> *const LilvPort;
}
extern "C" {
    #[doc = "Get a port on `plugin` by `symbol`."]
    #[doc = "Note this function is slower than lilv_plugin_get_port_by_index(),"]
    #[doc = "especially on plugins with a very large number of ports."]
    pub fn lilv_plugin_get_port_by_symbol(
        plugin: *const LilvPlugin,
        symbol: *const LilvNode,
    ) -> *const LilvPort;
}
extern "C" {
    #[doc = "Get a port on `plugin` by its lv2:designation."]
    #[doc = ""]
    #[doc = "The designation of a port describes the meaning, assignment, allocation or"]
    #[doc = "role of the port, e.g. \"left channel\" or \"gain\".  If found, the port with"]
    #[doc = "matching `port_class` and `designation` is be returned, otherwise NULL is"]
    #[doc = "returned.  The `port_class` can be used to distinguish the input and output"]
    #[doc = "ports for a particular designation.  If `port_class` is NULL, any port with"]
    #[doc = "the given designation will be returned."]
    pub fn lilv_plugin_get_port_by_designation(
        plugin: *const LilvPlugin,
        port_class: *const LilvNode,
        designation: *const LilvNode,
    ) -> *const LilvPort;
}
extern "C" {
    #[doc = "Get the project the plugin is a part of."]
    #[doc = ""]
    #[doc = "More information about the project can be read via lilv_world_find_nodes(),"]
    #[doc = "typically using properties from DOAP (e.g. doap:name)."]
    pub fn lilv_plugin_get_project(plugin: *const LilvPlugin) -> *mut LilvNode;
}
extern "C" {
    #[doc = "Get the full name of the plugin's author."]
    #[doc = "Returns NULL if author name is not present."]
    #[doc = "Returned value must be freed by caller."]
    pub fn lilv_plugin_get_author_name(plugin: *const LilvPlugin) -> *mut LilvNode;
}
extern "C" {
    #[doc = "Get the email address of the plugin's author."]
    #[doc = "Returns NULL if author email address is not present."]
    #[doc = "Returned value must be freed by caller."]
    pub fn lilv_plugin_get_author_email(plugin: *const LilvPlugin) -> *mut LilvNode;
}
extern "C" {
    #[doc = "Get the address of the plugin author's home page."]
    #[doc = "Returns NULL if author homepage is not present."]
    #[doc = "Returned value must be freed by caller."]
    pub fn lilv_plugin_get_author_homepage(plugin: *const LilvPlugin) -> *mut LilvNode;
}
extern "C" {
    #[doc = "Return true iff `plugin` has been replaced by another plugin."]
    #[doc = ""]
    #[doc = "The plugin will still be usable, but hosts should hide them from their"]
    #[doc = "user interfaces to prevent users from using deprecated plugins."]
    pub fn lilv_plugin_is_replaced(plugin: *const LilvPlugin) -> bool;
}
extern "C" {
    #[doc = "Write the Turtle description of `plugin` to `plugin_file`."]
    #[doc = ""]
    #[doc = "This function is particularly useful for porting plugins in conjunction with"]
    #[doc = "an LV2 bridge such as NASPRO."]
    pub fn lilv_plugin_write_description(
        world: *mut LilvWorld,
        plugin: *const LilvPlugin,
        base_uri: *const LilvNode,
        plugin_file: *mut FILE,
    );
}
extern "C" {
    #[doc = "Write a manifest entry for `plugin` to `manifest_file`."]
    #[doc = ""]
    #[doc = "This function is intended for use with lilv_plugin_write_description() to"]
    #[doc = "write a complete description of a plugin to a bundle."]
    pub fn lilv_plugin_write_manifest_entry(
        world: *mut LilvWorld,
        plugin: *const LilvPlugin,
        base_uri: *const LilvNode,
        manifest_file: *mut FILE,
        plugin_file_path: *const ::std::os::raw::c_char,
    );
}
extern "C" {
    #[doc = "Get the resources related to `plugin` with lv2:appliesTo."]
    #[doc = ""]
    #[doc = "Some plugin-related resources are not linked directly to the plugin with"]
    #[doc = "rdfs:seeAlso and thus will not be automatically loaded along with the plugin"]
    #[doc = "data (usually for performance reasons).  All such resources of the given @c"]
    #[doc = "type related to `plugin` can be accessed with this function."]
    #[doc = ""]
    #[doc = "If `type` is NULL, all such resources will be returned, regardless of type."]
    #[doc = ""]
    #[doc = "To actually load the data for each returned resource, use"]
    #[doc = "lilv_world_load_resource()."]
    pub fn lilv_plugin_get_related(
        plugin: *const LilvPlugin,
        type_: *const LilvNode,
    ) -> *mut LilvNodes;
}
extern "C" {
    #[doc = "Get the RDF node of `port`."]
    #[doc = ""]
    #[doc = "Ports nodes may be may be URIs or blank nodes."]
    #[doc = ""]
    #[doc = "@return A shared node which must not be modified or freed."]
    pub fn lilv_port_get_node(plugin: *const LilvPlugin, port: *const LilvPort) -> *const LilvNode;
}
extern "C" {
    #[doc = "Port analog of lilv_plugin_get_value()."]
    pub fn lilv_port_get_value(
        plugin: *const LilvPlugin,
        port: *const LilvPort,
        predicate: *const LilvNode,
    ) -> *mut LilvNodes;
}
extern "C" {
    #[doc = "Get a single property value of a port."]
    #[doc = ""]
    #[doc = "This is equivalent to lilv_nodes_get_first(lilv_port_get_value(...)) but is"]
    #[doc = "simpler to use in the common case of only caring about one value.  The"]
    #[doc = "caller is responsible for freeing the returned node."]
    pub fn lilv_port_get(
        plugin: *const LilvPlugin,
        port: *const LilvPort,
        predicate: *const LilvNode,
    ) -> *mut LilvNode;
}
extern "C" {
    #[doc = "Return the LV2 port properties of a port."]
    pub fn lilv_port_get_properties(
        plugin: *const LilvPlugin,
        port: *const LilvPort,
    ) -> *mut LilvNodes;
}
extern "C" {
    #[doc = "Return whether a port has a certain property."]
    pub fn lilv_port_has_property(
        plugin: *const LilvPlugin,
        port: *const LilvPort,
        property: *const LilvNode,
    ) -> bool;
}
extern "C" {
    #[doc = "Return whether a port supports a certain event type."]
    #[doc = ""]
    #[doc = "More precisely, this returns true iff the port has an atom:supports or an"]
    #[doc = "ev:supportsEvent property with `event_type` as the value."]
    pub fn lilv_port_supports_event(
        plugin: *const LilvPlugin,
        port: *const LilvPort,
        event_type: *const LilvNode,
    ) -> bool;
}
extern "C" {
    #[doc = "Get the index of a port."]
    #[doc = "The index is only valid for the life of the plugin and may change between"]
    #[doc = "versions.  For a stable identifier, use the symbol."]
    pub fn lilv_port_get_index(plugin: *const LilvPlugin, port: *const LilvPort) -> u32;
}
extern "C" {
    #[doc = "Get the symbol of a port."]
    #[doc = "The 'symbol' is a short string, a valid C identifier."]
    #[doc = "Returned value is owned by `port` and must not be freed."]
    pub fn lilv_port_get_symbol(
        plugin: *const LilvPlugin,
        port: *const LilvPort,
    ) -> *const LilvNode;
}
extern "C" {
    #[doc = "Get the name of a port."]
    #[doc = "This is guaranteed to return the untranslated name (the doap:name in the"]
    #[doc = "data file without a language tag).  Returned value must be freed by"]
    #[doc = "the caller."]
    pub fn lilv_port_get_name(plugin: *const LilvPlugin, port: *const LilvPort) -> *mut LilvNode;
}
extern "C" {
    #[doc = "Get all the classes of a port."]
    #[doc = "This can be used to determine if a port is an input, output, audio,"]
    #[doc = "control, midi, etc, etc, though it's simpler to use lilv_port_is_a()."]
    #[doc = "The returned list does not include lv2:Port, which is implied."]
    #[doc = "Returned value is shared and must not be destroyed by caller."]
    pub fn lilv_port_get_classes(
        plugin: *const LilvPlugin,
        port: *const LilvPort,
    ) -> *const LilvNodes;
}
extern "C" {
    #[doc = "Determine if a port is of a given class (input, output, audio, etc)."]
    #[doc = "For convenience/performance/extensibility reasons, hosts are expected to"]
    #[doc = "create a LilvNode for each port class they \"care about\".  Well-known type"]
    #[doc = "URI strings are defined (e.g. LILV_URI_INPUT_PORT) for convenience, but"]
    #[doc = "this function is designed so that Lilv is usable with any port types"]
    #[doc = "without requiring explicit support in Lilv."]
    pub fn lilv_port_is_a(
        plugin: *const LilvPlugin,
        port: *const LilvPort,
        port_class: *const LilvNode,
    ) -> bool;
}
extern "C" {
    #[doc = "Get the default, minimum, and maximum values of a port."]
    #[doc = ""]
    #[doc = "`def`, `min`, and `max` are outputs, pass pointers to uninitialized"]
    #[doc = "LilvNode* variables.  These will be set to point at new values (which must"]
    #[doc = "be freed by the caller using lilv_node_free()), or NULL if the value does"]
    #[doc = "not exist."]
    pub fn lilv_port_get_range(
        plugin: *const LilvPlugin,
        port: *const LilvPort,
        def: *mut *mut LilvNode,
        min: *mut *mut LilvNode,
        max: *mut *mut LilvNode,
    );
}
extern "C" {
    #[doc = "Get the scale points (enumeration values) of a port."]
    #[doc = "This returns a collection of 'interesting' named values of a port"]
    #[doc = "(e.g. appropriate entries for a UI selector associated with this port)."]
    #[doc = "Returned value may be NULL if `port` has no scale points, otherwise it"]
    #[doc = "must be freed by caller with lilv_scale_points_free()."]
    pub fn lilv_port_get_scale_points(
        plugin: *const LilvPlugin,
        port: *const LilvPort,
    ) -> *mut LilvScalePoints;
}
extern "C" {
    #[doc = "Load a state snapshot from the world RDF model."]
    #[doc = "This function can be used to load the default state of a plugin by passing"]
    #[doc = "the plugin URI as the `subject` parameter."]
    #[doc = "@param world The world."]
    #[doc = "@param map URID mapper."]
    #[doc = "@param node The subject of the state description (e.g. a preset URI)."]
    #[doc = "@return A new LilvState which must be freed with lilv_state_free(), or NULL."]
    pub fn lilv_state_new_from_world(
        world: *mut LilvWorld,
        map: *mut LV2_URID_Map,
        node: *const LilvNode,
    ) -> *mut LilvState;
}
extern "C" {
    #[doc = "Load a state snapshot from a file."]
    #[doc = "@param world The world."]
    #[doc = "@param map URID mapper."]
    #[doc = "@param subject The subject of the state description (e.g. a preset URI)."]
    #[doc = "@param path The path of the file containing the state description."]
    #[doc = "@return A new LilvState which must be freed with lilv_state_free()."]
    #[doc = ""]
    #[doc = "If `subject` is NULL, it is taken to be the URI of the file (i.e."]
    #[doc = "\"<>\" in Turtle)."]
    #[doc = ""]
    #[doc = "This function parses the file separately to create the state, it does not"]
    #[doc = "parse the file into the world model, i.e. the returned state is the only"]
    #[doc = "new memory consumed once this function returns."]
    pub fn lilv_state_new_from_file(
        world: *mut LilvWorld,
        map: *mut LV2_URID_Map,
        subject: *const LilvNode,
        path: *const ::std::os::raw::c_char,
    ) -> *mut LilvState;
}
extern "C" {
    #[doc = "Load a state snapshot from a string made by lilv_state_to_string()."]
    pub fn lilv_state_new_from_string(
        world: *mut LilvWorld,
        map: *mut LV2_URID_Map,
        str: *const ::std::os::raw::c_char,
    ) -> *mut LilvState;
}
#[doc = "Function to get a port value."]
#[doc = "@param port_symbol The symbol of the port."]
#[doc = "@param user_data The user_data passed to lilv_state_new_from_instance()."]
#[doc = "@param size (Output) The size of the returned value."]
#[doc = "@param type (Output) The URID of the type of the returned value."]
#[doc = "@return A pointer to the port value."]
#[doc = ""]
#[doc = "This function MUST set `size` and `type` appropriately."]
pub type LilvGetPortValueFunc = ::std::option::Option<
    unsafe extern "C" fn(
        port_symbol: *const ::std::os::raw::c_char,
        user_data: *mut ::std::os::raw::c_void,
        size: *mut u32,
        type_: *mut u32,
    ) -> *const ::std::os::raw::c_void,
>;
extern "C" {
    #[doc = "Create a new state snapshot from a plugin instance."]
    #[doc = ""]
    #[doc = "@param plugin The plugin this state applies to."]
    #[doc = ""]
    #[doc = "@param instance An instance of `plugin`."]
    #[doc = ""]
    #[doc = "@param map The map to use for mapping URIs in state."]
    #[doc = ""]
    #[doc = "@param file_dir Directory of files created by the plugin earlier (or NULL)."]
    #[doc = "This is for hosts that support file creation at any time with state"]
    #[doc = "state:makePath.  These files will be copied as necessary to `copy_dir` and"]
    #[doc = "not be referred to directly in state (a temporary directory is appropriate)."]
    #[doc = ""]
    #[doc = "@param copy_dir Directory of copies of files in `file_dir` (or NULL).  This"]
    #[doc = "directory will have the same structure as `file_dir` but with possibly"]
    #[doc = "modified file names to distinguish different revisions.  If you only care"]
    #[doc = "about saving one state snapshot, it can be the same as `save_dir`.  Plugin"]
    #[doc = "state will refer to files in this directory."]
    #[doc = ""]
    #[doc = "@param save_dir Directory of files created by plugin during save (or NULL)."]
    #[doc = "If the state will be saved, this should be the bundle directory later passed"]
    #[doc = "to lilv_state_save()."]
    #[doc = ""]
    #[doc = "@param get_value Function to get port values (or NULL).  If NULL, the"]
    #[doc = "returned state will not represent port values.  This should only be NULL in"]
    #[doc = "hosts that save and restore port values via some other mechanism."]
    #[doc = ""]
    #[doc = "@param user_data User data to pass to `get_value`."]
    #[doc = ""]
    #[doc = "@param link_dir Directory of links to external files (or NULL).  A link will"]
    #[doc = "be made in this directory to any external files referred to in plugin state."]
    #[doc = "In turn, links will be created in the save directory to these links (e.g."]
    #[doc = "save_dir/file => link_dir/file => /foo/bar/file).  This allows many state"]
    #[doc = "snapshots to share a single link to an external file, so archival"]
    #[doc = "(e.g. with tar -h) will not create several copies of the file.  If this is"]
    #[doc = "not required, it can be the same as save_dir."]
    #[doc = ""]
    #[doc = "@param flags Bitwise OR of LV2_State_Flags values."]
    #[doc = ""]
    #[doc = "@param features Features to pass LV2_State_Interface.save()."]
    #[doc = ""]
    #[doc = "@return A new LilvState which must be freed with lilv_state_free()."]
    #[doc = ""]
    #[doc = "This function may be called simultaneously with any instance function"]
    #[doc = "(except discovery functions) unless the threading class of that function"]
    #[doc = "explicitly disallows this."]
    #[doc = ""]
    #[doc = "To support advanced file functionality, there are several directory"]
    #[doc = "parameters.  Simple hosts that only wish to save a single plugins state once"]
    #[doc = "may simply use the same directory for all of them (or pass NULL to not"]
    #[doc = "support files at all).  The multiple parameters are necessary to support"]
    #[doc = "saving an instances state many times while avoiding any duplication of data."]
    #[doc = ""]
    #[doc = "If supported (via state:makePath passed to LV2_Descriptor::instantiate()),"]
    #[doc = "`file_dir` should be the directory where any files created by the plugin"]
    #[doc = "(not during save time, e.g. during instantiation) are stored.  These files"]
    #[doc = "will be copied to preserve their state at this time.plugin-created files are stored."]
    #[doc = "Lilv will assume any files within this directory (recursively) are created"]
    #[doc = "by the plugin and all other files are immutable.  Note that this function"]
    #[doc = "does not save the state, use lilv_state_save() for that."]
    #[doc = ""]
    #[doc = "See <a href=\"http://lv2plug.in/ns/ext/state/state.h\">state.h</a> from the"]
    #[doc = "LV2 State extension for details on the `flags` and `features` parameters."]
    pub fn lilv_state_new_from_instance(
        plugin: *const LilvPlugin,
        instance: *mut LilvInstance,
        map: *mut LV2_URID_Map,
        file_dir: *const ::std::os::raw::c_char,
        copy_dir: *const ::std::os::raw::c_char,
        link_dir: *const ::std::os::raw::c_char,
        save_dir: *const ::std::os::raw::c_char,
        get_value: LilvGetPortValueFunc,
        user_data: *mut ::std::os::raw::c_void,
        flags: u32,
        features: *const *const LV2_Feature,
    ) -> *mut LilvState;
}
extern "C" {
    #[doc = "Free `state`."]
    pub fn lilv_state_free(state: *mut LilvState);
}
extern "C" {
    #[doc = "Return true iff `a` is equivalent to `b`."]
    pub fn lilv_state_equals(a: *const LilvState, b: *const LilvState) -> bool;
}
extern "C" {
    #[doc = "Return the number of properties in `state`."]
    pub fn lilv_state_get_num_properties(state: *const LilvState) -> ::std::os::raw::c_uint;
}
extern "C" {
    #[doc = "Get the URI of the plugin `state` applies to."]
    pub fn lilv_state_get_plugin_uri(state: *const LilvState) -> *const LilvNode;
}
extern "C" {
    #[doc = "Get the URI of `state`."]
    #[doc = ""]
    #[doc = "This may return NULL if the state has not been saved and has no URI."]
    pub fn lilv_state_get_uri(state: *const LilvState) -> *const LilvNode;
}
extern "C" {
    #[doc = "Get the label of `state`."]
    pub fn lilv_state_get_label(state: *const LilvState) -> *const ::std::os::raw::c_char;
}
extern "C" {
    #[doc = "Set the label of `state`."]
    pub fn lilv_state_set_label(state: *mut LilvState, label: *const ::std::os::raw::c_char);
}
extern "C" {
    #[doc = "Set a metadata property on `state`."]
    #[doc = "@param state The state to set the metadata for."]
    #[doc = "@param key The key to store `value` under (URID)."]
    #[doc = "@param value Pointer to the value to be stored."]
    #[doc = "@param size The size of `value` in bytes."]
    #[doc = "@param type The type of `value` (URID)."]
    #[doc = "@param flags LV2_State_Flags for `value`."]
    #[doc = "@return 0 on success."]
    #[doc = ""]
    #[doc = "This is a generic version of lilv_state_set_label(), which sets metadata"]
    #[doc = "properties visible to hosts, but not plugins.  This allows storing useful"]
    #[doc = "information such as comments or preset banks."]
    pub fn lilv_state_set_metadata(
        state: *mut LilvState,
        key: u32,
        value: *const ::std::os::raw::c_void,
        size: usize,
        type_: u32,
        flags: u32,
    ) -> ::std::os::raw::c_int;
}
#[doc = "Function to set a port value."]
#[doc = "@param port_symbol The symbol of the port."]
#[doc = "@param user_data The user_data passed to lilv_state_restore()."]
#[doc = "@param size The size of `value`."]
#[doc = "@param type The URID of the type of `value`."]
#[doc = "@param value A pointer to the port value."]
pub type LilvSetPortValueFunc = ::std::option::Option<
    unsafe extern "C" fn(
        port_symbol: *const ::std::os::raw::c_char,
        user_data: *mut ::std::os::raw::c_void,
        value: *const ::std::os::raw::c_void,
        size: u32,
        type_: u32,
    ),
>;
extern "C" {
    #[doc = "Enumerate the port values in a state snapshot."]
    #[doc = "@param state The state to retrieve port values from."]
    #[doc = "@param set_value A function to receive port values."]
    #[doc = "@param user_data User data to pass to `set_value`."]
    #[doc = ""]
    #[doc = "This function is a subset of lilv_state_restore() that only fires the"]
    #[doc = "`set_value` callback and does not directly affect a plugin instance.  This"]
    #[doc = "is useful in hosts that need to retrieve the port values in a state snapshot"]
    #[doc = "for special handling."]
    pub fn lilv_state_emit_port_values(
        state: *const LilvState,
        set_value: LilvSetPortValueFunc,
        user_data: *mut ::std::os::raw::c_void,
    );
}
extern "C" {
    #[doc = "Restore a plugin instance from a state snapshot."]
    #[doc = "@param state The state to restore, which must apply to the correct plugin."]
    #[doc = "@param instance An instance of the plugin `state` applies to, or NULL."]
    #[doc = "@param set_value A function to set a port value (may be NULL)."]
    #[doc = "@param user_data User data to pass to `set_value`."]
    #[doc = "@param flags Bitwise OR of LV2_State_Flags values."]
    #[doc = "@param features Features to pass LV2_State_Interface.restore()."]
    #[doc = ""]
    #[doc = "This will set all the properties of `instance`, if given, to the values"]
    #[doc = "stored in `state`.  If `set_value` is provided, it will be called (with the"]
    #[doc = "given `user_data`) to restore each port value, otherwise the host must"]
    #[doc = "restore the port values itself (using lilv_state_get_port_value()) in order"]
    #[doc = "to completely restore `state`."]
    #[doc = ""]
    #[doc = "If the state has properties and `instance` is given, this function is in"]
    #[doc = "the \"instantiation\" threading class, i.e. it MUST NOT be called"]
    #[doc = "simultaneously with any function on the same plugin instance.  If the state"]
    #[doc = "has no properties, only port values are set via `set_value`."]
    #[doc = ""]
    #[doc = "See <a href=\"http://lv2plug.in/ns/ext/state/state.h\">state.h</a> from the"]
    #[doc = "LV2 State extension for details on the `flags` and `features` parameters."]
    pub fn lilv_state_restore(
        state: *const LilvState,
        instance: *mut LilvInstance,
        set_value: LilvSetPortValueFunc,
        user_data: *mut ::std::os::raw::c_void,
        flags: u32,
        features: *const *const LV2_Feature,
    );
}
extern "C" {
    #[doc = "Save state to a file."]
    #[doc = "@param world The world."]
    #[doc = "@param map URID mapper."]
    #[doc = "@param unmap URID unmapper."]
    #[doc = "@param state State to save."]
    #[doc = "@param uri URI of state, may be NULL."]
    #[doc = "@param dir Path of the bundle directory to save into."]
    #[doc = "@param filename Path of the state file relative to `dir`."]
    #[doc = ""]
    #[doc = "The format of state on disk is compatible with that defined in the LV2"]
    #[doc = "preset extension, i.e. this function may be used to save presets which can"]
    #[doc = "be loaded by any host."]
    #[doc = ""]
    #[doc = "If `uri` is NULL, the preset URI will be a file URI, but the bundle"]
    #[doc = "can safely be moved (i.e. the state file will use \"<>\" as the subject)."]
    pub fn lilv_state_save(
        world: *mut LilvWorld,
        map: *mut LV2_URID_Map,
        unmap: *mut LV2_URID_Unmap,
        state: *const LilvState,
        uri: *const ::std::os::raw::c_char,
        dir: *const ::std::os::raw::c_char,
        filename: *const ::std::os::raw::c_char,
    ) -> ::std::os::raw::c_int;
}
extern "C" {
    #[doc = "Save state to a string.  This function does not use the filesystem."]
    #[doc = ""]
    #[doc = "@param world The world."]
    #[doc = "@param map URID mapper."]
    #[doc = "@param unmap URID unmapper."]
    #[doc = "@param state The state to serialize."]
    #[doc = "@param uri URI for the state description (mandatory)."]
    #[doc = "@param base_uri Base URI for serialisation.  Unless you know what you are"]
    #[doc = "doing, pass NULL for this, otherwise the state may not be restorable via"]
    #[doc = "lilv_state_new_from_string()."]
    pub fn lilv_state_to_string(
        world: *mut LilvWorld,
        map: *mut LV2_URID_Map,
        unmap: *mut LV2_URID_Unmap,
        state: *const LilvState,
        uri: *const ::std::os::raw::c_char,
        base_uri: *const ::std::os::raw::c_char,
    ) -> *mut ::std::os::raw::c_char;
}
extern "C" {
    #[doc = "Unload a state from the world and delete all associated files."]
    #[doc = "@param world The world."]
    #[doc = "@param state State to remove from the system."]
    #[doc = ""]
    #[doc = "This function DELETES FILES/DIRECTORIES FROM THE FILESYSTEM!  It is intended"]
    #[doc = "for removing user-saved presets, but can delete any state the user has"]
    #[doc = "permission to delete, including presets shipped with plugins."]
    #[doc = ""]
    #[doc = "The rdfs:seeAlso file for the state will be removed.  The entry in the"]
    #[doc = "bundle's manifest.ttl is removed, and if this results in an empty manifest,"]
    #[doc = "then the manifest file is removed.  If this results in an empty bundle, then"]
    #[doc = "the bundle directory is removed as well."]
    pub fn lilv_state_delete(
        world: *mut LilvWorld,
        state: *const LilvState,
    ) -> ::std::os::raw::c_int;
}
extern "C" {
    #[doc = "Get the label of this scale point (enumeration value)"]
    #[doc = "Returned value is owned by `point` and must not be freed."]
    pub fn lilv_scale_point_get_label(point: *const LilvScalePoint) -> *const LilvNode;
}
extern "C" {
    #[doc = "Get the value of this scale point (enumeration value)"]
    #[doc = "Returned value is owned by `point` and must not be freed."]
    pub fn lilv_scale_point_get_value(point: *const LilvScalePoint) -> *const LilvNode;
}
extern "C" {
    #[doc = "Get the URI of this class' superclass."]
    #[doc = "Returned value is owned by `plugin_class` and must not be freed by caller."]
    #[doc = "Returned value may be NULL, if class has no parent."]
    pub fn lilv_plugin_class_get_parent_uri(
        plugin_class: *const LilvPluginClass,
    ) -> *const LilvNode;
}
extern "C" {
    #[doc = "Get the URI of this plugin class."]
    #[doc = "Returned value is owned by `plugin_class` and must not be freed by caller."]
    pub fn lilv_plugin_class_get_uri(plugin_class: *const LilvPluginClass) -> *const LilvNode;
}
extern "C" {
    #[doc = "Get the label of this plugin class, ie \"Oscillators\"."]
    #[doc = "Returned value is owned by `plugin_class` and must not be freed by caller."]
    pub fn lilv_plugin_class_get_label(plugin_class: *const LilvPluginClass) -> *const LilvNode;
}
extern "C" {
    #[doc = "Get the subclasses of this plugin class."]
    #[doc = "Returned value must be freed by caller with lilv_plugin_classes_free()."]
    pub fn lilv_plugin_class_get_children(
        plugin_class: *const LilvPluginClass,
    ) -> *mut LilvPluginClasses;
}
#[doc = "@cond LILV_DOCUMENT_INSTANCE_IMPL"]
#[repr(C)]
pub struct LilvInstanceImpl {
    pub lv2_descriptor: *const LV2_Descriptor,
    pub lv2_handle: LV2_Handle,
    pub pimpl: *mut ::std::os::raw::c_void,
}
#[test]
fn bindgen_test_layout_LilvInstanceImpl() {
    assert_eq!(
        ::std::mem::size_of::<LilvInstanceImpl>(),
        24usize,
        concat!("Size of: ", stringify!(LilvInstanceImpl))
    );
    assert_eq!(
        ::std::mem::align_of::<LilvInstanceImpl>(),
        8usize,
        concat!("Alignment of ", stringify!(LilvInstanceImpl))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<LilvInstanceImpl>())).lv2_descriptor as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(LilvInstanceImpl),
            "::",
            stringify!(lv2_descriptor)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<LilvInstanceImpl>())).lv2_handle as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(LilvInstanceImpl),
            "::",
            stringify!(lv2_handle)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<LilvInstanceImpl>())).pimpl as *const _ as usize },
        16usize,
        concat!(
            "Offset of field: ",
            stringify!(LilvInstanceImpl),
            "::",
            stringify!(pimpl)
        )
    );
}
extern "C" {
    #[doc = "Instantiate a plugin."]
    #[doc = "The returned value is a lightweight handle for an LV2 plugin instance,"]
    #[doc = "it does not refer to `plugin`, or any other Lilv state.  The caller must"]
    #[doc = "eventually free it with lilv_instance_free()."]
    #[doc = "`features` is a NULL-terminated array of features the host supports."]
    #[doc = "NULL may be passed if the host supports no additional features."]
    #[doc = "@return NULL if instantiation failed."]
    pub fn lilv_plugin_instantiate(
        plugin: *const LilvPlugin,
        sample_rate: f64,
        features: *const *const LV2_Feature,
    ) -> *mut LilvInstance;
}
extern "C" {
    #[doc = "Free a plugin instance."]
    #[doc = "It is safe to call this function on NULL."]
    #[doc = "`instance` is invalid after this call."]
    pub fn lilv_instance_free(instance: *mut LilvInstance);
}
extern "C" {
    #[doc = "Get all UIs for `plugin`."]
    #[doc = "Returned value must be freed by caller using lilv_uis_free()."]
    pub fn lilv_plugin_get_uis(plugin: *const LilvPlugin) -> *mut LilvUIs;
}
extern "C" {
    #[doc = "Get the URI of a Plugin UI."]
    #[doc = "@param ui The Plugin UI"]
    #[doc = "@return a shared value which must not be modified or freed."]
    pub fn lilv_ui_get_uri(ui: *const LilvUI) -> *const LilvNode;
}
extern "C" {
    #[doc = "Get the types (URIs of RDF classes) of a Plugin UI."]
    #[doc = "@param ui The Plugin UI"]
    #[doc = "@return a shared value which must not be modified or freed."]
    #[doc = ""]
    #[doc = "Note that in most cases lilv_ui_is_supported() should be used, which avoids"]
    #[doc = "the need to use this function (and type specific logic)."]
    pub fn lilv_ui_get_classes(ui: *const LilvUI) -> *const LilvNodes;
}
extern "C" {
    #[doc = "Check whether a plugin UI has a given type."]
    #[doc = "@param ui        The Plugin UI"]
    #[doc = "@param class_uri The URI of the LV2 UI type to check this UI against"]
    pub fn lilv_ui_is_a(ui: *const LilvUI, class_uri: *const LilvNode) -> bool;
}
#[doc = "Function to determine whether a UI type is supported."]
#[doc = ""]
#[doc = "This is provided by the user and must return non-zero iff using a UI of type"]
#[doc = "`ui_type_uri` in a container of type `container_type_uri` is supported."]
pub type LilvUISupportedFunc = ::std::option::Option<
    unsafe extern "C" fn(
        container_type_uri: *const ::std::os::raw::c_char,
        ui_type_uri: *const ::std::os::raw::c_char,
    ) -> ::std::os::raw::c_uint,
>;
extern "C" {
    #[doc = "Return true iff a Plugin UI is supported as a given widget type."]
    #[doc = "@param ui The Plugin UI"]
    #[doc = "@param supported_func User provided supported predicate."]
    #[doc = "@param container_type The widget type to host the UI within."]
    #[doc = "@param ui_type (Output) If non-NULL, set to the native type of the UI"]
    #[doc = "which is owned by `ui` and must not be freed by the caller."]
    #[doc = "@return The embedding quality level returned by `supported_func`."]
    pub fn lilv_ui_is_supported(
        ui: *const LilvUI,
        supported_func: LilvUISupportedFunc,
        container_type: *const LilvNode,
        ui_type: *mut *const LilvNode,
    ) -> ::std::os::raw::c_uint;
}
extern "C" {
    #[doc = "Get the URI for a Plugin UI's bundle."]
    #[doc = "@param ui The Plugin UI"]
    #[doc = "@return a shared value which must not be modified or freed."]
    pub fn lilv_ui_get_bundle_uri(ui: *const LilvUI) -> *const LilvNode;
}
extern "C" {
    #[doc = "Get the URI for a Plugin UI's shared library."]
    #[doc = "@param ui The Plugin UI"]
    #[doc = "@return a shared value which must not be modified or freed."]
    pub fn lilv_ui_get_binary_uri(ui: *const LilvUI) -> *const LilvNode;
}
pub type __builtin_va_list = [__va_list_tag; 1usize];
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct __va_list_tag {
    pub gp_offset: ::std::os::raw::c_uint,
    pub fp_offset: ::std::os::raw::c_uint,
    pub overflow_arg_area: *mut ::std::os::raw::c_void,
    pub reg_save_area: *mut ::std::os::raw::c_void,
}
#[test]
fn bindgen_test_layout___va_list_tag() {
    assert_eq!(
        ::std::mem::size_of::<__va_list_tag>(),
        24usize,
        concat!("Size of: ", stringify!(__va_list_tag))
    );
    assert_eq!(
        ::std::mem::align_of::<__va_list_tag>(),
        8usize,
        concat!("Alignment of ", stringify!(__va_list_tag))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<__va_list_tag>())).gp_offset as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(__va_list_tag),
            "::",
            stringify!(gp_offset)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<__va_list_tag>())).fp_offset as *const _ as usize },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(__va_list_tag),
            "::",
            stringify!(fp_offset)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<__va_list_tag>())).overflow_arg_area as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(__va_list_tag),
            "::",
            stringify!(overflow_arg_area)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<__va_list_tag>())).reg_save_area as *const _ as usize },
        16usize,
        concat!(
            "Offset of field: ",
            stringify!(__va_list_tag),
            "::",
            stringify!(reg_save_area)
        )
    );
}