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
|
<SECTION>
<FILE>sample</FILE>
IPATCH_SAMPLE_MAX_TRANSFORM_FUNCS
IPATCH_SAMPLE_FORMAT_MASK
IPATCH_SAMPLE_FORMAT_BITCOUNT
IPATCH_SAMPLE_WIDTH_MASK
IPATCH_SAMPLE_CHANNEL_MASK
IPATCH_SAMPLE_SIGN_MASK
IPATCH_SAMPLE_ENDIAN_MASK
IPATCH_SAMPLE_WIDTH_SHIFT
IPATCH_SAMPLE_CHANNEL_SHIFT
IPATCH_SAMPLE_SIGN_SHIFT
IPATCH_SAMPLE_ENDIAN_SHIFT
IpatchSampleWidth
IpatchSampleChannel
IpatchSampleChannelType
IPATCH_SAMPLE_MAX_CHANNELS
IpatchSampleSign
IpatchSampleEndian
IPATCH_SAMPLE_ENDIAN_HOST
IPATCH_SAMPLE_FORMAT_GET_WIDTH
IPATCH_SAMPLE_FORMAT_GET_CHANNELS
IPATCH_SAMPLE_FORMAT_GET_CHANNEL_COUNT
IPATCH_SAMPLE_FORMAT_IS_SIGNED
IPATCH_SAMPLE_FORMAT_IS_UNSIGNED
IPATCH_SAMPLE_FORMAT_IS_LENDIAN
IPATCH_SAMPLE_FORMAT_IS_BENDIAN
ipatch_sample_format_size
ipatch_sample_format_width
IPATCH_SAMPLE_MAP_CHANNEL
IPATCH_SAMPLE_MAP_GET_CHANNEL
IPATCH_SAMPLE_UNITY_CHANNEL_MAP
ipatch_sample_format_bit_width
ipatch_sample_format_verify
ipatch_sample_format_transform_verify
ipatch_sample_get_transform_funcs
<SUBSECTION Standard>
IPATCH_SAMPLE_FORMAT_IS_FLOATING
</SECTION>
<SECTION>
<FILE>IpatchSampleStoreSwap</FILE>
<TITLE>IpatchSampleStoreSwap</TITLE>
IpatchSampleStoreSwap
IPATCH_SAMPLE_STORE_SWAP_UNUSED_FLAG_SHIFT
ipatch_sample_store_swap_new
ipatch_sample_store_swap_get_unused_size
<SUBSECTION Standard>
IPATCH_SAMPLE_STORE_SWAP
IPATCH_IS_SAMPLE_STORE_SWAP
IPATCH_TYPE_SAMPLE_STORE_SWAP
ipatch_sample_store_swap_get_type
IPATCH_SAMPLE_STORE_SWAP_CLASS
IPATCH_IS_SAMPLE_STORE_SWAP_CLASS
</SECTION>
<SECTION>
<FILE>IpatchSampleStoreSndFile</FILE>
<TITLE>IpatchSampleStoreSndFile</TITLE>
IpatchSampleStoreSndFile
IPATCH_SAMPLE_STORE_SND_FILE_UNUSED_FLAG_SHIFT
ipatch_sample_store_snd_file_new
ipatch_sample_store_snd_file_init_read
ipatch_sample_store_snd_file_init_write
<SUBSECTION Standard>
IPATCH_SAMPLE_STORE_SND_FILE
IPATCH_IS_SAMPLE_STORE_SND_FILE
IPATCH_TYPE_SAMPLE_STORE_SND_FILE
ipatch_sample_store_snd_file_get_type
IPATCH_SAMPLE_STORE_SND_FILE_CLASS
IPATCH_IS_SAMPLE_STORE_SND_FILE_CLASS
</SECTION>
<SECTION>
<FILE>IpatchGigInst</FILE>
IpatchGigInstParams
<TITLE>IpatchGigInst</TITLE>
IpatchGigInst
ipatch_gig_inst_new
ipatch_gig_inst_first
ipatch_gig_inst_next
<SUBSECTION Standard>
IPATCH_GIG_INST
IPATCH_IS_GIG_INST
IPATCH_TYPE_GIG_INST
ipatch_gig_inst_get_type
IPATCH_GIG_INST_CLASS
IPATCH_IS_GIG_INST_CLASS
IPATCH_GIG_INST_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchPaste</FILE>
<TITLE>IpatchPaste</TITLE>
IpatchPaste
IpatchPasteChoice
IpatchPasteTestFunc
IpatchPasteExecFunc
IpatchPastePriority
IPATCH_PASTE_FLAGS_PRIORITY_MASK
ipatch_register_paste_handler
ipatch_is_paste_possible
ipatch_simple_paste
ipatch_paste_new
ipatch_paste_objects
ipatch_paste_resolve
ipatch_paste_finish
ipatch_paste_get_add_list
ipatch_paste_object_add
ipatch_paste_object_add_duplicate
ipatch_paste_object_add_duplicate_deep
ipatch_paste_object_add_convert
ipatch_paste_object_link
ipatch_paste_default_test_func
ipatch_paste_default_exec_func
<SUBSECTION Standard>
IPATCH_PASTE
IPATCH_IS_PASTE
IPATCH_TYPE_PASTE
ipatch_paste_get_type
IPATCH_PASTE_CLASS
IPATCH_IS_PASTE_CLASS
IPATCH_PASTE_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchVBankInst</FILE>
<TITLE>IpatchVBankInst</TITLE>
IpatchVBankInst
IPATCH_VBANK_INST_NAME_SIZE
ipatch_vbank_inst_new
ipatch_vbank_inst_get_regions
ipatch_vbank_inst_first
ipatch_vbank_inst_next
ipatch_vbank_inst_new_region
ipatch_vbank_inst_set_midi_locale
ipatch_vbank_inst_get_midi_locale
ipatch_vbank_inst_compare
<SUBSECTION Standard>
IPATCH_VBANK_INST
IPATCH_IS_VBANK_INST
IPATCH_TYPE_VBANK_INST
ipatch_vbank_inst_get_type
IPATCH_VBANK_INST_CLASS
IPATCH_IS_VBANK_INST_CLASS
IPATCH_VBANK_INST_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchGig</FILE>
<TITLE>IpatchGig</TITLE>
IpatchGig
IPATCH_GIG_DEFAULT_SAMPLE_GROUP_NAME
ipatch_gig_new
<SUBSECTION Standard>
IPATCH_GIG
IPATCH_IS_GIG
IPATCH_TYPE_GIG
ipatch_gig_get_type
IPATCH_GIG_CLASS
IPATCH_IS_GIG_CLASS
IPATCH_GIG_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchVBankRegion</FILE>
<TITLE>IpatchVBankRegion</TITLE>
IpatchVBankRegion
IpatchVBankRegionNoteRangeMode
IpatchVBankRegionRootNoteMode
ipatch_vbank_region_new
ipatch_vbank_region_first
ipatch_vbank_region_next
ipatch_vbank_region_set_id_props
ipatch_vbank_region_get_id_props
<SUBSECTION Standard>
IPATCH_VBANK_REGION
IPATCH_IS_VBANK_REGION
IPATCH_TYPE_VBANK_REGION
ipatch_vbank_region_get_type
IPATCH_VBANK_REGION_CLASS
IPATCH_IS_VBANK_REGION_CLASS
IPATCH_VBANK_REGION_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchDLS2Sample</FILE>
IpatchDLS2SampleInfo
<TITLE>IpatchDLS2Sample</TITLE>
IpatchDLS2Sample
IPATCH_DLS2_SAMPLE_INFO_INIT
IPATCH_DLS2_SAMPLE_INFO_FIRST_PROPERTY_ID
IPATCH_DLS2_SAMPLE_INFO_PROPERTY_COUNT
IpatchDLS2SampleFlags
IPATCH_DLS2_SAMPLE_LOOP_MASK
IPATCH_DLS2_SAMPLE_FLAGS_MASK
ipatch_dls2_sample_new
ipatch_dls2_sample_first
ipatch_dls2_sample_next
ipatch_dls2_sample_set_data
ipatch_dls2_sample_get_data
ipatch_dls2_sample_peek_data
ipatch_dls2_sample_set_blank
ipatch_dls2_sample_info_new
ipatch_dls2_sample_info_free
ipatch_dls2_sample_info_duplicate
ipatch_dls2_sample_info_init
ipatch_dls2_sample_info_install_class_properties
ipatch_dls2_sample_info_is_property_id_valid
ipatch_dls2_sample_info_set_property
ipatch_dls2_sample_info_get_property
ipatch_dls2_sample_info_notify_changes
<SUBSECTION Standard>
IPATCH_DLS2_SAMPLE
IPATCH_IS_DLS2_SAMPLE
IPATCH_TYPE_DLS2_SAMPLE
ipatch_dls2_sample_get_type
IPATCH_DLS2_SAMPLE_CLASS
IPATCH_IS_DLS2_SAMPLE_CLASS
IPATCH_DLS2_SAMPLE_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchState</FILE>
<TITLE>IpatchState</TITLE>
IpatchState
ipatch_state_new
ipatch_state_begin_group
ipatch_state_end_group
ipatch_state_set_active_group
ipatch_state_get_active_group
ipatch_state_record_item
ipatch_state_record
ipatch_state_retract
ipatch_state_undo
ipatch_state_redo
<SUBSECTION Standard>
IPATCH_STATE
IPATCH_IS_STATE
IPATCH_TYPE_STATE
ipatch_state_get_type
IPATCH_STATE_CLASS
IPATCH_IS_STATE_CLASS
IPATCH_STATE_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchVBank</FILE>
IPATCH_VBANK_INFO_COUNT
<TITLE>IpatchVBank</TITLE>
IpatchVBank
IPATCH_VBANK_PARSER_VERSION
ipatch_vbank_new
ipatch_vbank_get_insts
ipatch_vbank_find_inst
ipatch_vbank_make_unique_name
<SUBSECTION Standard>
IPATCH_VBANK
IPATCH_IS_VBANK
IPATCH_TYPE_VBANK
ipatch_vbank_get_type
IPATCH_VBANK_CLASS
IPATCH_IS_VBANK_CLASS
IPATCH_VBANK_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchStateGroup</FILE>
IpatchStateGroupFlags
<TITLE>IpatchStateGroup</TITLE>
IpatchStateGroup
<SUBSECTION Standard>
IPATCH_STATE_GROUP
IPATCH_IS_STATE_GROUP
IPATCH_TYPE_STATE_GROUP
ipatch_state_group_get_type
IPATCH_STATE_GROUP_CLASS
IPATCH_IS_STATE_GROUP_CLASS
IPATCH_STATE_GROUP_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchSF2Zone</FILE>
<TITLE>IpatchSF2Zone</TITLE>
IpatchSF2Zone
IPATCH_SF2_ZONE_UNUSED_FLAG_SHIFT
IPATCH_SF2_ZONE_GEN_AMT
IPATCH_SF2_ZONE_GEN_TEST_FLAG
IPATCH_SF2_ZONE_GEN_SET_FLAG
IPATCH_SF2_ZONE_GEN_CLEAR_FLAG
ipatch_sf2_zone_first
ipatch_sf2_zone_next
ipatch_sf2_zone_set_link_item
ipatch_sf2_zone_set_link_item_no_notify
ipatch_sf2_zone_get_link_item
ipatch_sf2_zone_peek_link_item
<SUBSECTION Standard>
IPATCH_SF2_ZONE
IPATCH_IS_SF2_ZONE
IPATCH_TYPE_SF2_ZONE
ipatch_sf2_zone_get_type
IPATCH_SF2_ZONE_CLASS
IPATCH_IS_SF2_ZONE_CLASS
IPATCH_SF2_ZONE_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchConverterSF2VoiceCache</FILE>
<TITLE>IpatchConverterSF2VoiceCache</TITLE>
IpatchConverterSF2VoiceCache
<SUBSECTION Standard>
IPATCH_CONVERTER_SF2_VOICE_CACHE
IPATCH_IS_CONVERTER_SF2_VOICE_CACHE
IPATCH_TYPE_CONVERTER_SF2_VOICE_CACHE
ipatch_converter_sf2_voice_cache_get_type
IPATCH_CONVERTER_SF2_VOICE_CACHE_CLASS
IPATCH_IS_CONVERTER_SF2_VOICE_CACHE_CLASS
</SECTION>
<SECTION>
<FILE>IpatchSF2</FILE>
<TITLE>IpatchSF2</TITLE>
IpatchSF2
IpatchSF2Flags
IPATCH_SF2_UNUSED_FLAG_SHIFT
IpatchSF2InfoType
IPATCH_SF2_INFO_COUNT
IPATCH_SF2_DEFAULT_ENGINE
ipatch_sf2_new
ipatch_sf2_get_presets
ipatch_sf2_get_insts
ipatch_sf2_get_samples
ipatch_sf2_set_file
ipatch_sf2_get_file
ipatch_sf2_get_info
ipatch_sf2_set_info
ipatch_sf2_get_info_array
ipatch_sf2_free_info_array
ipatch_sf2_info_id_is_valid
ipatch_sf2_get_info_max_size
ipatch_sf2_find_preset
ipatch_sf2_find_inst
ipatch_sf2_find_sample
ipatch_sf2_get_zone_references
ipatch_sf2_make_unique_name
<SUBSECTION Standard>
IPATCH_SF2
IPATCH_IS_SF2
IPATCH_TYPE_SF2
ipatch_sf2_get_type
IPATCH_SF2_CLASS
IPATCH_IS_SF2_CLASS
IPATCH_SF2_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchGigDimension</FILE>
IpatchGigDimensionType
IPATCH_GIG_DIMENSION_TYPE_MAX
<TITLE>IpatchGigDimension</TITLE>
IpatchGigDimension
ipatch_gig_dimension_new
ipatch_gig_dimension_first
ipatch_gig_dimension_next
<SUBSECTION Standard>
IPATCH_GIG_DIMENSION
IPATCH_IS_GIG_DIMENSION
IPATCH_TYPE_GIG_DIMENSION
ipatch_gig_dimension_get_type
IPATCH_GIG_DIMENSION_CLASS
IPATCH_IS_GIG_DIMENSION_CLASS
IPATCH_GIG_DIMENSION_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchSF2Preset</FILE>
<TITLE>IpatchSF2Preset</TITLE>
IpatchSF2Preset
ipatch_sf2_preset_new
ipatch_sf2_preset_get_zones
ipatch_sf2_preset_first
ipatch_sf2_preset_next
ipatch_sf2_preset_new_zone
ipatch_sf2_preset_set_name
ipatch_sf2_preset_get_name
ipatch_sf2_preset_set_midi_locale
ipatch_sf2_preset_get_midi_locale
ipatch_sf2_preset_compare
<SUBSECTION Standard>
IPATCH_SF2_PRESET
IPATCH_IS_SF2_PRESET
IPATCH_TYPE_SF2_PRESET
ipatch_sf2_preset_get_type
IPATCH_SF2_PRESET_CLASS
IPATCH_IS_SF2_PRESET_CLASS
IPATCH_SF2_PRESET_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchSndFile</FILE>
IPATCH_TYPE_SND_FILE_FORMAT
IPATCH_TYPE_SND_FILE_SUB_FORMAT
IpatchSndFileEndian
IPATCH_SND_FILE_DEFAULT_FORMAT
IPATCH_SND_FILE_DEFAULT_SUB_FORMAT
IPATCH_SND_FILE_DEFAULT_ENDIAN
<TITLE>IpatchSndFile</TITLE>
IpatchSndFile
ipatch_snd_file_new
ipatch_snd_file_format_get_type
ipatch_snd_file_sub_format_get_type
ipatch_snd_file_format_get_sub_formats
ipatch_snd_file_sample_format_to_sub_format
<SUBSECTION Standard>
IPATCH_SND_FILE
IPATCH_IS_SND_FILE
IPATCH_TYPE_SND_FILE
ipatch_snd_file_get_type
IPATCH_SND_FILE_CLASS
IPATCH_IS_SND_FILE_CLASS
IPATCH_SND_FILE_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchSF2Writer</FILE>
<TITLE>IpatchSF2Writer</TITLE>
IpatchSF2Writer
ipatch_sf2_writer_new
ipatch_sf2_writer_set_patch
ipatch_sf2_writer_set_file_handle
ipatch_sf2_writer_save
ipatch_sf2_write_phdr
ipatch_sf2_write_ihdr
ipatch_sf2_write_shdr
ipatch_sf2_write_bag
ipatch_sf2_write_mod
ipatch_sf2_write_gen
<SUBSECTION Standard>
IPATCH_SF2_WRITER
IPATCH_IS_SF2_WRITER
IPATCH_TYPE_SF2_WRITER
ipatch_sf2_writer_get_type
IPATCH_SF2_WRITER_CLASS
IPATCH_IS_SF2_WRITER_CLASS
</SECTION>
<SECTION>
<FILE>IpatchGigSample</FILE>
<TITLE>IpatchGigSample</TITLE>
IpatchGigSample
ipatch_gig_sample_new
ipatch_gig_sample_first
ipatch_gig_sample_next
<SUBSECTION Standard>
IPATCH_GIG_SAMPLE
IPATCH_IS_GIG_SAMPLE
IPATCH_TYPE_GIG_SAMPLE
ipatch_gig_sample_get_type
IPATCH_GIG_SAMPLE_CLASS
IPATCH_IS_GIG_SAMPLE_CLASS
IPATCH_GIG_SAMPLE_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchConverter</FILE>
<TITLE>IpatchConverter</TITLE>
IpatchConverter
IpatchConverterLogType
IPATCH_CONVERTER_LOG_TYPE_MASK
IPATCH_CONVERTER_LOG_MSG_ALLOC
IPATCH_CONVERTER_INPUT
IPATCH_CONVERTER_OUTPUT
IpatchConverterCount
IpatchConverterFlags
IpatchConverterPriority
ipatch_convert_objects
ipatch_convert_object_to_type
ipatch_convert_object_to_type_multi
ipatch_convert_object_to_type_multi_set
ipatch_create_converter
ipatch_register_converter_map
ipatch_find_converter
ipatch_lookup_converter_info
ipatch_converter_add_input
ipatch_converter_add_output
ipatch_converter_add_inputs
ipatch_converter_add_outputs
ipatch_converter_get_input
ipatch_converter_get_output
ipatch_converter_get_inputs
ipatch_converter_get_outputs
ipatch_converter_verify
ipatch_converter_init
ipatch_converter_convert
ipatch_converter_reset
ipatch_converter_get_notes
ipatch_converter_log
ipatch_converter_log_printf
ipatch_converter_log_next
ipatch_converter_set_link_funcs
<SUBSECTION Standard>
IPATCH_CONVERTER
IPATCH_IS_CONVERTER
IPATCH_TYPE_CONVERTER
ipatch_converter_get_type
IPATCH_CONVERTER_CLASS
IPATCH_IS_CONVERTER_CLASS
IPATCH_CONVERTER_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchSF2File</FILE>
IpatchSF2Phdr
IpatchSF2Ihdr
IpatchSF2Shdr
IpatchSF2Bag
<TITLE>IpatchSF2File</TITLE>
IpatchSF2File
IPATCH_SFONT_FOURCC_SFBK
IPATCH_SFONT_FOURCC_INFO
IPATCH_SFONT_FOURCC_SDTA
IPATCH_SFONT_FOURCC_PDTA
IPATCH_SFONT_FOURCC_SMPL
IPATCH_SFONT_FOURCC_SM24
IPATCH_SFONT_FOURCC_PHDR
IPATCH_SFONT_FOURCC_PBAG
IPATCH_SFONT_FOURCC_PMOD
IPATCH_SFONT_FOURCC_PGEN
IPATCH_SFONT_FOURCC_INST
IPATCH_SFONT_FOURCC_IBAG
IPATCH_SFONT_FOURCC_IMOD
IPATCH_SFONT_FOURCC_IGEN
IPATCH_SFONT_FOURCC_SHDR
IPATCH_SFONT_FOURCC_IFIL
IPATCH_SFONT_FOURCC_ISNG
IPATCH_SFONT_FOURCC_INAM
IPATCH_SFONT_FOURCC_IROM
IPATCH_SFONT_FOURCC_IVER
IPATCH_SFONT_FOURCC_ICRD
IPATCH_SFONT_FOURCC_IENG
IPATCH_SFONT_FOURCC_IPRD
IPATCH_SFONT_FOURCC_ICOP
IPATCH_SFONT_FOURCC_ICMT
IPATCH_SFONT_FOURCC_ISFT
IPATCH_SFONT_VERSION_SIZE
IPATCH_SFONT_PHDR_SIZE
IPATCH_SFONT_INST_SIZE
IPATCH_SFONT_SHDR_SIZE
IPATCH_SFONT_BAG_SIZE
IPATCH_SFONT_MOD_SIZE
IPATCH_SFONT_GEN_SIZE
IPATCH_SFONT_NAME_SIZE
IpatchSF2FileSampleType
ipatch_sf2_file_new
ipatch_sf2_file_set_sample_pos
ipatch_sf2_file_get_sample_pos
ipatch_sf2_file_set_sample_size
ipatch_sf2_file_get_sample_size
ipatch_sf2_file_set_sample24_pos
ipatch_sf2_file_get_sample24_pos
<SUBSECTION Standard>
IPATCH_SF2_FILE
IPATCH_IS_SF2_FILE
IPATCH_TYPE_SF2_FILE
ipatch_sf2_file_get_type
IPATCH_SF2_FILE_CLASS
IPATCH_IS_SF2_FILE_CLASS
IPATCH_SF2_FILE_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchGigSubRegion</FILE>
<TITLE>IpatchGigSubRegion</TITLE>
IpatchGigSubRegion
IpatchGigSubRegionFlags
IPATCH_GIG_SUB_REGION_UNUSED_FLAG_SHIFT
ipatch_gig_sub_region_new
ipatch_gig_sub_region_first
ipatch_gig_sub_region_next
ipatch_gig_sub_region_get_sample
ipatch_gig_sub_region_set_sample
<SUBSECTION Standard>
IPATCH_GIG_SUB_REGION
IPATCH_IS_GIG_SUB_REGION
IPATCH_TYPE_GIG_SUB_REGION
ipatch_gig_sub_region_get_type
IPATCH_GIG_SUB_REGION_CLASS
IPATCH_IS_GIG_SUB_REGION_CLASS
IPATCH_GIG_SUB_REGION_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchSF2Sample</FILE>
<TITLE>IpatchSF2Sample</TITLE>
IpatchSF2Sample
IpatchSF2SampleChannel
IPATCH_SF2_SAMPLE_RATE_MIN
IPATCH_SF2_SAMPLE_RATE_MAX
IPATCH_SF2_SAMPLE_LENGTH_MIN
IPATCH_SF2_SAMPLE_FLAG_ROM
IPATCH_SAMPLE_UNUSED_FLAG_SHIFT
ipatch_sf2_sample_new
ipatch_sf2_sample_first
ipatch_sf2_sample_next
ipatch_sf2_sample_set_name
ipatch_sf2_sample_get_name
ipatch_sf2_sample_set_data
ipatch_sf2_sample_get_data
ipatch_sf2_sample_peek_data
ipatch_sf2_sample_set_linked
ipatch_sf2_sample_get_linked
ipatch_sf2_sample_peek_linked
ipatch_sf2_sample_set_blank
<SUBSECTION Standard>
IPATCH_SF2_SAMPLE
IPATCH_IS_SF2_SAMPLE
IPATCH_TYPE_SF2_SAMPLE
ipatch_sf2_sample_get_type
IPATCH_SF2_SAMPLE_CLASS
IPATCH_IS_SF2_SAMPLE_CLASS
IPATCH_SF2_SAMPLE_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchSF2Reader</FILE>
<TITLE>IpatchSF2Reader</TITLE>
IpatchSF2Reader
ipatch_sf2_reader_new
ipatch_sf2_reader_set_file_handle
ipatch_sf2_reader_load
ipatch_sf2_load_phdr
ipatch_sf2_load_ihdr
ipatch_sf2_load_shdr
ipatch_sf2_load_bag
ipatch_sf2_load_mod
ipatch_sf2_load_gen
<SUBSECTION Standard>
IPATCH_SF2_READER
IPATCH_IS_SF2_READER
IPATCH_TYPE_SF2_READER
ipatch_sf2_reader_get_type
IPATCH_SF2_READER_CLASS
IPATCH_IS_SF2_READER_CLASS
</SECTION>
<SECTION>
<FILE>IpatchSF2IZone</FILE>
<TITLE>IpatchSF2IZone</TITLE>
IpatchSF2IZone
IPATCH_SF2_IZONE_UNUSED_FLAG_SHIFT
ipatch_sf2_izone_new
ipatch_sf2_izone_first
ipatch_sf2_izone_next
ipatch_sf2_izone_set_sample
ipatch_sf2_izone_get_sample
ipatch_sf2_izone_get_stereo_link
<SUBSECTION Standard>
IPATCH_SF2_IZONE
IPATCH_IS_SF2_IZONE
IPATCH_TYPE_SF2_IZONE
ipatch_sf2_izone_get_type
IPATCH_SF2_IZONE_CLASS
IPATCH_IS_SF2_IZONE_CLASS
IPATCH_SF2_IZONE_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchSampleStoreCache</FILE>
<TITLE>IpatchSampleStoreCache</TITLE>
IpatchSampleStoreCache
ipatch_sample_store_cache_get_location
ipatch_sample_store_cache_get_channel_map
ipatch_sample_store_cache_get_open_count
IPATCH_SAMPLE_STORE_CACHE_UNUSED_FLAG_SHIFT
ipatch_sample_store_cache_new
ipatch_sample_store_cache_open
ipatch_sample_store_cache_close
<SUBSECTION Standard>
IPATCH_SAMPLE_STORE_CACHE
IPATCH_IS_SAMPLE_STORE_CACHE
IPATCH_TYPE_SAMPLE_STORE_CACHE
ipatch_sample_store_cache_get_type
IPATCH_SAMPLE_STORE_CACHE_CLASS
IPATCH_IS_SAMPLE_STORE_CACHE_CLASS
</SECTION>
<SECTION>
<FILE>IpatchDLSWriter</FILE>
<TITLE>IpatchDLSWriter</TITLE>
IpatchDLSWriter
ipatch_dls_writer_new
ipatch_dls_writer_set_patch
ipatch_dls_writer_set_file_handle
ipatch_dls_writer_save
<SUBSECTION Standard>
IPATCH_DLS_WRITER
IPATCH_IS_DLS_WRITER
IPATCH_TYPE_DLS_WRITER
ipatch_dls_writer_get_type
IPATCH_DLS_WRITER_CLASS
IPATCH_IS_DLS_WRITER_CLASS
</SECTION>
<SECTION>
<FILE>IpatchItem</FILE>
IpatchItemCopyLinkFunc
<TITLE>IpatchItem</TITLE>
IpatchItem
IpatchItemFlags
IPATCH_ITEM_UNUSED_FLAG_SHIFT
IPATCH_ITEM_WLOCK
IPATCH_ITEM_WUNLOCK
IPATCH_ITEM_RLOCK
IPATCH_ITEM_RUNLOCK
IPATCH_ITEM_PROP_NOTIFY_SET_EVENT
IpatchItemPropCallback
IpatchItemPropDisconnect
IPATCH_ITEM_COPY_LINK_FUNC
ipatch_item_pspec_title
ipatch_item_set_parent
ipatch_item_unparent
ipatch_item_get_parent
ipatch_item_peek_parent
ipatch_item_get_base
ipatch_item_peek_base
ipatch_item_get_ancestor_by_type
ipatch_item_peek_ancestor_by_type
ipatch_item_remove
ipatch_item_changed
ipatch_item_get_property_fast
ipatch_item_copy
ipatch_item_copy_link_func
ipatch_item_copy_replace
ipatch_item_duplicate
ipatch_item_duplicate_link_func
ipatch_item_duplicate_replace
ipatch_item_duplicate_deep
ipatch_item_copy_link_func_deep
ipatch_item_copy_link_func_hash
ipatch_item_type_can_conflict
ipatch_item_type_get_unique_specs
ipatch_item_get_unique_props
ipatch_item_test_conflict
ipatch_item_set_atomic
ipatch_item_get_atomic
ipatch_item_first
ipatch_item_next
ipatch_item_prop_notify
ipatch_item_prop_notify_by_name
ipatch_item_prop_connect
ipatch_item_prop_connect_by_name
ipatch_item_prop_disconnect
ipatch_item_prop_disconnect_matched
ipatch_item_prop_disconnect_by_name
<SUBSECTION Standard>
IPATCH_ITEM
IPATCH_IS_ITEM
IPATCH_TYPE_ITEM
ipatch_item_get_type
IPATCH_ITEM_CLASS
IPATCH_IS_ITEM_CLASS
IPATCH_ITEM_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchDLS2</FILE>
<TITLE>IpatchDLS2</TITLE>
IpatchDLS2
IpatchDLS2Flags
IPATCH_DLS2_UNUSED_FLAG_SHIFT
ipatch_dls2_new
ipatch_dls2_get_insts
ipatch_dls2_get_samples
ipatch_dls2_set_file
ipatch_dls2_get_file
ipatch_dls2_get_info
ipatch_dls2_set_info
ipatch_dls2_make_unique_name
ipatch_dls2_find_inst
ipatch_dls2_find_sample
ipatch_dls2_get_region_references
<SUBSECTION Standard>
IPATCH_DLS2
IPATCH_IS_DLS2
IPATCH_TYPE_DLS2
ipatch_dls2_get_type
IPATCH_DLS2_CLASS
IPATCH_IS_DLS2_CLASS
IPATCH_DLS2_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchStateItem</FILE>
IpatchStateItemType
IpatchStateItemFlags
IPATCH_STATE_ITEM_UNUSED_FLAG_SHIFT
<TITLE>IpatchStateItem</TITLE>
IpatchStateItem
ipatch_state_item_restore
ipatch_state_item_depend
ipatch_state_item_conflict
ipatch_state_item_describe
<SUBSECTION Standard>
IPATCH_STATE_ITEM
IPATCH_IS_STATE_ITEM
IPATCH_TYPE_STATE_ITEM
ipatch_state_item_get_type
IPATCH_STATE_ITEM_CLASS
IPATCH_IS_STATE_ITEM_CLASS
IPATCH_STATE_ITEM_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchSF2Inst</FILE>
<TITLE>IpatchSF2Inst</TITLE>
IpatchSF2Inst
ipatch_sf2_inst_new
ipatch_sf2_inst_get_zones
ipatch_sf2_inst_first
ipatch_sf2_inst_next
ipatch_sf2_inst_new_zone
ipatch_sf2_inst_set_name
ipatch_sf2_inst_get_name
<SUBSECTION Standard>
IPATCH_SF2_INST
IPATCH_IS_SF2_INST
IPATCH_TYPE_SF2_INST
ipatch_sf2_inst_get_type
IPATCH_SF2_INST_CLASS
IPATCH_IS_SF2_INST_CLASS
IPATCH_SF2_INST_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchSampleStoreRom</FILE>
<TITLE>IpatchSampleStoreRom</TITLE>
IpatchSampleStoreRom
ipatch_sample_store_rom_new
<SUBSECTION Standard>
IPATCH_SAMPLE_STORE_ROM
IPATCH_IS_SAMPLE_STORE_ROM
IPATCH_TYPE_SAMPLE_STORE_ROM
ipatch_sample_store_rom_get_type
IPATCH_SAMPLE_STORE_ROM_CLASS
IPATCH_IS_SAMPLE_STORE_ROM_CLASS
</SECTION>
<SECTION>
<FILE>IpatchBase</FILE>
IpatchBaseFlags
IPATCH_BASE_UNUSED_FLAG_SHIFT
<TITLE>IpatchBase</TITLE>
IpatchBase
IPATCH_BASE_DEFAULT_NAME
ipatch_base_set_file
ipatch_base_get_file
ipatch_base_set_file_name
ipatch_base_get_file_name
ipatch_base_find_unused_midi_locale
ipatch_base_find_item_by_midi_locale
<SUBSECTION Standard>
IPATCH_BASE
IPATCH_IS_BASE
IPATCH_TYPE_BASE
ipatch_base_get_type
IPATCH_BASE_CLASS
IPATCH_IS_BASE_CLASS
IPATCH_BASE_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchSF2ModItem</FILE>
IpatchSF2ModItem
IpatchSF2ModItemIface
ipatch_sf2_mod_item_add
ipatch_sf2_mod_item_get_mods
ipatch_sf2_mod_item_set_mods
ipatch_sf2_mod_item_insert
ipatch_sf2_mod_item_remove
ipatch_sf2_mod_item_change
ipatch_sf2_mod_item_count
<SUBSECTION Standard>
IPATCH_SF2_MOD_ITEM
IPATCH_IS_SF2_MOD_ITEM
IPATCH_TYPE_SF2_MOD_ITEM
ipatch_sf2_mod_item_get_type
IPATCH_SF2_MOD_ITEM_CLASS
IPATCH_SF2_MOD_ITEM_GET_IFACE
</SECTION>
<SECTION>
<FILE>IpatchDLS2Inst</FILE>
<TITLE>IpatchDLS2Inst</TITLE>
IpatchDLS2Inst
IPATCH_DLS2_INST_BANK_MAX
IpatchDLS2InstFlags
IPATCH_DLS2_INST_UNUSED_FLAG_SHIFT
ipatch_dls2_inst_new
ipatch_dls2_inst_get_regions
ipatch_dls2_inst_first
ipatch_dls2_inst_next
ipatch_dls2_inst_get_info
ipatch_dls2_inst_set_info
ipatch_dls2_inst_set_midi_locale
ipatch_dls2_inst_get_midi_locale
ipatch_dls2_inst_compare
ipatch_dls2_inst_get_conns
ipatch_dls2_inst_set_conn
ipatch_dls2_inst_unset_conn
ipatch_dls2_inst_unset_all_conns
ipatch_dls2_inst_conn_count
<SUBSECTION Standard>
IPATCH_DLS2_INST
IPATCH_IS_DLS2_INST
IPATCH_TYPE_DLS2_INST
ipatch_dls2_inst_get_type
IPATCH_DLS2_INST_CLASS
IPATCH_IS_DLS2_INST_CLASS
IPATCH_DLS2_INST_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchFile</FILE>
IpatchFileIOFuncs
IpatchFileHandle
<TITLE>IpatchFile</TITLE>
IpatchFile
IpatchFileFlags
IpatchFileIdentifyOrder
IPATCH_FILE_UNUSED_FLAG_SHIFT
IPATCH_FILE_NEED_SWAP
IPATCH_FILE_BIG_ENDIAN
IPATCH_FILE_SWAP16
IPATCH_FILE_SWAP32
IPATCH_FILE_SWAP64
IPATCH_IS_FILE_HANDLE
ipatch_file_new
ipatch_file_set_name
ipatch_file_get_name
ipatch_file_open
ipatch_file_assign_fd
ipatch_file_assign_io_channel
ipatch_file_get_io_channel
ipatch_file_get_fd
ipatch_file_close
ipatch_file_get_position
ipatch_file_update_position
ipatch_file_read
ipatch_file_read_eof
ipatch_file_write
ipatch_file_skip
ipatch_file_seek
ipatch_file_seek_eof
ipatch_file_get_size
ipatch_file_identify
ipatch_file_identify_by_ext
ipatch_file_identify_open
ipatch_file_set_little_endian
ipatch_file_set_big_endian
ipatch_file_read_u8
ipatch_file_read_u16
ipatch_file_read_u32
ipatch_file_read_u64
ipatch_file_read_s8
ipatch_file_read_s16
ipatch_file_read_s32
ipatch_file_read_s64
ipatch_file_write_u8
ipatch_file_write_u16
ipatch_file_write_u32
ipatch_file_write_u64
ipatch_file_write_s8
ipatch_file_write_s16
ipatch_file_write_s32
ipatch_file_write_s64
ipatch_file_buf_load
ipatch_file_buf_read
ipatch_file_buf_write
ipatch_file_buf_zero
ipatch_file_buf_memset
ipatch_file_buf_commit
ipatch_file_buf_skip
ipatch_file_buf_seek
ipatch_file_buf_read_u8
ipatch_file_buf_read_u16
ipatch_file_buf_read_u32
ipatch_file_buf_read_u64
ipatch_file_buf_read_s8
ipatch_file_buf_read_s16
ipatch_file_buf_read_s32
ipatch_file_buf_read_s64
ipatch_file_buf_write_u8
ipatch_file_buf_write_u16
ipatch_file_buf_write_u32
ipatch_file_buf_write_u64
ipatch_file_buf_write_s8
ipatch_file_buf_write_s16
ipatch_file_buf_write_s32
ipatch_file_buf_write_s64
ipatch_file_set_iofuncs_static
ipatch_file_set_iofuncs
ipatch_file_get_iofuncs
ipatch_file_set_iofuncs_null
ipatch_file_default_open_method
ipatch_file_default_close_method
ipatch_file_default_read_method
ipatch_file_default_write_method
ipatch_file_default_seek_method
ipatch_file_default_getfd_method
ipatch_file_default_get_size_method
<SUBSECTION Standard>
IPATCH_FILE
IPATCH_IS_FILE
IPATCH_TYPE_FILE
ipatch_file_get_type
IPATCH_FILE_CLASS
IPATCH_IS_FILE_CLASS
IPATCH_FILE_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchContainer</FILE>
IpatchContainerCallback
IpatchContainerDisconnect
<TITLE>IpatchContainer</TITLE>
IpatchContainer
IPATCH_CONTAINER_UNUSED_FLAG_SHIFT
IPATCH_CONTAINER_ERRMSG_INVALID_CHILD_2
ipatch_container_get_children
ipatch_container_get_child_types
ipatch_container_get_virtual_types
ipatch_container_type_get_child_types
ipatch_container_insert
ipatch_container_append
ipatch_container_add
ipatch_container_prepend
ipatch_container_remove
ipatch_container_remove_all
ipatch_container_count
ipatch_container_make_unique
ipatch_container_add_unique
ipatch_container_init_iter
ipatch_container_insert_iter
ipatch_container_remove_iter
ipatch_container_add_notify
ipatch_container_remove_notify
ipatch_container_add_connect
ipatch_container_remove_connect
ipatch_container_add_disconnect
ipatch_container_add_disconnect_matched
ipatch_container_remove_disconnect
ipatch_container_remove_disconnect_matched
<SUBSECTION Standard>
IPATCH_CONTAINER
IPATCH_IS_CONTAINER
IPATCH_TYPE_CONTAINER
ipatch_container_get_type
IPATCH_CONTAINER_CLASS
IPATCH_IS_CONTAINER_CLASS
IPATCH_CONTAINER_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchDLSFile</FILE>
<TITLE>IpatchDLSFile</TITLE>
IpatchDLSFile
IPATCH_DLS_FOURCC_DLS
IPATCH_DLS_FOURCC_COLH
IPATCH_DLS_FOURCC_WVPL
IPATCH_DLS_FOURCC_DWPL
IPATCH_DLS_FOURCC_PTBL
IPATCH_DLS_FOURCC_PATH
IPATCH_DLS_FOURCC_WAVE
IPATCH_DLS_FOURCC_LINS
IPATCH_DLS_FOURCC_INS
IPATCH_DLS_FOURCC_INSH
IPATCH_DLS_FOURCC_LRGN
IPATCH_DLS_FOURCC_RGN
IPATCH_DLS_FOURCC_RGNH
IPATCH_DLS_FOURCC_LART
IPATCH_DLS_FOURCC_ART1
IPATCH_DLS_FOURCC_WLNK
IPATCH_DLS_FOURCC_WSMP
IPATCH_DLS_FOURCC_VERS
IPATCH_DLS_FOURCC_RGN2
IPATCH_DLS_FOURCC_LAR2
IPATCH_DLS_FOURCC_ART2
IPATCH_DLS_FOURCC_CDL
IPATCH_DLS_FOURCC_DLID
IPATCH_DLS_FOURCC_INFO
IPATCH_DLS_FOURCC_FMT
IPATCH_DLS_FOURCC_DATA
IPATCH_DLS_FOURCC_IARL
IPATCH_DLS_FOURCC_IART
IPATCH_DLS_FOURCC_ICMS
IPATCH_DLS_FOURCC_ICMT
IPATCH_DLS_FOURCC_ICOP
IPATCH_DLS_FOURCC_ICRD
IPATCH_DLS_FOURCC_IENG
IPATCH_DLS_FOURCC_IGNR
IPATCH_DLS_FOURCC_IKEY
IPATCH_DLS_FOURCC_IMED
IPATCH_DLS_FOURCC_INAM
IPATCH_DLS_FOURCC_IPRD
IPATCH_DLS_FOURCC_ISBJ
IPATCH_DLS_FOURCC_ISFT
IPATCH_DLS_FOURCC_ISRC
IPATCH_DLS_FOURCC_ISRF
IPATCH_DLS_FOURCC_ITCH
IPATCH_DLS_VERS_SIZE
IPATCH_DLS_INSH_SIZE
IPATCH_DLS_RGNH_SIZE
IPATCH_DLS_RGNH_LAYER_SIZE
IPATCH_DLS_WLNK_SIZE
IPATCH_DLS_WSMP_HEADER_SIZE
IPATCH_DLS_WSMP_LOOP_SIZE
IPATCH_DLS_ART_HEADER_SIZE
IPATCH_DLS_CONN_SIZE
IPATCH_DLS_PTBL_HEADER_SIZE
IPATCH_DLS_POOLCUE_SIZE
IPATCH_DLS_WAVE_FMT_SIZE
IPATCH_DLS_DLID_SIZE
IPATCH_DLS_INSH_BANK_MASK
IPATCH_DLS_INSH_BANK_PERCUSSION
IPATCH_DLS_RGNH_OPTION_SELF_NON_EXCLUSIVE
IPATCH_DLS_WLNK_PHASE_MASTER
IPATCH_DLS_WLNK_MULTI_CHANNEL
IPATCH_DLS_WSMP_NO_TRUNCATION
IPATCH_DLS_WSMP_NO_COMPRESSION
IPATCH_DLS_WSMP_LOOP_FORWARD
IPATCH_DLS_WSMP_LOOP_RELEASE
ipatch_dls_file_new
<SUBSECTION Standard>
IPATCH_DLS_FILE
IPATCH_IS_DLS_FILE
IPATCH_TYPE_DLS_FILE
ipatch_dls_file_get_type
IPATCH_DLS_FILE_CLASS
IPATCH_IS_DLS_FILE_CLASS
IPATCH_DLS_FILE_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchSampleStoreSplit24</FILE>
<TITLE>IpatchSampleStoreSplit24</TITLE>
IpatchSampleStoreSplit24
ipatch_sample_store_split24_new
<SUBSECTION Standard>
IPATCH_SAMPLE_STORE_SPLIT24
IPATCH_IS_SAMPLE_STORE_SPLIT24
IPATCH_TYPE_SAMPLE_STORE_SPLIT24
ipatch_sample_store_split24_get_type
IPATCH_SAMPLE_STORE_SPLIT24_CLASS
IPATCH_IS_SAMPLE_STORE_SPLIT24_CLASS
</SECTION>
<SECTION>
<FILE>IpatchSF2VoiceCache</FILE>
IpatchSF2Voice
IpatchSF2VoiceUpdate
IpatchSF2VoiceSelInfo
IpatchSF2VoiceCacheItemFunc
<TITLE>IpatchSF2VoiceCache</TITLE>
IpatchSF2VoiceCache
IpatchSF2VoiceCacheUpdateHandler
IpatchSF2VoiceSelType
IPATCH_SF2_VOICE_CACHE_MAX_SEL_VALUES
IPATCH_SF2_VOICE_SEL_WILDCARD
ipatch_sf2_voice_cache_declare_item
IPATCH_SF2_VOICE_CACHE_GET_VOICE
ipatch_sf2_voice_cache_new
ipatch_sf2_voice_cache_set_default_mods
ipatch_sf2_voice_cache_add_voice
ipatch_sf2_voice_cache_set_voice_range
ipatch_sf2_voice_set_sample_data
ipatch_sf2_voice_cache_sample_data
ipatch_sf2_voice_copy
ipatch_sf2_voice_cache_optimize
ipatch_sf2_voice_cache_select
ipatch_sf2_voice_cache_update
<SUBSECTION Standard>
IPATCH_SF2_VOICE_CACHE
IPATCH_IS_SF2_VOICE_CACHE
IPATCH_TYPE_SF2_VOICE_CACHE
ipatch_sf2_voice_cache_get_type
IPATCH_SF2_VOICE_CACHE_CLASS
IPATCH_IS_SF2_VOICE_CACHE_CLASS
</SECTION>
<SECTION>
<FILE>IpatchDLS2Region</FILE>
IpatchDLS2ParamArray
IpatchDLS2Param
<TITLE>IpatchDLS2Region</TITLE>
IpatchDLS2Region
IpatchDLS2RegionChannelType
IPATCH_DLS2_REGION_CHANNEL_MONO
IpatchDLS2RegionFlags
IPATCH_DLS2_REGION_FLAG_MASK
IPATCH_DLS2_REGION_UNUSED_FLAG_SHIFT
ipatch_dls2_region_new
ipatch_dls2_region_first
ipatch_dls2_region_next
ipatch_dls2_region_get_info
ipatch_dls2_region_set_info
ipatch_dls2_region_set_sample
ipatch_dls2_region_get_sample
ipatch_dls2_region_peek_sample
ipatch_dls2_region_set_note_range
ipatch_dls2_region_set_velocity_range
ipatch_dls2_region_in_range
ipatch_dls2_region_set_param
ipatch_dls2_region_set_param_array
ipatch_dls2_region_get_conns
ipatch_dls2_region_set_conn
ipatch_dls2_region_unset_conn
ipatch_dls2_region_unset_all_conns
ipatch_dls2_region_conn_count
ipatch_dls2_region_channel_map_stereo
<SUBSECTION Standard>
IPATCH_DLS2_REGION
IPATCH_IS_DLS2_REGION
IPATCH_TYPE_DLS2_REGION
ipatch_dls2_region_get_type
IPATCH_DLS2_REGION_CLASS
IPATCH_IS_DLS2_REGION_CLASS
IPATCH_DLS2_REGION_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchVirtualContainer</FILE>
IPATCH_VIRTUAL_CONTAINER_CREATE
<TITLE>IpatchVirtualContainer</TITLE>
IpatchVirtualContainer
IpatchVirtualContainerConformFunc
<SUBSECTION Standard>
IPATCH_VIRTUAL_CONTAINER
IPATCH_IS_VIRTUAL_CONTAINER
IPATCH_TYPE_VIRTUAL_CONTAINER
ipatch_virtual_container_get_type
IPATCH_VIRTUAL_CONTAINER_CLASS
</SECTION>
<SECTION>
<FILE>IpatchSample</FILE>
IpatchSample
IpatchSampleIface
IpatchSampleHandle
IpatchSampleHandleOpenFunc
IpatchSampleHandleCloseFunc
IpatchSampleHandleReadFunc
IpatchSampleHandleWriteFunc
IpatchSampleLoopType
IPATCH_SAMPLE_FORMAT_DEFAULT
IPATCH_SAMPLE_RATE_MIN
IPATCH_SAMPLE_RATE_MAX
IPATCH_SAMPLE_RATE_DEFAULT
IPATCH_SAMPLE_ROOT_NOTE_DEFAULT
IPATCH_SAMPLE_LOOP_TYPE_TERM
IPATCH_SAMPLE_HANDLE_FORMAT
ipatch_sample_get_loop_types
ipatch_sample_type_get_loop_types
ipatch_sample_set_format
ipatch_sample_get_format
ipatch_sample_set_size
ipatch_sample_get_size
ipatch_sample_get_frame_size
ipatch_sample_get_sample_data
ipatch_sample_set_sample_data
ipatch_sample_read
ipatch_sample_write
ipatch_sample_read_transform
ipatch_sample_write_transform
ipatch_sample_copy
ipatch_sample_save_to_file
ipatch_sample_handle_open
ipatch_sample_handle_close
ipatch_sample_handle_get_transform
ipatch_sample_handle_set_transform
ipatch_sample_handle_get_format
ipatch_sample_handle_get_frame_size
ipatch_sample_handle_get_max_frames
ipatch_sample_handle_read
ipatch_sample_handle_write
ipatch_sample_handle_cascade_open
ipatch_sample_install_property
ipatch_sample_install_property_readonly
ipatch_sample_new_property_param_spec
<SUBSECTION Standard>
IPATCH_SAMPLE
IPATCH_IS_SAMPLE
IPATCH_TYPE_SAMPLE
ipatch_sample_get_type
IPATCH_SAMPLE_CLASS
IPATCH_SAMPLE_GET_IFACE
</SECTION>
<SECTION>
<FILE>IpatchSampleStoreFile</FILE>
<TITLE>IpatchSampleStoreFile</TITLE>
IpatchSampleStoreFile
IPATCH_SAMPLE_STORE_FILE_UNUSED_FLAG_SHIFT
ipatch_sample_store_file_new
<SUBSECTION Standard>
IPATCH_SAMPLE_STORE_FILE
IPATCH_IS_SAMPLE_STORE_FILE
IPATCH_TYPE_SAMPLE_STORE_FILE
ipatch_sample_store_file_get_type
IPATCH_SAMPLE_STORE_FILE_CLASS
IPATCH_IS_SAMPLE_STORE_FILE_CLASS
</SECTION>
<SECTION>
<FILE>IpatchList</FILE>
<TITLE>IpatchList</TITLE>
IpatchList
ipatch_list_new
ipatch_list_duplicate
ipatch_list_init_iter
<SUBSECTION Standard>
IPATCH_LIST
IPATCH_IS_LIST
IPATCH_TYPE_LIST
ipatch_list_get_type
IPATCH_LIST_CLASS
IPATCH_IS_LIST_CLASS
</SECTION>
<SECTION>
<FILE>IpatchSampleStore</FILE>
<TITLE>IpatchSampleStore</TITLE>
IpatchSampleStore
IPATCH_SAMPLE_STORE_FORMAT_SHIFT
ipatch_sample_store_get_format
ipatch_sample_store_get_size
ipatch_sample_store_get_rate
ipatch_sample_store_get_size_bytes
IPATCH_SAMPLE_STORE_UNUSED_FLAG_SHIFT
ipatch_sample_store_first
ipatch_sample_store_next
<SUBSECTION Standard>
IPATCH_SAMPLE_STORE
IPATCH_IS_SAMPLE_STORE
IPATCH_TYPE_SAMPLE_STORE
ipatch_sample_store_get_type
IPATCH_SAMPLE_STORE_CLASS
IPATCH_IS_SAMPLE_STORE_CLASS
IPATCH_SAMPLE_STORE_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchSF2PZone</FILE>
<TITLE>IpatchSF2PZone</TITLE>
IpatchSF2PZone
ipatch_sf2_pzone_new
ipatch_sf2_pzone_first
ipatch_sf2_pzone_next
ipatch_sf2_pzone_set_inst
ipatch_sf2_pzone_get_inst
<SUBSECTION Standard>
IPATCH_SF2_PZONE
IPATCH_IS_SF2_PZONE
IPATCH_TYPE_SF2_PZONE
ipatch_sf2_pzone_get_type
IPATCH_SF2_PZONE_CLASS
IPATCH_IS_SF2_PZONE_CLASS
IPATCH_SF2_PZONE_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchSampleStoreVirtual</FILE>
<TITLE>IpatchSampleStoreVirtual</TITLE>
IpatchSampleStoreVirtual
ipatch_sample_store_virtual_new
ipatch_sample_store_virtual_get_list
ipatch_sample_store_virtual_set_list
<SUBSECTION Standard>
IPATCH_SAMPLE_STORE_VIRTUAL
IPATCH_IS_SAMPLE_STORE_VIRTUAL
IPATCH_TYPE_SAMPLE_STORE_VIRTUAL
ipatch_sample_store_virtual_get_type
IPATCH_SAMPLE_STORE_VIRTUAL_CLASS
IPATCH_IS_SAMPLE_STORE_VIRTUAL_CLASS
</SECTION>
<SECTION>
<FILE>IpatchRiff</FILE>
IpatchRiffChunk
IpatchRiffStatus
IpatchRiffMode
<TITLE>IpatchRiff</TITLE>
IpatchRiff
IPATCH_RIFF_NEED_SWAP
IPATCH_RIFF_BIG_ENDIAN
IpatchRiffChunkType
IPATCH_RIFF_ERROR
IpatchRiffError
IPATCH_FOURCC
IPATCH_FOURCC_RIFF
IPATCH_FOURCC_RIFX
IPATCH_FOURCC_LIST
IPATCH_RIFF_HEADER_SIZE
IPATCH_RIFF_FOURCC_SIZE
IPATCH_RIFF_LIST_HEADER_SIZE
IPATCH_RIFF_WAVE_FMT_PCM
IPATCH_RIFF_WAVE_FMT_FLOAT
ipatch_riff_error_quark
ipatch_riff_new
ipatch_riff_set_file_handle
ipatch_riff_get_file_handle
ipatch_riff_get_chunk_level
ipatch_riff_get_chunk_array
ipatch_riff_get_chunk
ipatch_riff_get_total_size
ipatch_riff_get_position
ipatch_riff_push_state
ipatch_riff_pop_state
ipatch_riff_start_read
ipatch_riff_start_read_chunk
ipatch_riff_read_chunk_verify
ipatch_riff_read_chunk
ipatch_riff_write_list_chunk
ipatch_riff_write_sub_chunk
ipatch_riff_write_chunk
ipatch_riff_end_chunk
ipatch_riff_close_chunk
ipatch_riff_skip_chunk
ipatch_riff_skip_chunks
ipatch_riff_get_error
ipatch_riff_message_detail
<SUBSECTION Standard>
IPATCH_RIFF
IPATCH_IS_RIFF
IPATCH_TYPE_RIFF
ipatch_riff_get_type
IPATCH_RIFF_CLASS
IPATCH_IS_RIFF_CLASS
</SECTION>
<SECTION>
<FILE>IpatchVirtualContainer_types</FILE>
IPATCH_TYPE_VIRTUAL_DLS2_PERCUSSION
IPATCH_IS_VIRTUAL_DLS2_PERCUSSION
IPATCH_TYPE_VIRTUAL_DLS2_SAMPLES
IPATCH_IS_VIRTUAL_DLS2_SAMPLES
IPATCH_TYPE_VIRTUAL_GIG_MELODIC
IPATCH_IS_VIRTUAL_GIG_MELODIC
IPATCH_TYPE_VIRTUAL_GIG_PERCUSSION
IPATCH_IS_VIRTUAL_GIG_PERCUSSION
IPATCH_TYPE_VIRTUAL_GIG_SAMPLES
IPATCH_IS_VIRTUAL_GIG_SAMPLES
IPATCH_TYPE_VIRTUAL_SF2_INST
IPATCH_IS_VIRTUAL_SF2_INST
IPATCH_TYPE_VIRTUAL_SF2_MELODIC
IPATCH_IS_VIRTUAL_SF2_MELODIC
IPATCH_TYPE_VIRTUAL_SF2_PERCUSSION
IPATCH_IS_VIRTUAL_SF2_PERCUSSION
IPATCH_TYPE_VIRTUAL_SF2_SAMPLES
IPATCH_IS_VIRTUAL_SF2_SAMPLES
IPATCH_TYPE_VIRTUAL_SF2_ROM
IPATCH_IS_VIRTUAL_SF2_ROM
ipatch_virtual_dls2_percussion_get_type
ipatch_virtual_dls2_samples_get_type
ipatch_virtual_gig_melodic_get_type
ipatch_virtual_gig_percussion_get_type
ipatch_virtual_gig_samples_get_type
ipatch_virtual_sf2_inst_get_type
ipatch_virtual_sf2_melodic_get_type
ipatch_virtual_sf2_percussion_get_type
ipatch_virtual_sf2_samples_get_type
ipatch_virtual_sf2_rom_get_type
<SUBSECTION Standard>
IPATCH_IS_VIRTUAL_DLS2_MELODIC
IPATCH_TYPE_VIRTUAL_DLS2_MELODIC
ipatch_virtual_dls2_melodic_get_type
</SECTION>
<SECTION>
<FILE>IpatchSF2GenItem</FILE>
IPATCH_SF2_GEN_ITEM_FIRST_PROP_ID
IPATCH_SF2_GEN_ITEM_FIRST_PROP_SET_ID
IPATCH_SF2_GEN_ITEM_FIRST_PROP_USER_ID
IpatchSF2GenItem
IpatchSF2GenItemIface
ipatch_sf2_gen_item_get_amount
ipatch_sf2_gen_item_set_amount
ipatch_sf2_gen_item_set_gen_flag
ipatch_sf2_gen_item_count_set
ipatch_sf2_gen_item_copy_all
ipatch_sf2_gen_item_copy_set
ipatch_sf2_gen_item_set_note_range
ipatch_sf2_gen_item_set_velocity_range
ipatch_sf2_gen_item_in_range
ipatch_sf2_gen_item_intersect_test
ipatch_sf2_gen_item_class_get_pspec
ipatch_sf2_gen_item_class_get_pspec_set
ipatch_sf2_gen_item_iface_install_properties
ipatch_sf2_gen_item_iface_set_property
ipatch_sf2_gen_item_iface_get_property
<SUBSECTION Standard>
IPATCH_SF2_GEN_ITEM
IPATCH_IS_SF2_GEN_ITEM
IPATCH_TYPE_SF2_GEN_ITEM
ipatch_sf2_gen_item_get_type
IPATCH_SF2_GEN_ITEM_CLASS
IPATCH_SF2_GEN_ITEM_GET_IFACE
</SECTION>
<SECTION>
<FILE>IpatchSampleData</FILE>
<TITLE>IpatchSampleData</TITLE>
IpatchSampleData
IPATCH_SAMPLE_DATA_UNUSED_FLAG_SHIFT
ipatch_get_sample_data_list
ipatch_sample_data_new
ipatch_sample_data_add
ipatch_sample_data_remove
ipatch_sample_data_replace_native_sample
ipatch_sample_data_get_samples
ipatch_sample_data_get_size
ipatch_sample_data_get_native_sample
ipatch_sample_data_get_native_format
ipatch_sample_data_open_native_sample
ipatch_sample_data_get_cache_sample
ipatch_sample_data_lookup_cache_sample
ipatch_sample_data_open_cache_sample
ipatch_sample_cache_clean
ipatch_sample_data_get_blank
<SUBSECTION Standard>
IPATCH_SAMPLE_DATA
IPATCH_IS_SAMPLE_DATA
IPATCH_TYPE_SAMPLE_DATA
ipatch_sample_data_get_type
IPATCH_SAMPLE_DATA_CLASS
IPATCH_IS_SAMPLE_DATA_CLASS
IPATCH_SAMPLE_DATA_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchState_types</FILE>
IPATCH_TYPE_STATE_ITEM_REMOVE
IPATCH_STATE_ITEM_REMOVE
IPATCH_STATE_ITEM_REMOVE_CLASS
IPATCH_IS_STATE_ITEM_REMOVE
IPATCH_IS_STATE_ITEM_REMOVE_CLASS
IPATCH_STATE_ITEM_REMOVE_GET_CLASS
IPATCH_TYPE_STATE_ITEM_CHANGE
IPATCH_STATE_ITEM_CHANGE
IPATCH_STATE_ITEM_CHANGE_CLASS
IPATCH_IS_STATE_ITEM_CHANGE
IPATCH_IS_STATE_ITEM_CHANGE_CLASS
IPATCH_STATE_ITEM_CHANGE_GET_CLASS
<TITLE>IpatchStateItemAdd</TITLE>
IpatchStateItemAdd
<TITLE>IpatchStateItemRemove</TITLE>
IpatchStateItemRemove
<TITLE>IpatchStateItemChange</TITLE>
IpatchStateItemChange
ipatch_state_item_remove_get_type
ipatch_state_item_change_get_type
<SUBSECTION Standard>
IPATCH_STATE_ITEM_ADD
IPATCH_IS_STATE_ITEM_ADD
IPATCH_TYPE_STATE_ITEM_ADD
ipatch_state_item_add_get_type
IPATCH_STATE_ITEM_ADD_CLASS
IPATCH_IS_STATE_ITEM_ADD_CLASS
IPATCH_STATE_ITEM_ADD_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchRange</FILE>
IpatchRange
IpatchParamSpecRange
IPATCH_TYPE_RANGE
IPATCH_VALUE_HOLDS_RANGE
IPATCH_RANGE_SET_VALUES
IPATCH_RANGE_SET_NULL
ipatch_range_new
ipatch_range_copy
ipatch_range_free
ipatch_value_set_range
ipatch_value_set_static_range
ipatch_value_get_range
IPATCH_TYPE_PARAM_RANGE
ipatch_param_spec_range_get_type
ipatch_param_spec_range
<SUBSECTION Standard>
IPATCH_PARAM_SPEC_RANGE
IPATCH_IS_PARAM_SPEC_RANGE
ipatch_range_get_type
</SECTION>
<SECTION>
<FILE>IpatchDLSReader</FILE>
IPATCH_DLS_READER_ERROR
IpatchDLSReaderError
<TITLE>IpatchDLSReader</TITLE>
IpatchDLSReader
ipatch_dls_reader_new
ipatch_dls_reader_load
ipatch_dls_reader_start
ipatch_dls_reader_set_pool_table
ipatch_dls_reader_fixup
ipatch_dls_reader_load_level_0
ipatch_dls_reader_load_inst_list
ipatch_dls_reader_load_region_list
ipatch_gig_reader_load_region_list
ipatch_dls_reader_load_art_list
ipatch_dls_reader_load_wave_pool
ipatch_gig_reader_load_sub_regions
ipatch_gig_reader_load_inst_lart
ipatch_dls_load_info
ipatch_dls_load_region_header
ipatch_gig_load_region_header
ipatch_dls_load_wave_link
ipatch_dls_load_sample_info
ipatch_dls_load_connection
ipatch_dls_load_sample_format
ipatch_dls_load_pool_table
ipatch_dls_load_dlid
ipatch_gig_load_sample_info
ipatch_gig_load_dimension_info
ipatch_gig_load_dimension_names
ipatch_gig_load_group_names
<SUBSECTION Standard>
IPATCH_DLS_READER
IPATCH_IS_DLS_READER
IPATCH_TYPE_DLS_READER
ipatch_dls_reader_get_type
IPATCH_DLS_READER_CLASS
IPATCH_IS_DLS_READER_CLASS
</SECTION>
<SECTION>
<FILE>IpatchSampleStoreRam</FILE>
<TITLE>IpatchSampleStoreRam</TITLE>
IpatchSampleStoreRam
IpatchSampleStoreRamFlags
IPATCH_SAMPLE_STORE_RAM_UNUSED_FLAG_SHIFT
ipatch_sample_store_ram_new
ipatch_sample_store_ram_get_blank
<SUBSECTION Standard>
IPATCH_SAMPLE_STORE_RAM
IPATCH_IS_SAMPLE_STORE_RAM
IPATCH_TYPE_SAMPLE_STORE_RAM
ipatch_sample_store_ram_get_type
IPATCH_SAMPLE_STORE_RAM_CLASS
IPATCH_IS_SAMPLE_STORE_RAM_CLASS
</SECTION>
<SECTION>
<FILE>IpatchGigRegion</FILE>
<TITLE>IpatchGigRegion</TITLE>
IpatchGigRegion
IpatchGigRegionFlags
IPATCH_GIG_REGION_FLAG_MASK
IPATCH_GIG_REGION_UNUSED_FLAG_SHIFT
ipatch_gig_region_new
ipatch_gig_region_first
ipatch_gig_region_next
ipatch_gig_region_set_note_range
ipatch_gig_region_set_velocity_range
ipatch_gig_region_new_dimension
ipatch_gig_region_remove_dimension
<SUBSECTION Standard>
IPATCH_GIG_REGION
IPATCH_IS_GIG_REGION
IPATCH_TYPE_GIG_REGION
ipatch_gig_region_get_type
IPATCH_GIG_REGION_CLASS
IPATCH_IS_GIG_REGION_CLASS
IPATCH_GIG_REGION_GET_CLASS
</SECTION>
<SECTION>
<FILE>IpatchGigFile</FILE>
<TITLE>IpatchGigFile</TITLE>
IpatchGigFile
IPATCH_GIG_FOURCC_3PRG
IPATCH_GIG_FOURCC_3EWL
IPATCH_GIG_FOURCC_3DNL
IPATCH_GIG_FOURCC_3GNL
IPATCH_GIG_FOURCC_3GRI
IPATCH_GIG_FOURCC_SMPL
IPATCH_GIG_FOURCC_3DDP
IPATCH_GIG_FOURCC_3EWA
IPATCH_GIG_FOURCC_3EWG
IPATCH_GIG_FOURCC_3GIX
IPATCH_GIG_FOURCC_3GNM
IPATCH_GIG_FOURCC_3LNK
IPATCH_GIG_FOURCC_EINF
IPATCH_GIG_SMPL_SIZE
IPATCH_GIG_3DDP_SIZE
IPATCH_GIG_3EWA_SIZE
IPATCH_GIG_3EWG_SIZE
IPATCH_GIG_3GIX_SIZE
IPATCH_GIG_3GNM_SIZE
IPATCH_GIG_3LNK_SIZE
IPATCH_GIG_ITEM_INAM_SIZE
IPATCH_GIG_MOST_INFO_SIZE
IPATCH_GIG_IARL_INFO_SIZE
IPATCH_GIG_ICMT_INFO_SIZE
IPATCH_GIG_INST_ISFT_VAL
ipatch_gig_file_new
<SUBSECTION Standard>
IPATCH_GIG_FILE
IPATCH_IS_GIG_FILE
IPATCH_TYPE_GIG_FILE
ipatch_gig_file_get_type
IPATCH_GIG_FILE_CLASS
IPATCH_IS_GIG_FILE_CLASS
IPATCH_GIG_FILE_GET_CLASS
</SECTION>
<SECTION>
<FILE>md5</FILE>
ipatch_md5_init
ipatch_md5_update
ipatch_md5_final
</SECTION>
<SECTION>
<FILE>version</FILE>
IPATCH_VERSION
IPATCH_VERSION_MAJOR
IPATCH_VERSION_MINOR
IPATCH_VERSION_MICRO
ipatch_version
</SECTION>
<SECTION>
<FILE>IpatchSF2Mod</FILE>
IpatchSF2Mod
IpatchSF2ModList
IPATCH_TYPE_SF2_MOD
IPATCH_TYPE_SF2_MOD_LIST
IPATCH_SF2_MOD_ARE_IDENTICAL
IPATCH_SF2_MOD_ARE_IDENTICAL_AMOUNT
IpatchSF2ModFieldMasks
IpatchSF2ModFieldShifts
IpatchSF2ModControl
IpatchSF2ModControlPalette
IpatchSF2ModDirection
IpatchSF2ModPolarity
IpatchSF2ModType
IpatchSF2ModTransform
IpatchSF2ModFlags
ipatch_sf2_mod_get_type
ipatch_sf2_mod_list_get_type
ipatch_sf2_mod_new
ipatch_sf2_mod_free
ipatch_sf2_mod_duplicate
ipatch_sf2_mod_list_duplicate
ipatch_sf2_mod_list_override
ipatch_sf2_mod_list_boxed_free
ipatch_sf2_mod_list_insert
ipatch_sf2_mod_list_remove
ipatch_sf2_mod_list_change
ipatch_sf2_mod_list_offset
ipatch_sf2_mod_list_free
ipatch_sf2_mod_list_get_default
</SECTION>
<SECTION>
<FILE>IpatchTypeProp</FILE>
IpatchSplitsType
IpatchTypePropGetFunc
ipatch_type_install_property
ipatch_type_find_property
ipatch_type_list_properties
ipatch_type_find_types_with_property
ipatch_type_set
ipatch_type_set_valist
ipatch_type_set_property
ipatch_type_get
ipatch_type_get_valist
ipatch_type_get_property
ipatch_type_object_get
ipatch_type_object_get_valist
ipatch_type_object_get_property
ipatch_type_set_dynamic_func
ipatch_type_get_dynamic_func
</SECTION>
<SECTION>
<FILE>util</FILE>
ipatch_util_value_bool_true
ipatch_util_value_bool_false
IPATCH_UTIL_VALUE_BOOL
ipatch_util_value_hash
ipatch_util_value_array_hash
ipatch_util_file_size
</SECTION>
<SECTION>
<FILE>IpatchSampleTransform</FILE>
IpatchSampleTransform
IpatchSampleTransformFunc
ipatch_sample_transform_new
ipatch_sample_transform_free
ipatch_sample_transform_init
ipatch_sample_transform_pool_acquire
ipatch_sample_transform_pool_release
ipatch_sample_transform_set_formats
ipatch_sample_transform_alloc
ipatch_sample_transform_alloc_size
ipatch_sample_transform_free_buffers
ipatch_sample_transform_set_buffers_size
ipatch_sample_transform_get_buffers
ipatch_sample_transform_get_frame_sizes
ipatch_sample_transform_get_max_frames
ipatch_sample_transform_convert
ipatch_sample_transform_convert_single
</SECTION>
<SECTION>
<FILE>IpatchUnit</FILE>
IpatchUnitInfo
IpatchUnitFlags
IpatchValueTransform
IpatchUnitType
IPATCH_UNIT_TYPE_FIRST_DYNAMIC_ID
IpatchUnitClassType
ipatch_unit_info_new
ipatch_unit_info_free
ipatch_unit_register
ipatch_unit_lookup
ipatch_unit_lookup_by_name
ipatch_unit_class_register_map
ipatch_unit_class_lookup_map
ipatch_unit_conversion_register
ipatch_unit_conversion_lookup
ipatch_unit_convert
ipatch_unit_user_class_convert
</SECTION>
<SECTION>
<FILE>IpatchXml</FILE>
IpatchXmlNode
IpatchXmlAttr
ipatch_xml_new_node
ipatch_xml_new_node_strv
ipatch_xml_get_data
ipatch_xml_set_data
ipatch_xml_set_data_full
ipatch_xml_steal_data
ipatch_xml_get_qdata
ipatch_xml_set_qdata
ipatch_xml_set_qdata_full
ipatch_xml_steal_qdata
ipatch_xml_destroy
ipatch_xml_copy
ipatch_xml_set_name
ipatch_xml_set_value
ipatch_xml_set_value_printf
ipatch_xml_take_name
ipatch_xml_take_value
ipatch_xml_get_name
ipatch_xml_test_name
ipatch_xml_get_value
ipatch_xml_dup_value
ipatch_xml_test_value
ipatch_xml_set_attribute
ipatch_xml_set_attributes
ipatch_xml_get_attribute
ipatch_xml_test_attribute
ipatch_xml_find_child
ipatch_xml_find_by_path
ipatch_xml_to_str
ipatch_xml_save_to_file
ipatch_xml_from_str
ipatch_xml_load_from_file
ipatch_xml_node_new
ipatch_xml_node_free
ipatch_xml_node_duplicate
ipatch_xml_attr_new
ipatch_xml_attr_free
ipatch_xml_attr_duplicate
</SECTION>
<SECTION>
<FILE>IpatchParamProp</FILE>
IPATCH_PARAM_USER_SHIFT
ipatch_param_install_property
ipatch_param_find_property
ipatch_param_list_properties
ipatch_param_set
ipatch_param_set_valist
ipatch_param_set_property
ipatch_param_get
ipatch_param_get_valist
ipatch_param_get_property
</SECTION>
<SECTION>
<FILE>IpatchXmlObject</FILE>
IpatchXmlEncodeFunc
IpatchXmlDecodeFunc
ipatch_xml_register_handler
ipatch_xml_lookup_handler
ipatch_xml_lookup_handler_by_prop_name
ipatch_xml_encode_object
ipatch_xml_encode_property
ipatch_xml_encode_property_by_name
ipatch_xml_encode_value
ipatch_xml_decode_object
ipatch_xml_decode_property
ipatch_xml_decode_property_by_name
ipatch_xml_decode_value
ipatch_xml_default_encode_object_func
ipatch_xml_default_encode_property_func
ipatch_xml_default_encode_value_func
ipatch_xml_default_decode_object_func
ipatch_xml_default_decode_property_func
ipatch_xml_default_decode_value_func
</SECTION>
<SECTION>
<FILE>IpatchUnit_SF2</FILE>
ipatch_unit_sf2_abs_pitch_to_dls_abs_pitch
ipatch_unit_dls_abs_pitch_to_sf2_abs_pitch
ipatch_unit_sf2_abs_pitch_to_hertz
ipatch_unit_hertz_to_sf2_abs_pitch
ipatch_unit_sf2_ofs_pitch_to_multiplier
ipatch_unit_multiplier_to_sf2_ofs_pitch
ipatch_unit_sf2_abs_time_to_dls_abs_time
ipatch_unit_dls_abs_time_to_sf2_abs_time
ipatch_unit_sf2_abs_time_to_seconds
ipatch_unit_seconds_to_sf2_abs_time
ipatch_unit_sf2_ofs_time_to_multiplier
ipatch_unit_multiplier_to_sf2_ofs_time
ipatch_unit_centibels_to_dls_gain
ipatch_unit_dls_gain_to_centibels
ipatch_unit_centibels_to_decibels
ipatch_unit_decibels_to_centibels
ipatch_unit_tenth_percent_to_percent
ipatch_unit_percent_to_tenth_percent
</SECTION>
<SECTION>
<FILE>IpatchUnit_generic</FILE>
ipatch_unit_hertz_to_cents
ipatch_unit_cents_to_hertz
</SECTION>
<SECTION>
<FILE>IpatchUnit_DLS</FILE>
IPATCH_UNIT_DLS_ABS_TIME_0SECS
ipatch_unit_dls_class_convert
ipatch_unit_dls_percent_to_percent
ipatch_unit_percent_to_dls_percent
ipatch_unit_dls_gain_to_decibels
ipatch_unit_decibels_to_dls_gain
ipatch_unit_dls_abs_time_to_seconds
ipatch_unit_seconds_to_dls_abs_time
ipatch_unit_dls_rel_time_to_time_cents
ipatch_unit_time_cents_to_dls_rel_time
ipatch_unit_dls_abs_pitch_to_hertz
ipatch_unit_hertz_to_dls_abs_pitch
ipatch_unit_dls_rel_pitch_to_cents
ipatch_unit_cents_to_dls_rel_pitch
</SECTION>
<SECTION>
<FILE>misc</FILE>
IPATCH_ERROR
IpatchError
ipatch_code_error
ipatch_application_name
ipatch_init
ipatch_set_application_name
ipatch_error_quark
ipatch_gerror_message
ipatch_strconcat_num
ipatch_dump_object
</SECTION>
<SECTION>
<FILE>IpatchGigEffects</FILE>
IpatchGigEffects
IpatchGigFilterType
IpatchGigControlType
ipatch_gig_parse_effects
ipatch_gig_store_effects
ipatch_gig_effects_init
ipatch_gig_effects_to_gen_array
ipatch_gig_to_sf2_timecents
ipatch_gig_volsust_to_sf2_centibels
</SECTION>
<SECTION>
<FILE>IpatchDLS2Conn</FILE>
IpatchDLS2Conn
IpatchDLS2ConnInfo
IPATCH_TYPE_DLS2_CONN
IPATCH_DLS2_CONN_ARE_IDENTICAL
IpatchDLS2ConnSrcType
IpatchDLS2ConnDestType
IPATCH_DLS2_CONN_OUTPUT_TRANS_NONE
IpatchDLS2ConnTransformType
IpatchDLS2ConnPolarityType
IpatchDLS2ConnTransformMasks
IpatchDLS2ConnTransformShifts
ipatch_dls2_conn_get_type
ipatch_dls2_conn_new
ipatch_dls2_conn_free
ipatch_dls2_conn_duplicate
ipatch_dls2_conn_list_set
ipatch_dls2_conn_list_unset
ipatch_dls2_conn_list_duplicate
ipatch_dls2_conn_list_duplicate_fast
ipatch_dls2_conn_list_free
</SECTION>
<SECTION>
<FILE>IpatchSampleList</FILE>
IpatchSampleList
IpatchSampleListItem
IPATCH_TYPE_SAMPLE_LIST
ipatch_sample_list_get_type
ipatch_sample_list_new
ipatch_sample_list_free
ipatch_sample_list_duplicate
ipatch_sample_list_item_new
ipatch_sample_list_item_new_init
ipatch_sample_list_item_free
ipatch_sample_list_item_duplicate
ipatch_sample_list_append
ipatch_sample_list_prepend
ipatch_sample_list_insert_index
ipatch_sample_list_insert
ipatch_sample_list_cut
ipatch_sample_list_render
</SECTION>
<SECTION>
<FILE>IpatchIter</FILE>
IpatchIter
IpatchIterMethods
IPATCH_TYPE_ITER
ipatch_iter_get_type
ipatch_iter_alloc
ipatch_iter_free
ipatch_iter_duplicate
ipatch_iter_get
ipatch_iter_next
ipatch_iter_first
ipatch_iter_last
ipatch_iter_index
ipatch_iter_insert
ipatch_iter_remove
ipatch_iter_count
IPATCH_ITER_GSLIST_GET_LIST
IPATCH_ITER_GSLIST_GET_POS
IPATCH_ITER_GSLIST_SET_LIST
IPATCH_ITER_GSLIST_SET_POS
ipatch_iter_GSList_init
ipatch_iter_GSList_get
ipatch_iter_GSList_next
ipatch_iter_GSList_first
ipatch_iter_GSList_last
ipatch_iter_GSList_index
ipatch_iter_GSList_insert
ipatch_iter_GSList_remove
ipatch_iter_GSList_count
IPATCH_ITER_GLIST_GET_LIST
IPATCH_ITER_GLIST_GET_POS
IPATCH_ITER_GLIST_SET_LIST
IPATCH_ITER_GLIST_SET_POS
ipatch_iter_GList_init
ipatch_iter_GList_get
ipatch_iter_GList_next
ipatch_iter_GList_first
ipatch_iter_GList_last
ipatch_iter_GList_index
ipatch_iter_GList_insert
ipatch_iter_GList_remove
ipatch_iter_GList_count
IPATCH_ITER_ARRAY_GET_ARRAY
IPATCH_ITER_ARRAY_GET_SIZE
IPATCH_ITER_ARRAY_GET_POS
IPATCH_ITER_ARRAY_SET_ARRAY
IPATCH_ITER_ARRAY_SET_SIZE
IPATCH_ITER_ARRAY_SET_POS
ipatch_iter_array_init
ipatch_iter_array_get
ipatch_iter_array_next
ipatch_iter_array_first
ipatch_iter_array_last
ipatch_iter_array_index
ipatch_iter_array_insert
ipatch_iter_array_remove
ipatch_iter_array_count
</SECTION>
<SECTION>
<FILE>IpatchSF2Gen</FILE>
IPATCH_SF2_GEN_COUNT
IpatchSF2GenArray
IpatchSF2GenInfo
IPATCH_TYPE_SF2_GEN_ARRAY
IpatchSF2GenPropsType
IPATCH_SF2_GEN_PROPS_GLOBAL_FLAG
IPATCH_SF2_GEN_PROPS_MASK
IpatchSF2GenAmount
IpatchSF2Gen
IPATCH_SF2_GENID_SET
IPATCH_SF2_GEN_ARRAY_TEST_FLAG
IPATCH_SF2_GEN_ARRAY_SET_FLAG
IPATCH_SF2_GEN_ARRAY_CLEAR_FLAG
IpatchSF2GenType
IpatchSF2GenSampleModes
ipatch_sf2_gen_ofs_array
ipatch_sf2_gen_abs_array
ipatch_sf2_gen_ofs_valid_mask
ipatch_sf2_gen_abs_valid_mask
ipatch_sf2_gen_add_mask
ipatch_sf2_gen_is_valid
ipatch_sf2_gen_array_get_type
ipatch_sf2_gen_array_new
ipatch_sf2_gen_array_free
ipatch_sf2_gen_array_duplicate
ipatch_sf2_gen_array_init
ipatch_sf2_gen_array_offset
ipatch_sf2_gen_array_intersect_test
ipatch_sf2_gen_array_count_set
ipatch_sf2_gen_amount_to_value
ipatch_sf2_gen_default_value
ipatch_sf2_gen_offset
ipatch_sf2_gen_clamp
ipatch_sf2_gen_range_intersect
ipatch_sf2_gen_range_intersect_test
ipatch_sf2_gen_get_prop_name
</SECTION>
<SECTION>
<FILE>IpatchDLS2Info</FILE>
IpatchDLS2Info
IpatchDLS2InfoBag
IpatchDLS2InfoType
ipatch_dls2_info_get
ipatch_dls2_info_peek
ipatch_dls2_info_set
ipatch_dls2_info_free
ipatch_dls2_info_duplicate
ipatch_dls2_info_is_defined
ipatch_dls2_info_install_class_properties
ipatch_dls2_info_set_property
ipatch_dls2_info_get_property
ipatch_dls2_info_notify
ipatch_dls2_info_bag_new
ipatch_dls2_info_bag_free
</SECTION>
|