1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403
|
/*
* This file is part of gtkD.
*
* gtkD is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 3
* of the License, or (at your option) any later version, with
* some exceptions, please read the COPYING file.
*
* gtkD is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with gtkD; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
*/
// generated automatically - do not change
// find conversion definition on APILookup.txt
// implement new conversion functionalities on the wrap.utils pakage
module gio.c.functions;
import std.stdio;
import gio.c.types;
import gtkd.Loader;
version (Windows)
static immutable LIBRARY_GIO = ["libgio-2.0-0.dll;gio-2.0-0.dll;gio-2.dll"];
else version (OSX)
static immutable LIBRARY_GIO = ["libgio-2.0.0.dylib"];
else
static immutable LIBRARY_GIO = ["libgio-2.0.so.0"];
shared static this()
{
// gio.Action
Linker.link(g_action_get_type, "g_action_get_type", LIBRARY_GIO);
Linker.link(g_action_name_is_valid, "g_action_name_is_valid", LIBRARY_GIO);
Linker.link(g_action_parse_detailed_name, "g_action_parse_detailed_name", LIBRARY_GIO);
Linker.link(g_action_print_detailed_name, "g_action_print_detailed_name", LIBRARY_GIO);
Linker.link(g_action_activate, "g_action_activate", LIBRARY_GIO);
Linker.link(g_action_change_state, "g_action_change_state", LIBRARY_GIO);
Linker.link(g_action_get_enabled, "g_action_get_enabled", LIBRARY_GIO);
Linker.link(g_action_get_name, "g_action_get_name", LIBRARY_GIO);
Linker.link(g_action_get_parameter_type, "g_action_get_parameter_type", LIBRARY_GIO);
Linker.link(g_action_get_state, "g_action_get_state", LIBRARY_GIO);
Linker.link(g_action_get_state_hint, "g_action_get_state_hint", LIBRARY_GIO);
Linker.link(g_action_get_state_type, "g_action_get_state_type", LIBRARY_GIO);
// gio.ActionGroup
Linker.link(g_action_group_get_type, "g_action_group_get_type", LIBRARY_GIO);
Linker.link(g_action_group_action_added, "g_action_group_action_added", LIBRARY_GIO);
Linker.link(g_action_group_action_enabled_changed, "g_action_group_action_enabled_changed", LIBRARY_GIO);
Linker.link(g_action_group_action_removed, "g_action_group_action_removed", LIBRARY_GIO);
Linker.link(g_action_group_action_state_changed, "g_action_group_action_state_changed", LIBRARY_GIO);
Linker.link(g_action_group_activate_action, "g_action_group_activate_action", LIBRARY_GIO);
Linker.link(g_action_group_change_action_state, "g_action_group_change_action_state", LIBRARY_GIO);
Linker.link(g_action_group_get_action_enabled, "g_action_group_get_action_enabled", LIBRARY_GIO);
Linker.link(g_action_group_get_action_parameter_type, "g_action_group_get_action_parameter_type", LIBRARY_GIO);
Linker.link(g_action_group_get_action_state, "g_action_group_get_action_state", LIBRARY_GIO);
Linker.link(g_action_group_get_action_state_hint, "g_action_group_get_action_state_hint", LIBRARY_GIO);
Linker.link(g_action_group_get_action_state_type, "g_action_group_get_action_state_type", LIBRARY_GIO);
Linker.link(g_action_group_has_action, "g_action_group_has_action", LIBRARY_GIO);
Linker.link(g_action_group_list_actions, "g_action_group_list_actions", LIBRARY_GIO);
Linker.link(g_action_group_query_action, "g_action_group_query_action", LIBRARY_GIO);
// gio.ActionMap
Linker.link(g_action_map_get_type, "g_action_map_get_type", LIBRARY_GIO);
Linker.link(g_action_map_add_action, "g_action_map_add_action", LIBRARY_GIO);
Linker.link(g_action_map_add_action_entries, "g_action_map_add_action_entries", LIBRARY_GIO);
Linker.link(g_action_map_lookup_action, "g_action_map_lookup_action", LIBRARY_GIO);
Linker.link(g_action_map_remove_action, "g_action_map_remove_action", LIBRARY_GIO);
// gio.AppInfo
Linker.link(g_app_info_get_type, "g_app_info_get_type", LIBRARY_GIO);
Linker.link(g_app_info_create_from_commandline, "g_app_info_create_from_commandline", LIBRARY_GIO);
Linker.link(g_app_info_get_all, "g_app_info_get_all", LIBRARY_GIO);
Linker.link(g_app_info_get_all_for_type, "g_app_info_get_all_for_type", LIBRARY_GIO);
Linker.link(g_app_info_get_default_for_type, "g_app_info_get_default_for_type", LIBRARY_GIO);
Linker.link(g_app_info_get_default_for_uri_scheme, "g_app_info_get_default_for_uri_scheme", LIBRARY_GIO);
Linker.link(g_app_info_get_fallback_for_type, "g_app_info_get_fallback_for_type", LIBRARY_GIO);
Linker.link(g_app_info_get_recommended_for_type, "g_app_info_get_recommended_for_type", LIBRARY_GIO);
Linker.link(g_app_info_launch_default_for_uri, "g_app_info_launch_default_for_uri", LIBRARY_GIO);
Linker.link(g_app_info_launch_default_for_uri_async, "g_app_info_launch_default_for_uri_async", LIBRARY_GIO);
Linker.link(g_app_info_launch_default_for_uri_finish, "g_app_info_launch_default_for_uri_finish", LIBRARY_GIO);
Linker.link(g_app_info_reset_type_associations, "g_app_info_reset_type_associations", LIBRARY_GIO);
Linker.link(g_app_info_add_supports_type, "g_app_info_add_supports_type", LIBRARY_GIO);
Linker.link(g_app_info_can_delete, "g_app_info_can_delete", LIBRARY_GIO);
Linker.link(g_app_info_can_remove_supports_type, "g_app_info_can_remove_supports_type", LIBRARY_GIO);
Linker.link(g_app_info_delete, "g_app_info_delete", LIBRARY_GIO);
Linker.link(g_app_info_dup, "g_app_info_dup", LIBRARY_GIO);
Linker.link(g_app_info_equal, "g_app_info_equal", LIBRARY_GIO);
Linker.link(g_app_info_get_commandline, "g_app_info_get_commandline", LIBRARY_GIO);
Linker.link(g_app_info_get_description, "g_app_info_get_description", LIBRARY_GIO);
Linker.link(g_app_info_get_display_name, "g_app_info_get_display_name", LIBRARY_GIO);
Linker.link(g_app_info_get_executable, "g_app_info_get_executable", LIBRARY_GIO);
Linker.link(g_app_info_get_icon, "g_app_info_get_icon", LIBRARY_GIO);
Linker.link(g_app_info_get_id, "g_app_info_get_id", LIBRARY_GIO);
Linker.link(g_app_info_get_name, "g_app_info_get_name", LIBRARY_GIO);
Linker.link(g_app_info_get_supported_types, "g_app_info_get_supported_types", LIBRARY_GIO);
Linker.link(g_app_info_launch, "g_app_info_launch", LIBRARY_GIO);
Linker.link(g_app_info_launch_uris, "g_app_info_launch_uris", LIBRARY_GIO);
Linker.link(g_app_info_launch_uris_async, "g_app_info_launch_uris_async", LIBRARY_GIO);
Linker.link(g_app_info_launch_uris_finish, "g_app_info_launch_uris_finish", LIBRARY_GIO);
Linker.link(g_app_info_remove_supports_type, "g_app_info_remove_supports_type", LIBRARY_GIO);
Linker.link(g_app_info_set_as_default_for_extension, "g_app_info_set_as_default_for_extension", LIBRARY_GIO);
Linker.link(g_app_info_set_as_default_for_type, "g_app_info_set_as_default_for_type", LIBRARY_GIO);
Linker.link(g_app_info_set_as_last_used_for_type, "g_app_info_set_as_last_used_for_type", LIBRARY_GIO);
Linker.link(g_app_info_should_show, "g_app_info_should_show", LIBRARY_GIO);
Linker.link(g_app_info_supports_files, "g_app_info_supports_files", LIBRARY_GIO);
Linker.link(g_app_info_supports_uris, "g_app_info_supports_uris", LIBRARY_GIO);
// gio.AppInfoMonitor
Linker.link(g_app_info_monitor_get_type, "g_app_info_monitor_get_type", LIBRARY_GIO);
Linker.link(g_app_info_monitor_get, "g_app_info_monitor_get", LIBRARY_GIO);
// gio.AppLaunchContext
Linker.link(g_app_launch_context_get_type, "g_app_launch_context_get_type", LIBRARY_GIO);
Linker.link(g_app_launch_context_new, "g_app_launch_context_new", LIBRARY_GIO);
Linker.link(g_app_launch_context_get_display, "g_app_launch_context_get_display", LIBRARY_GIO);
Linker.link(g_app_launch_context_get_environment, "g_app_launch_context_get_environment", LIBRARY_GIO);
Linker.link(g_app_launch_context_get_startup_notify_id, "g_app_launch_context_get_startup_notify_id", LIBRARY_GIO);
Linker.link(g_app_launch_context_launch_failed, "g_app_launch_context_launch_failed", LIBRARY_GIO);
Linker.link(g_app_launch_context_setenv, "g_app_launch_context_setenv", LIBRARY_GIO);
Linker.link(g_app_launch_context_unsetenv, "g_app_launch_context_unsetenv", LIBRARY_GIO);
// gio.Application
Linker.link(g_application_get_type, "g_application_get_type", LIBRARY_GIO);
Linker.link(g_application_new, "g_application_new", LIBRARY_GIO);
Linker.link(g_application_get_default, "g_application_get_default", LIBRARY_GIO);
Linker.link(g_application_id_is_valid, "g_application_id_is_valid", LIBRARY_GIO);
Linker.link(g_application_activate, "g_application_activate", LIBRARY_GIO);
Linker.link(g_application_add_main_option, "g_application_add_main_option", LIBRARY_GIO);
Linker.link(g_application_add_main_option_entries, "g_application_add_main_option_entries", LIBRARY_GIO);
Linker.link(g_application_add_option_group, "g_application_add_option_group", LIBRARY_GIO);
Linker.link(g_application_bind_busy_property, "g_application_bind_busy_property", LIBRARY_GIO);
Linker.link(g_application_get_application_id, "g_application_get_application_id", LIBRARY_GIO);
Linker.link(g_application_get_dbus_connection, "g_application_get_dbus_connection", LIBRARY_GIO);
Linker.link(g_application_get_dbus_object_path, "g_application_get_dbus_object_path", LIBRARY_GIO);
Linker.link(g_application_get_flags, "g_application_get_flags", LIBRARY_GIO);
Linker.link(g_application_get_inactivity_timeout, "g_application_get_inactivity_timeout", LIBRARY_GIO);
Linker.link(g_application_get_is_busy, "g_application_get_is_busy", LIBRARY_GIO);
Linker.link(g_application_get_is_registered, "g_application_get_is_registered", LIBRARY_GIO);
Linker.link(g_application_get_is_remote, "g_application_get_is_remote", LIBRARY_GIO);
Linker.link(g_application_get_resource_base_path, "g_application_get_resource_base_path", LIBRARY_GIO);
Linker.link(g_application_hold, "g_application_hold", LIBRARY_GIO);
Linker.link(g_application_mark_busy, "g_application_mark_busy", LIBRARY_GIO);
Linker.link(g_application_open, "g_application_open", LIBRARY_GIO);
Linker.link(g_application_quit, "g_application_quit", LIBRARY_GIO);
Linker.link(g_application_register, "g_application_register", LIBRARY_GIO);
Linker.link(g_application_release, "g_application_release", LIBRARY_GIO);
Linker.link(g_application_run, "g_application_run", LIBRARY_GIO);
Linker.link(g_application_send_notification, "g_application_send_notification", LIBRARY_GIO);
Linker.link(g_application_set_action_group, "g_application_set_action_group", LIBRARY_GIO);
Linker.link(g_application_set_application_id, "g_application_set_application_id", LIBRARY_GIO);
Linker.link(g_application_set_default, "g_application_set_default", LIBRARY_GIO);
Linker.link(g_application_set_flags, "g_application_set_flags", LIBRARY_GIO);
Linker.link(g_application_set_inactivity_timeout, "g_application_set_inactivity_timeout", LIBRARY_GIO);
Linker.link(g_application_set_option_context_description, "g_application_set_option_context_description", LIBRARY_GIO);
Linker.link(g_application_set_option_context_parameter_string, "g_application_set_option_context_parameter_string", LIBRARY_GIO);
Linker.link(g_application_set_option_context_summary, "g_application_set_option_context_summary", LIBRARY_GIO);
Linker.link(g_application_set_resource_base_path, "g_application_set_resource_base_path", LIBRARY_GIO);
Linker.link(g_application_unbind_busy_property, "g_application_unbind_busy_property", LIBRARY_GIO);
Linker.link(g_application_unmark_busy, "g_application_unmark_busy", LIBRARY_GIO);
Linker.link(g_application_withdraw_notification, "g_application_withdraw_notification", LIBRARY_GIO);
// gio.ApplicationCommandLine
Linker.link(g_application_command_line_get_type, "g_application_command_line_get_type", LIBRARY_GIO);
Linker.link(g_application_command_line_create_file_for_arg, "g_application_command_line_create_file_for_arg", LIBRARY_GIO);
Linker.link(g_application_command_line_get_arguments, "g_application_command_line_get_arguments", LIBRARY_GIO);
Linker.link(g_application_command_line_get_cwd, "g_application_command_line_get_cwd", LIBRARY_GIO);
Linker.link(g_application_command_line_get_environ, "g_application_command_line_get_environ", LIBRARY_GIO);
Linker.link(g_application_command_line_get_exit_status, "g_application_command_line_get_exit_status", LIBRARY_GIO);
Linker.link(g_application_command_line_get_is_remote, "g_application_command_line_get_is_remote", LIBRARY_GIO);
Linker.link(g_application_command_line_get_options_dict, "g_application_command_line_get_options_dict", LIBRARY_GIO);
Linker.link(g_application_command_line_get_platform_data, "g_application_command_line_get_platform_data", LIBRARY_GIO);
Linker.link(g_application_command_line_get_stdin, "g_application_command_line_get_stdin", LIBRARY_GIO);
Linker.link(g_application_command_line_getenv, "g_application_command_line_getenv", LIBRARY_GIO);
Linker.link(g_application_command_line_print, "g_application_command_line_print", LIBRARY_GIO);
Linker.link(g_application_command_line_printerr, "g_application_command_line_printerr", LIBRARY_GIO);
Linker.link(g_application_command_line_set_exit_status, "g_application_command_line_set_exit_status", LIBRARY_GIO);
// gio.AsyncInitable
Linker.link(g_async_initable_get_type, "g_async_initable_get_type", LIBRARY_GIO);
Linker.link(g_async_initable_new_async, "g_async_initable_new_async", LIBRARY_GIO);
Linker.link(g_async_initable_new_valist_async, "g_async_initable_new_valist_async", LIBRARY_GIO);
Linker.link(g_async_initable_newv_async, "g_async_initable_newv_async", LIBRARY_GIO);
Linker.link(g_async_initable_init_async, "g_async_initable_init_async", LIBRARY_GIO);
Linker.link(g_async_initable_init_finish, "g_async_initable_init_finish", LIBRARY_GIO);
Linker.link(g_async_initable_new_finish, "g_async_initable_new_finish", LIBRARY_GIO);
// gio.AsyncResult
Linker.link(g_async_result_get_type, "g_async_result_get_type", LIBRARY_GIO);
Linker.link(g_async_result_get_source_object, "g_async_result_get_source_object", LIBRARY_GIO);
Linker.link(g_async_result_get_user_data, "g_async_result_get_user_data", LIBRARY_GIO);
Linker.link(g_async_result_is_tagged, "g_async_result_is_tagged", LIBRARY_GIO);
Linker.link(g_async_result_legacy_propagate_error, "g_async_result_legacy_propagate_error", LIBRARY_GIO);
// gio.BufferedInputStream
Linker.link(g_buffered_input_stream_get_type, "g_buffered_input_stream_get_type", LIBRARY_GIO);
Linker.link(g_buffered_input_stream_new, "g_buffered_input_stream_new", LIBRARY_GIO);
Linker.link(g_buffered_input_stream_new_sized, "g_buffered_input_stream_new_sized", LIBRARY_GIO);
Linker.link(g_buffered_input_stream_fill, "g_buffered_input_stream_fill", LIBRARY_GIO);
Linker.link(g_buffered_input_stream_fill_async, "g_buffered_input_stream_fill_async", LIBRARY_GIO);
Linker.link(g_buffered_input_stream_fill_finish, "g_buffered_input_stream_fill_finish", LIBRARY_GIO);
Linker.link(g_buffered_input_stream_get_available, "g_buffered_input_stream_get_available", LIBRARY_GIO);
Linker.link(g_buffered_input_stream_get_buffer_size, "g_buffered_input_stream_get_buffer_size", LIBRARY_GIO);
Linker.link(g_buffered_input_stream_peek, "g_buffered_input_stream_peek", LIBRARY_GIO);
Linker.link(g_buffered_input_stream_peek_buffer, "g_buffered_input_stream_peek_buffer", LIBRARY_GIO);
Linker.link(g_buffered_input_stream_read_byte, "g_buffered_input_stream_read_byte", LIBRARY_GIO);
Linker.link(g_buffered_input_stream_set_buffer_size, "g_buffered_input_stream_set_buffer_size", LIBRARY_GIO);
// gio.BufferedOutputStream
Linker.link(g_buffered_output_stream_get_type, "g_buffered_output_stream_get_type", LIBRARY_GIO);
Linker.link(g_buffered_output_stream_new, "g_buffered_output_stream_new", LIBRARY_GIO);
Linker.link(g_buffered_output_stream_new_sized, "g_buffered_output_stream_new_sized", LIBRARY_GIO);
Linker.link(g_buffered_output_stream_get_auto_grow, "g_buffered_output_stream_get_auto_grow", LIBRARY_GIO);
Linker.link(g_buffered_output_stream_get_buffer_size, "g_buffered_output_stream_get_buffer_size", LIBRARY_GIO);
Linker.link(g_buffered_output_stream_set_auto_grow, "g_buffered_output_stream_set_auto_grow", LIBRARY_GIO);
Linker.link(g_buffered_output_stream_set_buffer_size, "g_buffered_output_stream_set_buffer_size", LIBRARY_GIO);
// gio.BytesIcon
Linker.link(g_bytes_icon_get_type, "g_bytes_icon_get_type", LIBRARY_GIO);
Linker.link(g_bytes_icon_new, "g_bytes_icon_new", LIBRARY_GIO);
Linker.link(g_bytes_icon_get_bytes, "g_bytes_icon_get_bytes", LIBRARY_GIO);
// gio.Cancellable
Linker.link(g_cancellable_get_type, "g_cancellable_get_type", LIBRARY_GIO);
Linker.link(g_cancellable_new, "g_cancellable_new", LIBRARY_GIO);
Linker.link(g_cancellable_get_current, "g_cancellable_get_current", LIBRARY_GIO);
Linker.link(g_cancellable_cancel, "g_cancellable_cancel", LIBRARY_GIO);
Linker.link(g_cancellable_connect, "g_cancellable_connect", LIBRARY_GIO);
Linker.link(g_cancellable_disconnect, "g_cancellable_disconnect", LIBRARY_GIO);
Linker.link(g_cancellable_get_fd, "g_cancellable_get_fd", LIBRARY_GIO);
Linker.link(g_cancellable_is_cancelled, "g_cancellable_is_cancelled", LIBRARY_GIO);
Linker.link(g_cancellable_make_pollfd, "g_cancellable_make_pollfd", LIBRARY_GIO);
Linker.link(g_cancellable_pop_current, "g_cancellable_pop_current", LIBRARY_GIO);
Linker.link(g_cancellable_push_current, "g_cancellable_push_current", LIBRARY_GIO);
Linker.link(g_cancellable_release_fd, "g_cancellable_release_fd", LIBRARY_GIO);
Linker.link(g_cancellable_reset, "g_cancellable_reset", LIBRARY_GIO);
Linker.link(g_cancellable_set_error_if_cancelled, "g_cancellable_set_error_if_cancelled", LIBRARY_GIO);
Linker.link(g_cancellable_source_new, "g_cancellable_source_new", LIBRARY_GIO);
// gio.CharsetConverter
Linker.link(g_charset_converter_get_type, "g_charset_converter_get_type", LIBRARY_GIO);
Linker.link(g_charset_converter_new, "g_charset_converter_new", LIBRARY_GIO);
Linker.link(g_charset_converter_get_num_fallbacks, "g_charset_converter_get_num_fallbacks", LIBRARY_GIO);
Linker.link(g_charset_converter_get_use_fallback, "g_charset_converter_get_use_fallback", LIBRARY_GIO);
Linker.link(g_charset_converter_set_use_fallback, "g_charset_converter_set_use_fallback", LIBRARY_GIO);
// gio.Converter
Linker.link(g_converter_get_type, "g_converter_get_type", LIBRARY_GIO);
Linker.link(g_converter_convert, "g_converter_convert", LIBRARY_GIO);
Linker.link(g_converter_reset, "g_converter_reset", LIBRARY_GIO);
// gio.ConverterInputStream
Linker.link(g_converter_input_stream_get_type, "g_converter_input_stream_get_type", LIBRARY_GIO);
Linker.link(g_converter_input_stream_new, "g_converter_input_stream_new", LIBRARY_GIO);
Linker.link(g_converter_input_stream_get_converter, "g_converter_input_stream_get_converter", LIBRARY_GIO);
// gio.ConverterOutputStream
Linker.link(g_converter_output_stream_get_type, "g_converter_output_stream_get_type", LIBRARY_GIO);
Linker.link(g_converter_output_stream_new, "g_converter_output_stream_new", LIBRARY_GIO);
Linker.link(g_converter_output_stream_get_converter, "g_converter_output_stream_get_converter", LIBRARY_GIO);
// gio.Credentials
Linker.link(g_credentials_get_type, "g_credentials_get_type", LIBRARY_GIO);
Linker.link(g_credentials_new, "g_credentials_new", LIBRARY_GIO);
Linker.link(g_credentials_get_native, "g_credentials_get_native", LIBRARY_GIO);
Linker.link(g_credentials_get_unix_pid, "g_credentials_get_unix_pid", LIBRARY_GIO);
Linker.link(g_credentials_get_unix_user, "g_credentials_get_unix_user", LIBRARY_GIO);
Linker.link(g_credentials_is_same_user, "g_credentials_is_same_user", LIBRARY_GIO);
Linker.link(g_credentials_set_native, "g_credentials_set_native", LIBRARY_GIO);
Linker.link(g_credentials_set_unix_user, "g_credentials_set_unix_user", LIBRARY_GIO);
Linker.link(g_credentials_to_string, "g_credentials_to_string", LIBRARY_GIO);
// gio.DBusActionGroup
Linker.link(g_dbus_action_group_get_type, "g_dbus_action_group_get_type", LIBRARY_GIO);
Linker.link(g_dbus_action_group_get, "g_dbus_action_group_get", LIBRARY_GIO);
// gio.DBusAnnotationInfo
Linker.link(g_dbus_annotation_info_get_type, "g_dbus_annotation_info_get_type", LIBRARY_GIO);
Linker.link(g_dbus_annotation_info_ref, "g_dbus_annotation_info_ref", LIBRARY_GIO);
Linker.link(g_dbus_annotation_info_unref, "g_dbus_annotation_info_unref", LIBRARY_GIO);
Linker.link(g_dbus_annotation_info_lookup, "g_dbus_annotation_info_lookup", LIBRARY_GIO);
// gio.DBusArgInfo
Linker.link(g_dbus_arg_info_get_type, "g_dbus_arg_info_get_type", LIBRARY_GIO);
Linker.link(g_dbus_arg_info_ref, "g_dbus_arg_info_ref", LIBRARY_GIO);
Linker.link(g_dbus_arg_info_unref, "g_dbus_arg_info_unref", LIBRARY_GIO);
// gio.DBusAuthObserver
Linker.link(g_dbus_auth_observer_get_type, "g_dbus_auth_observer_get_type", LIBRARY_GIO);
Linker.link(g_dbus_auth_observer_new, "g_dbus_auth_observer_new", LIBRARY_GIO);
Linker.link(g_dbus_auth_observer_allow_mechanism, "g_dbus_auth_observer_allow_mechanism", LIBRARY_GIO);
Linker.link(g_dbus_auth_observer_authorize_authenticated_peer, "g_dbus_auth_observer_authorize_authenticated_peer", LIBRARY_GIO);
// gio.DBusConnection
Linker.link(g_dbus_connection_get_type, "g_dbus_connection_get_type", LIBRARY_GIO);
Linker.link(g_dbus_connection_new_finish, "g_dbus_connection_new_finish", LIBRARY_GIO);
Linker.link(g_dbus_connection_new_for_address_finish, "g_dbus_connection_new_for_address_finish", LIBRARY_GIO);
Linker.link(g_dbus_connection_new_for_address_sync, "g_dbus_connection_new_for_address_sync", LIBRARY_GIO);
Linker.link(g_dbus_connection_new_sync, "g_dbus_connection_new_sync", LIBRARY_GIO);
Linker.link(g_dbus_connection_new, "g_dbus_connection_new", LIBRARY_GIO);
Linker.link(g_dbus_connection_new_for_address, "g_dbus_connection_new_for_address", LIBRARY_GIO);
Linker.link(g_dbus_connection_add_filter, "g_dbus_connection_add_filter", LIBRARY_GIO);
Linker.link(g_dbus_connection_call, "g_dbus_connection_call", LIBRARY_GIO);
Linker.link(g_dbus_connection_call_finish, "g_dbus_connection_call_finish", LIBRARY_GIO);
Linker.link(g_dbus_connection_call_sync, "g_dbus_connection_call_sync", LIBRARY_GIO);
Linker.link(g_dbus_connection_call_with_unix_fd_list, "g_dbus_connection_call_with_unix_fd_list", LIBRARY_GIO);
Linker.link(g_dbus_connection_call_with_unix_fd_list_finish, "g_dbus_connection_call_with_unix_fd_list_finish", LIBRARY_GIO);
Linker.link(g_dbus_connection_call_with_unix_fd_list_sync, "g_dbus_connection_call_with_unix_fd_list_sync", LIBRARY_GIO);
Linker.link(g_dbus_connection_close, "g_dbus_connection_close", LIBRARY_GIO);
Linker.link(g_dbus_connection_close_finish, "g_dbus_connection_close_finish", LIBRARY_GIO);
Linker.link(g_dbus_connection_close_sync, "g_dbus_connection_close_sync", LIBRARY_GIO);
Linker.link(g_dbus_connection_emit_signal, "g_dbus_connection_emit_signal", LIBRARY_GIO);
Linker.link(g_dbus_connection_export_action_group, "g_dbus_connection_export_action_group", LIBRARY_GIO);
Linker.link(g_dbus_connection_export_menu_model, "g_dbus_connection_export_menu_model", LIBRARY_GIO);
Linker.link(g_dbus_connection_flush, "g_dbus_connection_flush", LIBRARY_GIO);
Linker.link(g_dbus_connection_flush_finish, "g_dbus_connection_flush_finish", LIBRARY_GIO);
Linker.link(g_dbus_connection_flush_sync, "g_dbus_connection_flush_sync", LIBRARY_GIO);
Linker.link(g_dbus_connection_get_capabilities, "g_dbus_connection_get_capabilities", LIBRARY_GIO);
Linker.link(g_dbus_connection_get_exit_on_close, "g_dbus_connection_get_exit_on_close", LIBRARY_GIO);
Linker.link(g_dbus_connection_get_flags, "g_dbus_connection_get_flags", LIBRARY_GIO);
Linker.link(g_dbus_connection_get_guid, "g_dbus_connection_get_guid", LIBRARY_GIO);
Linker.link(g_dbus_connection_get_last_serial, "g_dbus_connection_get_last_serial", LIBRARY_GIO);
Linker.link(g_dbus_connection_get_peer_credentials, "g_dbus_connection_get_peer_credentials", LIBRARY_GIO);
Linker.link(g_dbus_connection_get_stream, "g_dbus_connection_get_stream", LIBRARY_GIO);
Linker.link(g_dbus_connection_get_unique_name, "g_dbus_connection_get_unique_name", LIBRARY_GIO);
Linker.link(g_dbus_connection_is_closed, "g_dbus_connection_is_closed", LIBRARY_GIO);
Linker.link(g_dbus_connection_register_object, "g_dbus_connection_register_object", LIBRARY_GIO);
Linker.link(g_dbus_connection_register_object_with_closures, "g_dbus_connection_register_object_with_closures", LIBRARY_GIO);
Linker.link(g_dbus_connection_register_subtree, "g_dbus_connection_register_subtree", LIBRARY_GIO);
Linker.link(g_dbus_connection_remove_filter, "g_dbus_connection_remove_filter", LIBRARY_GIO);
Linker.link(g_dbus_connection_send_message, "g_dbus_connection_send_message", LIBRARY_GIO);
Linker.link(g_dbus_connection_send_message_with_reply, "g_dbus_connection_send_message_with_reply", LIBRARY_GIO);
Linker.link(g_dbus_connection_send_message_with_reply_finish, "g_dbus_connection_send_message_with_reply_finish", LIBRARY_GIO);
Linker.link(g_dbus_connection_send_message_with_reply_sync, "g_dbus_connection_send_message_with_reply_sync", LIBRARY_GIO);
Linker.link(g_dbus_connection_set_exit_on_close, "g_dbus_connection_set_exit_on_close", LIBRARY_GIO);
Linker.link(g_dbus_connection_signal_subscribe, "g_dbus_connection_signal_subscribe", LIBRARY_GIO);
Linker.link(g_dbus_connection_signal_unsubscribe, "g_dbus_connection_signal_unsubscribe", LIBRARY_GIO);
Linker.link(g_dbus_connection_start_message_processing, "g_dbus_connection_start_message_processing", LIBRARY_GIO);
Linker.link(g_dbus_connection_unexport_action_group, "g_dbus_connection_unexport_action_group", LIBRARY_GIO);
Linker.link(g_dbus_connection_unexport_menu_model, "g_dbus_connection_unexport_menu_model", LIBRARY_GIO);
Linker.link(g_dbus_connection_unregister_object, "g_dbus_connection_unregister_object", LIBRARY_GIO);
Linker.link(g_dbus_connection_unregister_subtree, "g_dbus_connection_unregister_subtree", LIBRARY_GIO);
Linker.link(g_bus_get, "g_bus_get", LIBRARY_GIO);
Linker.link(g_bus_get_finish, "g_bus_get_finish", LIBRARY_GIO);
Linker.link(g_bus_get_sync, "g_bus_get_sync", LIBRARY_GIO);
// gio.DBusInterface
Linker.link(g_dbus_interface_get_type, "g_dbus_interface_get_type", LIBRARY_GIO);
Linker.link(g_dbus_interface_dup_object, "g_dbus_interface_dup_object", LIBRARY_GIO);
Linker.link(g_dbus_interface_get_info, "g_dbus_interface_get_info", LIBRARY_GIO);
Linker.link(g_dbus_interface_get_object, "g_dbus_interface_get_object", LIBRARY_GIO);
Linker.link(g_dbus_interface_set_object, "g_dbus_interface_set_object", LIBRARY_GIO);
// gio.DBusInterfaceInfo
Linker.link(g_dbus_interface_info_get_type, "g_dbus_interface_info_get_type", LIBRARY_GIO);
Linker.link(g_dbus_interface_info_cache_build, "g_dbus_interface_info_cache_build", LIBRARY_GIO);
Linker.link(g_dbus_interface_info_cache_release, "g_dbus_interface_info_cache_release", LIBRARY_GIO);
Linker.link(g_dbus_interface_info_generate_xml, "g_dbus_interface_info_generate_xml", LIBRARY_GIO);
Linker.link(g_dbus_interface_info_lookup_method, "g_dbus_interface_info_lookup_method", LIBRARY_GIO);
Linker.link(g_dbus_interface_info_lookup_property, "g_dbus_interface_info_lookup_property", LIBRARY_GIO);
Linker.link(g_dbus_interface_info_lookup_signal, "g_dbus_interface_info_lookup_signal", LIBRARY_GIO);
Linker.link(g_dbus_interface_info_ref, "g_dbus_interface_info_ref", LIBRARY_GIO);
Linker.link(g_dbus_interface_info_unref, "g_dbus_interface_info_unref", LIBRARY_GIO);
// gio.DBusInterfaceSkeleton
Linker.link(g_dbus_interface_skeleton_get_type, "g_dbus_interface_skeleton_get_type", LIBRARY_GIO);
Linker.link(g_dbus_interface_skeleton_export, "g_dbus_interface_skeleton_export", LIBRARY_GIO);
Linker.link(g_dbus_interface_skeleton_flush, "g_dbus_interface_skeleton_flush", LIBRARY_GIO);
Linker.link(g_dbus_interface_skeleton_get_connection, "g_dbus_interface_skeleton_get_connection", LIBRARY_GIO);
Linker.link(g_dbus_interface_skeleton_get_connections, "g_dbus_interface_skeleton_get_connections", LIBRARY_GIO);
Linker.link(g_dbus_interface_skeleton_get_flags, "g_dbus_interface_skeleton_get_flags", LIBRARY_GIO);
Linker.link(g_dbus_interface_skeleton_get_info, "g_dbus_interface_skeleton_get_info", LIBRARY_GIO);
Linker.link(g_dbus_interface_skeleton_get_object_path, "g_dbus_interface_skeleton_get_object_path", LIBRARY_GIO);
Linker.link(g_dbus_interface_skeleton_get_properties, "g_dbus_interface_skeleton_get_properties", LIBRARY_GIO);
Linker.link(g_dbus_interface_skeleton_get_vtable, "g_dbus_interface_skeleton_get_vtable", LIBRARY_GIO);
Linker.link(g_dbus_interface_skeleton_has_connection, "g_dbus_interface_skeleton_has_connection", LIBRARY_GIO);
Linker.link(g_dbus_interface_skeleton_set_flags, "g_dbus_interface_skeleton_set_flags", LIBRARY_GIO);
Linker.link(g_dbus_interface_skeleton_unexport, "g_dbus_interface_skeleton_unexport", LIBRARY_GIO);
Linker.link(g_dbus_interface_skeleton_unexport_from_connection, "g_dbus_interface_skeleton_unexport_from_connection", LIBRARY_GIO);
// gio.DBusMenuModel
Linker.link(g_dbus_menu_model_get_type, "g_dbus_menu_model_get_type", LIBRARY_GIO);
Linker.link(g_dbus_menu_model_get, "g_dbus_menu_model_get", LIBRARY_GIO);
// gio.DBusMessage
Linker.link(g_dbus_message_get_type, "g_dbus_message_get_type", LIBRARY_GIO);
Linker.link(g_dbus_message_new, "g_dbus_message_new", LIBRARY_GIO);
Linker.link(g_dbus_message_new_from_blob, "g_dbus_message_new_from_blob", LIBRARY_GIO);
Linker.link(g_dbus_message_new_method_call, "g_dbus_message_new_method_call", LIBRARY_GIO);
Linker.link(g_dbus_message_new_signal, "g_dbus_message_new_signal", LIBRARY_GIO);
Linker.link(g_dbus_message_bytes_needed, "g_dbus_message_bytes_needed", LIBRARY_GIO);
Linker.link(g_dbus_message_copy, "g_dbus_message_copy", LIBRARY_GIO);
Linker.link(g_dbus_message_get_arg0, "g_dbus_message_get_arg0", LIBRARY_GIO);
Linker.link(g_dbus_message_get_body, "g_dbus_message_get_body", LIBRARY_GIO);
Linker.link(g_dbus_message_get_byte_order, "g_dbus_message_get_byte_order", LIBRARY_GIO);
Linker.link(g_dbus_message_get_destination, "g_dbus_message_get_destination", LIBRARY_GIO);
Linker.link(g_dbus_message_get_error_name, "g_dbus_message_get_error_name", LIBRARY_GIO);
Linker.link(g_dbus_message_get_flags, "g_dbus_message_get_flags", LIBRARY_GIO);
Linker.link(g_dbus_message_get_header, "g_dbus_message_get_header", LIBRARY_GIO);
Linker.link(g_dbus_message_get_header_fields, "g_dbus_message_get_header_fields", LIBRARY_GIO);
Linker.link(g_dbus_message_get_interface, "g_dbus_message_get_interface", LIBRARY_GIO);
Linker.link(g_dbus_message_get_locked, "g_dbus_message_get_locked", LIBRARY_GIO);
Linker.link(g_dbus_message_get_member, "g_dbus_message_get_member", LIBRARY_GIO);
Linker.link(g_dbus_message_get_message_type, "g_dbus_message_get_message_type", LIBRARY_GIO);
Linker.link(g_dbus_message_get_num_unix_fds, "g_dbus_message_get_num_unix_fds", LIBRARY_GIO);
Linker.link(g_dbus_message_get_path, "g_dbus_message_get_path", LIBRARY_GIO);
Linker.link(g_dbus_message_get_reply_serial, "g_dbus_message_get_reply_serial", LIBRARY_GIO);
Linker.link(g_dbus_message_get_sender, "g_dbus_message_get_sender", LIBRARY_GIO);
Linker.link(g_dbus_message_get_serial, "g_dbus_message_get_serial", LIBRARY_GIO);
Linker.link(g_dbus_message_get_signature, "g_dbus_message_get_signature", LIBRARY_GIO);
Linker.link(g_dbus_message_get_unix_fd_list, "g_dbus_message_get_unix_fd_list", LIBRARY_GIO);
Linker.link(g_dbus_message_lock, "g_dbus_message_lock", LIBRARY_GIO);
Linker.link(g_dbus_message_new_method_error, "g_dbus_message_new_method_error", LIBRARY_GIO);
Linker.link(g_dbus_message_new_method_error_literal, "g_dbus_message_new_method_error_literal", LIBRARY_GIO);
Linker.link(g_dbus_message_new_method_error_valist, "g_dbus_message_new_method_error_valist", LIBRARY_GIO);
Linker.link(g_dbus_message_new_method_reply, "g_dbus_message_new_method_reply", LIBRARY_GIO);
Linker.link(g_dbus_message_print, "g_dbus_message_print", LIBRARY_GIO);
Linker.link(g_dbus_message_set_body, "g_dbus_message_set_body", LIBRARY_GIO);
Linker.link(g_dbus_message_set_byte_order, "g_dbus_message_set_byte_order", LIBRARY_GIO);
Linker.link(g_dbus_message_set_destination, "g_dbus_message_set_destination", LIBRARY_GIO);
Linker.link(g_dbus_message_set_error_name, "g_dbus_message_set_error_name", LIBRARY_GIO);
Linker.link(g_dbus_message_set_flags, "g_dbus_message_set_flags", LIBRARY_GIO);
Linker.link(g_dbus_message_set_header, "g_dbus_message_set_header", LIBRARY_GIO);
Linker.link(g_dbus_message_set_interface, "g_dbus_message_set_interface", LIBRARY_GIO);
Linker.link(g_dbus_message_set_member, "g_dbus_message_set_member", LIBRARY_GIO);
Linker.link(g_dbus_message_set_message_type, "g_dbus_message_set_message_type", LIBRARY_GIO);
Linker.link(g_dbus_message_set_num_unix_fds, "g_dbus_message_set_num_unix_fds", LIBRARY_GIO);
Linker.link(g_dbus_message_set_path, "g_dbus_message_set_path", LIBRARY_GIO);
Linker.link(g_dbus_message_set_reply_serial, "g_dbus_message_set_reply_serial", LIBRARY_GIO);
Linker.link(g_dbus_message_set_sender, "g_dbus_message_set_sender", LIBRARY_GIO);
Linker.link(g_dbus_message_set_serial, "g_dbus_message_set_serial", LIBRARY_GIO);
Linker.link(g_dbus_message_set_signature, "g_dbus_message_set_signature", LIBRARY_GIO);
Linker.link(g_dbus_message_set_unix_fd_list, "g_dbus_message_set_unix_fd_list", LIBRARY_GIO);
Linker.link(g_dbus_message_to_blob, "g_dbus_message_to_blob", LIBRARY_GIO);
Linker.link(g_dbus_message_to_gerror, "g_dbus_message_to_gerror", LIBRARY_GIO);
// gio.DBusMethodInfo
Linker.link(g_dbus_method_info_get_type, "g_dbus_method_info_get_type", LIBRARY_GIO);
Linker.link(g_dbus_method_info_ref, "g_dbus_method_info_ref", LIBRARY_GIO);
Linker.link(g_dbus_method_info_unref, "g_dbus_method_info_unref", LIBRARY_GIO);
// gio.DBusMethodInvocation
Linker.link(g_dbus_method_invocation_get_type, "g_dbus_method_invocation_get_type", LIBRARY_GIO);
Linker.link(g_dbus_method_invocation_get_connection, "g_dbus_method_invocation_get_connection", LIBRARY_GIO);
Linker.link(g_dbus_method_invocation_get_interface_name, "g_dbus_method_invocation_get_interface_name", LIBRARY_GIO);
Linker.link(g_dbus_method_invocation_get_message, "g_dbus_method_invocation_get_message", LIBRARY_GIO);
Linker.link(g_dbus_method_invocation_get_method_info, "g_dbus_method_invocation_get_method_info", LIBRARY_GIO);
Linker.link(g_dbus_method_invocation_get_method_name, "g_dbus_method_invocation_get_method_name", LIBRARY_GIO);
Linker.link(g_dbus_method_invocation_get_object_path, "g_dbus_method_invocation_get_object_path", LIBRARY_GIO);
Linker.link(g_dbus_method_invocation_get_parameters, "g_dbus_method_invocation_get_parameters", LIBRARY_GIO);
Linker.link(g_dbus_method_invocation_get_property_info, "g_dbus_method_invocation_get_property_info", LIBRARY_GIO);
Linker.link(g_dbus_method_invocation_get_sender, "g_dbus_method_invocation_get_sender", LIBRARY_GIO);
Linker.link(g_dbus_method_invocation_get_user_data, "g_dbus_method_invocation_get_user_data", LIBRARY_GIO);
Linker.link(g_dbus_method_invocation_return_dbus_error, "g_dbus_method_invocation_return_dbus_error", LIBRARY_GIO);
Linker.link(g_dbus_method_invocation_return_error, "g_dbus_method_invocation_return_error", LIBRARY_GIO);
Linker.link(g_dbus_method_invocation_return_error_literal, "g_dbus_method_invocation_return_error_literal", LIBRARY_GIO);
Linker.link(g_dbus_method_invocation_return_error_valist, "g_dbus_method_invocation_return_error_valist", LIBRARY_GIO);
Linker.link(g_dbus_method_invocation_return_gerror, "g_dbus_method_invocation_return_gerror", LIBRARY_GIO);
Linker.link(g_dbus_method_invocation_return_value, "g_dbus_method_invocation_return_value", LIBRARY_GIO);
Linker.link(g_dbus_method_invocation_return_value_with_unix_fd_list, "g_dbus_method_invocation_return_value_with_unix_fd_list", LIBRARY_GIO);
Linker.link(g_dbus_method_invocation_take_error, "g_dbus_method_invocation_take_error", LIBRARY_GIO);
// gio.DBusNodeInfo
Linker.link(g_dbus_node_info_get_type, "g_dbus_node_info_get_type", LIBRARY_GIO);
Linker.link(g_dbus_node_info_new_for_xml, "g_dbus_node_info_new_for_xml", LIBRARY_GIO);
Linker.link(g_dbus_node_info_generate_xml, "g_dbus_node_info_generate_xml", LIBRARY_GIO);
Linker.link(g_dbus_node_info_lookup_interface, "g_dbus_node_info_lookup_interface", LIBRARY_GIO);
Linker.link(g_dbus_node_info_ref, "g_dbus_node_info_ref", LIBRARY_GIO);
Linker.link(g_dbus_node_info_unref, "g_dbus_node_info_unref", LIBRARY_GIO);
// gio.DBusObject
Linker.link(g_dbus_object_get_type, "g_dbus_object_get_type", LIBRARY_GIO);
Linker.link(g_dbus_object_get_interface, "g_dbus_object_get_interface", LIBRARY_GIO);
Linker.link(g_dbus_object_get_interfaces, "g_dbus_object_get_interfaces", LIBRARY_GIO);
Linker.link(g_dbus_object_get_object_path, "g_dbus_object_get_object_path", LIBRARY_GIO);
// gio.DBusObjectManager
Linker.link(g_dbus_object_manager_get_type, "g_dbus_object_manager_get_type", LIBRARY_GIO);
Linker.link(g_dbus_object_manager_get_interface, "g_dbus_object_manager_get_interface", LIBRARY_GIO);
Linker.link(g_dbus_object_manager_get_object, "g_dbus_object_manager_get_object", LIBRARY_GIO);
Linker.link(g_dbus_object_manager_get_object_path, "g_dbus_object_manager_get_object_path", LIBRARY_GIO);
Linker.link(g_dbus_object_manager_get_objects, "g_dbus_object_manager_get_objects", LIBRARY_GIO);
// gio.DBusObjectManagerClient
Linker.link(g_dbus_object_manager_client_get_type, "g_dbus_object_manager_client_get_type", LIBRARY_GIO);
Linker.link(g_dbus_object_manager_client_new_finish, "g_dbus_object_manager_client_new_finish", LIBRARY_GIO);
Linker.link(g_dbus_object_manager_client_new_for_bus_finish, "g_dbus_object_manager_client_new_for_bus_finish", LIBRARY_GIO);
Linker.link(g_dbus_object_manager_client_new_for_bus_sync, "g_dbus_object_manager_client_new_for_bus_sync", LIBRARY_GIO);
Linker.link(g_dbus_object_manager_client_new_sync, "g_dbus_object_manager_client_new_sync", LIBRARY_GIO);
Linker.link(g_dbus_object_manager_client_new, "g_dbus_object_manager_client_new", LIBRARY_GIO);
Linker.link(g_dbus_object_manager_client_new_for_bus, "g_dbus_object_manager_client_new_for_bus", LIBRARY_GIO);
Linker.link(g_dbus_object_manager_client_get_connection, "g_dbus_object_manager_client_get_connection", LIBRARY_GIO);
Linker.link(g_dbus_object_manager_client_get_flags, "g_dbus_object_manager_client_get_flags", LIBRARY_GIO);
Linker.link(g_dbus_object_manager_client_get_name, "g_dbus_object_manager_client_get_name", LIBRARY_GIO);
Linker.link(g_dbus_object_manager_client_get_name_owner, "g_dbus_object_manager_client_get_name_owner", LIBRARY_GIO);
// gio.DBusObjectManagerServer
Linker.link(g_dbus_object_manager_server_get_type, "g_dbus_object_manager_server_get_type", LIBRARY_GIO);
Linker.link(g_dbus_object_manager_server_new, "g_dbus_object_manager_server_new", LIBRARY_GIO);
Linker.link(g_dbus_object_manager_server_export, "g_dbus_object_manager_server_export", LIBRARY_GIO);
Linker.link(g_dbus_object_manager_server_export_uniquely, "g_dbus_object_manager_server_export_uniquely", LIBRARY_GIO);
Linker.link(g_dbus_object_manager_server_get_connection, "g_dbus_object_manager_server_get_connection", LIBRARY_GIO);
Linker.link(g_dbus_object_manager_server_is_exported, "g_dbus_object_manager_server_is_exported", LIBRARY_GIO);
Linker.link(g_dbus_object_manager_server_set_connection, "g_dbus_object_manager_server_set_connection", LIBRARY_GIO);
Linker.link(g_dbus_object_manager_server_unexport, "g_dbus_object_manager_server_unexport", LIBRARY_GIO);
// gio.DBusObjectProxy
Linker.link(g_dbus_object_proxy_get_type, "g_dbus_object_proxy_get_type", LIBRARY_GIO);
Linker.link(g_dbus_object_proxy_new, "g_dbus_object_proxy_new", LIBRARY_GIO);
Linker.link(g_dbus_object_proxy_get_connection, "g_dbus_object_proxy_get_connection", LIBRARY_GIO);
// gio.DBusObjectSkeleton
Linker.link(g_dbus_object_skeleton_get_type, "g_dbus_object_skeleton_get_type", LIBRARY_GIO);
Linker.link(g_dbus_object_skeleton_new, "g_dbus_object_skeleton_new", LIBRARY_GIO);
Linker.link(g_dbus_object_skeleton_add_interface, "g_dbus_object_skeleton_add_interface", LIBRARY_GIO);
Linker.link(g_dbus_object_skeleton_flush, "g_dbus_object_skeleton_flush", LIBRARY_GIO);
Linker.link(g_dbus_object_skeleton_remove_interface, "g_dbus_object_skeleton_remove_interface", LIBRARY_GIO);
Linker.link(g_dbus_object_skeleton_remove_interface_by_name, "g_dbus_object_skeleton_remove_interface_by_name", LIBRARY_GIO);
Linker.link(g_dbus_object_skeleton_set_object_path, "g_dbus_object_skeleton_set_object_path", LIBRARY_GIO);
// gio.DBusPropertyInfo
Linker.link(g_dbus_property_info_get_type, "g_dbus_property_info_get_type", LIBRARY_GIO);
Linker.link(g_dbus_property_info_ref, "g_dbus_property_info_ref", LIBRARY_GIO);
Linker.link(g_dbus_property_info_unref, "g_dbus_property_info_unref", LIBRARY_GIO);
// gio.DBusProxy
Linker.link(g_dbus_proxy_get_type, "g_dbus_proxy_get_type", LIBRARY_GIO);
Linker.link(g_dbus_proxy_new_finish, "g_dbus_proxy_new_finish", LIBRARY_GIO);
Linker.link(g_dbus_proxy_new_for_bus_finish, "g_dbus_proxy_new_for_bus_finish", LIBRARY_GIO);
Linker.link(g_dbus_proxy_new_for_bus_sync, "g_dbus_proxy_new_for_bus_sync", LIBRARY_GIO);
Linker.link(g_dbus_proxy_new_sync, "g_dbus_proxy_new_sync", LIBRARY_GIO);
Linker.link(g_dbus_proxy_new, "g_dbus_proxy_new", LIBRARY_GIO);
Linker.link(g_dbus_proxy_new_for_bus, "g_dbus_proxy_new_for_bus", LIBRARY_GIO);
Linker.link(g_dbus_proxy_call, "g_dbus_proxy_call", LIBRARY_GIO);
Linker.link(g_dbus_proxy_call_finish, "g_dbus_proxy_call_finish", LIBRARY_GIO);
Linker.link(g_dbus_proxy_call_sync, "g_dbus_proxy_call_sync", LIBRARY_GIO);
Linker.link(g_dbus_proxy_call_with_unix_fd_list, "g_dbus_proxy_call_with_unix_fd_list", LIBRARY_GIO);
Linker.link(g_dbus_proxy_call_with_unix_fd_list_finish, "g_dbus_proxy_call_with_unix_fd_list_finish", LIBRARY_GIO);
Linker.link(g_dbus_proxy_call_with_unix_fd_list_sync, "g_dbus_proxy_call_with_unix_fd_list_sync", LIBRARY_GIO);
Linker.link(g_dbus_proxy_get_cached_property, "g_dbus_proxy_get_cached_property", LIBRARY_GIO);
Linker.link(g_dbus_proxy_get_cached_property_names, "g_dbus_proxy_get_cached_property_names", LIBRARY_GIO);
Linker.link(g_dbus_proxy_get_connection, "g_dbus_proxy_get_connection", LIBRARY_GIO);
Linker.link(g_dbus_proxy_get_default_timeout, "g_dbus_proxy_get_default_timeout", LIBRARY_GIO);
Linker.link(g_dbus_proxy_get_flags, "g_dbus_proxy_get_flags", LIBRARY_GIO);
Linker.link(g_dbus_proxy_get_interface_info, "g_dbus_proxy_get_interface_info", LIBRARY_GIO);
Linker.link(g_dbus_proxy_get_interface_name, "g_dbus_proxy_get_interface_name", LIBRARY_GIO);
Linker.link(g_dbus_proxy_get_name, "g_dbus_proxy_get_name", LIBRARY_GIO);
Linker.link(g_dbus_proxy_get_name_owner, "g_dbus_proxy_get_name_owner", LIBRARY_GIO);
Linker.link(g_dbus_proxy_get_object_path, "g_dbus_proxy_get_object_path", LIBRARY_GIO);
Linker.link(g_dbus_proxy_set_cached_property, "g_dbus_proxy_set_cached_property", LIBRARY_GIO);
Linker.link(g_dbus_proxy_set_default_timeout, "g_dbus_proxy_set_default_timeout", LIBRARY_GIO);
Linker.link(g_dbus_proxy_set_interface_info, "g_dbus_proxy_set_interface_info", LIBRARY_GIO);
// gio.DBusServer
Linker.link(g_dbus_server_get_type, "g_dbus_server_get_type", LIBRARY_GIO);
Linker.link(g_dbus_server_new_sync, "g_dbus_server_new_sync", LIBRARY_GIO);
Linker.link(g_dbus_server_get_client_address, "g_dbus_server_get_client_address", LIBRARY_GIO);
Linker.link(g_dbus_server_get_flags, "g_dbus_server_get_flags", LIBRARY_GIO);
Linker.link(g_dbus_server_get_guid, "g_dbus_server_get_guid", LIBRARY_GIO);
Linker.link(g_dbus_server_is_active, "g_dbus_server_is_active", LIBRARY_GIO);
Linker.link(g_dbus_server_start, "g_dbus_server_start", LIBRARY_GIO);
Linker.link(g_dbus_server_stop, "g_dbus_server_stop", LIBRARY_GIO);
// gio.DBusSignalInfo
Linker.link(g_dbus_signal_info_get_type, "g_dbus_signal_info_get_type", LIBRARY_GIO);
Linker.link(g_dbus_signal_info_ref, "g_dbus_signal_info_ref", LIBRARY_GIO);
Linker.link(g_dbus_signal_info_unref, "g_dbus_signal_info_unref", LIBRARY_GIO);
// gio.DataInputStream
Linker.link(g_data_input_stream_get_type, "g_data_input_stream_get_type", LIBRARY_GIO);
Linker.link(g_data_input_stream_new, "g_data_input_stream_new", LIBRARY_GIO);
Linker.link(g_data_input_stream_get_byte_order, "g_data_input_stream_get_byte_order", LIBRARY_GIO);
Linker.link(g_data_input_stream_get_newline_type, "g_data_input_stream_get_newline_type", LIBRARY_GIO);
Linker.link(g_data_input_stream_read_byte, "g_data_input_stream_read_byte", LIBRARY_GIO);
Linker.link(g_data_input_stream_read_int16, "g_data_input_stream_read_int16", LIBRARY_GIO);
Linker.link(g_data_input_stream_read_int32, "g_data_input_stream_read_int32", LIBRARY_GIO);
Linker.link(g_data_input_stream_read_int64, "g_data_input_stream_read_int64", LIBRARY_GIO);
Linker.link(g_data_input_stream_read_line, "g_data_input_stream_read_line", LIBRARY_GIO);
Linker.link(g_data_input_stream_read_line_async, "g_data_input_stream_read_line_async", LIBRARY_GIO);
Linker.link(g_data_input_stream_read_line_finish, "g_data_input_stream_read_line_finish", LIBRARY_GIO);
Linker.link(g_data_input_stream_read_line_finish_utf8, "g_data_input_stream_read_line_finish_utf8", LIBRARY_GIO);
Linker.link(g_data_input_stream_read_line_utf8, "g_data_input_stream_read_line_utf8", LIBRARY_GIO);
Linker.link(g_data_input_stream_read_uint16, "g_data_input_stream_read_uint16", LIBRARY_GIO);
Linker.link(g_data_input_stream_read_uint32, "g_data_input_stream_read_uint32", LIBRARY_GIO);
Linker.link(g_data_input_stream_read_uint64, "g_data_input_stream_read_uint64", LIBRARY_GIO);
Linker.link(g_data_input_stream_read_until, "g_data_input_stream_read_until", LIBRARY_GIO);
Linker.link(g_data_input_stream_read_until_async, "g_data_input_stream_read_until_async", LIBRARY_GIO);
Linker.link(g_data_input_stream_read_until_finish, "g_data_input_stream_read_until_finish", LIBRARY_GIO);
Linker.link(g_data_input_stream_read_upto, "g_data_input_stream_read_upto", LIBRARY_GIO);
Linker.link(g_data_input_stream_read_upto_async, "g_data_input_stream_read_upto_async", LIBRARY_GIO);
Linker.link(g_data_input_stream_read_upto_finish, "g_data_input_stream_read_upto_finish", LIBRARY_GIO);
Linker.link(g_data_input_stream_set_byte_order, "g_data_input_stream_set_byte_order", LIBRARY_GIO);
Linker.link(g_data_input_stream_set_newline_type, "g_data_input_stream_set_newline_type", LIBRARY_GIO);
// gio.DataOutputStream
Linker.link(g_data_output_stream_get_type, "g_data_output_stream_get_type", LIBRARY_GIO);
Linker.link(g_data_output_stream_new, "g_data_output_stream_new", LIBRARY_GIO);
Linker.link(g_data_output_stream_get_byte_order, "g_data_output_stream_get_byte_order", LIBRARY_GIO);
Linker.link(g_data_output_stream_put_byte, "g_data_output_stream_put_byte", LIBRARY_GIO);
Linker.link(g_data_output_stream_put_int16, "g_data_output_stream_put_int16", LIBRARY_GIO);
Linker.link(g_data_output_stream_put_int32, "g_data_output_stream_put_int32", LIBRARY_GIO);
Linker.link(g_data_output_stream_put_int64, "g_data_output_stream_put_int64", LIBRARY_GIO);
Linker.link(g_data_output_stream_put_string, "g_data_output_stream_put_string", LIBRARY_GIO);
Linker.link(g_data_output_stream_put_uint16, "g_data_output_stream_put_uint16", LIBRARY_GIO);
Linker.link(g_data_output_stream_put_uint32, "g_data_output_stream_put_uint32", LIBRARY_GIO);
Linker.link(g_data_output_stream_put_uint64, "g_data_output_stream_put_uint64", LIBRARY_GIO);
Linker.link(g_data_output_stream_set_byte_order, "g_data_output_stream_set_byte_order", LIBRARY_GIO);
// gio.DatagramBased
Linker.link(g_datagram_based_get_type, "g_datagram_based_get_type", LIBRARY_GIO);
Linker.link(g_datagram_based_condition_check, "g_datagram_based_condition_check", LIBRARY_GIO);
Linker.link(g_datagram_based_condition_wait, "g_datagram_based_condition_wait", LIBRARY_GIO);
Linker.link(g_datagram_based_create_source, "g_datagram_based_create_source", LIBRARY_GIO);
Linker.link(g_datagram_based_receive_messages, "g_datagram_based_receive_messages", LIBRARY_GIO);
Linker.link(g_datagram_based_send_messages, "g_datagram_based_send_messages", LIBRARY_GIO);
// gio.DesktopAppInfo
Linker.link(g_desktop_app_info_get_type, "g_desktop_app_info_get_type", LIBRARY_GIO);
Linker.link(g_desktop_app_info_new, "g_desktop_app_info_new", LIBRARY_GIO);
Linker.link(g_desktop_app_info_new_from_filename, "g_desktop_app_info_new_from_filename", LIBRARY_GIO);
Linker.link(g_desktop_app_info_new_from_keyfile, "g_desktop_app_info_new_from_keyfile", LIBRARY_GIO);
Linker.link(g_desktop_app_info_get_implementations, "g_desktop_app_info_get_implementations", LIBRARY_GIO);
Linker.link(g_desktop_app_info_search, "g_desktop_app_info_search", LIBRARY_GIO);
Linker.link(g_desktop_app_info_set_desktop_env, "g_desktop_app_info_set_desktop_env", LIBRARY_GIO);
Linker.link(g_desktop_app_info_get_action_name, "g_desktop_app_info_get_action_name", LIBRARY_GIO);
Linker.link(g_desktop_app_info_get_boolean, "g_desktop_app_info_get_boolean", LIBRARY_GIO);
Linker.link(g_desktop_app_info_get_categories, "g_desktop_app_info_get_categories", LIBRARY_GIO);
Linker.link(g_desktop_app_info_get_filename, "g_desktop_app_info_get_filename", LIBRARY_GIO);
Linker.link(g_desktop_app_info_get_generic_name, "g_desktop_app_info_get_generic_name", LIBRARY_GIO);
Linker.link(g_desktop_app_info_get_is_hidden, "g_desktop_app_info_get_is_hidden", LIBRARY_GIO);
Linker.link(g_desktop_app_info_get_keywords, "g_desktop_app_info_get_keywords", LIBRARY_GIO);
Linker.link(g_desktop_app_info_get_locale_string, "g_desktop_app_info_get_locale_string", LIBRARY_GIO);
Linker.link(g_desktop_app_info_get_nodisplay, "g_desktop_app_info_get_nodisplay", LIBRARY_GIO);
Linker.link(g_desktop_app_info_get_show_in, "g_desktop_app_info_get_show_in", LIBRARY_GIO);
Linker.link(g_desktop_app_info_get_startup_wm_class, "g_desktop_app_info_get_startup_wm_class", LIBRARY_GIO);
Linker.link(g_desktop_app_info_get_string, "g_desktop_app_info_get_string", LIBRARY_GIO);
Linker.link(g_desktop_app_info_get_string_list, "g_desktop_app_info_get_string_list", LIBRARY_GIO);
Linker.link(g_desktop_app_info_has_key, "g_desktop_app_info_has_key", LIBRARY_GIO);
Linker.link(g_desktop_app_info_launch_action, "g_desktop_app_info_launch_action", LIBRARY_GIO);
Linker.link(g_desktop_app_info_launch_uris_as_manager, "g_desktop_app_info_launch_uris_as_manager", LIBRARY_GIO);
Linker.link(g_desktop_app_info_launch_uris_as_manager_with_fds, "g_desktop_app_info_launch_uris_as_manager_with_fds", LIBRARY_GIO);
Linker.link(g_desktop_app_info_list_actions, "g_desktop_app_info_list_actions", LIBRARY_GIO);
// gio.DesktopAppInfoLookup
Linker.link(g_desktop_app_info_lookup_get_type, "g_desktop_app_info_lookup_get_type", LIBRARY_GIO);
Linker.link(g_desktop_app_info_lookup_get_default_for_uri_scheme, "g_desktop_app_info_lookup_get_default_for_uri_scheme", LIBRARY_GIO);
// gio.Drive
Linker.link(g_drive_get_type, "g_drive_get_type", LIBRARY_GIO);
Linker.link(g_drive_can_eject, "g_drive_can_eject", LIBRARY_GIO);
Linker.link(g_drive_can_poll_for_media, "g_drive_can_poll_for_media", LIBRARY_GIO);
Linker.link(g_drive_can_start, "g_drive_can_start", LIBRARY_GIO);
Linker.link(g_drive_can_start_degraded, "g_drive_can_start_degraded", LIBRARY_GIO);
Linker.link(g_drive_can_stop, "g_drive_can_stop", LIBRARY_GIO);
Linker.link(g_drive_eject, "g_drive_eject", LIBRARY_GIO);
Linker.link(g_drive_eject_finish, "g_drive_eject_finish", LIBRARY_GIO);
Linker.link(g_drive_eject_with_operation, "g_drive_eject_with_operation", LIBRARY_GIO);
Linker.link(g_drive_eject_with_operation_finish, "g_drive_eject_with_operation_finish", LIBRARY_GIO);
Linker.link(g_drive_enumerate_identifiers, "g_drive_enumerate_identifiers", LIBRARY_GIO);
Linker.link(g_drive_get_icon, "g_drive_get_icon", LIBRARY_GIO);
Linker.link(g_drive_get_identifier, "g_drive_get_identifier", LIBRARY_GIO);
Linker.link(g_drive_get_name, "g_drive_get_name", LIBRARY_GIO);
Linker.link(g_drive_get_sort_key, "g_drive_get_sort_key", LIBRARY_GIO);
Linker.link(g_drive_get_start_stop_type, "g_drive_get_start_stop_type", LIBRARY_GIO);
Linker.link(g_drive_get_symbolic_icon, "g_drive_get_symbolic_icon", LIBRARY_GIO);
Linker.link(g_drive_get_volumes, "g_drive_get_volumes", LIBRARY_GIO);
Linker.link(g_drive_has_media, "g_drive_has_media", LIBRARY_GIO);
Linker.link(g_drive_has_volumes, "g_drive_has_volumes", LIBRARY_GIO);
Linker.link(g_drive_is_media_check_automatic, "g_drive_is_media_check_automatic", LIBRARY_GIO);
Linker.link(g_drive_is_media_removable, "g_drive_is_media_removable", LIBRARY_GIO);
Linker.link(g_drive_is_removable, "g_drive_is_removable", LIBRARY_GIO);
Linker.link(g_drive_poll_for_media, "g_drive_poll_for_media", LIBRARY_GIO);
Linker.link(g_drive_poll_for_media_finish, "g_drive_poll_for_media_finish", LIBRARY_GIO);
Linker.link(g_drive_start, "g_drive_start", LIBRARY_GIO);
Linker.link(g_drive_start_finish, "g_drive_start_finish", LIBRARY_GIO);
Linker.link(g_drive_stop, "g_drive_stop", LIBRARY_GIO);
Linker.link(g_drive_stop_finish, "g_drive_stop_finish", LIBRARY_GIO);
// gio.DtlsClientConnection
Linker.link(g_dtls_client_connection_get_type, "g_dtls_client_connection_get_type", LIBRARY_GIO);
Linker.link(g_dtls_client_connection_new, "g_dtls_client_connection_new", LIBRARY_GIO);
Linker.link(g_dtls_client_connection_get_accepted_cas, "g_dtls_client_connection_get_accepted_cas", LIBRARY_GIO);
Linker.link(g_dtls_client_connection_get_server_identity, "g_dtls_client_connection_get_server_identity", LIBRARY_GIO);
Linker.link(g_dtls_client_connection_get_validation_flags, "g_dtls_client_connection_get_validation_flags", LIBRARY_GIO);
Linker.link(g_dtls_client_connection_set_server_identity, "g_dtls_client_connection_set_server_identity", LIBRARY_GIO);
Linker.link(g_dtls_client_connection_set_validation_flags, "g_dtls_client_connection_set_validation_flags", LIBRARY_GIO);
// gio.DtlsConnection
Linker.link(g_dtls_connection_get_type, "g_dtls_connection_get_type", LIBRARY_GIO);
Linker.link(g_dtls_connection_close, "g_dtls_connection_close", LIBRARY_GIO);
Linker.link(g_dtls_connection_close_async, "g_dtls_connection_close_async", LIBRARY_GIO);
Linker.link(g_dtls_connection_close_finish, "g_dtls_connection_close_finish", LIBRARY_GIO);
Linker.link(g_dtls_connection_emit_accept_certificate, "g_dtls_connection_emit_accept_certificate", LIBRARY_GIO);
Linker.link(g_dtls_connection_get_certificate, "g_dtls_connection_get_certificate", LIBRARY_GIO);
Linker.link(g_dtls_connection_get_database, "g_dtls_connection_get_database", LIBRARY_GIO);
Linker.link(g_dtls_connection_get_interaction, "g_dtls_connection_get_interaction", LIBRARY_GIO);
Linker.link(g_dtls_connection_get_negotiated_protocol, "g_dtls_connection_get_negotiated_protocol", LIBRARY_GIO);
Linker.link(g_dtls_connection_get_peer_certificate, "g_dtls_connection_get_peer_certificate", LIBRARY_GIO);
Linker.link(g_dtls_connection_get_peer_certificate_errors, "g_dtls_connection_get_peer_certificate_errors", LIBRARY_GIO);
Linker.link(g_dtls_connection_get_rehandshake_mode, "g_dtls_connection_get_rehandshake_mode", LIBRARY_GIO);
Linker.link(g_dtls_connection_get_require_close_notify, "g_dtls_connection_get_require_close_notify", LIBRARY_GIO);
Linker.link(g_dtls_connection_handshake, "g_dtls_connection_handshake", LIBRARY_GIO);
Linker.link(g_dtls_connection_handshake_async, "g_dtls_connection_handshake_async", LIBRARY_GIO);
Linker.link(g_dtls_connection_handshake_finish, "g_dtls_connection_handshake_finish", LIBRARY_GIO);
Linker.link(g_dtls_connection_set_advertised_protocols, "g_dtls_connection_set_advertised_protocols", LIBRARY_GIO);
Linker.link(g_dtls_connection_set_certificate, "g_dtls_connection_set_certificate", LIBRARY_GIO);
Linker.link(g_dtls_connection_set_database, "g_dtls_connection_set_database", LIBRARY_GIO);
Linker.link(g_dtls_connection_set_interaction, "g_dtls_connection_set_interaction", LIBRARY_GIO);
Linker.link(g_dtls_connection_set_rehandshake_mode, "g_dtls_connection_set_rehandshake_mode", LIBRARY_GIO);
Linker.link(g_dtls_connection_set_require_close_notify, "g_dtls_connection_set_require_close_notify", LIBRARY_GIO);
Linker.link(g_dtls_connection_shutdown, "g_dtls_connection_shutdown", LIBRARY_GIO);
Linker.link(g_dtls_connection_shutdown_async, "g_dtls_connection_shutdown_async", LIBRARY_GIO);
Linker.link(g_dtls_connection_shutdown_finish, "g_dtls_connection_shutdown_finish", LIBRARY_GIO);
// gio.DtlsServerConnection
Linker.link(g_dtls_server_connection_get_type, "g_dtls_server_connection_get_type", LIBRARY_GIO);
Linker.link(g_dtls_server_connection_new, "g_dtls_server_connection_new", LIBRARY_GIO);
// gio.Emblem
Linker.link(g_emblem_get_type, "g_emblem_get_type", LIBRARY_GIO);
Linker.link(g_emblem_new, "g_emblem_new", LIBRARY_GIO);
Linker.link(g_emblem_new_with_origin, "g_emblem_new_with_origin", LIBRARY_GIO);
Linker.link(g_emblem_get_icon, "g_emblem_get_icon", LIBRARY_GIO);
Linker.link(g_emblem_get_origin, "g_emblem_get_origin", LIBRARY_GIO);
// gio.EmblemedIcon
Linker.link(g_emblemed_icon_get_type, "g_emblemed_icon_get_type", LIBRARY_GIO);
Linker.link(g_emblemed_icon_new, "g_emblemed_icon_new", LIBRARY_GIO);
Linker.link(g_emblemed_icon_add_emblem, "g_emblemed_icon_add_emblem", LIBRARY_GIO);
Linker.link(g_emblemed_icon_clear_emblems, "g_emblemed_icon_clear_emblems", LIBRARY_GIO);
Linker.link(g_emblemed_icon_get_emblems, "g_emblemed_icon_get_emblems", LIBRARY_GIO);
Linker.link(g_emblemed_icon_get_icon, "g_emblemed_icon_get_icon", LIBRARY_GIO);
// gio.File
Linker.link(g_file_get_type, "g_file_get_type", LIBRARY_GIO);
Linker.link(g_file_new_build_filename, "g_file_new_build_filename", LIBRARY_GIO);
Linker.link(g_file_new_for_commandline_arg, "g_file_new_for_commandline_arg", LIBRARY_GIO);
Linker.link(g_file_new_for_commandline_arg_and_cwd, "g_file_new_for_commandline_arg_and_cwd", LIBRARY_GIO);
Linker.link(g_file_new_for_path, "g_file_new_for_path", LIBRARY_GIO);
Linker.link(g_file_new_for_uri, "g_file_new_for_uri", LIBRARY_GIO);
Linker.link(g_file_new_tmp, "g_file_new_tmp", LIBRARY_GIO);
Linker.link(g_file_parse_name, "g_file_parse_name", LIBRARY_GIO);
Linker.link(g_file_append_to, "g_file_append_to", LIBRARY_GIO);
Linker.link(g_file_append_to_async, "g_file_append_to_async", LIBRARY_GIO);
Linker.link(g_file_append_to_finish, "g_file_append_to_finish", LIBRARY_GIO);
Linker.link(g_file_copy, "g_file_copy", LIBRARY_GIO);
Linker.link(g_file_copy_async, "g_file_copy_async", LIBRARY_GIO);
Linker.link(g_file_copy_attributes, "g_file_copy_attributes", LIBRARY_GIO);
Linker.link(g_file_copy_finish, "g_file_copy_finish", LIBRARY_GIO);
Linker.link(g_file_create, "g_file_create", LIBRARY_GIO);
Linker.link(g_file_create_async, "g_file_create_async", LIBRARY_GIO);
Linker.link(g_file_create_finish, "g_file_create_finish", LIBRARY_GIO);
Linker.link(g_file_create_readwrite, "g_file_create_readwrite", LIBRARY_GIO);
Linker.link(g_file_create_readwrite_async, "g_file_create_readwrite_async", LIBRARY_GIO);
Linker.link(g_file_create_readwrite_finish, "g_file_create_readwrite_finish", LIBRARY_GIO);
Linker.link(g_file_delete, "g_file_delete", LIBRARY_GIO);
Linker.link(g_file_delete_async, "g_file_delete_async", LIBRARY_GIO);
Linker.link(g_file_delete_finish, "g_file_delete_finish", LIBRARY_GIO);
Linker.link(g_file_dup, "g_file_dup", LIBRARY_GIO);
Linker.link(g_file_eject_mountable, "g_file_eject_mountable", LIBRARY_GIO);
Linker.link(g_file_eject_mountable_finish, "g_file_eject_mountable_finish", LIBRARY_GIO);
Linker.link(g_file_eject_mountable_with_operation, "g_file_eject_mountable_with_operation", LIBRARY_GIO);
Linker.link(g_file_eject_mountable_with_operation_finish, "g_file_eject_mountable_with_operation_finish", LIBRARY_GIO);
Linker.link(g_file_enumerate_children, "g_file_enumerate_children", LIBRARY_GIO);
Linker.link(g_file_enumerate_children_async, "g_file_enumerate_children_async", LIBRARY_GIO);
Linker.link(g_file_enumerate_children_finish, "g_file_enumerate_children_finish", LIBRARY_GIO);
Linker.link(g_file_equal, "g_file_equal", LIBRARY_GIO);
Linker.link(g_file_find_enclosing_mount, "g_file_find_enclosing_mount", LIBRARY_GIO);
Linker.link(g_file_find_enclosing_mount_async, "g_file_find_enclosing_mount_async", LIBRARY_GIO);
Linker.link(g_file_find_enclosing_mount_finish, "g_file_find_enclosing_mount_finish", LIBRARY_GIO);
Linker.link(g_file_get_basename, "g_file_get_basename", LIBRARY_GIO);
Linker.link(g_file_get_child, "g_file_get_child", LIBRARY_GIO);
Linker.link(g_file_get_child_for_display_name, "g_file_get_child_for_display_name", LIBRARY_GIO);
Linker.link(g_file_get_parent, "g_file_get_parent", LIBRARY_GIO);
Linker.link(g_file_get_parse_name, "g_file_get_parse_name", LIBRARY_GIO);
Linker.link(g_file_get_path, "g_file_get_path", LIBRARY_GIO);
Linker.link(g_file_get_relative_path, "g_file_get_relative_path", LIBRARY_GIO);
Linker.link(g_file_get_uri, "g_file_get_uri", LIBRARY_GIO);
Linker.link(g_file_get_uri_scheme, "g_file_get_uri_scheme", LIBRARY_GIO);
Linker.link(g_file_has_parent, "g_file_has_parent", LIBRARY_GIO);
Linker.link(g_file_has_prefix, "g_file_has_prefix", LIBRARY_GIO);
Linker.link(g_file_has_uri_scheme, "g_file_has_uri_scheme", LIBRARY_GIO);
Linker.link(g_file_hash, "g_file_hash", LIBRARY_GIO);
Linker.link(g_file_is_native, "g_file_is_native", LIBRARY_GIO);
Linker.link(g_file_load_bytes, "g_file_load_bytes", LIBRARY_GIO);
Linker.link(g_file_load_bytes_async, "g_file_load_bytes_async", LIBRARY_GIO);
Linker.link(g_file_load_bytes_finish, "g_file_load_bytes_finish", LIBRARY_GIO);
Linker.link(g_file_load_contents, "g_file_load_contents", LIBRARY_GIO);
Linker.link(g_file_load_contents_async, "g_file_load_contents_async", LIBRARY_GIO);
Linker.link(g_file_load_contents_finish, "g_file_load_contents_finish", LIBRARY_GIO);
Linker.link(g_file_load_partial_contents_async, "g_file_load_partial_contents_async", LIBRARY_GIO);
Linker.link(g_file_load_partial_contents_finish, "g_file_load_partial_contents_finish", LIBRARY_GIO);
Linker.link(g_file_make_directory, "g_file_make_directory", LIBRARY_GIO);
Linker.link(g_file_make_directory_async, "g_file_make_directory_async", LIBRARY_GIO);
Linker.link(g_file_make_directory_finish, "g_file_make_directory_finish", LIBRARY_GIO);
Linker.link(g_file_make_directory_with_parents, "g_file_make_directory_with_parents", LIBRARY_GIO);
Linker.link(g_file_make_symbolic_link, "g_file_make_symbolic_link", LIBRARY_GIO);
Linker.link(g_file_measure_disk_usage, "g_file_measure_disk_usage", LIBRARY_GIO);
Linker.link(g_file_measure_disk_usage_async, "g_file_measure_disk_usage_async", LIBRARY_GIO);
Linker.link(g_file_measure_disk_usage_finish, "g_file_measure_disk_usage_finish", LIBRARY_GIO);
Linker.link(g_file_monitor, "g_file_monitor", LIBRARY_GIO);
Linker.link(g_file_monitor_directory, "g_file_monitor_directory", LIBRARY_GIO);
Linker.link(g_file_monitor_file, "g_file_monitor_file", LIBRARY_GIO);
Linker.link(g_file_mount_enclosing_volume, "g_file_mount_enclosing_volume", LIBRARY_GIO);
Linker.link(g_file_mount_enclosing_volume_finish, "g_file_mount_enclosing_volume_finish", LIBRARY_GIO);
Linker.link(g_file_mount_mountable, "g_file_mount_mountable", LIBRARY_GIO);
Linker.link(g_file_mount_mountable_finish, "g_file_mount_mountable_finish", LIBRARY_GIO);
Linker.link(g_file_move, "g_file_move", LIBRARY_GIO);
Linker.link(g_file_open_readwrite, "g_file_open_readwrite", LIBRARY_GIO);
Linker.link(g_file_open_readwrite_async, "g_file_open_readwrite_async", LIBRARY_GIO);
Linker.link(g_file_open_readwrite_finish, "g_file_open_readwrite_finish", LIBRARY_GIO);
Linker.link(g_file_peek_path, "g_file_peek_path", LIBRARY_GIO);
Linker.link(g_file_poll_mountable, "g_file_poll_mountable", LIBRARY_GIO);
Linker.link(g_file_poll_mountable_finish, "g_file_poll_mountable_finish", LIBRARY_GIO);
Linker.link(g_file_query_default_handler, "g_file_query_default_handler", LIBRARY_GIO);
Linker.link(g_file_query_default_handler_async, "g_file_query_default_handler_async", LIBRARY_GIO);
Linker.link(g_file_query_default_handler_finish, "g_file_query_default_handler_finish", LIBRARY_GIO);
Linker.link(g_file_query_exists, "g_file_query_exists", LIBRARY_GIO);
Linker.link(g_file_query_file_type, "g_file_query_file_type", LIBRARY_GIO);
Linker.link(g_file_query_filesystem_info, "g_file_query_filesystem_info", LIBRARY_GIO);
Linker.link(g_file_query_filesystem_info_async, "g_file_query_filesystem_info_async", LIBRARY_GIO);
Linker.link(g_file_query_filesystem_info_finish, "g_file_query_filesystem_info_finish", LIBRARY_GIO);
Linker.link(g_file_query_info, "g_file_query_info", LIBRARY_GIO);
Linker.link(g_file_query_info_async, "g_file_query_info_async", LIBRARY_GIO);
Linker.link(g_file_query_info_finish, "g_file_query_info_finish", LIBRARY_GIO);
Linker.link(g_file_query_settable_attributes, "g_file_query_settable_attributes", LIBRARY_GIO);
Linker.link(g_file_query_writable_namespaces, "g_file_query_writable_namespaces", LIBRARY_GIO);
Linker.link(g_file_read, "g_file_read", LIBRARY_GIO);
Linker.link(g_file_read_async, "g_file_read_async", LIBRARY_GIO);
Linker.link(g_file_read_finish, "g_file_read_finish", LIBRARY_GIO);
Linker.link(g_file_replace, "g_file_replace", LIBRARY_GIO);
Linker.link(g_file_replace_async, "g_file_replace_async", LIBRARY_GIO);
Linker.link(g_file_replace_contents, "g_file_replace_contents", LIBRARY_GIO);
Linker.link(g_file_replace_contents_async, "g_file_replace_contents_async", LIBRARY_GIO);
Linker.link(g_file_replace_contents_bytes_async, "g_file_replace_contents_bytes_async", LIBRARY_GIO);
Linker.link(g_file_replace_contents_finish, "g_file_replace_contents_finish", LIBRARY_GIO);
Linker.link(g_file_replace_finish, "g_file_replace_finish", LIBRARY_GIO);
Linker.link(g_file_replace_readwrite, "g_file_replace_readwrite", LIBRARY_GIO);
Linker.link(g_file_replace_readwrite_async, "g_file_replace_readwrite_async", LIBRARY_GIO);
Linker.link(g_file_replace_readwrite_finish, "g_file_replace_readwrite_finish", LIBRARY_GIO);
Linker.link(g_file_resolve_relative_path, "g_file_resolve_relative_path", LIBRARY_GIO);
Linker.link(g_file_set_attribute, "g_file_set_attribute", LIBRARY_GIO);
Linker.link(g_file_set_attribute_byte_string, "g_file_set_attribute_byte_string", LIBRARY_GIO);
Linker.link(g_file_set_attribute_int32, "g_file_set_attribute_int32", LIBRARY_GIO);
Linker.link(g_file_set_attribute_int64, "g_file_set_attribute_int64", LIBRARY_GIO);
Linker.link(g_file_set_attribute_string, "g_file_set_attribute_string", LIBRARY_GIO);
Linker.link(g_file_set_attribute_uint32, "g_file_set_attribute_uint32", LIBRARY_GIO);
Linker.link(g_file_set_attribute_uint64, "g_file_set_attribute_uint64", LIBRARY_GIO);
Linker.link(g_file_set_attributes_async, "g_file_set_attributes_async", LIBRARY_GIO);
Linker.link(g_file_set_attributes_finish, "g_file_set_attributes_finish", LIBRARY_GIO);
Linker.link(g_file_set_attributes_from_info, "g_file_set_attributes_from_info", LIBRARY_GIO);
Linker.link(g_file_set_display_name, "g_file_set_display_name", LIBRARY_GIO);
Linker.link(g_file_set_display_name_async, "g_file_set_display_name_async", LIBRARY_GIO);
Linker.link(g_file_set_display_name_finish, "g_file_set_display_name_finish", LIBRARY_GIO);
Linker.link(g_file_start_mountable, "g_file_start_mountable", LIBRARY_GIO);
Linker.link(g_file_start_mountable_finish, "g_file_start_mountable_finish", LIBRARY_GIO);
Linker.link(g_file_stop_mountable, "g_file_stop_mountable", LIBRARY_GIO);
Linker.link(g_file_stop_mountable_finish, "g_file_stop_mountable_finish", LIBRARY_GIO);
Linker.link(g_file_supports_thread_contexts, "g_file_supports_thread_contexts", LIBRARY_GIO);
Linker.link(g_file_trash, "g_file_trash", LIBRARY_GIO);
Linker.link(g_file_trash_async, "g_file_trash_async", LIBRARY_GIO);
Linker.link(g_file_trash_finish, "g_file_trash_finish", LIBRARY_GIO);
Linker.link(g_file_unmount_mountable, "g_file_unmount_mountable", LIBRARY_GIO);
Linker.link(g_file_unmount_mountable_finish, "g_file_unmount_mountable_finish", LIBRARY_GIO);
Linker.link(g_file_unmount_mountable_with_operation, "g_file_unmount_mountable_with_operation", LIBRARY_GIO);
Linker.link(g_file_unmount_mountable_with_operation_finish, "g_file_unmount_mountable_with_operation_finish", LIBRARY_GIO);
// gio.FileAttributeInfoList
Linker.link(g_file_attribute_info_list_get_type, "g_file_attribute_info_list_get_type", LIBRARY_GIO);
Linker.link(g_file_attribute_info_list_new, "g_file_attribute_info_list_new", LIBRARY_GIO);
Linker.link(g_file_attribute_info_list_add, "g_file_attribute_info_list_add", LIBRARY_GIO);
Linker.link(g_file_attribute_info_list_dup, "g_file_attribute_info_list_dup", LIBRARY_GIO);
Linker.link(g_file_attribute_info_list_lookup, "g_file_attribute_info_list_lookup", LIBRARY_GIO);
Linker.link(g_file_attribute_info_list_ref, "g_file_attribute_info_list_ref", LIBRARY_GIO);
Linker.link(g_file_attribute_info_list_unref, "g_file_attribute_info_list_unref", LIBRARY_GIO);
// gio.FileAttributeMatcher
Linker.link(g_file_attribute_matcher_get_type, "g_file_attribute_matcher_get_type", LIBRARY_GIO);
Linker.link(g_file_attribute_matcher_new, "g_file_attribute_matcher_new", LIBRARY_GIO);
Linker.link(g_file_attribute_matcher_enumerate_namespace, "g_file_attribute_matcher_enumerate_namespace", LIBRARY_GIO);
Linker.link(g_file_attribute_matcher_enumerate_next, "g_file_attribute_matcher_enumerate_next", LIBRARY_GIO);
Linker.link(g_file_attribute_matcher_matches, "g_file_attribute_matcher_matches", LIBRARY_GIO);
Linker.link(g_file_attribute_matcher_matches_only, "g_file_attribute_matcher_matches_only", LIBRARY_GIO);
Linker.link(g_file_attribute_matcher_ref, "g_file_attribute_matcher_ref", LIBRARY_GIO);
Linker.link(g_file_attribute_matcher_subtract, "g_file_attribute_matcher_subtract", LIBRARY_GIO);
Linker.link(g_file_attribute_matcher_to_string, "g_file_attribute_matcher_to_string", LIBRARY_GIO);
Linker.link(g_file_attribute_matcher_unref, "g_file_attribute_matcher_unref", LIBRARY_GIO);
// gio.FileDescriptorBased
Linker.link(g_file_descriptor_based_get_type, "g_file_descriptor_based_get_type", LIBRARY_GIO);
Linker.link(g_file_descriptor_based_get_fd, "g_file_descriptor_based_get_fd", LIBRARY_GIO);
// gio.FileEnumerator
Linker.link(g_file_enumerator_get_type, "g_file_enumerator_get_type", LIBRARY_GIO);
Linker.link(g_file_enumerator_close, "g_file_enumerator_close", LIBRARY_GIO);
Linker.link(g_file_enumerator_close_async, "g_file_enumerator_close_async", LIBRARY_GIO);
Linker.link(g_file_enumerator_close_finish, "g_file_enumerator_close_finish", LIBRARY_GIO);
Linker.link(g_file_enumerator_get_child, "g_file_enumerator_get_child", LIBRARY_GIO);
Linker.link(g_file_enumerator_get_container, "g_file_enumerator_get_container", LIBRARY_GIO);
Linker.link(g_file_enumerator_has_pending, "g_file_enumerator_has_pending", LIBRARY_GIO);
Linker.link(g_file_enumerator_is_closed, "g_file_enumerator_is_closed", LIBRARY_GIO);
Linker.link(g_file_enumerator_iterate, "g_file_enumerator_iterate", LIBRARY_GIO);
Linker.link(g_file_enumerator_next_file, "g_file_enumerator_next_file", LIBRARY_GIO);
Linker.link(g_file_enumerator_next_files_async, "g_file_enumerator_next_files_async", LIBRARY_GIO);
Linker.link(g_file_enumerator_next_files_finish, "g_file_enumerator_next_files_finish", LIBRARY_GIO);
Linker.link(g_file_enumerator_set_pending, "g_file_enumerator_set_pending", LIBRARY_GIO);
// gio.FileIOStream
Linker.link(g_file_io_stream_get_type, "g_file_io_stream_get_type", LIBRARY_GIO);
Linker.link(g_file_io_stream_get_etag, "g_file_io_stream_get_etag", LIBRARY_GIO);
Linker.link(g_file_io_stream_query_info, "g_file_io_stream_query_info", LIBRARY_GIO);
Linker.link(g_file_io_stream_query_info_async, "g_file_io_stream_query_info_async", LIBRARY_GIO);
Linker.link(g_file_io_stream_query_info_finish, "g_file_io_stream_query_info_finish", LIBRARY_GIO);
// gio.FileIcon
Linker.link(g_file_icon_get_type, "g_file_icon_get_type", LIBRARY_GIO);
Linker.link(g_file_icon_new, "g_file_icon_new", LIBRARY_GIO);
Linker.link(g_file_icon_get_file, "g_file_icon_get_file", LIBRARY_GIO);
// gio.FileInfo
Linker.link(g_file_info_get_type, "g_file_info_get_type", LIBRARY_GIO);
Linker.link(g_file_info_new, "g_file_info_new", LIBRARY_GIO);
Linker.link(g_file_info_clear_status, "g_file_info_clear_status", LIBRARY_GIO);
Linker.link(g_file_info_copy_into, "g_file_info_copy_into", LIBRARY_GIO);
Linker.link(g_file_info_dup, "g_file_info_dup", LIBRARY_GIO);
Linker.link(g_file_info_get_attribute_as_string, "g_file_info_get_attribute_as_string", LIBRARY_GIO);
Linker.link(g_file_info_get_attribute_boolean, "g_file_info_get_attribute_boolean", LIBRARY_GIO);
Linker.link(g_file_info_get_attribute_byte_string, "g_file_info_get_attribute_byte_string", LIBRARY_GIO);
Linker.link(g_file_info_get_attribute_data, "g_file_info_get_attribute_data", LIBRARY_GIO);
Linker.link(g_file_info_get_attribute_int32, "g_file_info_get_attribute_int32", LIBRARY_GIO);
Linker.link(g_file_info_get_attribute_int64, "g_file_info_get_attribute_int64", LIBRARY_GIO);
Linker.link(g_file_info_get_attribute_object, "g_file_info_get_attribute_object", LIBRARY_GIO);
Linker.link(g_file_info_get_attribute_status, "g_file_info_get_attribute_status", LIBRARY_GIO);
Linker.link(g_file_info_get_attribute_string, "g_file_info_get_attribute_string", LIBRARY_GIO);
Linker.link(g_file_info_get_attribute_stringv, "g_file_info_get_attribute_stringv", LIBRARY_GIO);
Linker.link(g_file_info_get_attribute_type, "g_file_info_get_attribute_type", LIBRARY_GIO);
Linker.link(g_file_info_get_attribute_uint32, "g_file_info_get_attribute_uint32", LIBRARY_GIO);
Linker.link(g_file_info_get_attribute_uint64, "g_file_info_get_attribute_uint64", LIBRARY_GIO);
Linker.link(g_file_info_get_content_type, "g_file_info_get_content_type", LIBRARY_GIO);
Linker.link(g_file_info_get_deletion_date, "g_file_info_get_deletion_date", LIBRARY_GIO);
Linker.link(g_file_info_get_display_name, "g_file_info_get_display_name", LIBRARY_GIO);
Linker.link(g_file_info_get_edit_name, "g_file_info_get_edit_name", LIBRARY_GIO);
Linker.link(g_file_info_get_etag, "g_file_info_get_etag", LIBRARY_GIO);
Linker.link(g_file_info_get_file_type, "g_file_info_get_file_type", LIBRARY_GIO);
Linker.link(g_file_info_get_icon, "g_file_info_get_icon", LIBRARY_GIO);
Linker.link(g_file_info_get_is_backup, "g_file_info_get_is_backup", LIBRARY_GIO);
Linker.link(g_file_info_get_is_hidden, "g_file_info_get_is_hidden", LIBRARY_GIO);
Linker.link(g_file_info_get_is_symlink, "g_file_info_get_is_symlink", LIBRARY_GIO);
Linker.link(g_file_info_get_modification_date_time, "g_file_info_get_modification_date_time", LIBRARY_GIO);
Linker.link(g_file_info_get_modification_time, "g_file_info_get_modification_time", LIBRARY_GIO);
Linker.link(g_file_info_get_name, "g_file_info_get_name", LIBRARY_GIO);
Linker.link(g_file_info_get_size, "g_file_info_get_size", LIBRARY_GIO);
Linker.link(g_file_info_get_sort_order, "g_file_info_get_sort_order", LIBRARY_GIO);
Linker.link(g_file_info_get_symbolic_icon, "g_file_info_get_symbolic_icon", LIBRARY_GIO);
Linker.link(g_file_info_get_symlink_target, "g_file_info_get_symlink_target", LIBRARY_GIO);
Linker.link(g_file_info_has_attribute, "g_file_info_has_attribute", LIBRARY_GIO);
Linker.link(g_file_info_has_namespace, "g_file_info_has_namespace", LIBRARY_GIO);
Linker.link(g_file_info_list_attributes, "g_file_info_list_attributes", LIBRARY_GIO);
Linker.link(g_file_info_remove_attribute, "g_file_info_remove_attribute", LIBRARY_GIO);
Linker.link(g_file_info_set_attribute, "g_file_info_set_attribute", LIBRARY_GIO);
Linker.link(g_file_info_set_attribute_boolean, "g_file_info_set_attribute_boolean", LIBRARY_GIO);
Linker.link(g_file_info_set_attribute_byte_string, "g_file_info_set_attribute_byte_string", LIBRARY_GIO);
Linker.link(g_file_info_set_attribute_int32, "g_file_info_set_attribute_int32", LIBRARY_GIO);
Linker.link(g_file_info_set_attribute_int64, "g_file_info_set_attribute_int64", LIBRARY_GIO);
Linker.link(g_file_info_set_attribute_mask, "g_file_info_set_attribute_mask", LIBRARY_GIO);
Linker.link(g_file_info_set_attribute_object, "g_file_info_set_attribute_object", LIBRARY_GIO);
Linker.link(g_file_info_set_attribute_status, "g_file_info_set_attribute_status", LIBRARY_GIO);
Linker.link(g_file_info_set_attribute_string, "g_file_info_set_attribute_string", LIBRARY_GIO);
Linker.link(g_file_info_set_attribute_stringv, "g_file_info_set_attribute_stringv", LIBRARY_GIO);
Linker.link(g_file_info_set_attribute_uint32, "g_file_info_set_attribute_uint32", LIBRARY_GIO);
Linker.link(g_file_info_set_attribute_uint64, "g_file_info_set_attribute_uint64", LIBRARY_GIO);
Linker.link(g_file_info_set_content_type, "g_file_info_set_content_type", LIBRARY_GIO);
Linker.link(g_file_info_set_display_name, "g_file_info_set_display_name", LIBRARY_GIO);
Linker.link(g_file_info_set_edit_name, "g_file_info_set_edit_name", LIBRARY_GIO);
Linker.link(g_file_info_set_file_type, "g_file_info_set_file_type", LIBRARY_GIO);
Linker.link(g_file_info_set_icon, "g_file_info_set_icon", LIBRARY_GIO);
Linker.link(g_file_info_set_is_hidden, "g_file_info_set_is_hidden", LIBRARY_GIO);
Linker.link(g_file_info_set_is_symlink, "g_file_info_set_is_symlink", LIBRARY_GIO);
Linker.link(g_file_info_set_modification_date_time, "g_file_info_set_modification_date_time", LIBRARY_GIO);
Linker.link(g_file_info_set_modification_time, "g_file_info_set_modification_time", LIBRARY_GIO);
Linker.link(g_file_info_set_name, "g_file_info_set_name", LIBRARY_GIO);
Linker.link(g_file_info_set_size, "g_file_info_set_size", LIBRARY_GIO);
Linker.link(g_file_info_set_sort_order, "g_file_info_set_sort_order", LIBRARY_GIO);
Linker.link(g_file_info_set_symbolic_icon, "g_file_info_set_symbolic_icon", LIBRARY_GIO);
Linker.link(g_file_info_set_symlink_target, "g_file_info_set_symlink_target", LIBRARY_GIO);
Linker.link(g_file_info_unset_attribute_mask, "g_file_info_unset_attribute_mask", LIBRARY_GIO);
// gio.FileInputStream
Linker.link(g_file_input_stream_get_type, "g_file_input_stream_get_type", LIBRARY_GIO);
Linker.link(g_file_input_stream_query_info, "g_file_input_stream_query_info", LIBRARY_GIO);
Linker.link(g_file_input_stream_query_info_async, "g_file_input_stream_query_info_async", LIBRARY_GIO);
Linker.link(g_file_input_stream_query_info_finish, "g_file_input_stream_query_info_finish", LIBRARY_GIO);
// gio.FileMonitor
Linker.link(g_file_monitor_get_type, "g_file_monitor_get_type", LIBRARY_GIO);
Linker.link(g_file_monitor_cancel, "g_file_monitor_cancel", LIBRARY_GIO);
Linker.link(g_file_monitor_emit_event, "g_file_monitor_emit_event", LIBRARY_GIO);
Linker.link(g_file_monitor_is_cancelled, "g_file_monitor_is_cancelled", LIBRARY_GIO);
Linker.link(g_file_monitor_set_rate_limit, "g_file_monitor_set_rate_limit", LIBRARY_GIO);
// gio.FileOutputStream
Linker.link(g_file_output_stream_get_type, "g_file_output_stream_get_type", LIBRARY_GIO);
Linker.link(g_file_output_stream_get_etag, "g_file_output_stream_get_etag", LIBRARY_GIO);
Linker.link(g_file_output_stream_query_info, "g_file_output_stream_query_info", LIBRARY_GIO);
Linker.link(g_file_output_stream_query_info_async, "g_file_output_stream_query_info_async", LIBRARY_GIO);
Linker.link(g_file_output_stream_query_info_finish, "g_file_output_stream_query_info_finish", LIBRARY_GIO);
// gio.FilenameCompleter
Linker.link(g_filename_completer_get_type, "g_filename_completer_get_type", LIBRARY_GIO);
Linker.link(g_filename_completer_new, "g_filename_completer_new", LIBRARY_GIO);
Linker.link(g_filename_completer_get_completion_suffix, "g_filename_completer_get_completion_suffix", LIBRARY_GIO);
Linker.link(g_filename_completer_get_completions, "g_filename_completer_get_completions", LIBRARY_GIO);
Linker.link(g_filename_completer_set_dirs_only, "g_filename_completer_set_dirs_only", LIBRARY_GIO);
// gio.FilterInputStream
Linker.link(g_filter_input_stream_get_type, "g_filter_input_stream_get_type", LIBRARY_GIO);
Linker.link(g_filter_input_stream_get_base_stream, "g_filter_input_stream_get_base_stream", LIBRARY_GIO);
Linker.link(g_filter_input_stream_get_close_base_stream, "g_filter_input_stream_get_close_base_stream", LIBRARY_GIO);
Linker.link(g_filter_input_stream_set_close_base_stream, "g_filter_input_stream_set_close_base_stream", LIBRARY_GIO);
// gio.FilterOutputStream
Linker.link(g_filter_output_stream_get_type, "g_filter_output_stream_get_type", LIBRARY_GIO);
Linker.link(g_filter_output_stream_get_base_stream, "g_filter_output_stream_get_base_stream", LIBRARY_GIO);
Linker.link(g_filter_output_stream_get_close_base_stream, "g_filter_output_stream_get_close_base_stream", LIBRARY_GIO);
Linker.link(g_filter_output_stream_set_close_base_stream, "g_filter_output_stream_set_close_base_stream", LIBRARY_GIO);
// gio.IOExtension
Linker.link(g_io_extension_get_name, "g_io_extension_get_name", LIBRARY_GIO);
Linker.link(g_io_extension_get_priority, "g_io_extension_get_priority", LIBRARY_GIO);
Linker.link(g_io_extension_get_type, "g_io_extension_get_type", LIBRARY_GIO);
Linker.link(g_io_extension_ref_class, "g_io_extension_ref_class", LIBRARY_GIO);
// gio.IOExtensionPoint
Linker.link(g_io_extension_point_get_extension_by_name, "g_io_extension_point_get_extension_by_name", LIBRARY_GIO);
Linker.link(g_io_extension_point_get_extensions, "g_io_extension_point_get_extensions", LIBRARY_GIO);
Linker.link(g_io_extension_point_get_required_type, "g_io_extension_point_get_required_type", LIBRARY_GIO);
Linker.link(g_io_extension_point_set_required_type, "g_io_extension_point_set_required_type", LIBRARY_GIO);
Linker.link(g_io_extension_point_implement, "g_io_extension_point_implement", LIBRARY_GIO);
Linker.link(g_io_extension_point_lookup, "g_io_extension_point_lookup", LIBRARY_GIO);
Linker.link(g_io_extension_point_register, "g_io_extension_point_register", LIBRARY_GIO);
// gio.IOModule
Linker.link(g_io_module_get_type, "g_io_module_get_type", LIBRARY_GIO);
Linker.link(g_io_module_new, "g_io_module_new", LIBRARY_GIO);
Linker.link(g_io_modules_load_all_in_directory, "g_io_modules_load_all_in_directory", LIBRARY_GIO);
Linker.link(g_io_modules_load_all_in_directory_with_scope, "g_io_modules_load_all_in_directory_with_scope", LIBRARY_GIO);
Linker.link(g_io_modules_scan_all_in_directory, "g_io_modules_scan_all_in_directory", LIBRARY_GIO);
Linker.link(g_io_modules_scan_all_in_directory_with_scope, "g_io_modules_scan_all_in_directory_with_scope", LIBRARY_GIO);
// gio.IOModuleScope
Linker.link(g_io_module_scope_block, "g_io_module_scope_block", LIBRARY_GIO);
Linker.link(g_io_module_scope_free, "g_io_module_scope_free", LIBRARY_GIO);
Linker.link(g_io_module_scope_new, "g_io_module_scope_new", LIBRARY_GIO);
// gio.IOSchedulerJob
Linker.link(g_io_scheduler_job_send_to_mainloop, "g_io_scheduler_job_send_to_mainloop", LIBRARY_GIO);
Linker.link(g_io_scheduler_job_send_to_mainloop_async, "g_io_scheduler_job_send_to_mainloop_async", LIBRARY_GIO);
Linker.link(g_io_scheduler_cancel_all_jobs, "g_io_scheduler_cancel_all_jobs", LIBRARY_GIO);
Linker.link(g_io_scheduler_push_job, "g_io_scheduler_push_job", LIBRARY_GIO);
// gio.IOStream
Linker.link(g_io_stream_get_type, "g_io_stream_get_type", LIBRARY_GIO);
Linker.link(g_io_stream_splice_finish, "g_io_stream_splice_finish", LIBRARY_GIO);
Linker.link(g_io_stream_clear_pending, "g_io_stream_clear_pending", LIBRARY_GIO);
Linker.link(g_io_stream_close, "g_io_stream_close", LIBRARY_GIO);
Linker.link(g_io_stream_close_async, "g_io_stream_close_async", LIBRARY_GIO);
Linker.link(g_io_stream_close_finish, "g_io_stream_close_finish", LIBRARY_GIO);
Linker.link(g_io_stream_get_input_stream, "g_io_stream_get_input_stream", LIBRARY_GIO);
Linker.link(g_io_stream_get_output_stream, "g_io_stream_get_output_stream", LIBRARY_GIO);
Linker.link(g_io_stream_has_pending, "g_io_stream_has_pending", LIBRARY_GIO);
Linker.link(g_io_stream_is_closed, "g_io_stream_is_closed", LIBRARY_GIO);
Linker.link(g_io_stream_set_pending, "g_io_stream_set_pending", LIBRARY_GIO);
Linker.link(g_io_stream_splice_async, "g_io_stream_splice_async", LIBRARY_GIO);
// gio.Icon
Linker.link(g_icon_get_type, "g_icon_get_type", LIBRARY_GIO);
Linker.link(g_icon_deserialize, "g_icon_deserialize", LIBRARY_GIO);
Linker.link(g_icon_hash, "g_icon_hash", LIBRARY_GIO);
Linker.link(g_icon_new_for_string, "g_icon_new_for_string", LIBRARY_GIO);
Linker.link(g_icon_equal, "g_icon_equal", LIBRARY_GIO);
Linker.link(g_icon_serialize, "g_icon_serialize", LIBRARY_GIO);
Linker.link(g_icon_to_string, "g_icon_to_string", LIBRARY_GIO);
// gio.InetAddress
Linker.link(g_inet_address_get_type, "g_inet_address_get_type", LIBRARY_GIO);
Linker.link(g_inet_address_new_any, "g_inet_address_new_any", LIBRARY_GIO);
Linker.link(g_inet_address_new_from_bytes, "g_inet_address_new_from_bytes", LIBRARY_GIO);
Linker.link(g_inet_address_new_from_string, "g_inet_address_new_from_string", LIBRARY_GIO);
Linker.link(g_inet_address_new_loopback, "g_inet_address_new_loopback", LIBRARY_GIO);
Linker.link(g_inet_address_equal, "g_inet_address_equal", LIBRARY_GIO);
Linker.link(g_inet_address_get_family, "g_inet_address_get_family", LIBRARY_GIO);
Linker.link(g_inet_address_get_is_any, "g_inet_address_get_is_any", LIBRARY_GIO);
Linker.link(g_inet_address_get_is_link_local, "g_inet_address_get_is_link_local", LIBRARY_GIO);
Linker.link(g_inet_address_get_is_loopback, "g_inet_address_get_is_loopback", LIBRARY_GIO);
Linker.link(g_inet_address_get_is_mc_global, "g_inet_address_get_is_mc_global", LIBRARY_GIO);
Linker.link(g_inet_address_get_is_mc_link_local, "g_inet_address_get_is_mc_link_local", LIBRARY_GIO);
Linker.link(g_inet_address_get_is_mc_node_local, "g_inet_address_get_is_mc_node_local", LIBRARY_GIO);
Linker.link(g_inet_address_get_is_mc_org_local, "g_inet_address_get_is_mc_org_local", LIBRARY_GIO);
Linker.link(g_inet_address_get_is_mc_site_local, "g_inet_address_get_is_mc_site_local", LIBRARY_GIO);
Linker.link(g_inet_address_get_is_multicast, "g_inet_address_get_is_multicast", LIBRARY_GIO);
Linker.link(g_inet_address_get_is_site_local, "g_inet_address_get_is_site_local", LIBRARY_GIO);
Linker.link(g_inet_address_get_native_size, "g_inet_address_get_native_size", LIBRARY_GIO);
Linker.link(g_inet_address_to_bytes, "g_inet_address_to_bytes", LIBRARY_GIO);
Linker.link(g_inet_address_to_string, "g_inet_address_to_string", LIBRARY_GIO);
// gio.InetAddressMask
Linker.link(g_inet_address_mask_get_type, "g_inet_address_mask_get_type", LIBRARY_GIO);
Linker.link(g_inet_address_mask_new, "g_inet_address_mask_new", LIBRARY_GIO);
Linker.link(g_inet_address_mask_new_from_string, "g_inet_address_mask_new_from_string", LIBRARY_GIO);
Linker.link(g_inet_address_mask_equal, "g_inet_address_mask_equal", LIBRARY_GIO);
Linker.link(g_inet_address_mask_get_address, "g_inet_address_mask_get_address", LIBRARY_GIO);
Linker.link(g_inet_address_mask_get_family, "g_inet_address_mask_get_family", LIBRARY_GIO);
Linker.link(g_inet_address_mask_get_length, "g_inet_address_mask_get_length", LIBRARY_GIO);
Linker.link(g_inet_address_mask_matches, "g_inet_address_mask_matches", LIBRARY_GIO);
Linker.link(g_inet_address_mask_to_string, "g_inet_address_mask_to_string", LIBRARY_GIO);
// gio.InetSocketAddress
Linker.link(g_inet_socket_address_get_type, "g_inet_socket_address_get_type", LIBRARY_GIO);
Linker.link(g_inet_socket_address_new, "g_inet_socket_address_new", LIBRARY_GIO);
Linker.link(g_inet_socket_address_new_from_string, "g_inet_socket_address_new_from_string", LIBRARY_GIO);
Linker.link(g_inet_socket_address_get_address, "g_inet_socket_address_get_address", LIBRARY_GIO);
Linker.link(g_inet_socket_address_get_flowinfo, "g_inet_socket_address_get_flowinfo", LIBRARY_GIO);
Linker.link(g_inet_socket_address_get_port, "g_inet_socket_address_get_port", LIBRARY_GIO);
Linker.link(g_inet_socket_address_get_scope_id, "g_inet_socket_address_get_scope_id", LIBRARY_GIO);
// gio.Initable
Linker.link(g_initable_get_type, "g_initable_get_type", LIBRARY_GIO);
Linker.link(g_initable_new, "g_initable_new", LIBRARY_GIO);
Linker.link(g_initable_new_valist, "g_initable_new_valist", LIBRARY_GIO);
Linker.link(g_initable_newv, "g_initable_newv", LIBRARY_GIO);
Linker.link(g_initable_init, "g_initable_init", LIBRARY_GIO);
// gio.InputStream
Linker.link(g_input_stream_get_type, "g_input_stream_get_type", LIBRARY_GIO);
Linker.link(g_input_stream_clear_pending, "g_input_stream_clear_pending", LIBRARY_GIO);
Linker.link(g_input_stream_close, "g_input_stream_close", LIBRARY_GIO);
Linker.link(g_input_stream_close_async, "g_input_stream_close_async", LIBRARY_GIO);
Linker.link(g_input_stream_close_finish, "g_input_stream_close_finish", LIBRARY_GIO);
Linker.link(g_input_stream_has_pending, "g_input_stream_has_pending", LIBRARY_GIO);
Linker.link(g_input_stream_is_closed, "g_input_stream_is_closed", LIBRARY_GIO);
Linker.link(g_input_stream_read, "g_input_stream_read", LIBRARY_GIO);
Linker.link(g_input_stream_read_all, "g_input_stream_read_all", LIBRARY_GIO);
Linker.link(g_input_stream_read_all_async, "g_input_stream_read_all_async", LIBRARY_GIO);
Linker.link(g_input_stream_read_all_finish, "g_input_stream_read_all_finish", LIBRARY_GIO);
Linker.link(g_input_stream_read_async, "g_input_stream_read_async", LIBRARY_GIO);
Linker.link(g_input_stream_read_bytes, "g_input_stream_read_bytes", LIBRARY_GIO);
Linker.link(g_input_stream_read_bytes_async, "g_input_stream_read_bytes_async", LIBRARY_GIO);
Linker.link(g_input_stream_read_bytes_finish, "g_input_stream_read_bytes_finish", LIBRARY_GIO);
Linker.link(g_input_stream_read_finish, "g_input_stream_read_finish", LIBRARY_GIO);
Linker.link(g_input_stream_set_pending, "g_input_stream_set_pending", LIBRARY_GIO);
Linker.link(g_input_stream_skip, "g_input_stream_skip", LIBRARY_GIO);
Linker.link(g_input_stream_skip_async, "g_input_stream_skip_async", LIBRARY_GIO);
Linker.link(g_input_stream_skip_finish, "g_input_stream_skip_finish", LIBRARY_GIO);
// gio.ListModel
Linker.link(g_list_model_get_type, "g_list_model_get_type", LIBRARY_GIO);
Linker.link(g_list_model_get_item, "g_list_model_get_item", LIBRARY_GIO);
Linker.link(g_list_model_get_item_type, "g_list_model_get_item_type", LIBRARY_GIO);
Linker.link(g_list_model_get_n_items, "g_list_model_get_n_items", LIBRARY_GIO);
Linker.link(g_list_model_get_object, "g_list_model_get_object", LIBRARY_GIO);
Linker.link(g_list_model_items_changed, "g_list_model_items_changed", LIBRARY_GIO);
// gio.ListStore
Linker.link(g_list_store_get_type, "g_list_store_get_type", LIBRARY_GIO);
Linker.link(g_list_store_new, "g_list_store_new", LIBRARY_GIO);
Linker.link(g_list_store_append, "g_list_store_append", LIBRARY_GIO);
Linker.link(g_list_store_find, "g_list_store_find", LIBRARY_GIO);
Linker.link(g_list_store_find_with_equal_func, "g_list_store_find_with_equal_func", LIBRARY_GIO);
Linker.link(g_list_store_insert, "g_list_store_insert", LIBRARY_GIO);
Linker.link(g_list_store_insert_sorted, "g_list_store_insert_sorted", LIBRARY_GIO);
Linker.link(g_list_store_remove, "g_list_store_remove", LIBRARY_GIO);
Linker.link(g_list_store_remove_all, "g_list_store_remove_all", LIBRARY_GIO);
Linker.link(g_list_store_sort, "g_list_store_sort", LIBRARY_GIO);
Linker.link(g_list_store_splice, "g_list_store_splice", LIBRARY_GIO);
// gio.LoadableIcon
Linker.link(g_loadable_icon_get_type, "g_loadable_icon_get_type", LIBRARY_GIO);
Linker.link(g_loadable_icon_load, "g_loadable_icon_load", LIBRARY_GIO);
Linker.link(g_loadable_icon_load_async, "g_loadable_icon_load_async", LIBRARY_GIO);
Linker.link(g_loadable_icon_load_finish, "g_loadable_icon_load_finish", LIBRARY_GIO);
// gio.MemoryInputStream
Linker.link(g_memory_input_stream_get_type, "g_memory_input_stream_get_type", LIBRARY_GIO);
Linker.link(g_memory_input_stream_new, "g_memory_input_stream_new", LIBRARY_GIO);
Linker.link(g_memory_input_stream_new_from_bytes, "g_memory_input_stream_new_from_bytes", LIBRARY_GIO);
Linker.link(g_memory_input_stream_new_from_data, "g_memory_input_stream_new_from_data", LIBRARY_GIO);
Linker.link(g_memory_input_stream_add_bytes, "g_memory_input_stream_add_bytes", LIBRARY_GIO);
Linker.link(g_memory_input_stream_add_data, "g_memory_input_stream_add_data", LIBRARY_GIO);
// gio.MemoryMonitor
Linker.link(g_memory_monitor_get_type, "g_memory_monitor_get_type", LIBRARY_GIO);
Linker.link(g_memory_monitor_dup_default, "g_memory_monitor_dup_default", LIBRARY_GIO);
// gio.MemoryOutputStream
Linker.link(g_memory_output_stream_get_type, "g_memory_output_stream_get_type", LIBRARY_GIO);
Linker.link(g_memory_output_stream_new, "g_memory_output_stream_new", LIBRARY_GIO);
Linker.link(g_memory_output_stream_new_resizable, "g_memory_output_stream_new_resizable", LIBRARY_GIO);
Linker.link(g_memory_output_stream_get_data, "g_memory_output_stream_get_data", LIBRARY_GIO);
Linker.link(g_memory_output_stream_get_data_size, "g_memory_output_stream_get_data_size", LIBRARY_GIO);
Linker.link(g_memory_output_stream_get_size, "g_memory_output_stream_get_size", LIBRARY_GIO);
Linker.link(g_memory_output_stream_steal_as_bytes, "g_memory_output_stream_steal_as_bytes", LIBRARY_GIO);
Linker.link(g_memory_output_stream_steal_data, "g_memory_output_stream_steal_data", LIBRARY_GIO);
// gio.Menu
Linker.link(g_menu_get_type, "g_menu_get_type", LIBRARY_GIO);
Linker.link(g_menu_new, "g_menu_new", LIBRARY_GIO);
Linker.link(g_menu_append, "g_menu_append", LIBRARY_GIO);
Linker.link(g_menu_append_item, "g_menu_append_item", LIBRARY_GIO);
Linker.link(g_menu_append_section, "g_menu_append_section", LIBRARY_GIO);
Linker.link(g_menu_append_submenu, "g_menu_append_submenu", LIBRARY_GIO);
Linker.link(g_menu_freeze, "g_menu_freeze", LIBRARY_GIO);
Linker.link(g_menu_insert, "g_menu_insert", LIBRARY_GIO);
Linker.link(g_menu_insert_item, "g_menu_insert_item", LIBRARY_GIO);
Linker.link(g_menu_insert_section, "g_menu_insert_section", LIBRARY_GIO);
Linker.link(g_menu_insert_submenu, "g_menu_insert_submenu", LIBRARY_GIO);
Linker.link(g_menu_prepend, "g_menu_prepend", LIBRARY_GIO);
Linker.link(g_menu_prepend_item, "g_menu_prepend_item", LIBRARY_GIO);
Linker.link(g_menu_prepend_section, "g_menu_prepend_section", LIBRARY_GIO);
Linker.link(g_menu_prepend_submenu, "g_menu_prepend_submenu", LIBRARY_GIO);
Linker.link(g_menu_remove, "g_menu_remove", LIBRARY_GIO);
Linker.link(g_menu_remove_all, "g_menu_remove_all", LIBRARY_GIO);
// gio.MenuAttributeIter
Linker.link(g_menu_attribute_iter_get_type, "g_menu_attribute_iter_get_type", LIBRARY_GIO);
Linker.link(g_menu_attribute_iter_get_name, "g_menu_attribute_iter_get_name", LIBRARY_GIO);
Linker.link(g_menu_attribute_iter_get_next, "g_menu_attribute_iter_get_next", LIBRARY_GIO);
Linker.link(g_menu_attribute_iter_get_value, "g_menu_attribute_iter_get_value", LIBRARY_GIO);
Linker.link(g_menu_attribute_iter_next, "g_menu_attribute_iter_next", LIBRARY_GIO);
// gio.MenuItem
Linker.link(g_menu_item_get_type, "g_menu_item_get_type", LIBRARY_GIO);
Linker.link(g_menu_item_new, "g_menu_item_new", LIBRARY_GIO);
Linker.link(g_menu_item_new_from_model, "g_menu_item_new_from_model", LIBRARY_GIO);
Linker.link(g_menu_item_new_section, "g_menu_item_new_section", LIBRARY_GIO);
Linker.link(g_menu_item_new_submenu, "g_menu_item_new_submenu", LIBRARY_GIO);
Linker.link(g_menu_item_get_attribute, "g_menu_item_get_attribute", LIBRARY_GIO);
Linker.link(g_menu_item_get_attribute_value, "g_menu_item_get_attribute_value", LIBRARY_GIO);
Linker.link(g_menu_item_get_link, "g_menu_item_get_link", LIBRARY_GIO);
Linker.link(g_menu_item_set_action_and_target, "g_menu_item_set_action_and_target", LIBRARY_GIO);
Linker.link(g_menu_item_set_action_and_target_value, "g_menu_item_set_action_and_target_value", LIBRARY_GIO);
Linker.link(g_menu_item_set_attribute, "g_menu_item_set_attribute", LIBRARY_GIO);
Linker.link(g_menu_item_set_attribute_value, "g_menu_item_set_attribute_value", LIBRARY_GIO);
Linker.link(g_menu_item_set_detailed_action, "g_menu_item_set_detailed_action", LIBRARY_GIO);
Linker.link(g_menu_item_set_icon, "g_menu_item_set_icon", LIBRARY_GIO);
Linker.link(g_menu_item_set_label, "g_menu_item_set_label", LIBRARY_GIO);
Linker.link(g_menu_item_set_link, "g_menu_item_set_link", LIBRARY_GIO);
Linker.link(g_menu_item_set_section, "g_menu_item_set_section", LIBRARY_GIO);
Linker.link(g_menu_item_set_submenu, "g_menu_item_set_submenu", LIBRARY_GIO);
// gio.MenuLinkIter
Linker.link(g_menu_link_iter_get_type, "g_menu_link_iter_get_type", LIBRARY_GIO);
Linker.link(g_menu_link_iter_get_name, "g_menu_link_iter_get_name", LIBRARY_GIO);
Linker.link(g_menu_link_iter_get_next, "g_menu_link_iter_get_next", LIBRARY_GIO);
Linker.link(g_menu_link_iter_get_value, "g_menu_link_iter_get_value", LIBRARY_GIO);
Linker.link(g_menu_link_iter_next, "g_menu_link_iter_next", LIBRARY_GIO);
// gio.MenuModel
Linker.link(g_menu_model_get_type, "g_menu_model_get_type", LIBRARY_GIO);
Linker.link(g_menu_model_get_item_attribute, "g_menu_model_get_item_attribute", LIBRARY_GIO);
Linker.link(g_menu_model_get_item_attribute_value, "g_menu_model_get_item_attribute_value", LIBRARY_GIO);
Linker.link(g_menu_model_get_item_link, "g_menu_model_get_item_link", LIBRARY_GIO);
Linker.link(g_menu_model_get_n_items, "g_menu_model_get_n_items", LIBRARY_GIO);
Linker.link(g_menu_model_is_mutable, "g_menu_model_is_mutable", LIBRARY_GIO);
Linker.link(g_menu_model_items_changed, "g_menu_model_items_changed", LIBRARY_GIO);
Linker.link(g_menu_model_iterate_item_attributes, "g_menu_model_iterate_item_attributes", LIBRARY_GIO);
Linker.link(g_menu_model_iterate_item_links, "g_menu_model_iterate_item_links", LIBRARY_GIO);
// gio.Mount
Linker.link(g_mount_get_type, "g_mount_get_type", LIBRARY_GIO);
Linker.link(g_mount_can_eject, "g_mount_can_eject", LIBRARY_GIO);
Linker.link(g_mount_can_unmount, "g_mount_can_unmount", LIBRARY_GIO);
Linker.link(g_mount_eject, "g_mount_eject", LIBRARY_GIO);
Linker.link(g_mount_eject_finish, "g_mount_eject_finish", LIBRARY_GIO);
Linker.link(g_mount_eject_with_operation, "g_mount_eject_with_operation", LIBRARY_GIO);
Linker.link(g_mount_eject_with_operation_finish, "g_mount_eject_with_operation_finish", LIBRARY_GIO);
Linker.link(g_mount_get_default_location, "g_mount_get_default_location", LIBRARY_GIO);
Linker.link(g_mount_get_drive, "g_mount_get_drive", LIBRARY_GIO);
Linker.link(g_mount_get_icon, "g_mount_get_icon", LIBRARY_GIO);
Linker.link(g_mount_get_name, "g_mount_get_name", LIBRARY_GIO);
Linker.link(g_mount_get_root, "g_mount_get_root", LIBRARY_GIO);
Linker.link(g_mount_get_sort_key, "g_mount_get_sort_key", LIBRARY_GIO);
Linker.link(g_mount_get_symbolic_icon, "g_mount_get_symbolic_icon", LIBRARY_GIO);
Linker.link(g_mount_get_uuid, "g_mount_get_uuid", LIBRARY_GIO);
Linker.link(g_mount_get_volume, "g_mount_get_volume", LIBRARY_GIO);
Linker.link(g_mount_guess_content_type, "g_mount_guess_content_type", LIBRARY_GIO);
Linker.link(g_mount_guess_content_type_finish, "g_mount_guess_content_type_finish", LIBRARY_GIO);
Linker.link(g_mount_guess_content_type_sync, "g_mount_guess_content_type_sync", LIBRARY_GIO);
Linker.link(g_mount_is_shadowed, "g_mount_is_shadowed", LIBRARY_GIO);
Linker.link(g_mount_remount, "g_mount_remount", LIBRARY_GIO);
Linker.link(g_mount_remount_finish, "g_mount_remount_finish", LIBRARY_GIO);
Linker.link(g_mount_shadow, "g_mount_shadow", LIBRARY_GIO);
Linker.link(g_mount_unmount, "g_mount_unmount", LIBRARY_GIO);
Linker.link(g_mount_unmount_finish, "g_mount_unmount_finish", LIBRARY_GIO);
Linker.link(g_mount_unmount_with_operation, "g_mount_unmount_with_operation", LIBRARY_GIO);
Linker.link(g_mount_unmount_with_operation_finish, "g_mount_unmount_with_operation_finish", LIBRARY_GIO);
Linker.link(g_mount_unshadow, "g_mount_unshadow", LIBRARY_GIO);
// gio.MountOperation
Linker.link(g_mount_operation_get_type, "g_mount_operation_get_type", LIBRARY_GIO);
Linker.link(g_mount_operation_new, "g_mount_operation_new", LIBRARY_GIO);
Linker.link(g_mount_operation_get_anonymous, "g_mount_operation_get_anonymous", LIBRARY_GIO);
Linker.link(g_mount_operation_get_choice, "g_mount_operation_get_choice", LIBRARY_GIO);
Linker.link(g_mount_operation_get_domain, "g_mount_operation_get_domain", LIBRARY_GIO);
Linker.link(g_mount_operation_get_is_tcrypt_hidden_volume, "g_mount_operation_get_is_tcrypt_hidden_volume", LIBRARY_GIO);
Linker.link(g_mount_operation_get_is_tcrypt_system_volume, "g_mount_operation_get_is_tcrypt_system_volume", LIBRARY_GIO);
Linker.link(g_mount_operation_get_password, "g_mount_operation_get_password", LIBRARY_GIO);
Linker.link(g_mount_operation_get_password_save, "g_mount_operation_get_password_save", LIBRARY_GIO);
Linker.link(g_mount_operation_get_pim, "g_mount_operation_get_pim", LIBRARY_GIO);
Linker.link(g_mount_operation_get_username, "g_mount_operation_get_username", LIBRARY_GIO);
Linker.link(g_mount_operation_reply, "g_mount_operation_reply", LIBRARY_GIO);
Linker.link(g_mount_operation_set_anonymous, "g_mount_operation_set_anonymous", LIBRARY_GIO);
Linker.link(g_mount_operation_set_choice, "g_mount_operation_set_choice", LIBRARY_GIO);
Linker.link(g_mount_operation_set_domain, "g_mount_operation_set_domain", LIBRARY_GIO);
Linker.link(g_mount_operation_set_is_tcrypt_hidden_volume, "g_mount_operation_set_is_tcrypt_hidden_volume", LIBRARY_GIO);
Linker.link(g_mount_operation_set_is_tcrypt_system_volume, "g_mount_operation_set_is_tcrypt_system_volume", LIBRARY_GIO);
Linker.link(g_mount_operation_set_password, "g_mount_operation_set_password", LIBRARY_GIO);
Linker.link(g_mount_operation_set_password_save, "g_mount_operation_set_password_save", LIBRARY_GIO);
Linker.link(g_mount_operation_set_pim, "g_mount_operation_set_pim", LIBRARY_GIO);
Linker.link(g_mount_operation_set_username, "g_mount_operation_set_username", LIBRARY_GIO);
// gio.NativeSocketAddress
Linker.link(g_native_socket_address_get_type, "g_native_socket_address_get_type", LIBRARY_GIO);
Linker.link(g_native_socket_address_new, "g_native_socket_address_new", LIBRARY_GIO);
// gio.NativeVolumeMonitor
Linker.link(g_native_volume_monitor_get_type, "g_native_volume_monitor_get_type", LIBRARY_GIO);
// gio.NetworkAddress
Linker.link(g_network_address_get_type, "g_network_address_get_type", LIBRARY_GIO);
Linker.link(g_network_address_new, "g_network_address_new", LIBRARY_GIO);
Linker.link(g_network_address_new_loopback, "g_network_address_new_loopback", LIBRARY_GIO);
Linker.link(g_network_address_parse, "g_network_address_parse", LIBRARY_GIO);
Linker.link(g_network_address_parse_uri, "g_network_address_parse_uri", LIBRARY_GIO);
Linker.link(g_network_address_get_hostname, "g_network_address_get_hostname", LIBRARY_GIO);
Linker.link(g_network_address_get_port, "g_network_address_get_port", LIBRARY_GIO);
Linker.link(g_network_address_get_scheme, "g_network_address_get_scheme", LIBRARY_GIO);
// gio.NetworkMonitor
Linker.link(g_network_monitor_get_type, "g_network_monitor_get_type", LIBRARY_GIO);
Linker.link(g_network_monitor_get_default, "g_network_monitor_get_default", LIBRARY_GIO);
Linker.link(g_network_monitor_can_reach, "g_network_monitor_can_reach", LIBRARY_GIO);
Linker.link(g_network_monitor_can_reach_async, "g_network_monitor_can_reach_async", LIBRARY_GIO);
Linker.link(g_network_monitor_can_reach_finish, "g_network_monitor_can_reach_finish", LIBRARY_GIO);
Linker.link(g_network_monitor_get_connectivity, "g_network_monitor_get_connectivity", LIBRARY_GIO);
Linker.link(g_network_monitor_get_network_available, "g_network_monitor_get_network_available", LIBRARY_GIO);
Linker.link(g_network_monitor_get_network_metered, "g_network_monitor_get_network_metered", LIBRARY_GIO);
// gio.NetworkService
Linker.link(g_network_service_get_type, "g_network_service_get_type", LIBRARY_GIO);
Linker.link(g_network_service_new, "g_network_service_new", LIBRARY_GIO);
Linker.link(g_network_service_get_domain, "g_network_service_get_domain", LIBRARY_GIO);
Linker.link(g_network_service_get_protocol, "g_network_service_get_protocol", LIBRARY_GIO);
Linker.link(g_network_service_get_scheme, "g_network_service_get_scheme", LIBRARY_GIO);
Linker.link(g_network_service_get_service, "g_network_service_get_service", LIBRARY_GIO);
Linker.link(g_network_service_set_scheme, "g_network_service_set_scheme", LIBRARY_GIO);
// gio.Notification
Linker.link(g_notification_get_type, "g_notification_get_type", LIBRARY_GIO);
Linker.link(g_notification_new, "g_notification_new", LIBRARY_GIO);
Linker.link(g_notification_add_button, "g_notification_add_button", LIBRARY_GIO);
Linker.link(g_notification_add_button_with_target, "g_notification_add_button_with_target", LIBRARY_GIO);
Linker.link(g_notification_add_button_with_target_value, "g_notification_add_button_with_target_value", LIBRARY_GIO);
Linker.link(g_notification_set_body, "g_notification_set_body", LIBRARY_GIO);
Linker.link(g_notification_set_default_action, "g_notification_set_default_action", LIBRARY_GIO);
Linker.link(g_notification_set_default_action_and_target, "g_notification_set_default_action_and_target", LIBRARY_GIO);
Linker.link(g_notification_set_default_action_and_target_value, "g_notification_set_default_action_and_target_value", LIBRARY_GIO);
Linker.link(g_notification_set_icon, "g_notification_set_icon", LIBRARY_GIO);
Linker.link(g_notification_set_priority, "g_notification_set_priority", LIBRARY_GIO);
Linker.link(g_notification_set_title, "g_notification_set_title", LIBRARY_GIO);
Linker.link(g_notification_set_urgent, "g_notification_set_urgent", LIBRARY_GIO);
// gio.OutputStream
Linker.link(g_output_stream_get_type, "g_output_stream_get_type", LIBRARY_GIO);
Linker.link(g_output_stream_clear_pending, "g_output_stream_clear_pending", LIBRARY_GIO);
Linker.link(g_output_stream_close, "g_output_stream_close", LIBRARY_GIO);
Linker.link(g_output_stream_close_async, "g_output_stream_close_async", LIBRARY_GIO);
Linker.link(g_output_stream_close_finish, "g_output_stream_close_finish", LIBRARY_GIO);
Linker.link(g_output_stream_flush, "g_output_stream_flush", LIBRARY_GIO);
Linker.link(g_output_stream_flush_async, "g_output_stream_flush_async", LIBRARY_GIO);
Linker.link(g_output_stream_flush_finish, "g_output_stream_flush_finish", LIBRARY_GIO);
Linker.link(g_output_stream_has_pending, "g_output_stream_has_pending", LIBRARY_GIO);
Linker.link(g_output_stream_is_closed, "g_output_stream_is_closed", LIBRARY_GIO);
Linker.link(g_output_stream_is_closing, "g_output_stream_is_closing", LIBRARY_GIO);
Linker.link(g_output_stream_printf, "g_output_stream_printf", LIBRARY_GIO);
Linker.link(g_output_stream_set_pending, "g_output_stream_set_pending", LIBRARY_GIO);
Linker.link(g_output_stream_splice, "g_output_stream_splice", LIBRARY_GIO);
Linker.link(g_output_stream_splice_async, "g_output_stream_splice_async", LIBRARY_GIO);
Linker.link(g_output_stream_splice_finish, "g_output_stream_splice_finish", LIBRARY_GIO);
Linker.link(g_output_stream_vprintf, "g_output_stream_vprintf", LIBRARY_GIO);
Linker.link(g_output_stream_write, "g_output_stream_write", LIBRARY_GIO);
Linker.link(g_output_stream_write_all, "g_output_stream_write_all", LIBRARY_GIO);
Linker.link(g_output_stream_write_all_async, "g_output_stream_write_all_async", LIBRARY_GIO);
Linker.link(g_output_stream_write_all_finish, "g_output_stream_write_all_finish", LIBRARY_GIO);
Linker.link(g_output_stream_write_async, "g_output_stream_write_async", LIBRARY_GIO);
Linker.link(g_output_stream_write_bytes, "g_output_stream_write_bytes", LIBRARY_GIO);
Linker.link(g_output_stream_write_bytes_async, "g_output_stream_write_bytes_async", LIBRARY_GIO);
Linker.link(g_output_stream_write_bytes_finish, "g_output_stream_write_bytes_finish", LIBRARY_GIO);
Linker.link(g_output_stream_write_finish, "g_output_stream_write_finish", LIBRARY_GIO);
Linker.link(g_output_stream_writev, "g_output_stream_writev", LIBRARY_GIO);
Linker.link(g_output_stream_writev_all, "g_output_stream_writev_all", LIBRARY_GIO);
Linker.link(g_output_stream_writev_all_async, "g_output_stream_writev_all_async", LIBRARY_GIO);
Linker.link(g_output_stream_writev_all_finish, "g_output_stream_writev_all_finish", LIBRARY_GIO);
Linker.link(g_output_stream_writev_async, "g_output_stream_writev_async", LIBRARY_GIO);
Linker.link(g_output_stream_writev_finish, "g_output_stream_writev_finish", LIBRARY_GIO);
// gio.Permission
Linker.link(g_permission_get_type, "g_permission_get_type", LIBRARY_GIO);
Linker.link(g_permission_acquire, "g_permission_acquire", LIBRARY_GIO);
Linker.link(g_permission_acquire_async, "g_permission_acquire_async", LIBRARY_GIO);
Linker.link(g_permission_acquire_finish, "g_permission_acquire_finish", LIBRARY_GIO);
Linker.link(g_permission_get_allowed, "g_permission_get_allowed", LIBRARY_GIO);
Linker.link(g_permission_get_can_acquire, "g_permission_get_can_acquire", LIBRARY_GIO);
Linker.link(g_permission_get_can_release, "g_permission_get_can_release", LIBRARY_GIO);
Linker.link(g_permission_impl_update, "g_permission_impl_update", LIBRARY_GIO);
Linker.link(g_permission_release, "g_permission_release", LIBRARY_GIO);
Linker.link(g_permission_release_async, "g_permission_release_async", LIBRARY_GIO);
Linker.link(g_permission_release_finish, "g_permission_release_finish", LIBRARY_GIO);
// gio.PollableInputStream
Linker.link(g_pollable_input_stream_get_type, "g_pollable_input_stream_get_type", LIBRARY_GIO);
Linker.link(g_pollable_input_stream_can_poll, "g_pollable_input_stream_can_poll", LIBRARY_GIO);
Linker.link(g_pollable_input_stream_create_source, "g_pollable_input_stream_create_source", LIBRARY_GIO);
Linker.link(g_pollable_input_stream_is_readable, "g_pollable_input_stream_is_readable", LIBRARY_GIO);
Linker.link(g_pollable_input_stream_read_nonblocking, "g_pollable_input_stream_read_nonblocking", LIBRARY_GIO);
// gio.PollableOutputStream
Linker.link(g_pollable_output_stream_get_type, "g_pollable_output_stream_get_type", LIBRARY_GIO);
Linker.link(g_pollable_output_stream_can_poll, "g_pollable_output_stream_can_poll", LIBRARY_GIO);
Linker.link(g_pollable_output_stream_create_source, "g_pollable_output_stream_create_source", LIBRARY_GIO);
Linker.link(g_pollable_output_stream_is_writable, "g_pollable_output_stream_is_writable", LIBRARY_GIO);
Linker.link(g_pollable_output_stream_write_nonblocking, "g_pollable_output_stream_write_nonblocking", LIBRARY_GIO);
Linker.link(g_pollable_output_stream_writev_nonblocking, "g_pollable_output_stream_writev_nonblocking", LIBRARY_GIO);
// gio.PropertyAction
Linker.link(g_property_action_get_type, "g_property_action_get_type", LIBRARY_GIO);
Linker.link(g_property_action_new, "g_property_action_new", LIBRARY_GIO);
// gio.Proxy
Linker.link(g_proxy_get_type, "g_proxy_get_type", LIBRARY_GIO);
Linker.link(g_proxy_get_default_for_protocol, "g_proxy_get_default_for_protocol", LIBRARY_GIO);
Linker.link(g_proxy_connect, "g_proxy_connect", LIBRARY_GIO);
Linker.link(g_proxy_connect_async, "g_proxy_connect_async", LIBRARY_GIO);
Linker.link(g_proxy_connect_finish, "g_proxy_connect_finish", LIBRARY_GIO);
Linker.link(g_proxy_supports_hostname, "g_proxy_supports_hostname", LIBRARY_GIO);
// gio.ProxyAddress
Linker.link(g_proxy_address_get_type, "g_proxy_address_get_type", LIBRARY_GIO);
Linker.link(g_proxy_address_new, "g_proxy_address_new", LIBRARY_GIO);
Linker.link(g_proxy_address_get_destination_hostname, "g_proxy_address_get_destination_hostname", LIBRARY_GIO);
Linker.link(g_proxy_address_get_destination_port, "g_proxy_address_get_destination_port", LIBRARY_GIO);
Linker.link(g_proxy_address_get_destination_protocol, "g_proxy_address_get_destination_protocol", LIBRARY_GIO);
Linker.link(g_proxy_address_get_password, "g_proxy_address_get_password", LIBRARY_GIO);
Linker.link(g_proxy_address_get_protocol, "g_proxy_address_get_protocol", LIBRARY_GIO);
Linker.link(g_proxy_address_get_uri, "g_proxy_address_get_uri", LIBRARY_GIO);
Linker.link(g_proxy_address_get_username, "g_proxy_address_get_username", LIBRARY_GIO);
// gio.ProxyAddressEnumerator
Linker.link(g_proxy_address_enumerator_get_type, "g_proxy_address_enumerator_get_type", LIBRARY_GIO);
// gio.ProxyResolver
Linker.link(g_proxy_resolver_get_type, "g_proxy_resolver_get_type", LIBRARY_GIO);
Linker.link(g_proxy_resolver_get_default, "g_proxy_resolver_get_default", LIBRARY_GIO);
Linker.link(g_proxy_resolver_is_supported, "g_proxy_resolver_is_supported", LIBRARY_GIO);
Linker.link(g_proxy_resolver_lookup, "g_proxy_resolver_lookup", LIBRARY_GIO);
Linker.link(g_proxy_resolver_lookup_async, "g_proxy_resolver_lookup_async", LIBRARY_GIO);
Linker.link(g_proxy_resolver_lookup_finish, "g_proxy_resolver_lookup_finish", LIBRARY_GIO);
// gio.RemoteActionGroup
Linker.link(g_remote_action_group_get_type, "g_remote_action_group_get_type", LIBRARY_GIO);
Linker.link(g_remote_action_group_activate_action_full, "g_remote_action_group_activate_action_full", LIBRARY_GIO);
Linker.link(g_remote_action_group_change_action_state_full, "g_remote_action_group_change_action_state_full", LIBRARY_GIO);
// gio.Resolver
Linker.link(g_resolver_get_type, "g_resolver_get_type", LIBRARY_GIO);
Linker.link(g_resolver_free_addresses, "g_resolver_free_addresses", LIBRARY_GIO);
Linker.link(g_resolver_free_targets, "g_resolver_free_targets", LIBRARY_GIO);
Linker.link(g_resolver_get_default, "g_resolver_get_default", LIBRARY_GIO);
Linker.link(g_resolver_lookup_by_address, "g_resolver_lookup_by_address", LIBRARY_GIO);
Linker.link(g_resolver_lookup_by_address_async, "g_resolver_lookup_by_address_async", LIBRARY_GIO);
Linker.link(g_resolver_lookup_by_address_finish, "g_resolver_lookup_by_address_finish", LIBRARY_GIO);
Linker.link(g_resolver_lookup_by_name, "g_resolver_lookup_by_name", LIBRARY_GIO);
Linker.link(g_resolver_lookup_by_name_async, "g_resolver_lookup_by_name_async", LIBRARY_GIO);
Linker.link(g_resolver_lookup_by_name_finish, "g_resolver_lookup_by_name_finish", LIBRARY_GIO);
Linker.link(g_resolver_lookup_by_name_with_flags, "g_resolver_lookup_by_name_with_flags", LIBRARY_GIO);
Linker.link(g_resolver_lookup_by_name_with_flags_async, "g_resolver_lookup_by_name_with_flags_async", LIBRARY_GIO);
Linker.link(g_resolver_lookup_by_name_with_flags_finish, "g_resolver_lookup_by_name_with_flags_finish", LIBRARY_GIO);
Linker.link(g_resolver_lookup_records, "g_resolver_lookup_records", LIBRARY_GIO);
Linker.link(g_resolver_lookup_records_async, "g_resolver_lookup_records_async", LIBRARY_GIO);
Linker.link(g_resolver_lookup_records_finish, "g_resolver_lookup_records_finish", LIBRARY_GIO);
Linker.link(g_resolver_lookup_service, "g_resolver_lookup_service", LIBRARY_GIO);
Linker.link(g_resolver_lookup_service_async, "g_resolver_lookup_service_async", LIBRARY_GIO);
Linker.link(g_resolver_lookup_service_finish, "g_resolver_lookup_service_finish", LIBRARY_GIO);
Linker.link(g_resolver_set_default, "g_resolver_set_default", LIBRARY_GIO);
// gio.Resource
Linker.link(g_resource_get_type, "g_resource_get_type", LIBRARY_GIO);
Linker.link(g_resource_new_from_data, "g_resource_new_from_data", LIBRARY_GIO);
Linker.link(g_resources_register, "g_resources_register", LIBRARY_GIO);
Linker.link(g_resources_unregister, "g_resources_unregister", LIBRARY_GIO);
Linker.link(g_resource_enumerate_children, "g_resource_enumerate_children", LIBRARY_GIO);
Linker.link(g_resource_get_info, "g_resource_get_info", LIBRARY_GIO);
Linker.link(g_resource_lookup_data, "g_resource_lookup_data", LIBRARY_GIO);
Linker.link(g_resource_open_stream, "g_resource_open_stream", LIBRARY_GIO);
Linker.link(g_resource_ref, "g_resource_ref", LIBRARY_GIO);
Linker.link(g_resource_unref, "g_resource_unref", LIBRARY_GIO);
Linker.link(g_resource_load, "g_resource_load", LIBRARY_GIO);
Linker.link(g_resources_enumerate_children, "g_resources_enumerate_children", LIBRARY_GIO);
Linker.link(g_resources_get_info, "g_resources_get_info", LIBRARY_GIO);
Linker.link(g_resources_lookup_data, "g_resources_lookup_data", LIBRARY_GIO);
Linker.link(g_resources_open_stream, "g_resources_open_stream", LIBRARY_GIO);
// gio.Seekable
Linker.link(g_seekable_get_type, "g_seekable_get_type", LIBRARY_GIO);
Linker.link(g_seekable_can_seek, "g_seekable_can_seek", LIBRARY_GIO);
Linker.link(g_seekable_can_truncate, "g_seekable_can_truncate", LIBRARY_GIO);
Linker.link(g_seekable_seek, "g_seekable_seek", LIBRARY_GIO);
Linker.link(g_seekable_tell, "g_seekable_tell", LIBRARY_GIO);
Linker.link(g_seekable_truncate, "g_seekable_truncate", LIBRARY_GIO);
// gio.Settings
Linker.link(g_settings_get_type, "g_settings_get_type", LIBRARY_GIO);
Linker.link(g_settings_new, "g_settings_new", LIBRARY_GIO);
Linker.link(g_settings_new_full, "g_settings_new_full", LIBRARY_GIO);
Linker.link(g_settings_new_with_backend, "g_settings_new_with_backend", LIBRARY_GIO);
Linker.link(g_settings_new_with_backend_and_path, "g_settings_new_with_backend_and_path", LIBRARY_GIO);
Linker.link(g_settings_new_with_path, "g_settings_new_with_path", LIBRARY_GIO);
Linker.link(g_settings_list_relocatable_schemas, "g_settings_list_relocatable_schemas", LIBRARY_GIO);
Linker.link(g_settings_list_schemas, "g_settings_list_schemas", LIBRARY_GIO);
Linker.link(g_settings_sync, "g_settings_sync", LIBRARY_GIO);
Linker.link(g_settings_unbind, "g_settings_unbind", LIBRARY_GIO);
Linker.link(g_settings_apply, "g_settings_apply", LIBRARY_GIO);
Linker.link(g_settings_bind, "g_settings_bind", LIBRARY_GIO);
Linker.link(g_settings_bind_with_mapping, "g_settings_bind_with_mapping", LIBRARY_GIO);
Linker.link(g_settings_bind_writable, "g_settings_bind_writable", LIBRARY_GIO);
Linker.link(g_settings_create_action, "g_settings_create_action", LIBRARY_GIO);
Linker.link(g_settings_delay, "g_settings_delay", LIBRARY_GIO);
Linker.link(g_settings_get, "g_settings_get", LIBRARY_GIO);
Linker.link(g_settings_get_boolean, "g_settings_get_boolean", LIBRARY_GIO);
Linker.link(g_settings_get_child, "g_settings_get_child", LIBRARY_GIO);
Linker.link(g_settings_get_default_value, "g_settings_get_default_value", LIBRARY_GIO);
Linker.link(g_settings_get_double, "g_settings_get_double", LIBRARY_GIO);
Linker.link(g_settings_get_enum, "g_settings_get_enum", LIBRARY_GIO);
Linker.link(g_settings_get_flags, "g_settings_get_flags", LIBRARY_GIO);
Linker.link(g_settings_get_has_unapplied, "g_settings_get_has_unapplied", LIBRARY_GIO);
Linker.link(g_settings_get_int, "g_settings_get_int", LIBRARY_GIO);
Linker.link(g_settings_get_int64, "g_settings_get_int64", LIBRARY_GIO);
Linker.link(g_settings_get_mapped, "g_settings_get_mapped", LIBRARY_GIO);
Linker.link(g_settings_get_range, "g_settings_get_range", LIBRARY_GIO);
Linker.link(g_settings_get_string, "g_settings_get_string", LIBRARY_GIO);
Linker.link(g_settings_get_strv, "g_settings_get_strv", LIBRARY_GIO);
Linker.link(g_settings_get_uint, "g_settings_get_uint", LIBRARY_GIO);
Linker.link(g_settings_get_uint64, "g_settings_get_uint64", LIBRARY_GIO);
Linker.link(g_settings_get_user_value, "g_settings_get_user_value", LIBRARY_GIO);
Linker.link(g_settings_get_value, "g_settings_get_value", LIBRARY_GIO);
Linker.link(g_settings_is_writable, "g_settings_is_writable", LIBRARY_GIO);
Linker.link(g_settings_list_children, "g_settings_list_children", LIBRARY_GIO);
Linker.link(g_settings_list_keys, "g_settings_list_keys", LIBRARY_GIO);
Linker.link(g_settings_range_check, "g_settings_range_check", LIBRARY_GIO);
Linker.link(g_settings_reset, "g_settings_reset", LIBRARY_GIO);
Linker.link(g_settings_revert, "g_settings_revert", LIBRARY_GIO);
Linker.link(g_settings_set, "g_settings_set", LIBRARY_GIO);
Linker.link(g_settings_set_boolean, "g_settings_set_boolean", LIBRARY_GIO);
Linker.link(g_settings_set_double, "g_settings_set_double", LIBRARY_GIO);
Linker.link(g_settings_set_enum, "g_settings_set_enum", LIBRARY_GIO);
Linker.link(g_settings_set_flags, "g_settings_set_flags", LIBRARY_GIO);
Linker.link(g_settings_set_int, "g_settings_set_int", LIBRARY_GIO);
Linker.link(g_settings_set_int64, "g_settings_set_int64", LIBRARY_GIO);
Linker.link(g_settings_set_string, "g_settings_set_string", LIBRARY_GIO);
Linker.link(g_settings_set_strv, "g_settings_set_strv", LIBRARY_GIO);
Linker.link(g_settings_set_uint, "g_settings_set_uint", LIBRARY_GIO);
Linker.link(g_settings_set_uint64, "g_settings_set_uint64", LIBRARY_GIO);
Linker.link(g_settings_set_value, "g_settings_set_value", LIBRARY_GIO);
// gio.SettingsBackend
Linker.link(g_settings_backend_get_type, "g_settings_backend_get_type", LIBRARY_GIO);
Linker.link(g_settings_backend_flatten_tree, "g_settings_backend_flatten_tree", LIBRARY_GIO);
Linker.link(g_settings_backend_get_default, "g_settings_backend_get_default", LIBRARY_GIO);
Linker.link(g_settings_backend_changed, "g_settings_backend_changed", LIBRARY_GIO);
Linker.link(g_settings_backend_changed_tree, "g_settings_backend_changed_tree", LIBRARY_GIO);
Linker.link(g_settings_backend_keys_changed, "g_settings_backend_keys_changed", LIBRARY_GIO);
Linker.link(g_settings_backend_path_changed, "g_settings_backend_path_changed", LIBRARY_GIO);
Linker.link(g_settings_backend_path_writable_changed, "g_settings_backend_path_writable_changed", LIBRARY_GIO);
Linker.link(g_settings_backend_writable_changed, "g_settings_backend_writable_changed", LIBRARY_GIO);
Linker.link(g_keyfile_settings_backend_new, "g_keyfile_settings_backend_new", LIBRARY_GIO);
Linker.link(g_memory_settings_backend_new, "g_memory_settings_backend_new", LIBRARY_GIO);
Linker.link(g_null_settings_backend_new, "g_null_settings_backend_new", LIBRARY_GIO);
// gio.SettingsSchema
Linker.link(g_settings_schema_get_type, "g_settings_schema_get_type", LIBRARY_GIO);
Linker.link(g_settings_schema_get_id, "g_settings_schema_get_id", LIBRARY_GIO);
Linker.link(g_settings_schema_get_key, "g_settings_schema_get_key", LIBRARY_GIO);
Linker.link(g_settings_schema_get_path, "g_settings_schema_get_path", LIBRARY_GIO);
Linker.link(g_settings_schema_has_key, "g_settings_schema_has_key", LIBRARY_GIO);
Linker.link(g_settings_schema_list_children, "g_settings_schema_list_children", LIBRARY_GIO);
Linker.link(g_settings_schema_list_keys, "g_settings_schema_list_keys", LIBRARY_GIO);
Linker.link(g_settings_schema_ref, "g_settings_schema_ref", LIBRARY_GIO);
Linker.link(g_settings_schema_unref, "g_settings_schema_unref", LIBRARY_GIO);
// gio.SettingsSchemaKey
Linker.link(g_settings_schema_key_get_type, "g_settings_schema_key_get_type", LIBRARY_GIO);
Linker.link(g_settings_schema_key_get_default_value, "g_settings_schema_key_get_default_value", LIBRARY_GIO);
Linker.link(g_settings_schema_key_get_description, "g_settings_schema_key_get_description", LIBRARY_GIO);
Linker.link(g_settings_schema_key_get_name, "g_settings_schema_key_get_name", LIBRARY_GIO);
Linker.link(g_settings_schema_key_get_range, "g_settings_schema_key_get_range", LIBRARY_GIO);
Linker.link(g_settings_schema_key_get_summary, "g_settings_schema_key_get_summary", LIBRARY_GIO);
Linker.link(g_settings_schema_key_get_value_type, "g_settings_schema_key_get_value_type", LIBRARY_GIO);
Linker.link(g_settings_schema_key_range_check, "g_settings_schema_key_range_check", LIBRARY_GIO);
Linker.link(g_settings_schema_key_ref, "g_settings_schema_key_ref", LIBRARY_GIO);
Linker.link(g_settings_schema_key_unref, "g_settings_schema_key_unref", LIBRARY_GIO);
// gio.SettingsSchemaSource
Linker.link(g_settings_schema_source_get_type, "g_settings_schema_source_get_type", LIBRARY_GIO);
Linker.link(g_settings_schema_source_new_from_directory, "g_settings_schema_source_new_from_directory", LIBRARY_GIO);
Linker.link(g_settings_schema_source_list_schemas, "g_settings_schema_source_list_schemas", LIBRARY_GIO);
Linker.link(g_settings_schema_source_lookup, "g_settings_schema_source_lookup", LIBRARY_GIO);
Linker.link(g_settings_schema_source_ref, "g_settings_schema_source_ref", LIBRARY_GIO);
Linker.link(g_settings_schema_source_unref, "g_settings_schema_source_unref", LIBRARY_GIO);
Linker.link(g_settings_schema_source_get_default, "g_settings_schema_source_get_default", LIBRARY_GIO);
// gio.SimpleAction
Linker.link(g_simple_action_get_type, "g_simple_action_get_type", LIBRARY_GIO);
Linker.link(g_simple_action_new, "g_simple_action_new", LIBRARY_GIO);
Linker.link(g_simple_action_new_stateful, "g_simple_action_new_stateful", LIBRARY_GIO);
Linker.link(g_simple_action_set_enabled, "g_simple_action_set_enabled", LIBRARY_GIO);
Linker.link(g_simple_action_set_state, "g_simple_action_set_state", LIBRARY_GIO);
Linker.link(g_simple_action_set_state_hint, "g_simple_action_set_state_hint", LIBRARY_GIO);
// gio.SimpleActionGroup
Linker.link(g_simple_action_group_get_type, "g_simple_action_group_get_type", LIBRARY_GIO);
Linker.link(g_simple_action_group_new, "g_simple_action_group_new", LIBRARY_GIO);
Linker.link(g_simple_action_group_add_entries, "g_simple_action_group_add_entries", LIBRARY_GIO);
Linker.link(g_simple_action_group_insert, "g_simple_action_group_insert", LIBRARY_GIO);
Linker.link(g_simple_action_group_lookup, "g_simple_action_group_lookup", LIBRARY_GIO);
Linker.link(g_simple_action_group_remove, "g_simple_action_group_remove", LIBRARY_GIO);
// gio.SimpleAsyncResult
Linker.link(g_simple_async_result_get_type, "g_simple_async_result_get_type", LIBRARY_GIO);
Linker.link(g_simple_async_result_new, "g_simple_async_result_new", LIBRARY_GIO);
Linker.link(g_simple_async_result_new_error, "g_simple_async_result_new_error", LIBRARY_GIO);
Linker.link(g_simple_async_result_new_from_error, "g_simple_async_result_new_from_error", LIBRARY_GIO);
Linker.link(g_simple_async_result_new_take_error, "g_simple_async_result_new_take_error", LIBRARY_GIO);
Linker.link(g_simple_async_result_is_valid, "g_simple_async_result_is_valid", LIBRARY_GIO);
Linker.link(g_simple_async_result_complete, "g_simple_async_result_complete", LIBRARY_GIO);
Linker.link(g_simple_async_result_complete_in_idle, "g_simple_async_result_complete_in_idle", LIBRARY_GIO);
Linker.link(g_simple_async_result_get_op_res_gboolean, "g_simple_async_result_get_op_res_gboolean", LIBRARY_GIO);
Linker.link(g_simple_async_result_get_op_res_gpointer, "g_simple_async_result_get_op_res_gpointer", LIBRARY_GIO);
Linker.link(g_simple_async_result_get_op_res_gssize, "g_simple_async_result_get_op_res_gssize", LIBRARY_GIO);
Linker.link(g_simple_async_result_get_source_tag, "g_simple_async_result_get_source_tag", LIBRARY_GIO);
Linker.link(g_simple_async_result_propagate_error, "g_simple_async_result_propagate_error", LIBRARY_GIO);
Linker.link(g_simple_async_result_run_in_thread, "g_simple_async_result_run_in_thread", LIBRARY_GIO);
Linker.link(g_simple_async_result_set_check_cancellable, "g_simple_async_result_set_check_cancellable", LIBRARY_GIO);
Linker.link(g_simple_async_result_set_error, "g_simple_async_result_set_error", LIBRARY_GIO);
Linker.link(g_simple_async_result_set_error_va, "g_simple_async_result_set_error_va", LIBRARY_GIO);
Linker.link(g_simple_async_result_set_from_error, "g_simple_async_result_set_from_error", LIBRARY_GIO);
Linker.link(g_simple_async_result_set_handle_cancellation, "g_simple_async_result_set_handle_cancellation", LIBRARY_GIO);
Linker.link(g_simple_async_result_set_op_res_gboolean, "g_simple_async_result_set_op_res_gboolean", LIBRARY_GIO);
Linker.link(g_simple_async_result_set_op_res_gpointer, "g_simple_async_result_set_op_res_gpointer", LIBRARY_GIO);
Linker.link(g_simple_async_result_set_op_res_gssize, "g_simple_async_result_set_op_res_gssize", LIBRARY_GIO);
Linker.link(g_simple_async_result_take_error, "g_simple_async_result_take_error", LIBRARY_GIO);
Linker.link(g_simple_async_report_error_in_idle, "g_simple_async_report_error_in_idle", LIBRARY_GIO);
Linker.link(g_simple_async_report_gerror_in_idle, "g_simple_async_report_gerror_in_idle", LIBRARY_GIO);
Linker.link(g_simple_async_report_take_gerror_in_idle, "g_simple_async_report_take_gerror_in_idle", LIBRARY_GIO);
// gio.SimpleIOStream
Linker.link(g_simple_io_stream_get_type, "g_simple_io_stream_get_type", LIBRARY_GIO);
Linker.link(g_simple_io_stream_new, "g_simple_io_stream_new", LIBRARY_GIO);
// gio.SimplePermission
Linker.link(g_simple_permission_get_type, "g_simple_permission_get_type", LIBRARY_GIO);
Linker.link(g_simple_permission_new, "g_simple_permission_new", LIBRARY_GIO);
// gio.SimpleProxyResolver
Linker.link(g_simple_proxy_resolver_get_type, "g_simple_proxy_resolver_get_type", LIBRARY_GIO);
Linker.link(g_simple_proxy_resolver_new, "g_simple_proxy_resolver_new", LIBRARY_GIO);
Linker.link(g_simple_proxy_resolver_set_default_proxy, "g_simple_proxy_resolver_set_default_proxy", LIBRARY_GIO);
Linker.link(g_simple_proxy_resolver_set_ignore_hosts, "g_simple_proxy_resolver_set_ignore_hosts", LIBRARY_GIO);
Linker.link(g_simple_proxy_resolver_set_uri_proxy, "g_simple_proxy_resolver_set_uri_proxy", LIBRARY_GIO);
// gio.Socket
Linker.link(g_socket_get_type, "g_socket_get_type", LIBRARY_GIO);
Linker.link(g_socket_new, "g_socket_new", LIBRARY_GIO);
Linker.link(g_socket_new_from_fd, "g_socket_new_from_fd", LIBRARY_GIO);
Linker.link(g_socket_accept, "g_socket_accept", LIBRARY_GIO);
Linker.link(g_socket_bind, "g_socket_bind", LIBRARY_GIO);
Linker.link(g_socket_check_connect_result, "g_socket_check_connect_result", LIBRARY_GIO);
Linker.link(g_socket_close, "g_socket_close", LIBRARY_GIO);
Linker.link(g_socket_condition_check, "g_socket_condition_check", LIBRARY_GIO);
Linker.link(g_socket_condition_timed_wait, "g_socket_condition_timed_wait", LIBRARY_GIO);
Linker.link(g_socket_condition_wait, "g_socket_condition_wait", LIBRARY_GIO);
Linker.link(g_socket_connect, "g_socket_connect", LIBRARY_GIO);
Linker.link(g_socket_connection_factory_create_connection, "g_socket_connection_factory_create_connection", LIBRARY_GIO);
Linker.link(g_socket_create_source, "g_socket_create_source", LIBRARY_GIO);
Linker.link(g_socket_get_available_bytes, "g_socket_get_available_bytes", LIBRARY_GIO);
Linker.link(g_socket_get_blocking, "g_socket_get_blocking", LIBRARY_GIO);
Linker.link(g_socket_get_broadcast, "g_socket_get_broadcast", LIBRARY_GIO);
Linker.link(g_socket_get_credentials, "g_socket_get_credentials", LIBRARY_GIO);
Linker.link(g_socket_get_family, "g_socket_get_family", LIBRARY_GIO);
Linker.link(g_socket_get_fd, "g_socket_get_fd", LIBRARY_GIO);
Linker.link(g_socket_get_keepalive, "g_socket_get_keepalive", LIBRARY_GIO);
Linker.link(g_socket_get_listen_backlog, "g_socket_get_listen_backlog", LIBRARY_GIO);
Linker.link(g_socket_get_local_address, "g_socket_get_local_address", LIBRARY_GIO);
Linker.link(g_socket_get_multicast_loopback, "g_socket_get_multicast_loopback", LIBRARY_GIO);
Linker.link(g_socket_get_multicast_ttl, "g_socket_get_multicast_ttl", LIBRARY_GIO);
Linker.link(g_socket_get_option, "g_socket_get_option", LIBRARY_GIO);
Linker.link(g_socket_get_protocol, "g_socket_get_protocol", LIBRARY_GIO);
Linker.link(g_socket_get_remote_address, "g_socket_get_remote_address", LIBRARY_GIO);
Linker.link(g_socket_get_socket_type, "g_socket_get_socket_type", LIBRARY_GIO);
Linker.link(g_socket_get_timeout, "g_socket_get_timeout", LIBRARY_GIO);
Linker.link(g_socket_get_ttl, "g_socket_get_ttl", LIBRARY_GIO);
Linker.link(g_socket_is_closed, "g_socket_is_closed", LIBRARY_GIO);
Linker.link(g_socket_is_connected, "g_socket_is_connected", LIBRARY_GIO);
Linker.link(g_socket_join_multicast_group, "g_socket_join_multicast_group", LIBRARY_GIO);
Linker.link(g_socket_join_multicast_group_ssm, "g_socket_join_multicast_group_ssm", LIBRARY_GIO);
Linker.link(g_socket_leave_multicast_group, "g_socket_leave_multicast_group", LIBRARY_GIO);
Linker.link(g_socket_leave_multicast_group_ssm, "g_socket_leave_multicast_group_ssm", LIBRARY_GIO);
Linker.link(g_socket_listen, "g_socket_listen", LIBRARY_GIO);
Linker.link(g_socket_receive, "g_socket_receive", LIBRARY_GIO);
Linker.link(g_socket_receive_from, "g_socket_receive_from", LIBRARY_GIO);
Linker.link(g_socket_receive_message, "g_socket_receive_message", LIBRARY_GIO);
Linker.link(g_socket_receive_messages, "g_socket_receive_messages", LIBRARY_GIO);
Linker.link(g_socket_receive_with_blocking, "g_socket_receive_with_blocking", LIBRARY_GIO);
Linker.link(g_socket_send, "g_socket_send", LIBRARY_GIO);
Linker.link(g_socket_send_message, "g_socket_send_message", LIBRARY_GIO);
Linker.link(g_socket_send_message_with_timeout, "g_socket_send_message_with_timeout", LIBRARY_GIO);
Linker.link(g_socket_send_messages, "g_socket_send_messages", LIBRARY_GIO);
Linker.link(g_socket_send_to, "g_socket_send_to", LIBRARY_GIO);
Linker.link(g_socket_send_with_blocking, "g_socket_send_with_blocking", LIBRARY_GIO);
Linker.link(g_socket_set_blocking, "g_socket_set_blocking", LIBRARY_GIO);
Linker.link(g_socket_set_broadcast, "g_socket_set_broadcast", LIBRARY_GIO);
Linker.link(g_socket_set_keepalive, "g_socket_set_keepalive", LIBRARY_GIO);
Linker.link(g_socket_set_listen_backlog, "g_socket_set_listen_backlog", LIBRARY_GIO);
Linker.link(g_socket_set_multicast_loopback, "g_socket_set_multicast_loopback", LIBRARY_GIO);
Linker.link(g_socket_set_multicast_ttl, "g_socket_set_multicast_ttl", LIBRARY_GIO);
Linker.link(g_socket_set_option, "g_socket_set_option", LIBRARY_GIO);
Linker.link(g_socket_set_timeout, "g_socket_set_timeout", LIBRARY_GIO);
Linker.link(g_socket_set_ttl, "g_socket_set_ttl", LIBRARY_GIO);
Linker.link(g_socket_shutdown, "g_socket_shutdown", LIBRARY_GIO);
Linker.link(g_socket_speaks_ipv4, "g_socket_speaks_ipv4", LIBRARY_GIO);
// gio.SocketAddress
Linker.link(g_socket_address_get_type, "g_socket_address_get_type", LIBRARY_GIO);
Linker.link(g_socket_address_new_from_native, "g_socket_address_new_from_native", LIBRARY_GIO);
Linker.link(g_socket_address_get_family, "g_socket_address_get_family", LIBRARY_GIO);
Linker.link(g_socket_address_get_native_size, "g_socket_address_get_native_size", LIBRARY_GIO);
Linker.link(g_socket_address_to_native, "g_socket_address_to_native", LIBRARY_GIO);
// gio.SocketAddressEnumerator
Linker.link(g_socket_address_enumerator_get_type, "g_socket_address_enumerator_get_type", LIBRARY_GIO);
Linker.link(g_socket_address_enumerator_next, "g_socket_address_enumerator_next", LIBRARY_GIO);
Linker.link(g_socket_address_enumerator_next_async, "g_socket_address_enumerator_next_async", LIBRARY_GIO);
Linker.link(g_socket_address_enumerator_next_finish, "g_socket_address_enumerator_next_finish", LIBRARY_GIO);
// gio.SocketClient
Linker.link(g_socket_client_get_type, "g_socket_client_get_type", LIBRARY_GIO);
Linker.link(g_socket_client_new, "g_socket_client_new", LIBRARY_GIO);
Linker.link(g_socket_client_add_application_proxy, "g_socket_client_add_application_proxy", LIBRARY_GIO);
Linker.link(g_socket_client_connect, "g_socket_client_connect", LIBRARY_GIO);
Linker.link(g_socket_client_connect_async, "g_socket_client_connect_async", LIBRARY_GIO);
Linker.link(g_socket_client_connect_finish, "g_socket_client_connect_finish", LIBRARY_GIO);
Linker.link(g_socket_client_connect_to_host, "g_socket_client_connect_to_host", LIBRARY_GIO);
Linker.link(g_socket_client_connect_to_host_async, "g_socket_client_connect_to_host_async", LIBRARY_GIO);
Linker.link(g_socket_client_connect_to_host_finish, "g_socket_client_connect_to_host_finish", LIBRARY_GIO);
Linker.link(g_socket_client_connect_to_service, "g_socket_client_connect_to_service", LIBRARY_GIO);
Linker.link(g_socket_client_connect_to_service_async, "g_socket_client_connect_to_service_async", LIBRARY_GIO);
Linker.link(g_socket_client_connect_to_service_finish, "g_socket_client_connect_to_service_finish", LIBRARY_GIO);
Linker.link(g_socket_client_connect_to_uri, "g_socket_client_connect_to_uri", LIBRARY_GIO);
Linker.link(g_socket_client_connect_to_uri_async, "g_socket_client_connect_to_uri_async", LIBRARY_GIO);
Linker.link(g_socket_client_connect_to_uri_finish, "g_socket_client_connect_to_uri_finish", LIBRARY_GIO);
Linker.link(g_socket_client_get_enable_proxy, "g_socket_client_get_enable_proxy", LIBRARY_GIO);
Linker.link(g_socket_client_get_family, "g_socket_client_get_family", LIBRARY_GIO);
Linker.link(g_socket_client_get_local_address, "g_socket_client_get_local_address", LIBRARY_GIO);
Linker.link(g_socket_client_get_protocol, "g_socket_client_get_protocol", LIBRARY_GIO);
Linker.link(g_socket_client_get_proxy_resolver, "g_socket_client_get_proxy_resolver", LIBRARY_GIO);
Linker.link(g_socket_client_get_socket_type, "g_socket_client_get_socket_type", LIBRARY_GIO);
Linker.link(g_socket_client_get_timeout, "g_socket_client_get_timeout", LIBRARY_GIO);
Linker.link(g_socket_client_get_tls, "g_socket_client_get_tls", LIBRARY_GIO);
Linker.link(g_socket_client_get_tls_validation_flags, "g_socket_client_get_tls_validation_flags", LIBRARY_GIO);
Linker.link(g_socket_client_set_enable_proxy, "g_socket_client_set_enable_proxy", LIBRARY_GIO);
Linker.link(g_socket_client_set_family, "g_socket_client_set_family", LIBRARY_GIO);
Linker.link(g_socket_client_set_local_address, "g_socket_client_set_local_address", LIBRARY_GIO);
Linker.link(g_socket_client_set_protocol, "g_socket_client_set_protocol", LIBRARY_GIO);
Linker.link(g_socket_client_set_proxy_resolver, "g_socket_client_set_proxy_resolver", LIBRARY_GIO);
Linker.link(g_socket_client_set_socket_type, "g_socket_client_set_socket_type", LIBRARY_GIO);
Linker.link(g_socket_client_set_timeout, "g_socket_client_set_timeout", LIBRARY_GIO);
Linker.link(g_socket_client_set_tls, "g_socket_client_set_tls", LIBRARY_GIO);
Linker.link(g_socket_client_set_tls_validation_flags, "g_socket_client_set_tls_validation_flags", LIBRARY_GIO);
// gio.SocketConnectable
Linker.link(g_socket_connectable_get_type, "g_socket_connectable_get_type", LIBRARY_GIO);
Linker.link(g_socket_connectable_enumerate, "g_socket_connectable_enumerate", LIBRARY_GIO);
Linker.link(g_socket_connectable_proxy_enumerate, "g_socket_connectable_proxy_enumerate", LIBRARY_GIO);
Linker.link(g_socket_connectable_to_string, "g_socket_connectable_to_string", LIBRARY_GIO);
// gio.SocketConnection
Linker.link(g_socket_connection_get_type, "g_socket_connection_get_type", LIBRARY_GIO);
Linker.link(g_socket_connection_factory_lookup_type, "g_socket_connection_factory_lookup_type", LIBRARY_GIO);
Linker.link(g_socket_connection_factory_register_type, "g_socket_connection_factory_register_type", LIBRARY_GIO);
Linker.link(g_socket_connection_connect, "g_socket_connection_connect", LIBRARY_GIO);
Linker.link(g_socket_connection_connect_async, "g_socket_connection_connect_async", LIBRARY_GIO);
Linker.link(g_socket_connection_connect_finish, "g_socket_connection_connect_finish", LIBRARY_GIO);
Linker.link(g_socket_connection_get_local_address, "g_socket_connection_get_local_address", LIBRARY_GIO);
Linker.link(g_socket_connection_get_remote_address, "g_socket_connection_get_remote_address", LIBRARY_GIO);
Linker.link(g_socket_connection_get_socket, "g_socket_connection_get_socket", LIBRARY_GIO);
Linker.link(g_socket_connection_is_connected, "g_socket_connection_is_connected", LIBRARY_GIO);
// gio.SocketControlMessage
Linker.link(g_socket_control_message_get_type, "g_socket_control_message_get_type", LIBRARY_GIO);
Linker.link(g_socket_control_message_deserialize, "g_socket_control_message_deserialize", LIBRARY_GIO);
Linker.link(g_socket_control_message_get_level, "g_socket_control_message_get_level", LIBRARY_GIO);
Linker.link(g_socket_control_message_get_msg_type, "g_socket_control_message_get_msg_type", LIBRARY_GIO);
Linker.link(g_socket_control_message_get_size, "g_socket_control_message_get_size", LIBRARY_GIO);
Linker.link(g_socket_control_message_serialize, "g_socket_control_message_serialize", LIBRARY_GIO);
// gio.SocketListener
Linker.link(g_socket_listener_get_type, "g_socket_listener_get_type", LIBRARY_GIO);
Linker.link(g_socket_listener_new, "g_socket_listener_new", LIBRARY_GIO);
Linker.link(g_socket_listener_accept, "g_socket_listener_accept", LIBRARY_GIO);
Linker.link(g_socket_listener_accept_async, "g_socket_listener_accept_async", LIBRARY_GIO);
Linker.link(g_socket_listener_accept_finish, "g_socket_listener_accept_finish", LIBRARY_GIO);
Linker.link(g_socket_listener_accept_socket, "g_socket_listener_accept_socket", LIBRARY_GIO);
Linker.link(g_socket_listener_accept_socket_async, "g_socket_listener_accept_socket_async", LIBRARY_GIO);
Linker.link(g_socket_listener_accept_socket_finish, "g_socket_listener_accept_socket_finish", LIBRARY_GIO);
Linker.link(g_socket_listener_add_address, "g_socket_listener_add_address", LIBRARY_GIO);
Linker.link(g_socket_listener_add_any_inet_port, "g_socket_listener_add_any_inet_port", LIBRARY_GIO);
Linker.link(g_socket_listener_add_inet_port, "g_socket_listener_add_inet_port", LIBRARY_GIO);
Linker.link(g_socket_listener_add_socket, "g_socket_listener_add_socket", LIBRARY_GIO);
Linker.link(g_socket_listener_close, "g_socket_listener_close", LIBRARY_GIO);
Linker.link(g_socket_listener_set_backlog, "g_socket_listener_set_backlog", LIBRARY_GIO);
// gio.SocketService
Linker.link(g_socket_service_get_type, "g_socket_service_get_type", LIBRARY_GIO);
Linker.link(g_socket_service_new, "g_socket_service_new", LIBRARY_GIO);
Linker.link(g_socket_service_is_active, "g_socket_service_is_active", LIBRARY_GIO);
Linker.link(g_socket_service_start, "g_socket_service_start", LIBRARY_GIO);
Linker.link(g_socket_service_stop, "g_socket_service_stop", LIBRARY_GIO);
// gio.SrvTarget
Linker.link(g_srv_target_get_type, "g_srv_target_get_type", LIBRARY_GIO);
Linker.link(g_srv_target_new, "g_srv_target_new", LIBRARY_GIO);
Linker.link(g_srv_target_copy, "g_srv_target_copy", LIBRARY_GIO);
Linker.link(g_srv_target_free, "g_srv_target_free", LIBRARY_GIO);
Linker.link(g_srv_target_get_hostname, "g_srv_target_get_hostname", LIBRARY_GIO);
Linker.link(g_srv_target_get_port, "g_srv_target_get_port", LIBRARY_GIO);
Linker.link(g_srv_target_get_priority, "g_srv_target_get_priority", LIBRARY_GIO);
Linker.link(g_srv_target_get_weight, "g_srv_target_get_weight", LIBRARY_GIO);
Linker.link(g_srv_target_list_sort, "g_srv_target_list_sort", LIBRARY_GIO);
// gio.StaticResource
Linker.link(g_static_resource_fini, "g_static_resource_fini", LIBRARY_GIO);
Linker.link(g_static_resource_get_resource, "g_static_resource_get_resource", LIBRARY_GIO);
Linker.link(g_static_resource_init, "g_static_resource_init", LIBRARY_GIO);
// gio.Subprocess
Linker.link(g_subprocess_get_type, "g_subprocess_get_type", LIBRARY_GIO);
Linker.link(g_subprocess_new, "g_subprocess_new", LIBRARY_GIO);
Linker.link(g_subprocess_newv, "g_subprocess_newv", LIBRARY_GIO);
Linker.link(g_subprocess_communicate, "g_subprocess_communicate", LIBRARY_GIO);
Linker.link(g_subprocess_communicate_async, "g_subprocess_communicate_async", LIBRARY_GIO);
Linker.link(g_subprocess_communicate_finish, "g_subprocess_communicate_finish", LIBRARY_GIO);
Linker.link(g_subprocess_communicate_utf8, "g_subprocess_communicate_utf8", LIBRARY_GIO);
Linker.link(g_subprocess_communicate_utf8_async, "g_subprocess_communicate_utf8_async", LIBRARY_GIO);
Linker.link(g_subprocess_communicate_utf8_finish, "g_subprocess_communicate_utf8_finish", LIBRARY_GIO);
Linker.link(g_subprocess_force_exit, "g_subprocess_force_exit", LIBRARY_GIO);
Linker.link(g_subprocess_get_exit_status, "g_subprocess_get_exit_status", LIBRARY_GIO);
Linker.link(g_subprocess_get_identifier, "g_subprocess_get_identifier", LIBRARY_GIO);
Linker.link(g_subprocess_get_if_exited, "g_subprocess_get_if_exited", LIBRARY_GIO);
Linker.link(g_subprocess_get_if_signaled, "g_subprocess_get_if_signaled", LIBRARY_GIO);
Linker.link(g_subprocess_get_status, "g_subprocess_get_status", LIBRARY_GIO);
Linker.link(g_subprocess_get_stderr_pipe, "g_subprocess_get_stderr_pipe", LIBRARY_GIO);
Linker.link(g_subprocess_get_stdin_pipe, "g_subprocess_get_stdin_pipe", LIBRARY_GIO);
Linker.link(g_subprocess_get_stdout_pipe, "g_subprocess_get_stdout_pipe", LIBRARY_GIO);
Linker.link(g_subprocess_get_successful, "g_subprocess_get_successful", LIBRARY_GIO);
Linker.link(g_subprocess_get_term_sig, "g_subprocess_get_term_sig", LIBRARY_GIO);
Linker.link(g_subprocess_send_signal, "g_subprocess_send_signal", LIBRARY_GIO);
Linker.link(g_subprocess_wait, "g_subprocess_wait", LIBRARY_GIO);
Linker.link(g_subprocess_wait_async, "g_subprocess_wait_async", LIBRARY_GIO);
Linker.link(g_subprocess_wait_check, "g_subprocess_wait_check", LIBRARY_GIO);
Linker.link(g_subprocess_wait_check_async, "g_subprocess_wait_check_async", LIBRARY_GIO);
Linker.link(g_subprocess_wait_check_finish, "g_subprocess_wait_check_finish", LIBRARY_GIO);
Linker.link(g_subprocess_wait_finish, "g_subprocess_wait_finish", LIBRARY_GIO);
// gio.SubprocessLauncher
Linker.link(g_subprocess_launcher_get_type, "g_subprocess_launcher_get_type", LIBRARY_GIO);
Linker.link(g_subprocess_launcher_new, "g_subprocess_launcher_new", LIBRARY_GIO);
Linker.link(g_subprocess_launcher_getenv, "g_subprocess_launcher_getenv", LIBRARY_GIO);
Linker.link(g_subprocess_launcher_set_child_setup, "g_subprocess_launcher_set_child_setup", LIBRARY_GIO);
Linker.link(g_subprocess_launcher_set_cwd, "g_subprocess_launcher_set_cwd", LIBRARY_GIO);
Linker.link(g_subprocess_launcher_set_environ, "g_subprocess_launcher_set_environ", LIBRARY_GIO);
Linker.link(g_subprocess_launcher_set_flags, "g_subprocess_launcher_set_flags", LIBRARY_GIO);
Linker.link(g_subprocess_launcher_set_stderr_file_path, "g_subprocess_launcher_set_stderr_file_path", LIBRARY_GIO);
Linker.link(g_subprocess_launcher_set_stdin_file_path, "g_subprocess_launcher_set_stdin_file_path", LIBRARY_GIO);
Linker.link(g_subprocess_launcher_set_stdout_file_path, "g_subprocess_launcher_set_stdout_file_path", LIBRARY_GIO);
Linker.link(g_subprocess_launcher_setenv, "g_subprocess_launcher_setenv", LIBRARY_GIO);
Linker.link(g_subprocess_launcher_spawn, "g_subprocess_launcher_spawn", LIBRARY_GIO);
Linker.link(g_subprocess_launcher_spawnv, "g_subprocess_launcher_spawnv", LIBRARY_GIO);
Linker.link(g_subprocess_launcher_take_fd, "g_subprocess_launcher_take_fd", LIBRARY_GIO);
Linker.link(g_subprocess_launcher_take_stderr_fd, "g_subprocess_launcher_take_stderr_fd", LIBRARY_GIO);
Linker.link(g_subprocess_launcher_take_stdin_fd, "g_subprocess_launcher_take_stdin_fd", LIBRARY_GIO);
Linker.link(g_subprocess_launcher_take_stdout_fd, "g_subprocess_launcher_take_stdout_fd", LIBRARY_GIO);
Linker.link(g_subprocess_launcher_unsetenv, "g_subprocess_launcher_unsetenv", LIBRARY_GIO);
// gio.Task
Linker.link(g_task_get_type, "g_task_get_type", LIBRARY_GIO);
Linker.link(g_task_new, "g_task_new", LIBRARY_GIO);
Linker.link(g_task_is_valid, "g_task_is_valid", LIBRARY_GIO);
Linker.link(g_task_report_error, "g_task_report_error", LIBRARY_GIO);
Linker.link(g_task_report_new_error, "g_task_report_new_error", LIBRARY_GIO);
Linker.link(g_task_attach_source, "g_task_attach_source", LIBRARY_GIO);
Linker.link(g_task_get_cancellable, "g_task_get_cancellable", LIBRARY_GIO);
Linker.link(g_task_get_check_cancellable, "g_task_get_check_cancellable", LIBRARY_GIO);
Linker.link(g_task_get_completed, "g_task_get_completed", LIBRARY_GIO);
Linker.link(g_task_get_context, "g_task_get_context", LIBRARY_GIO);
Linker.link(g_task_get_name, "g_task_get_name", LIBRARY_GIO);
Linker.link(g_task_get_priority, "g_task_get_priority", LIBRARY_GIO);
Linker.link(g_task_get_return_on_cancel, "g_task_get_return_on_cancel", LIBRARY_GIO);
Linker.link(g_task_get_source_object, "g_task_get_source_object", LIBRARY_GIO);
Linker.link(g_task_get_source_tag, "g_task_get_source_tag", LIBRARY_GIO);
Linker.link(g_task_get_task_data, "g_task_get_task_data", LIBRARY_GIO);
Linker.link(g_task_had_error, "g_task_had_error", LIBRARY_GIO);
Linker.link(g_task_propagate_boolean, "g_task_propagate_boolean", LIBRARY_GIO);
Linker.link(g_task_propagate_int, "g_task_propagate_int", LIBRARY_GIO);
Linker.link(g_task_propagate_pointer, "g_task_propagate_pointer", LIBRARY_GIO);
Linker.link(g_task_propagate_value, "g_task_propagate_value", LIBRARY_GIO);
Linker.link(g_task_return_boolean, "g_task_return_boolean", LIBRARY_GIO);
Linker.link(g_task_return_error, "g_task_return_error", LIBRARY_GIO);
Linker.link(g_task_return_error_if_cancelled, "g_task_return_error_if_cancelled", LIBRARY_GIO);
Linker.link(g_task_return_int, "g_task_return_int", LIBRARY_GIO);
Linker.link(g_task_return_new_error, "g_task_return_new_error", LIBRARY_GIO);
Linker.link(g_task_return_pointer, "g_task_return_pointer", LIBRARY_GIO);
Linker.link(g_task_return_value, "g_task_return_value", LIBRARY_GIO);
Linker.link(g_task_run_in_thread, "g_task_run_in_thread", LIBRARY_GIO);
Linker.link(g_task_run_in_thread_sync, "g_task_run_in_thread_sync", LIBRARY_GIO);
Linker.link(g_task_set_check_cancellable, "g_task_set_check_cancellable", LIBRARY_GIO);
Linker.link(g_task_set_name, "g_task_set_name", LIBRARY_GIO);
Linker.link(g_task_set_priority, "g_task_set_priority", LIBRARY_GIO);
Linker.link(g_task_set_return_on_cancel, "g_task_set_return_on_cancel", LIBRARY_GIO);
Linker.link(g_task_set_source_tag, "g_task_set_source_tag", LIBRARY_GIO);
Linker.link(g_task_set_task_data, "g_task_set_task_data", LIBRARY_GIO);
// gio.TcpConnection
Linker.link(g_tcp_connection_get_type, "g_tcp_connection_get_type", LIBRARY_GIO);
Linker.link(g_tcp_connection_get_graceful_disconnect, "g_tcp_connection_get_graceful_disconnect", LIBRARY_GIO);
Linker.link(g_tcp_connection_set_graceful_disconnect, "g_tcp_connection_set_graceful_disconnect", LIBRARY_GIO);
// gio.TcpWrapperConnection
Linker.link(g_tcp_wrapper_connection_get_type, "g_tcp_wrapper_connection_get_type", LIBRARY_GIO);
Linker.link(g_tcp_wrapper_connection_new, "g_tcp_wrapper_connection_new", LIBRARY_GIO);
Linker.link(g_tcp_wrapper_connection_get_base_io_stream, "g_tcp_wrapper_connection_get_base_io_stream", LIBRARY_GIO);
// gio.TestDBus
Linker.link(g_test_dbus_get_type, "g_test_dbus_get_type", LIBRARY_GIO);
Linker.link(g_test_dbus_new, "g_test_dbus_new", LIBRARY_GIO);
Linker.link(g_test_dbus_unset, "g_test_dbus_unset", LIBRARY_GIO);
Linker.link(g_test_dbus_add_service_dir, "g_test_dbus_add_service_dir", LIBRARY_GIO);
Linker.link(g_test_dbus_down, "g_test_dbus_down", LIBRARY_GIO);
Linker.link(g_test_dbus_get_bus_address, "g_test_dbus_get_bus_address", LIBRARY_GIO);
Linker.link(g_test_dbus_get_flags, "g_test_dbus_get_flags", LIBRARY_GIO);
Linker.link(g_test_dbus_stop, "g_test_dbus_stop", LIBRARY_GIO);
Linker.link(g_test_dbus_up, "g_test_dbus_up", LIBRARY_GIO);
// gio.ThemedIcon
Linker.link(g_themed_icon_get_type, "g_themed_icon_get_type", LIBRARY_GIO);
Linker.link(g_themed_icon_new, "g_themed_icon_new", LIBRARY_GIO);
Linker.link(g_themed_icon_new_from_names, "g_themed_icon_new_from_names", LIBRARY_GIO);
Linker.link(g_themed_icon_new_with_default_fallbacks, "g_themed_icon_new_with_default_fallbacks", LIBRARY_GIO);
Linker.link(g_themed_icon_append_name, "g_themed_icon_append_name", LIBRARY_GIO);
Linker.link(g_themed_icon_get_names, "g_themed_icon_get_names", LIBRARY_GIO);
Linker.link(g_themed_icon_prepend_name, "g_themed_icon_prepend_name", LIBRARY_GIO);
// gio.ThreadedSocketService
Linker.link(g_threaded_socket_service_get_type, "g_threaded_socket_service_get_type", LIBRARY_GIO);
Linker.link(g_threaded_socket_service_new, "g_threaded_socket_service_new", LIBRARY_GIO);
// gio.TlsBackend
Linker.link(g_tls_backend_get_type, "g_tls_backend_get_type", LIBRARY_GIO);
Linker.link(g_tls_backend_get_default, "g_tls_backend_get_default", LIBRARY_GIO);
Linker.link(g_tls_backend_get_certificate_type, "g_tls_backend_get_certificate_type", LIBRARY_GIO);
Linker.link(g_tls_backend_get_client_connection_type, "g_tls_backend_get_client_connection_type", LIBRARY_GIO);
Linker.link(g_tls_backend_get_default_database, "g_tls_backend_get_default_database", LIBRARY_GIO);
Linker.link(g_tls_backend_get_dtls_client_connection_type, "g_tls_backend_get_dtls_client_connection_type", LIBRARY_GIO);
Linker.link(g_tls_backend_get_dtls_server_connection_type, "g_tls_backend_get_dtls_server_connection_type", LIBRARY_GIO);
Linker.link(g_tls_backend_get_file_database_type, "g_tls_backend_get_file_database_type", LIBRARY_GIO);
Linker.link(g_tls_backend_get_server_connection_type, "g_tls_backend_get_server_connection_type", LIBRARY_GIO);
Linker.link(g_tls_backend_set_default_database, "g_tls_backend_set_default_database", LIBRARY_GIO);
Linker.link(g_tls_backend_supports_dtls, "g_tls_backend_supports_dtls", LIBRARY_GIO);
Linker.link(g_tls_backend_supports_tls, "g_tls_backend_supports_tls", LIBRARY_GIO);
// gio.TlsCertificate
Linker.link(g_tls_certificate_get_type, "g_tls_certificate_get_type", LIBRARY_GIO);
Linker.link(g_tls_certificate_new_from_file, "g_tls_certificate_new_from_file", LIBRARY_GIO);
Linker.link(g_tls_certificate_new_from_files, "g_tls_certificate_new_from_files", LIBRARY_GIO);
Linker.link(g_tls_certificate_new_from_pem, "g_tls_certificate_new_from_pem", LIBRARY_GIO);
Linker.link(g_tls_certificate_list_new_from_file, "g_tls_certificate_list_new_from_file", LIBRARY_GIO);
Linker.link(g_tls_certificate_get_issuer, "g_tls_certificate_get_issuer", LIBRARY_GIO);
Linker.link(g_tls_certificate_is_same, "g_tls_certificate_is_same", LIBRARY_GIO);
Linker.link(g_tls_certificate_verify, "g_tls_certificate_verify", LIBRARY_GIO);
// gio.TlsClientConnection
Linker.link(g_tls_client_connection_get_type, "g_tls_client_connection_get_type", LIBRARY_GIO);
Linker.link(g_tls_client_connection_new, "g_tls_client_connection_new", LIBRARY_GIO);
Linker.link(g_tls_client_connection_copy_session_state, "g_tls_client_connection_copy_session_state", LIBRARY_GIO);
Linker.link(g_tls_client_connection_get_accepted_cas, "g_tls_client_connection_get_accepted_cas", LIBRARY_GIO);
Linker.link(g_tls_client_connection_get_server_identity, "g_tls_client_connection_get_server_identity", LIBRARY_GIO);
Linker.link(g_tls_client_connection_get_use_ssl3, "g_tls_client_connection_get_use_ssl3", LIBRARY_GIO);
Linker.link(g_tls_client_connection_get_validation_flags, "g_tls_client_connection_get_validation_flags", LIBRARY_GIO);
Linker.link(g_tls_client_connection_set_server_identity, "g_tls_client_connection_set_server_identity", LIBRARY_GIO);
Linker.link(g_tls_client_connection_set_use_ssl3, "g_tls_client_connection_set_use_ssl3", LIBRARY_GIO);
Linker.link(g_tls_client_connection_set_validation_flags, "g_tls_client_connection_set_validation_flags", LIBRARY_GIO);
// gio.TlsConnection
Linker.link(g_tls_connection_get_type, "g_tls_connection_get_type", LIBRARY_GIO);
Linker.link(g_tls_connection_emit_accept_certificate, "g_tls_connection_emit_accept_certificate", LIBRARY_GIO);
Linker.link(g_tls_connection_get_certificate, "g_tls_connection_get_certificate", LIBRARY_GIO);
Linker.link(g_tls_connection_get_database, "g_tls_connection_get_database", LIBRARY_GIO);
Linker.link(g_tls_connection_get_interaction, "g_tls_connection_get_interaction", LIBRARY_GIO);
Linker.link(g_tls_connection_get_negotiated_protocol, "g_tls_connection_get_negotiated_protocol", LIBRARY_GIO);
Linker.link(g_tls_connection_get_peer_certificate, "g_tls_connection_get_peer_certificate", LIBRARY_GIO);
Linker.link(g_tls_connection_get_peer_certificate_errors, "g_tls_connection_get_peer_certificate_errors", LIBRARY_GIO);
Linker.link(g_tls_connection_get_rehandshake_mode, "g_tls_connection_get_rehandshake_mode", LIBRARY_GIO);
Linker.link(g_tls_connection_get_require_close_notify, "g_tls_connection_get_require_close_notify", LIBRARY_GIO);
Linker.link(g_tls_connection_get_use_system_certdb, "g_tls_connection_get_use_system_certdb", LIBRARY_GIO);
Linker.link(g_tls_connection_handshake, "g_tls_connection_handshake", LIBRARY_GIO);
Linker.link(g_tls_connection_handshake_async, "g_tls_connection_handshake_async", LIBRARY_GIO);
Linker.link(g_tls_connection_handshake_finish, "g_tls_connection_handshake_finish", LIBRARY_GIO);
Linker.link(g_tls_connection_set_advertised_protocols, "g_tls_connection_set_advertised_protocols", LIBRARY_GIO);
Linker.link(g_tls_connection_set_certificate, "g_tls_connection_set_certificate", LIBRARY_GIO);
Linker.link(g_tls_connection_set_database, "g_tls_connection_set_database", LIBRARY_GIO);
Linker.link(g_tls_connection_set_interaction, "g_tls_connection_set_interaction", LIBRARY_GIO);
Linker.link(g_tls_connection_set_rehandshake_mode, "g_tls_connection_set_rehandshake_mode", LIBRARY_GIO);
Linker.link(g_tls_connection_set_require_close_notify, "g_tls_connection_set_require_close_notify", LIBRARY_GIO);
Linker.link(g_tls_connection_set_use_system_certdb, "g_tls_connection_set_use_system_certdb", LIBRARY_GIO);
// gio.TlsDatabase
Linker.link(g_tls_database_get_type, "g_tls_database_get_type", LIBRARY_GIO);
Linker.link(g_tls_database_create_certificate_handle, "g_tls_database_create_certificate_handle", LIBRARY_GIO);
Linker.link(g_tls_database_lookup_certificate_for_handle, "g_tls_database_lookup_certificate_for_handle", LIBRARY_GIO);
Linker.link(g_tls_database_lookup_certificate_for_handle_async, "g_tls_database_lookup_certificate_for_handle_async", LIBRARY_GIO);
Linker.link(g_tls_database_lookup_certificate_for_handle_finish, "g_tls_database_lookup_certificate_for_handle_finish", LIBRARY_GIO);
Linker.link(g_tls_database_lookup_certificate_issuer, "g_tls_database_lookup_certificate_issuer", LIBRARY_GIO);
Linker.link(g_tls_database_lookup_certificate_issuer_async, "g_tls_database_lookup_certificate_issuer_async", LIBRARY_GIO);
Linker.link(g_tls_database_lookup_certificate_issuer_finish, "g_tls_database_lookup_certificate_issuer_finish", LIBRARY_GIO);
Linker.link(g_tls_database_lookup_certificates_issued_by, "g_tls_database_lookup_certificates_issued_by", LIBRARY_GIO);
Linker.link(g_tls_database_lookup_certificates_issued_by_async, "g_tls_database_lookup_certificates_issued_by_async", LIBRARY_GIO);
Linker.link(g_tls_database_lookup_certificates_issued_by_finish, "g_tls_database_lookup_certificates_issued_by_finish", LIBRARY_GIO);
Linker.link(g_tls_database_verify_chain, "g_tls_database_verify_chain", LIBRARY_GIO);
Linker.link(g_tls_database_verify_chain_async, "g_tls_database_verify_chain_async", LIBRARY_GIO);
Linker.link(g_tls_database_verify_chain_finish, "g_tls_database_verify_chain_finish", LIBRARY_GIO);
// gio.TlsFileDatabase
Linker.link(g_tls_file_database_get_type, "g_tls_file_database_get_type", LIBRARY_GIO);
Linker.link(g_tls_file_database_new, "g_tls_file_database_new", LIBRARY_GIO);
// gio.TlsInteraction
Linker.link(g_tls_interaction_get_type, "g_tls_interaction_get_type", LIBRARY_GIO);
Linker.link(g_tls_interaction_ask_password, "g_tls_interaction_ask_password", LIBRARY_GIO);
Linker.link(g_tls_interaction_ask_password_async, "g_tls_interaction_ask_password_async", LIBRARY_GIO);
Linker.link(g_tls_interaction_ask_password_finish, "g_tls_interaction_ask_password_finish", LIBRARY_GIO);
Linker.link(g_tls_interaction_invoke_ask_password, "g_tls_interaction_invoke_ask_password", LIBRARY_GIO);
Linker.link(g_tls_interaction_invoke_request_certificate, "g_tls_interaction_invoke_request_certificate", LIBRARY_GIO);
Linker.link(g_tls_interaction_request_certificate, "g_tls_interaction_request_certificate", LIBRARY_GIO);
Linker.link(g_tls_interaction_request_certificate_async, "g_tls_interaction_request_certificate_async", LIBRARY_GIO);
Linker.link(g_tls_interaction_request_certificate_finish, "g_tls_interaction_request_certificate_finish", LIBRARY_GIO);
// gio.TlsPassword
Linker.link(g_tls_password_get_type, "g_tls_password_get_type", LIBRARY_GIO);
Linker.link(g_tls_password_new, "g_tls_password_new", LIBRARY_GIO);
Linker.link(g_tls_password_get_description, "g_tls_password_get_description", LIBRARY_GIO);
Linker.link(g_tls_password_get_flags, "g_tls_password_get_flags", LIBRARY_GIO);
Linker.link(g_tls_password_get_value, "g_tls_password_get_value", LIBRARY_GIO);
Linker.link(g_tls_password_get_warning, "g_tls_password_get_warning", LIBRARY_GIO);
Linker.link(g_tls_password_set_description, "g_tls_password_set_description", LIBRARY_GIO);
Linker.link(g_tls_password_set_flags, "g_tls_password_set_flags", LIBRARY_GIO);
Linker.link(g_tls_password_set_value, "g_tls_password_set_value", LIBRARY_GIO);
Linker.link(g_tls_password_set_value_full, "g_tls_password_set_value_full", LIBRARY_GIO);
Linker.link(g_tls_password_set_warning, "g_tls_password_set_warning", LIBRARY_GIO);
// gio.TlsServerConnection
Linker.link(g_tls_server_connection_get_type, "g_tls_server_connection_get_type", LIBRARY_GIO);
Linker.link(g_tls_server_connection_new, "g_tls_server_connection_new", LIBRARY_GIO);
// gio.UnixConnection
Linker.link(g_unix_connection_get_type, "g_unix_connection_get_type", LIBRARY_GIO);
Linker.link(g_unix_connection_receive_credentials, "g_unix_connection_receive_credentials", LIBRARY_GIO);
Linker.link(g_unix_connection_receive_credentials_async, "g_unix_connection_receive_credentials_async", LIBRARY_GIO);
Linker.link(g_unix_connection_receive_credentials_finish, "g_unix_connection_receive_credentials_finish", LIBRARY_GIO);
Linker.link(g_unix_connection_receive_fd, "g_unix_connection_receive_fd", LIBRARY_GIO);
Linker.link(g_unix_connection_send_credentials, "g_unix_connection_send_credentials", LIBRARY_GIO);
Linker.link(g_unix_connection_send_credentials_async, "g_unix_connection_send_credentials_async", LIBRARY_GIO);
Linker.link(g_unix_connection_send_credentials_finish, "g_unix_connection_send_credentials_finish", LIBRARY_GIO);
Linker.link(g_unix_connection_send_fd, "g_unix_connection_send_fd", LIBRARY_GIO);
// gio.UnixCredentialsMessage
Linker.link(g_unix_credentials_message_get_type, "g_unix_credentials_message_get_type", LIBRARY_GIO);
Linker.link(g_unix_credentials_message_new, "g_unix_credentials_message_new", LIBRARY_GIO);
Linker.link(g_unix_credentials_message_new_with_credentials, "g_unix_credentials_message_new_with_credentials", LIBRARY_GIO);
Linker.link(g_unix_credentials_message_is_supported, "g_unix_credentials_message_is_supported", LIBRARY_GIO);
Linker.link(g_unix_credentials_message_get_credentials, "g_unix_credentials_message_get_credentials", LIBRARY_GIO);
// gio.UnixFDList
Linker.link(g_unix_fd_list_get_type, "g_unix_fd_list_get_type", LIBRARY_GIO);
Linker.link(g_unix_fd_list_new, "g_unix_fd_list_new", LIBRARY_GIO);
Linker.link(g_unix_fd_list_new_from_array, "g_unix_fd_list_new_from_array", LIBRARY_GIO);
Linker.link(g_unix_fd_list_append, "g_unix_fd_list_append", LIBRARY_GIO);
Linker.link(g_unix_fd_list_get, "g_unix_fd_list_get", LIBRARY_GIO);
Linker.link(g_unix_fd_list_get_length, "g_unix_fd_list_get_length", LIBRARY_GIO);
Linker.link(g_unix_fd_list_peek_fds, "g_unix_fd_list_peek_fds", LIBRARY_GIO);
Linker.link(g_unix_fd_list_steal_fds, "g_unix_fd_list_steal_fds", LIBRARY_GIO);
// gio.UnixFDMessage
Linker.link(g_unix_fd_message_get_type, "g_unix_fd_message_get_type", LIBRARY_GIO);
Linker.link(g_unix_fd_message_new, "g_unix_fd_message_new", LIBRARY_GIO);
Linker.link(g_unix_fd_message_new_with_fd_list, "g_unix_fd_message_new_with_fd_list", LIBRARY_GIO);
Linker.link(g_unix_fd_message_append_fd, "g_unix_fd_message_append_fd", LIBRARY_GIO);
Linker.link(g_unix_fd_message_get_fd_list, "g_unix_fd_message_get_fd_list", LIBRARY_GIO);
Linker.link(g_unix_fd_message_steal_fds, "g_unix_fd_message_steal_fds", LIBRARY_GIO);
// gio.UnixInputStream
Linker.link(g_unix_input_stream_get_type, "g_unix_input_stream_get_type", LIBRARY_GIO);
Linker.link(g_unix_input_stream_new, "g_unix_input_stream_new", LIBRARY_GIO);
Linker.link(g_unix_input_stream_get_close_fd, "g_unix_input_stream_get_close_fd", LIBRARY_GIO);
Linker.link(g_unix_input_stream_get_fd, "g_unix_input_stream_get_fd", LIBRARY_GIO);
Linker.link(g_unix_input_stream_set_close_fd, "g_unix_input_stream_set_close_fd", LIBRARY_GIO);
// gio.UnixMountEntry
Linker.link(g_unix_mount_entry_get_type, "g_unix_mount_entry_get_type", LIBRARY_GIO);
Linker.link(g_unix_is_mount_path_system_internal, "g_unix_is_mount_path_system_internal", LIBRARY_GIO);
Linker.link(g_unix_mount_at, "g_unix_mount_at", LIBRARY_GIO);
Linker.link(g_unix_mount_compare, "g_unix_mount_compare", LIBRARY_GIO);
Linker.link(g_unix_mount_free, "g_unix_mount_free", LIBRARY_GIO);
Linker.link(g_unix_mount_get_device_path, "g_unix_mount_get_device_path", LIBRARY_GIO);
Linker.link(g_unix_mount_get_fs_type, "g_unix_mount_get_fs_type", LIBRARY_GIO);
Linker.link(g_unix_mount_get_mount_path, "g_unix_mount_get_mount_path", LIBRARY_GIO);
Linker.link(g_unix_mount_guess_can_eject, "g_unix_mount_guess_can_eject", LIBRARY_GIO);
Linker.link(g_unix_mount_guess_icon, "g_unix_mount_guess_icon", LIBRARY_GIO);
Linker.link(g_unix_mount_guess_name, "g_unix_mount_guess_name", LIBRARY_GIO);
Linker.link(g_unix_mount_guess_should_display, "g_unix_mount_guess_should_display", LIBRARY_GIO);
Linker.link(g_unix_mount_guess_symbolic_icon, "g_unix_mount_guess_symbolic_icon", LIBRARY_GIO);
Linker.link(g_unix_mount_is_readonly, "g_unix_mount_is_readonly", LIBRARY_GIO);
Linker.link(g_unix_mount_is_system_internal, "g_unix_mount_is_system_internal", LIBRARY_GIO);
Linker.link(g_unix_mount_points_changed_since, "g_unix_mount_points_changed_since", LIBRARY_GIO);
Linker.link(g_unix_mount_points_get, "g_unix_mount_points_get", LIBRARY_GIO);
Linker.link(g_unix_mounts_changed_since, "g_unix_mounts_changed_since", LIBRARY_GIO);
Linker.link(g_unix_mounts_get, "g_unix_mounts_get", LIBRARY_GIO);
Linker.link(g_unix_mount_copy, "g_unix_mount_copy", LIBRARY_GIO);
Linker.link(g_unix_mount_for, "g_unix_mount_for", LIBRARY_GIO);
Linker.link(g_unix_mount_get_options, "g_unix_mount_get_options", LIBRARY_GIO);
Linker.link(g_unix_mount_get_root_path, "g_unix_mount_get_root_path", LIBRARY_GIO);
// gio.UnixMountMonitor
Linker.link(g_unix_mount_monitor_get_type, "g_unix_mount_monitor_get_type", LIBRARY_GIO);
Linker.link(g_unix_mount_monitor_new, "g_unix_mount_monitor_new", LIBRARY_GIO);
Linker.link(g_unix_mount_monitor_get, "g_unix_mount_monitor_get", LIBRARY_GIO);
Linker.link(g_unix_mount_monitor_set_rate_limit, "g_unix_mount_monitor_set_rate_limit", LIBRARY_GIO);
// gio.UnixMountPoint
Linker.link(g_unix_mount_point_get_type, "g_unix_mount_point_get_type", LIBRARY_GIO);
Linker.link(g_unix_mount_point_compare, "g_unix_mount_point_compare", LIBRARY_GIO);
Linker.link(g_unix_mount_point_copy, "g_unix_mount_point_copy", LIBRARY_GIO);
Linker.link(g_unix_mount_point_free, "g_unix_mount_point_free", LIBRARY_GIO);
Linker.link(g_unix_mount_point_get_device_path, "g_unix_mount_point_get_device_path", LIBRARY_GIO);
Linker.link(g_unix_mount_point_get_fs_type, "g_unix_mount_point_get_fs_type", LIBRARY_GIO);
Linker.link(g_unix_mount_point_get_mount_path, "g_unix_mount_point_get_mount_path", LIBRARY_GIO);
Linker.link(g_unix_mount_point_get_options, "g_unix_mount_point_get_options", LIBRARY_GIO);
Linker.link(g_unix_mount_point_guess_can_eject, "g_unix_mount_point_guess_can_eject", LIBRARY_GIO);
Linker.link(g_unix_mount_point_guess_icon, "g_unix_mount_point_guess_icon", LIBRARY_GIO);
Linker.link(g_unix_mount_point_guess_name, "g_unix_mount_point_guess_name", LIBRARY_GIO);
Linker.link(g_unix_mount_point_guess_symbolic_icon, "g_unix_mount_point_guess_symbolic_icon", LIBRARY_GIO);
Linker.link(g_unix_mount_point_is_loopback, "g_unix_mount_point_is_loopback", LIBRARY_GIO);
Linker.link(g_unix_mount_point_is_readonly, "g_unix_mount_point_is_readonly", LIBRARY_GIO);
Linker.link(g_unix_mount_point_is_user_mountable, "g_unix_mount_point_is_user_mountable", LIBRARY_GIO);
// gio.UnixOutputStream
Linker.link(g_unix_output_stream_get_type, "g_unix_output_stream_get_type", LIBRARY_GIO);
Linker.link(g_unix_output_stream_new, "g_unix_output_stream_new", LIBRARY_GIO);
Linker.link(g_unix_output_stream_get_close_fd, "g_unix_output_stream_get_close_fd", LIBRARY_GIO);
Linker.link(g_unix_output_stream_get_fd, "g_unix_output_stream_get_fd", LIBRARY_GIO);
Linker.link(g_unix_output_stream_set_close_fd, "g_unix_output_stream_set_close_fd", LIBRARY_GIO);
// gio.UnixSocketAddress
Linker.link(g_unix_socket_address_get_type, "g_unix_socket_address_get_type", LIBRARY_GIO);
Linker.link(g_unix_socket_address_new, "g_unix_socket_address_new", LIBRARY_GIO);
Linker.link(g_unix_socket_address_new_abstract, "g_unix_socket_address_new_abstract", LIBRARY_GIO);
Linker.link(g_unix_socket_address_new_with_type, "g_unix_socket_address_new_with_type", LIBRARY_GIO);
Linker.link(g_unix_socket_address_abstract_names_supported, "g_unix_socket_address_abstract_names_supported", LIBRARY_GIO);
Linker.link(g_unix_socket_address_get_address_type, "g_unix_socket_address_get_address_type", LIBRARY_GIO);
Linker.link(g_unix_socket_address_get_is_abstract, "g_unix_socket_address_get_is_abstract", LIBRARY_GIO);
Linker.link(g_unix_socket_address_get_path, "g_unix_socket_address_get_path", LIBRARY_GIO);
Linker.link(g_unix_socket_address_get_path_len, "g_unix_socket_address_get_path_len", LIBRARY_GIO);
// gio.Vfs
Linker.link(g_vfs_get_type, "g_vfs_get_type", LIBRARY_GIO);
Linker.link(g_vfs_get_default, "g_vfs_get_default", LIBRARY_GIO);
Linker.link(g_vfs_get_local, "g_vfs_get_local", LIBRARY_GIO);
Linker.link(g_vfs_get_file_for_path, "g_vfs_get_file_for_path", LIBRARY_GIO);
Linker.link(g_vfs_get_file_for_uri, "g_vfs_get_file_for_uri", LIBRARY_GIO);
Linker.link(g_vfs_get_supported_uri_schemes, "g_vfs_get_supported_uri_schemes", LIBRARY_GIO);
Linker.link(g_vfs_is_active, "g_vfs_is_active", LIBRARY_GIO);
Linker.link(g_vfs_parse_name, "g_vfs_parse_name", LIBRARY_GIO);
Linker.link(g_vfs_register_uri_scheme, "g_vfs_register_uri_scheme", LIBRARY_GIO);
Linker.link(g_vfs_unregister_uri_scheme, "g_vfs_unregister_uri_scheme", LIBRARY_GIO);
// gio.Volume
Linker.link(g_volume_get_type, "g_volume_get_type", LIBRARY_GIO);
Linker.link(g_volume_can_eject, "g_volume_can_eject", LIBRARY_GIO);
Linker.link(g_volume_can_mount, "g_volume_can_mount", LIBRARY_GIO);
Linker.link(g_volume_eject, "g_volume_eject", LIBRARY_GIO);
Linker.link(g_volume_eject_finish, "g_volume_eject_finish", LIBRARY_GIO);
Linker.link(g_volume_eject_with_operation, "g_volume_eject_with_operation", LIBRARY_GIO);
Linker.link(g_volume_eject_with_operation_finish, "g_volume_eject_with_operation_finish", LIBRARY_GIO);
Linker.link(g_volume_enumerate_identifiers, "g_volume_enumerate_identifiers", LIBRARY_GIO);
Linker.link(g_volume_get_activation_root, "g_volume_get_activation_root", LIBRARY_GIO);
Linker.link(g_volume_get_drive, "g_volume_get_drive", LIBRARY_GIO);
Linker.link(g_volume_get_icon, "g_volume_get_icon", LIBRARY_GIO);
Linker.link(g_volume_get_identifier, "g_volume_get_identifier", LIBRARY_GIO);
Linker.link(g_volume_get_mount, "g_volume_get_mount", LIBRARY_GIO);
Linker.link(g_volume_get_name, "g_volume_get_name", LIBRARY_GIO);
Linker.link(g_volume_get_sort_key, "g_volume_get_sort_key", LIBRARY_GIO);
Linker.link(g_volume_get_symbolic_icon, "g_volume_get_symbolic_icon", LIBRARY_GIO);
Linker.link(g_volume_get_uuid, "g_volume_get_uuid", LIBRARY_GIO);
Linker.link(g_volume_mount, "g_volume_mount", LIBRARY_GIO);
Linker.link(g_volume_mount_finish, "g_volume_mount_finish", LIBRARY_GIO);
Linker.link(g_volume_should_automount, "g_volume_should_automount", LIBRARY_GIO);
// gio.VolumeMonitor
Linker.link(g_volume_monitor_get_type, "g_volume_monitor_get_type", LIBRARY_GIO);
Linker.link(g_volume_monitor_adopt_orphan_mount, "g_volume_monitor_adopt_orphan_mount", LIBRARY_GIO);
Linker.link(g_volume_monitor_get, "g_volume_monitor_get", LIBRARY_GIO);
Linker.link(g_volume_monitor_get_connected_drives, "g_volume_monitor_get_connected_drives", LIBRARY_GIO);
Linker.link(g_volume_monitor_get_mount_for_uuid, "g_volume_monitor_get_mount_for_uuid", LIBRARY_GIO);
Linker.link(g_volume_monitor_get_mounts, "g_volume_monitor_get_mounts", LIBRARY_GIO);
Linker.link(g_volume_monitor_get_volume_for_uuid, "g_volume_monitor_get_volume_for_uuid", LIBRARY_GIO);
Linker.link(g_volume_monitor_get_volumes, "g_volume_monitor_get_volumes", LIBRARY_GIO);
// gio.ZlibCompressor
Linker.link(g_zlib_compressor_get_type, "g_zlib_compressor_get_type", LIBRARY_GIO);
Linker.link(g_zlib_compressor_new, "g_zlib_compressor_new", LIBRARY_GIO);
Linker.link(g_zlib_compressor_get_file_info, "g_zlib_compressor_get_file_info", LIBRARY_GIO);
Linker.link(g_zlib_compressor_set_file_info, "g_zlib_compressor_set_file_info", LIBRARY_GIO);
// gio.ZlibDecompressor
Linker.link(g_zlib_decompressor_get_type, "g_zlib_decompressor_get_type", LIBRARY_GIO);
Linker.link(g_zlib_decompressor_new, "g_zlib_decompressor_new", LIBRARY_GIO);
Linker.link(g_zlib_decompressor_get_file_info, "g_zlib_decompressor_get_file_info", LIBRARY_GIO);
// gio.PollableUtils
Linker.link(g_pollable_source_new, "g_pollable_source_new", LIBRARY_GIO);
Linker.link(g_pollable_source_new_full, "g_pollable_source_new_full", LIBRARY_GIO);
Linker.link(g_pollable_stream_read, "g_pollable_stream_read", LIBRARY_GIO);
Linker.link(g_pollable_stream_write, "g_pollable_stream_write", LIBRARY_GIO);
Linker.link(g_pollable_stream_write_all, "g_pollable_stream_write_all", LIBRARY_GIO);
// gio.DBusNames
Linker.link(g_bus_own_name, "g_bus_own_name", LIBRARY_GIO);
Linker.link(g_bus_own_name_on_connection, "g_bus_own_name_on_connection", LIBRARY_GIO);
Linker.link(g_bus_own_name_on_connection_with_closures, "g_bus_own_name_on_connection_with_closures", LIBRARY_GIO);
Linker.link(g_bus_own_name_with_closures, "g_bus_own_name_with_closures", LIBRARY_GIO);
Linker.link(g_bus_unown_name, "g_bus_unown_name", LIBRARY_GIO);
Linker.link(g_bus_unwatch_name, "g_bus_unwatch_name", LIBRARY_GIO);
Linker.link(g_bus_watch_name, "g_bus_watch_name", LIBRARY_GIO);
Linker.link(g_bus_watch_name_on_connection, "g_bus_watch_name_on_connection", LIBRARY_GIO);
Linker.link(g_bus_watch_name_on_connection_with_closures, "g_bus_watch_name_on_connection_with_closures", LIBRARY_GIO);
Linker.link(g_bus_watch_name_with_closures, "g_bus_watch_name_with_closures", LIBRARY_GIO);
// gio.ContentType
Linker.link(g_content_type_can_be_executable, "g_content_type_can_be_executable", LIBRARY_GIO);
Linker.link(g_content_type_equals, "g_content_type_equals", LIBRARY_GIO);
Linker.link(g_content_type_from_mime_type, "g_content_type_from_mime_type", LIBRARY_GIO);
Linker.link(g_content_type_get_description, "g_content_type_get_description", LIBRARY_GIO);
Linker.link(g_content_type_get_generic_icon_name, "g_content_type_get_generic_icon_name", LIBRARY_GIO);
Linker.link(g_content_type_get_icon, "g_content_type_get_icon", LIBRARY_GIO);
Linker.link(g_content_type_get_mime_type, "g_content_type_get_mime_type", LIBRARY_GIO);
Linker.link(g_content_type_get_symbolic_icon, "g_content_type_get_symbolic_icon", LIBRARY_GIO);
Linker.link(g_content_type_guess, "g_content_type_guess", LIBRARY_GIO);
Linker.link(g_content_type_guess_for_tree, "g_content_type_guess_for_tree", LIBRARY_GIO);
Linker.link(g_content_type_is_a, "g_content_type_is_a", LIBRARY_GIO);
Linker.link(g_content_type_is_unknown, "g_content_type_is_unknown", LIBRARY_GIO);
Linker.link(g_content_types_get_registered, "g_content_types_get_registered", LIBRARY_GIO);
Linker.link(g_content_type_is_mime_type, "g_content_type_is_mime_type", LIBRARY_GIO);
Linker.link(g_content_type_get_mime_dirs, "g_content_type_get_mime_dirs", LIBRARY_GIO);
Linker.link(g_content_type_set_mime_dirs, "g_content_type_set_mime_dirs", LIBRARY_GIO);
// gio.DBusError
Linker.link(g_dbus_error_encode_gerror, "g_dbus_error_encode_gerror", LIBRARY_GIO);
Linker.link(g_dbus_error_get_remote_error, "g_dbus_error_get_remote_error", LIBRARY_GIO);
Linker.link(g_dbus_error_is_remote_error, "g_dbus_error_is_remote_error", LIBRARY_GIO);
Linker.link(g_dbus_error_new_for_dbus_error, "g_dbus_error_new_for_dbus_error", LIBRARY_GIO);
Linker.link(g_dbus_error_quark, "g_dbus_error_quark", LIBRARY_GIO);
Linker.link(g_dbus_error_register_error, "g_dbus_error_register_error", LIBRARY_GIO);
Linker.link(g_dbus_error_register_error_domain, "g_dbus_error_register_error_domain", LIBRARY_GIO);
Linker.link(g_dbus_error_strip_remote_error, "g_dbus_error_strip_remote_error", LIBRARY_GIO);
Linker.link(g_dbus_error_unregister_error, "g_dbus_error_unregister_error", LIBRARY_GIO);
// gio.DBusUtilities
Linker.link(g_dbus_address_escape_value, "g_dbus_address_escape_value", LIBRARY_GIO);
Linker.link(g_dbus_address_get_for_bus_sync, "g_dbus_address_get_for_bus_sync", LIBRARY_GIO);
Linker.link(g_dbus_address_get_stream, "g_dbus_address_get_stream", LIBRARY_GIO);
Linker.link(g_dbus_address_get_stream_finish, "g_dbus_address_get_stream_finish", LIBRARY_GIO);
Linker.link(g_dbus_address_get_stream_sync, "g_dbus_address_get_stream_sync", LIBRARY_GIO);
Linker.link(g_dbus_generate_guid, "g_dbus_generate_guid", LIBRARY_GIO);
Linker.link(g_dbus_gvalue_to_gvariant, "g_dbus_gvalue_to_gvariant", LIBRARY_GIO);
Linker.link(g_dbus_gvariant_to_gvalue, "g_dbus_gvariant_to_gvalue", LIBRARY_GIO);
Linker.link(g_dbus_is_address, "g_dbus_is_address", LIBRARY_GIO);
Linker.link(g_dbus_is_guid, "g_dbus_is_guid", LIBRARY_GIO);
Linker.link(g_dbus_is_interface_name, "g_dbus_is_interface_name", LIBRARY_GIO);
Linker.link(g_dbus_is_member_name, "g_dbus_is_member_name", LIBRARY_GIO);
Linker.link(g_dbus_is_name, "g_dbus_is_name", LIBRARY_GIO);
Linker.link(g_dbus_is_supported_address, "g_dbus_is_supported_address", LIBRARY_GIO);
Linker.link(g_dbus_is_unique_name, "g_dbus_is_unique_name", LIBRARY_GIO);
// gio.ErrorGIO
Linker.link(g_io_error_from_errno, "g_io_error_from_errno", LIBRARY_GIO);
Linker.link(g_io_error_quark, "g_io_error_quark", LIBRARY_GIO);
}
__gshared extern(C)
{
// gio.Action
GType function() c_g_action_get_type;
int function(const(char)* actionName) c_g_action_name_is_valid;
int function(const(char)* detailedName, char** actionName, GVariant** targetValue, GError** err) c_g_action_parse_detailed_name;
char* function(const(char)* actionName, GVariant* targetValue) c_g_action_print_detailed_name;
void function(GAction* action, GVariant* parameter) c_g_action_activate;
void function(GAction* action, GVariant* value) c_g_action_change_state;
int function(GAction* action) c_g_action_get_enabled;
const(char)* function(GAction* action) c_g_action_get_name;
GVariantType* function(GAction* action) c_g_action_get_parameter_type;
GVariant* function(GAction* action) c_g_action_get_state;
GVariant* function(GAction* action) c_g_action_get_state_hint;
GVariantType* function(GAction* action) c_g_action_get_state_type;
// gio.ActionGroup
GType function() c_g_action_group_get_type;
void function(GActionGroup* actionGroup, const(char)* actionName) c_g_action_group_action_added;
void function(GActionGroup* actionGroup, const(char)* actionName, int enabled) c_g_action_group_action_enabled_changed;
void function(GActionGroup* actionGroup, const(char)* actionName) c_g_action_group_action_removed;
void function(GActionGroup* actionGroup, const(char)* actionName, GVariant* state) c_g_action_group_action_state_changed;
void function(GActionGroup* actionGroup, const(char)* actionName, GVariant* parameter) c_g_action_group_activate_action;
void function(GActionGroup* actionGroup, const(char)* actionName, GVariant* value) c_g_action_group_change_action_state;
int function(GActionGroup* actionGroup, const(char)* actionName) c_g_action_group_get_action_enabled;
GVariantType* function(GActionGroup* actionGroup, const(char)* actionName) c_g_action_group_get_action_parameter_type;
GVariant* function(GActionGroup* actionGroup, const(char)* actionName) c_g_action_group_get_action_state;
GVariant* function(GActionGroup* actionGroup, const(char)* actionName) c_g_action_group_get_action_state_hint;
GVariantType* function(GActionGroup* actionGroup, const(char)* actionName) c_g_action_group_get_action_state_type;
int function(GActionGroup* actionGroup, const(char)* actionName) c_g_action_group_has_action;
char** function(GActionGroup* actionGroup) c_g_action_group_list_actions;
int function(GActionGroup* actionGroup, const(char)* actionName, int* enabled, GVariantType** parameterType, GVariantType** stateType, GVariant** stateHint, GVariant** state) c_g_action_group_query_action;
// gio.ActionMap
GType function() c_g_action_map_get_type;
void function(GActionMap* actionMap, GAction* action) c_g_action_map_add_action;
void function(GActionMap* actionMap, GActionEntry* entries, int nEntries, void* userData) c_g_action_map_add_action_entries;
GAction* function(GActionMap* actionMap, const(char)* actionName) c_g_action_map_lookup_action;
void function(GActionMap* actionMap, const(char)* actionName) c_g_action_map_remove_action;
// gio.AppInfo
GType function() c_g_app_info_get_type;
GAppInfo* function(char* commandline, const(char)* applicationName, GAppInfoCreateFlags flags, GError** err) c_g_app_info_create_from_commandline;
GList* function() c_g_app_info_get_all;
GList* function(const(char)* contentType) c_g_app_info_get_all_for_type;
GAppInfo* function(const(char)* contentType, int mustSupportUris) c_g_app_info_get_default_for_type;
GAppInfo* function(const(char)* uriScheme) c_g_app_info_get_default_for_uri_scheme;
GList* function(const(char)* contentType) c_g_app_info_get_fallback_for_type;
GList* function(const(char)* contentType) c_g_app_info_get_recommended_for_type;
int function(const(char)* uri, GAppLaunchContext* context, GError** err) c_g_app_info_launch_default_for_uri;
void function(const(char)* uri, GAppLaunchContext* context, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_app_info_launch_default_for_uri_async;
int function(GAsyncResult* result, GError** err) c_g_app_info_launch_default_for_uri_finish;
void function(const(char)* contentType) c_g_app_info_reset_type_associations;
int function(GAppInfo* appinfo, const(char)* contentType, GError** err) c_g_app_info_add_supports_type;
int function(GAppInfo* appinfo) c_g_app_info_can_delete;
int function(GAppInfo* appinfo) c_g_app_info_can_remove_supports_type;
int function(GAppInfo* appinfo) c_g_app_info_delete;
GAppInfo* function(GAppInfo* appinfo) c_g_app_info_dup;
int function(GAppInfo* appinfo1, GAppInfo* appinfo2) c_g_app_info_equal;
char* function(GAppInfo* appinfo) c_g_app_info_get_commandline;
const(char)* function(GAppInfo* appinfo) c_g_app_info_get_description;
const(char)* function(GAppInfo* appinfo) c_g_app_info_get_display_name;
char* function(GAppInfo* appinfo) c_g_app_info_get_executable;
GIcon* function(GAppInfo* appinfo) c_g_app_info_get_icon;
const(char)* function(GAppInfo* appinfo) c_g_app_info_get_id;
const(char)* function(GAppInfo* appinfo) c_g_app_info_get_name;
char** function(GAppInfo* appinfo) c_g_app_info_get_supported_types;
int function(GAppInfo* appinfo, GList* files, GAppLaunchContext* context, GError** err) c_g_app_info_launch;
int function(GAppInfo* appinfo, GList* uris, GAppLaunchContext* context, GError** err) c_g_app_info_launch_uris;
void function(GAppInfo* appinfo, GList* uris, GAppLaunchContext* context, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_app_info_launch_uris_async;
int function(GAppInfo* appinfo, GAsyncResult* result, GError** err) c_g_app_info_launch_uris_finish;
int function(GAppInfo* appinfo, const(char)* contentType, GError** err) c_g_app_info_remove_supports_type;
int function(GAppInfo* appinfo, char* extension, GError** err) c_g_app_info_set_as_default_for_extension;
int function(GAppInfo* appinfo, const(char)* contentType, GError** err) c_g_app_info_set_as_default_for_type;
int function(GAppInfo* appinfo, const(char)* contentType, GError** err) c_g_app_info_set_as_last_used_for_type;
int function(GAppInfo* appinfo) c_g_app_info_should_show;
int function(GAppInfo* appinfo) c_g_app_info_supports_files;
int function(GAppInfo* appinfo) c_g_app_info_supports_uris;
// gio.AppInfoMonitor
GType function() c_g_app_info_monitor_get_type;
GAppInfoMonitor* function() c_g_app_info_monitor_get;
// gio.AppLaunchContext
GType function() c_g_app_launch_context_get_type;
GAppLaunchContext* function() c_g_app_launch_context_new;
char* function(GAppLaunchContext* context, GAppInfo* info, GList* files) c_g_app_launch_context_get_display;
char** function(GAppLaunchContext* context) c_g_app_launch_context_get_environment;
char* function(GAppLaunchContext* context, GAppInfo* info, GList* files) c_g_app_launch_context_get_startup_notify_id;
void function(GAppLaunchContext* context, const(char)* startupNotifyId) c_g_app_launch_context_launch_failed;
void function(GAppLaunchContext* context, char* variable, char* value) c_g_app_launch_context_setenv;
void function(GAppLaunchContext* context, char* variable) c_g_app_launch_context_unsetenv;
// gio.Application
GType function() c_g_application_get_type;
GApplication* function(const(char)* applicationId, GApplicationFlags flags) c_g_application_new;
GApplication* function() c_g_application_get_default;
int function(const(char)* applicationId) c_g_application_id_is_valid;
void function(GApplication* application) c_g_application_activate;
void function(GApplication* application, const(char)* longName, char shortName, GOptionFlags flags, GOptionArg arg, const(char)* description, const(char)* argDescription) c_g_application_add_main_option;
void function(GApplication* application, GOptionEntry* entries) c_g_application_add_main_option_entries;
void function(GApplication* application, GOptionGroup* group) c_g_application_add_option_group;
void function(GApplication* application, void* object, const(char)* property) c_g_application_bind_busy_property;
const(char)* function(GApplication* application) c_g_application_get_application_id;
GDBusConnection* function(GApplication* application) c_g_application_get_dbus_connection;
const(char)* function(GApplication* application) c_g_application_get_dbus_object_path;
GApplicationFlags function(GApplication* application) c_g_application_get_flags;
uint function(GApplication* application) c_g_application_get_inactivity_timeout;
int function(GApplication* application) c_g_application_get_is_busy;
int function(GApplication* application) c_g_application_get_is_registered;
int function(GApplication* application) c_g_application_get_is_remote;
const(char)* function(GApplication* application) c_g_application_get_resource_base_path;
void function(GApplication* application) c_g_application_hold;
void function(GApplication* application) c_g_application_mark_busy;
void function(GApplication* application, GFile** files, int nFiles, const(char)* hint) c_g_application_open;
void function(GApplication* application) c_g_application_quit;
int function(GApplication* application, GCancellable* cancellable, GError** err) c_g_application_register;
void function(GApplication* application) c_g_application_release;
int function(GApplication* application, int argc, char** argv) c_g_application_run;
void function(GApplication* application, const(char)* id, GNotification* notification) c_g_application_send_notification;
void function(GApplication* application, GActionGroup* actionGroup) c_g_application_set_action_group;
void function(GApplication* application, const(char)* applicationId) c_g_application_set_application_id;
void function(GApplication* application) c_g_application_set_default;
void function(GApplication* application, GApplicationFlags flags) c_g_application_set_flags;
void function(GApplication* application, uint inactivityTimeout) c_g_application_set_inactivity_timeout;
void function(GApplication* application, const(char)* description) c_g_application_set_option_context_description;
void function(GApplication* application, const(char)* parameterString) c_g_application_set_option_context_parameter_string;
void function(GApplication* application, const(char)* summary) c_g_application_set_option_context_summary;
void function(GApplication* application, const(char)* resourcePath) c_g_application_set_resource_base_path;
void function(GApplication* application, void* object, const(char)* property) c_g_application_unbind_busy_property;
void function(GApplication* application) c_g_application_unmark_busy;
void function(GApplication* application, const(char)* id) c_g_application_withdraw_notification;
// gio.ApplicationCommandLine
GType function() c_g_application_command_line_get_type;
GFile* function(GApplicationCommandLine* cmdline, char* arg) c_g_application_command_line_create_file_for_arg;
char** function(GApplicationCommandLine* cmdline, int* argc) c_g_application_command_line_get_arguments;
char* function(GApplicationCommandLine* cmdline) c_g_application_command_line_get_cwd;
char** function(GApplicationCommandLine* cmdline) c_g_application_command_line_get_environ;
int function(GApplicationCommandLine* cmdline) c_g_application_command_line_get_exit_status;
int function(GApplicationCommandLine* cmdline) c_g_application_command_line_get_is_remote;
GVariantDict* function(GApplicationCommandLine* cmdline) c_g_application_command_line_get_options_dict;
GVariant* function(GApplicationCommandLine* cmdline) c_g_application_command_line_get_platform_data;
GInputStream* function(GApplicationCommandLine* cmdline) c_g_application_command_line_get_stdin;
const(char)* function(GApplicationCommandLine* cmdline, char* name) c_g_application_command_line_getenv;
void function(GApplicationCommandLine* cmdline, const(char)* format, ... ) c_g_application_command_line_print;
void function(GApplicationCommandLine* cmdline, const(char)* format, ... ) c_g_application_command_line_printerr;
void function(GApplicationCommandLine* cmdline, int exitStatus) c_g_application_command_line_set_exit_status;
// gio.AsyncInitable
GType function() c_g_async_initable_get_type;
void function(GType objectType, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData, const(char)* firstPropertyName, ... ) c_g_async_initable_new_async;
void function(GType objectType, const(char)* firstPropertyName, void* varArgs, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_async_initable_new_valist_async;
void function(GType objectType, uint nParameters, GParameter* parameters, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_async_initable_newv_async;
void function(GAsyncInitable* initable, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_async_initable_init_async;
int function(GAsyncInitable* initable, GAsyncResult* res, GError** err) c_g_async_initable_init_finish;
GObject* function(GAsyncInitable* initable, GAsyncResult* res, GError** err) c_g_async_initable_new_finish;
// gio.AsyncResult
GType function() c_g_async_result_get_type;
GObject* function(GAsyncResult* res) c_g_async_result_get_source_object;
void* function(GAsyncResult* res) c_g_async_result_get_user_data;
int function(GAsyncResult* res, void* sourceTag) c_g_async_result_is_tagged;
int function(GAsyncResult* res, GError** err) c_g_async_result_legacy_propagate_error;
// gio.BufferedInputStream
GType function() c_g_buffered_input_stream_get_type;
GInputStream* function(GInputStream* baseStream) c_g_buffered_input_stream_new;
GInputStream* function(GInputStream* baseStream, size_t size) c_g_buffered_input_stream_new_sized;
ptrdiff_t function(GBufferedInputStream* stream, ptrdiff_t count, GCancellable* cancellable, GError** err) c_g_buffered_input_stream_fill;
void function(GBufferedInputStream* stream, ptrdiff_t count, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_buffered_input_stream_fill_async;
ptrdiff_t function(GBufferedInputStream* stream, GAsyncResult* result, GError** err) c_g_buffered_input_stream_fill_finish;
size_t function(GBufferedInputStream* stream) c_g_buffered_input_stream_get_available;
size_t function(GBufferedInputStream* stream) c_g_buffered_input_stream_get_buffer_size;
size_t function(GBufferedInputStream* stream, void* buffer, size_t offset, size_t count) c_g_buffered_input_stream_peek;
void* function(GBufferedInputStream* stream, size_t* count) c_g_buffered_input_stream_peek_buffer;
int function(GBufferedInputStream* stream, GCancellable* cancellable, GError** err) c_g_buffered_input_stream_read_byte;
void function(GBufferedInputStream* stream, size_t size) c_g_buffered_input_stream_set_buffer_size;
// gio.BufferedOutputStream
GType function() c_g_buffered_output_stream_get_type;
GOutputStream* function(GOutputStream* baseStream) c_g_buffered_output_stream_new;
GOutputStream* function(GOutputStream* baseStream, size_t size) c_g_buffered_output_stream_new_sized;
int function(GBufferedOutputStream* stream) c_g_buffered_output_stream_get_auto_grow;
size_t function(GBufferedOutputStream* stream) c_g_buffered_output_stream_get_buffer_size;
void function(GBufferedOutputStream* stream, int autoGrow) c_g_buffered_output_stream_set_auto_grow;
void function(GBufferedOutputStream* stream, size_t size) c_g_buffered_output_stream_set_buffer_size;
// gio.BytesIcon
GType function() c_g_bytes_icon_get_type;
GIcon* function(GBytes* bytes) c_g_bytes_icon_new;
GBytes* function(GBytesIcon* icon) c_g_bytes_icon_get_bytes;
// gio.Cancellable
GType function() c_g_cancellable_get_type;
GCancellable* function() c_g_cancellable_new;
GCancellable* function() c_g_cancellable_get_current;
void function(GCancellable* cancellable) c_g_cancellable_cancel;
gulong function(GCancellable* cancellable, GCallback callback, void* data, GDestroyNotify dataDestroyFunc) c_g_cancellable_connect;
void function(GCancellable* cancellable, gulong handlerId) c_g_cancellable_disconnect;
int function(GCancellable* cancellable) c_g_cancellable_get_fd;
int function(GCancellable* cancellable) c_g_cancellable_is_cancelled;
int function(GCancellable* cancellable, GPollFD* pollfd) c_g_cancellable_make_pollfd;
void function(GCancellable* cancellable) c_g_cancellable_pop_current;
void function(GCancellable* cancellable) c_g_cancellable_push_current;
void function(GCancellable* cancellable) c_g_cancellable_release_fd;
void function(GCancellable* cancellable) c_g_cancellable_reset;
int function(GCancellable* cancellable, GError** err) c_g_cancellable_set_error_if_cancelled;
GSource* function(GCancellable* cancellable) c_g_cancellable_source_new;
// gio.CharsetConverter
GType function() c_g_charset_converter_get_type;
GCharsetConverter* function(const(char)* toCharset, const(char)* fromCharset, GError** err) c_g_charset_converter_new;
uint function(GCharsetConverter* converter) c_g_charset_converter_get_num_fallbacks;
int function(GCharsetConverter* converter) c_g_charset_converter_get_use_fallback;
void function(GCharsetConverter* converter, int useFallback) c_g_charset_converter_set_use_fallback;
// gio.Converter
GType function() c_g_converter_get_type;
GConverterResult function(GConverter* converter, void* inbuf, size_t inbufSize, void* outbuf, size_t outbufSize, GConverterFlags flags, size_t* bytesRead, size_t* bytesWritten, GError** err) c_g_converter_convert;
void function(GConverter* converter) c_g_converter_reset;
// gio.ConverterInputStream
GType function() c_g_converter_input_stream_get_type;
GInputStream* function(GInputStream* baseStream, GConverter* converter) c_g_converter_input_stream_new;
GConverter* function(GConverterInputStream* converterStream) c_g_converter_input_stream_get_converter;
// gio.ConverterOutputStream
GType function() c_g_converter_output_stream_get_type;
GOutputStream* function(GOutputStream* baseStream, GConverter* converter) c_g_converter_output_stream_new;
GConverter* function(GConverterOutputStream* converterStream) c_g_converter_output_stream_get_converter;
// gio.Credentials
GType function() c_g_credentials_get_type;
GCredentials* function() c_g_credentials_new;
void* function(GCredentials* credentials, GCredentialsType nativeType) c_g_credentials_get_native;
pid_t function(GCredentials* credentials, GError** err) c_g_credentials_get_unix_pid;
uid_t function(GCredentials* credentials, GError** err) c_g_credentials_get_unix_user;
int function(GCredentials* credentials, GCredentials* otherCredentials, GError** err) c_g_credentials_is_same_user;
void function(GCredentials* credentials, GCredentialsType nativeType, void* native) c_g_credentials_set_native;
int function(GCredentials* credentials, uid_t uid, GError** err) c_g_credentials_set_unix_user;
char* function(GCredentials* credentials) c_g_credentials_to_string;
// gio.DBusActionGroup
GType function() c_g_dbus_action_group_get_type;
GDBusActionGroup* function(GDBusConnection* connection, const(char)* busName, const(char)* objectPath) c_g_dbus_action_group_get;
// gio.DBusAnnotationInfo
GType function() c_g_dbus_annotation_info_get_type;
GDBusAnnotationInfo* function(GDBusAnnotationInfo* info) c_g_dbus_annotation_info_ref;
void function(GDBusAnnotationInfo* info) c_g_dbus_annotation_info_unref;
const(char)* function(GDBusAnnotationInfo** annotations, const(char)* name) c_g_dbus_annotation_info_lookup;
// gio.DBusArgInfo
GType function() c_g_dbus_arg_info_get_type;
GDBusArgInfo* function(GDBusArgInfo* info) c_g_dbus_arg_info_ref;
void function(GDBusArgInfo* info) c_g_dbus_arg_info_unref;
// gio.DBusAuthObserver
GType function() c_g_dbus_auth_observer_get_type;
GDBusAuthObserver* function() c_g_dbus_auth_observer_new;
int function(GDBusAuthObserver* observer, const(char)* mechanism) c_g_dbus_auth_observer_allow_mechanism;
int function(GDBusAuthObserver* observer, GIOStream* stream, GCredentials* credentials) c_g_dbus_auth_observer_authorize_authenticated_peer;
// gio.DBusConnection
GType function() c_g_dbus_connection_get_type;
GDBusConnection* function(GAsyncResult* res, GError** err) c_g_dbus_connection_new_finish;
GDBusConnection* function(GAsyncResult* res, GError** err) c_g_dbus_connection_new_for_address_finish;
GDBusConnection* function(const(char)* address, GDBusConnectionFlags flags, GDBusAuthObserver* observer, GCancellable* cancellable, GError** err) c_g_dbus_connection_new_for_address_sync;
GDBusConnection* function(GIOStream* stream, const(char)* guid, GDBusConnectionFlags flags, GDBusAuthObserver* observer, GCancellable* cancellable, GError** err) c_g_dbus_connection_new_sync;
void function(GIOStream* stream, const(char)* guid, GDBusConnectionFlags flags, GDBusAuthObserver* observer, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_connection_new;
void function(const(char)* address, GDBusConnectionFlags flags, GDBusAuthObserver* observer, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_connection_new_for_address;
uint function(GDBusConnection* connection, GDBusMessageFilterFunction filterFunction, void* userData, GDestroyNotify userDataFreeFunc) c_g_dbus_connection_add_filter;
void function(GDBusConnection* connection, const(char)* busName, const(char)* objectPath, const(char)* interfaceName, const(char)* methodName, GVariant* parameters, GVariantType* replyType, GDBusCallFlags flags, int timeoutMsec, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_connection_call;
GVariant* function(GDBusConnection* connection, GAsyncResult* res, GError** err) c_g_dbus_connection_call_finish;
GVariant* function(GDBusConnection* connection, const(char)* busName, const(char)* objectPath, const(char)* interfaceName, const(char)* methodName, GVariant* parameters, GVariantType* replyType, GDBusCallFlags flags, int timeoutMsec, GCancellable* cancellable, GError** err) c_g_dbus_connection_call_sync;
void function(GDBusConnection* connection, const(char)* busName, const(char)* objectPath, const(char)* interfaceName, const(char)* methodName, GVariant* parameters, GVariantType* replyType, GDBusCallFlags flags, int timeoutMsec, GUnixFDList* fdList, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_connection_call_with_unix_fd_list;
GVariant* function(GDBusConnection* connection, GUnixFDList** outFdList, GAsyncResult* res, GError** err) c_g_dbus_connection_call_with_unix_fd_list_finish;
GVariant* function(GDBusConnection* connection, const(char)* busName, const(char)* objectPath, const(char)* interfaceName, const(char)* methodName, GVariant* parameters, GVariantType* replyType, GDBusCallFlags flags, int timeoutMsec, GUnixFDList* fdList, GUnixFDList** outFdList, GCancellable* cancellable, GError** err) c_g_dbus_connection_call_with_unix_fd_list_sync;
void function(GDBusConnection* connection, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_connection_close;
int function(GDBusConnection* connection, GAsyncResult* res, GError** err) c_g_dbus_connection_close_finish;
int function(GDBusConnection* connection, GCancellable* cancellable, GError** err) c_g_dbus_connection_close_sync;
int function(GDBusConnection* connection, const(char)* destinationBusName, const(char)* objectPath, const(char)* interfaceName, const(char)* signalName, GVariant* parameters, GError** err) c_g_dbus_connection_emit_signal;
uint function(GDBusConnection* connection, const(char)* objectPath, GActionGroup* actionGroup, GError** err) c_g_dbus_connection_export_action_group;
uint function(GDBusConnection* connection, const(char)* objectPath, GMenuModel* menu, GError** err) c_g_dbus_connection_export_menu_model;
void function(GDBusConnection* connection, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_connection_flush;
int function(GDBusConnection* connection, GAsyncResult* res, GError** err) c_g_dbus_connection_flush_finish;
int function(GDBusConnection* connection, GCancellable* cancellable, GError** err) c_g_dbus_connection_flush_sync;
GDBusCapabilityFlags function(GDBusConnection* connection) c_g_dbus_connection_get_capabilities;
int function(GDBusConnection* connection) c_g_dbus_connection_get_exit_on_close;
GDBusConnectionFlags function(GDBusConnection* connection) c_g_dbus_connection_get_flags;
const(char)* function(GDBusConnection* connection) c_g_dbus_connection_get_guid;
uint function(GDBusConnection* connection) c_g_dbus_connection_get_last_serial;
GCredentials* function(GDBusConnection* connection) c_g_dbus_connection_get_peer_credentials;
GIOStream* function(GDBusConnection* connection) c_g_dbus_connection_get_stream;
const(char)* function(GDBusConnection* connection) c_g_dbus_connection_get_unique_name;
int function(GDBusConnection* connection) c_g_dbus_connection_is_closed;
uint function(GDBusConnection* connection, const(char)* objectPath, GDBusInterfaceInfo* interfaceInfo, GDBusInterfaceVTable* vtable, void* userData, GDestroyNotify userDataFreeFunc, GError** err) c_g_dbus_connection_register_object;
uint function(GDBusConnection* connection, const(char)* objectPath, GDBusInterfaceInfo* interfaceInfo, GClosure* methodCallClosure, GClosure* getPropertyClosure, GClosure* setPropertyClosure, GError** err) c_g_dbus_connection_register_object_with_closures;
uint function(GDBusConnection* connection, const(char)* objectPath, GDBusSubtreeVTable* vtable, GDBusSubtreeFlags flags, void* userData, GDestroyNotify userDataFreeFunc, GError** err) c_g_dbus_connection_register_subtree;
void function(GDBusConnection* connection, uint filterId) c_g_dbus_connection_remove_filter;
int function(GDBusConnection* connection, GDBusMessage* message, GDBusSendMessageFlags flags, uint* outSerial, GError** err) c_g_dbus_connection_send_message;
void function(GDBusConnection* connection, GDBusMessage* message, GDBusSendMessageFlags flags, int timeoutMsec, uint* outSerial, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_connection_send_message_with_reply;
GDBusMessage* function(GDBusConnection* connection, GAsyncResult* res, GError** err) c_g_dbus_connection_send_message_with_reply_finish;
GDBusMessage* function(GDBusConnection* connection, GDBusMessage* message, GDBusSendMessageFlags flags, int timeoutMsec, uint* outSerial, GCancellable* cancellable, GError** err) c_g_dbus_connection_send_message_with_reply_sync;
void function(GDBusConnection* connection, int exitOnClose) c_g_dbus_connection_set_exit_on_close;
uint function(GDBusConnection* connection, const(char)* sender, const(char)* interfaceName, const(char)* member, const(char)* objectPath, const(char)* arg0, GDBusSignalFlags flags, GDBusSignalCallback callback, void* userData, GDestroyNotify userDataFreeFunc) c_g_dbus_connection_signal_subscribe;
void function(GDBusConnection* connection, uint subscriptionId) c_g_dbus_connection_signal_unsubscribe;
void function(GDBusConnection* connection) c_g_dbus_connection_start_message_processing;
void function(GDBusConnection* connection, uint exportId) c_g_dbus_connection_unexport_action_group;
void function(GDBusConnection* connection, uint exportId) c_g_dbus_connection_unexport_menu_model;
int function(GDBusConnection* connection, uint registrationId) c_g_dbus_connection_unregister_object;
int function(GDBusConnection* connection, uint registrationId) c_g_dbus_connection_unregister_subtree;
void function(GBusType busType, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_bus_get;
GDBusConnection* function(GAsyncResult* res, GError** err) c_g_bus_get_finish;
GDBusConnection* function(GBusType busType, GCancellable* cancellable, GError** err) c_g_bus_get_sync;
// gio.DBusInterface
GType function() c_g_dbus_interface_get_type;
GDBusObject* function(GDBusInterface* interface_) c_g_dbus_interface_dup_object;
GDBusInterfaceInfo* function(GDBusInterface* interface_) c_g_dbus_interface_get_info;
GDBusObject* function(GDBusInterface* interface_) c_g_dbus_interface_get_object;
void function(GDBusInterface* interface_, GDBusObject* object) c_g_dbus_interface_set_object;
// gio.DBusInterfaceInfo
GType function() c_g_dbus_interface_info_get_type;
void function(GDBusInterfaceInfo* info) c_g_dbus_interface_info_cache_build;
void function(GDBusInterfaceInfo* info) c_g_dbus_interface_info_cache_release;
void function(GDBusInterfaceInfo* info, uint indent, GString* stringBuilder) c_g_dbus_interface_info_generate_xml;
GDBusMethodInfo* function(GDBusInterfaceInfo* info, const(char)* name) c_g_dbus_interface_info_lookup_method;
GDBusPropertyInfo* function(GDBusInterfaceInfo* info, const(char)* name) c_g_dbus_interface_info_lookup_property;
GDBusSignalInfo* function(GDBusInterfaceInfo* info, const(char)* name) c_g_dbus_interface_info_lookup_signal;
GDBusInterfaceInfo* function(GDBusInterfaceInfo* info) c_g_dbus_interface_info_ref;
void function(GDBusInterfaceInfo* info) c_g_dbus_interface_info_unref;
// gio.DBusInterfaceSkeleton
GType function() c_g_dbus_interface_skeleton_get_type;
int function(GDBusInterfaceSkeleton* interface_, GDBusConnection* connection, const(char)* objectPath, GError** err) c_g_dbus_interface_skeleton_export;
void function(GDBusInterfaceSkeleton* interface_) c_g_dbus_interface_skeleton_flush;
GDBusConnection* function(GDBusInterfaceSkeleton* interface_) c_g_dbus_interface_skeleton_get_connection;
GList* function(GDBusInterfaceSkeleton* interface_) c_g_dbus_interface_skeleton_get_connections;
GDBusInterfaceSkeletonFlags function(GDBusInterfaceSkeleton* interface_) c_g_dbus_interface_skeleton_get_flags;
GDBusInterfaceInfo* function(GDBusInterfaceSkeleton* interface_) c_g_dbus_interface_skeleton_get_info;
const(char)* function(GDBusInterfaceSkeleton* interface_) c_g_dbus_interface_skeleton_get_object_path;
GVariant* function(GDBusInterfaceSkeleton* interface_) c_g_dbus_interface_skeleton_get_properties;
GDBusInterfaceVTable* function(GDBusInterfaceSkeleton* interface_) c_g_dbus_interface_skeleton_get_vtable;
int function(GDBusInterfaceSkeleton* interface_, GDBusConnection* connection) c_g_dbus_interface_skeleton_has_connection;
void function(GDBusInterfaceSkeleton* interface_, GDBusInterfaceSkeletonFlags flags) c_g_dbus_interface_skeleton_set_flags;
void function(GDBusInterfaceSkeleton* interface_) c_g_dbus_interface_skeleton_unexport;
void function(GDBusInterfaceSkeleton* interface_, GDBusConnection* connection) c_g_dbus_interface_skeleton_unexport_from_connection;
// gio.DBusMenuModel
GType function() c_g_dbus_menu_model_get_type;
GDBusMenuModel* function(GDBusConnection* connection, const(char)* busName, const(char)* objectPath) c_g_dbus_menu_model_get;
// gio.DBusMessage
GType function() c_g_dbus_message_get_type;
GDBusMessage* function() c_g_dbus_message_new;
GDBusMessage* function(char* blob, size_t blobLen, GDBusCapabilityFlags capabilities, GError** err) c_g_dbus_message_new_from_blob;
GDBusMessage* function(const(char)* name, const(char)* path, const(char)* interface_, const(char)* method) c_g_dbus_message_new_method_call;
GDBusMessage* function(const(char)* path, const(char)* interface_, const(char)* signal) c_g_dbus_message_new_signal;
ptrdiff_t function(char* blob, size_t blobLen, GError** err) c_g_dbus_message_bytes_needed;
GDBusMessage* function(GDBusMessage* message, GError** err) c_g_dbus_message_copy;
const(char)* function(GDBusMessage* message) c_g_dbus_message_get_arg0;
GVariant* function(GDBusMessage* message) c_g_dbus_message_get_body;
GDBusMessageByteOrder function(GDBusMessage* message) c_g_dbus_message_get_byte_order;
const(char)* function(GDBusMessage* message) c_g_dbus_message_get_destination;
const(char)* function(GDBusMessage* message) c_g_dbus_message_get_error_name;
GDBusMessageFlags function(GDBusMessage* message) c_g_dbus_message_get_flags;
GVariant* function(GDBusMessage* message, GDBusMessageHeaderField headerField) c_g_dbus_message_get_header;
char* function(GDBusMessage* message) c_g_dbus_message_get_header_fields;
const(char)* function(GDBusMessage* message) c_g_dbus_message_get_interface;
int function(GDBusMessage* message) c_g_dbus_message_get_locked;
const(char)* function(GDBusMessage* message) c_g_dbus_message_get_member;
GDBusMessageType function(GDBusMessage* message) c_g_dbus_message_get_message_type;
uint function(GDBusMessage* message) c_g_dbus_message_get_num_unix_fds;
const(char)* function(GDBusMessage* message) c_g_dbus_message_get_path;
uint function(GDBusMessage* message) c_g_dbus_message_get_reply_serial;
const(char)* function(GDBusMessage* message) c_g_dbus_message_get_sender;
uint function(GDBusMessage* message) c_g_dbus_message_get_serial;
const(char)* function(GDBusMessage* message) c_g_dbus_message_get_signature;
GUnixFDList* function(GDBusMessage* message) c_g_dbus_message_get_unix_fd_list;
void function(GDBusMessage* message) c_g_dbus_message_lock;
GDBusMessage* function(GDBusMessage* methodCallMessage, const(char)* errorName, const(char)* errorMessageFormat, ... ) c_g_dbus_message_new_method_error;
GDBusMessage* function(GDBusMessage* methodCallMessage, const(char)* errorName, const(char)* errorMessage) c_g_dbus_message_new_method_error_literal;
GDBusMessage* function(GDBusMessage* methodCallMessage, const(char)* errorName, const(char)* errorMessageFormat, void* varArgs) c_g_dbus_message_new_method_error_valist;
GDBusMessage* function(GDBusMessage* methodCallMessage) c_g_dbus_message_new_method_reply;
char* function(GDBusMessage* message, uint indent) c_g_dbus_message_print;
void function(GDBusMessage* message, GVariant* body_) c_g_dbus_message_set_body;
void function(GDBusMessage* message, GDBusMessageByteOrder byteOrder) c_g_dbus_message_set_byte_order;
void function(GDBusMessage* message, const(char)* value) c_g_dbus_message_set_destination;
void function(GDBusMessage* message, const(char)* value) c_g_dbus_message_set_error_name;
void function(GDBusMessage* message, GDBusMessageFlags flags) c_g_dbus_message_set_flags;
void function(GDBusMessage* message, GDBusMessageHeaderField headerField, GVariant* value) c_g_dbus_message_set_header;
void function(GDBusMessage* message, const(char)* value) c_g_dbus_message_set_interface;
void function(GDBusMessage* message, const(char)* value) c_g_dbus_message_set_member;
void function(GDBusMessage* message, GDBusMessageType type) c_g_dbus_message_set_message_type;
void function(GDBusMessage* message, uint value) c_g_dbus_message_set_num_unix_fds;
void function(GDBusMessage* message, const(char)* value) c_g_dbus_message_set_path;
void function(GDBusMessage* message, uint value) c_g_dbus_message_set_reply_serial;
void function(GDBusMessage* message, const(char)* value) c_g_dbus_message_set_sender;
void function(GDBusMessage* message, uint serial) c_g_dbus_message_set_serial;
void function(GDBusMessage* message, const(char)* value) c_g_dbus_message_set_signature;
void function(GDBusMessage* message, GUnixFDList* fdList) c_g_dbus_message_set_unix_fd_list;
char* function(GDBusMessage* message, size_t* outSize, GDBusCapabilityFlags capabilities, GError** err) c_g_dbus_message_to_blob;
int function(GDBusMessage* message, GError** err) c_g_dbus_message_to_gerror;
// gio.DBusMethodInfo
GType function() c_g_dbus_method_info_get_type;
GDBusMethodInfo* function(GDBusMethodInfo* info) c_g_dbus_method_info_ref;
void function(GDBusMethodInfo* info) c_g_dbus_method_info_unref;
// gio.DBusMethodInvocation
GType function() c_g_dbus_method_invocation_get_type;
GDBusConnection* function(GDBusMethodInvocation* invocation) c_g_dbus_method_invocation_get_connection;
const(char)* function(GDBusMethodInvocation* invocation) c_g_dbus_method_invocation_get_interface_name;
GDBusMessage* function(GDBusMethodInvocation* invocation) c_g_dbus_method_invocation_get_message;
GDBusMethodInfo* function(GDBusMethodInvocation* invocation) c_g_dbus_method_invocation_get_method_info;
const(char)* function(GDBusMethodInvocation* invocation) c_g_dbus_method_invocation_get_method_name;
const(char)* function(GDBusMethodInvocation* invocation) c_g_dbus_method_invocation_get_object_path;
GVariant* function(GDBusMethodInvocation* invocation) c_g_dbus_method_invocation_get_parameters;
GDBusPropertyInfo* function(GDBusMethodInvocation* invocation) c_g_dbus_method_invocation_get_property_info;
const(char)* function(GDBusMethodInvocation* invocation) c_g_dbus_method_invocation_get_sender;
void* function(GDBusMethodInvocation* invocation) c_g_dbus_method_invocation_get_user_data;
void function(GDBusMethodInvocation* invocation, const(char)* errorName, const(char)* errorMessage) c_g_dbus_method_invocation_return_dbus_error;
void function(GDBusMethodInvocation* invocation, GQuark domain, int code, const(char)* format, ... ) c_g_dbus_method_invocation_return_error;
void function(GDBusMethodInvocation* invocation, GQuark domain, int code, const(char)* message) c_g_dbus_method_invocation_return_error_literal;
void function(GDBusMethodInvocation* invocation, GQuark domain, int code, const(char)* format, void* varArgs) c_g_dbus_method_invocation_return_error_valist;
void function(GDBusMethodInvocation* invocation, GError* error) c_g_dbus_method_invocation_return_gerror;
void function(GDBusMethodInvocation* invocation, GVariant* parameters) c_g_dbus_method_invocation_return_value;
void function(GDBusMethodInvocation* invocation, GVariant* parameters, GUnixFDList* fdList) c_g_dbus_method_invocation_return_value_with_unix_fd_list;
void function(GDBusMethodInvocation* invocation, GError* error) c_g_dbus_method_invocation_take_error;
// gio.DBusNodeInfo
GType function() c_g_dbus_node_info_get_type;
GDBusNodeInfo* function(const(char)* xmlData, GError** err) c_g_dbus_node_info_new_for_xml;
void function(GDBusNodeInfo* info, uint indent, GString* stringBuilder) c_g_dbus_node_info_generate_xml;
GDBusInterfaceInfo* function(GDBusNodeInfo* info, const(char)* name) c_g_dbus_node_info_lookup_interface;
GDBusNodeInfo* function(GDBusNodeInfo* info) c_g_dbus_node_info_ref;
void function(GDBusNodeInfo* info) c_g_dbus_node_info_unref;
// gio.DBusObject
GType function() c_g_dbus_object_get_type;
GDBusInterface* function(GDBusObject* object, const(char)* interfaceName) c_g_dbus_object_get_interface;
GList* function(GDBusObject* object) c_g_dbus_object_get_interfaces;
const(char)* function(GDBusObject* object) c_g_dbus_object_get_object_path;
// gio.DBusObjectManager
GType function() c_g_dbus_object_manager_get_type;
GDBusInterface* function(GDBusObjectManager* manager, const(char)* objectPath, const(char)* interfaceName) c_g_dbus_object_manager_get_interface;
GDBusObject* function(GDBusObjectManager* manager, const(char)* objectPath) c_g_dbus_object_manager_get_object;
const(char)* function(GDBusObjectManager* manager) c_g_dbus_object_manager_get_object_path;
GList* function(GDBusObjectManager* manager) c_g_dbus_object_manager_get_objects;
// gio.DBusObjectManagerClient
GType function() c_g_dbus_object_manager_client_get_type;
GDBusObjectManager* function(GAsyncResult* res, GError** err) c_g_dbus_object_manager_client_new_finish;
GDBusObjectManager* function(GAsyncResult* res, GError** err) c_g_dbus_object_manager_client_new_for_bus_finish;
GDBusObjectManager* function(GBusType busType, GDBusObjectManagerClientFlags flags, const(char)* name, const(char)* objectPath, GDBusProxyTypeFunc getProxyTypeFunc, void* getProxyTypeUserData, GDestroyNotify getProxyTypeDestroyNotify, GCancellable* cancellable, GError** err) c_g_dbus_object_manager_client_new_for_bus_sync;
GDBusObjectManager* function(GDBusConnection* connection, GDBusObjectManagerClientFlags flags, const(char)* name, const(char)* objectPath, GDBusProxyTypeFunc getProxyTypeFunc, void* getProxyTypeUserData, GDestroyNotify getProxyTypeDestroyNotify, GCancellable* cancellable, GError** err) c_g_dbus_object_manager_client_new_sync;
void function(GDBusConnection* connection, GDBusObjectManagerClientFlags flags, const(char)* name, const(char)* objectPath, GDBusProxyTypeFunc getProxyTypeFunc, void* getProxyTypeUserData, GDestroyNotify getProxyTypeDestroyNotify, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_object_manager_client_new;
void function(GBusType busType, GDBusObjectManagerClientFlags flags, const(char)* name, const(char)* objectPath, GDBusProxyTypeFunc getProxyTypeFunc, void* getProxyTypeUserData, GDestroyNotify getProxyTypeDestroyNotify, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_object_manager_client_new_for_bus;
GDBusConnection* function(GDBusObjectManagerClient* manager) c_g_dbus_object_manager_client_get_connection;
GDBusObjectManagerClientFlags function(GDBusObjectManagerClient* manager) c_g_dbus_object_manager_client_get_flags;
const(char)* function(GDBusObjectManagerClient* manager) c_g_dbus_object_manager_client_get_name;
char* function(GDBusObjectManagerClient* manager) c_g_dbus_object_manager_client_get_name_owner;
// gio.DBusObjectManagerServer
GType function() c_g_dbus_object_manager_server_get_type;
GDBusObjectManagerServer* function(const(char)* objectPath) c_g_dbus_object_manager_server_new;
void function(GDBusObjectManagerServer* manager, GDBusObjectSkeleton* object) c_g_dbus_object_manager_server_export;
void function(GDBusObjectManagerServer* manager, GDBusObjectSkeleton* object) c_g_dbus_object_manager_server_export_uniquely;
GDBusConnection* function(GDBusObjectManagerServer* manager) c_g_dbus_object_manager_server_get_connection;
int function(GDBusObjectManagerServer* manager, GDBusObjectSkeleton* object) c_g_dbus_object_manager_server_is_exported;
void function(GDBusObjectManagerServer* manager, GDBusConnection* connection) c_g_dbus_object_manager_server_set_connection;
int function(GDBusObjectManagerServer* manager, const(char)* objectPath) c_g_dbus_object_manager_server_unexport;
// gio.DBusObjectProxy
GType function() c_g_dbus_object_proxy_get_type;
GDBusObjectProxy* function(GDBusConnection* connection, const(char)* objectPath) c_g_dbus_object_proxy_new;
GDBusConnection* function(GDBusObjectProxy* proxy) c_g_dbus_object_proxy_get_connection;
// gio.DBusObjectSkeleton
GType function() c_g_dbus_object_skeleton_get_type;
GDBusObjectSkeleton* function(const(char)* objectPath) c_g_dbus_object_skeleton_new;
void function(GDBusObjectSkeleton* object, GDBusInterfaceSkeleton* interface_) c_g_dbus_object_skeleton_add_interface;
void function(GDBusObjectSkeleton* object) c_g_dbus_object_skeleton_flush;
void function(GDBusObjectSkeleton* object, GDBusInterfaceSkeleton* interface_) c_g_dbus_object_skeleton_remove_interface;
void function(GDBusObjectSkeleton* object, const(char)* interfaceName) c_g_dbus_object_skeleton_remove_interface_by_name;
void function(GDBusObjectSkeleton* object, const(char)* objectPath) c_g_dbus_object_skeleton_set_object_path;
// gio.DBusPropertyInfo
GType function() c_g_dbus_property_info_get_type;
GDBusPropertyInfo* function(GDBusPropertyInfo* info) c_g_dbus_property_info_ref;
void function(GDBusPropertyInfo* info) c_g_dbus_property_info_unref;
// gio.DBusProxy
GType function() c_g_dbus_proxy_get_type;
GDBusProxy* function(GAsyncResult* res, GError** err) c_g_dbus_proxy_new_finish;
GDBusProxy* function(GAsyncResult* res, GError** err) c_g_dbus_proxy_new_for_bus_finish;
GDBusProxy* function(GBusType busType, GDBusProxyFlags flags, GDBusInterfaceInfo* info, const(char)* name, const(char)* objectPath, const(char)* interfaceName, GCancellable* cancellable, GError** err) c_g_dbus_proxy_new_for_bus_sync;
GDBusProxy* function(GDBusConnection* connection, GDBusProxyFlags flags, GDBusInterfaceInfo* info, const(char)* name, const(char)* objectPath, const(char)* interfaceName, GCancellable* cancellable, GError** err) c_g_dbus_proxy_new_sync;
void function(GDBusConnection* connection, GDBusProxyFlags flags, GDBusInterfaceInfo* info, const(char)* name, const(char)* objectPath, const(char)* interfaceName, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_proxy_new;
void function(GBusType busType, GDBusProxyFlags flags, GDBusInterfaceInfo* info, const(char)* name, const(char)* objectPath, const(char)* interfaceName, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_proxy_new_for_bus;
void function(GDBusProxy* proxy, const(char)* methodName, GVariant* parameters, GDBusCallFlags flags, int timeoutMsec, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_proxy_call;
GVariant* function(GDBusProxy* proxy, GAsyncResult* res, GError** err) c_g_dbus_proxy_call_finish;
GVariant* function(GDBusProxy* proxy, const(char)* methodName, GVariant* parameters, GDBusCallFlags flags, int timeoutMsec, GCancellable* cancellable, GError** err) c_g_dbus_proxy_call_sync;
void function(GDBusProxy* proxy, const(char)* methodName, GVariant* parameters, GDBusCallFlags flags, int timeoutMsec, GUnixFDList* fdList, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_proxy_call_with_unix_fd_list;
GVariant* function(GDBusProxy* proxy, GUnixFDList** outFdList, GAsyncResult* res, GError** err) c_g_dbus_proxy_call_with_unix_fd_list_finish;
GVariant* function(GDBusProxy* proxy, const(char)* methodName, GVariant* parameters, GDBusCallFlags flags, int timeoutMsec, GUnixFDList* fdList, GUnixFDList** outFdList, GCancellable* cancellable, GError** err) c_g_dbus_proxy_call_with_unix_fd_list_sync;
GVariant* function(GDBusProxy* proxy, const(char)* propertyName) c_g_dbus_proxy_get_cached_property;
char** function(GDBusProxy* proxy) c_g_dbus_proxy_get_cached_property_names;
GDBusConnection* function(GDBusProxy* proxy) c_g_dbus_proxy_get_connection;
int function(GDBusProxy* proxy) c_g_dbus_proxy_get_default_timeout;
GDBusProxyFlags function(GDBusProxy* proxy) c_g_dbus_proxy_get_flags;
GDBusInterfaceInfo* function(GDBusProxy* proxy) c_g_dbus_proxy_get_interface_info;
const(char)* function(GDBusProxy* proxy) c_g_dbus_proxy_get_interface_name;
const(char)* function(GDBusProxy* proxy) c_g_dbus_proxy_get_name;
char* function(GDBusProxy* proxy) c_g_dbus_proxy_get_name_owner;
const(char)* function(GDBusProxy* proxy) c_g_dbus_proxy_get_object_path;
void function(GDBusProxy* proxy, const(char)* propertyName, GVariant* value) c_g_dbus_proxy_set_cached_property;
void function(GDBusProxy* proxy, int timeoutMsec) c_g_dbus_proxy_set_default_timeout;
void function(GDBusProxy* proxy, GDBusInterfaceInfo* info) c_g_dbus_proxy_set_interface_info;
// gio.DBusServer
GType function() c_g_dbus_server_get_type;
GDBusServer* function(const(char)* address, GDBusServerFlags flags, const(char)* guid, GDBusAuthObserver* observer, GCancellable* cancellable, GError** err) c_g_dbus_server_new_sync;
const(char)* function(GDBusServer* server) c_g_dbus_server_get_client_address;
GDBusServerFlags function(GDBusServer* server) c_g_dbus_server_get_flags;
const(char)* function(GDBusServer* server) c_g_dbus_server_get_guid;
int function(GDBusServer* server) c_g_dbus_server_is_active;
void function(GDBusServer* server) c_g_dbus_server_start;
void function(GDBusServer* server) c_g_dbus_server_stop;
// gio.DBusSignalInfo
GType function() c_g_dbus_signal_info_get_type;
GDBusSignalInfo* function(GDBusSignalInfo* info) c_g_dbus_signal_info_ref;
void function(GDBusSignalInfo* info) c_g_dbus_signal_info_unref;
// gio.DataInputStream
GType function() c_g_data_input_stream_get_type;
GDataInputStream* function(GInputStream* baseStream) c_g_data_input_stream_new;
GDataStreamByteOrder function(GDataInputStream* stream) c_g_data_input_stream_get_byte_order;
GDataStreamNewlineType function(GDataInputStream* stream) c_g_data_input_stream_get_newline_type;
char function(GDataInputStream* stream, GCancellable* cancellable, GError** err) c_g_data_input_stream_read_byte;
short function(GDataInputStream* stream, GCancellable* cancellable, GError** err) c_g_data_input_stream_read_int16;
int function(GDataInputStream* stream, GCancellable* cancellable, GError** err) c_g_data_input_stream_read_int32;
long function(GDataInputStream* stream, GCancellable* cancellable, GError** err) c_g_data_input_stream_read_int64;
char* function(GDataInputStream* stream, size_t* length, GCancellable* cancellable, GError** err) c_g_data_input_stream_read_line;
void function(GDataInputStream* stream, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_data_input_stream_read_line_async;
char* function(GDataInputStream* stream, GAsyncResult* result, size_t* length, GError** err) c_g_data_input_stream_read_line_finish;
char* function(GDataInputStream* stream, GAsyncResult* result, size_t* length, GError** err) c_g_data_input_stream_read_line_finish_utf8;
char* function(GDataInputStream* stream, size_t* length, GCancellable* cancellable, GError** err) c_g_data_input_stream_read_line_utf8;
ushort function(GDataInputStream* stream, GCancellable* cancellable, GError** err) c_g_data_input_stream_read_uint16;
uint function(GDataInputStream* stream, GCancellable* cancellable, GError** err) c_g_data_input_stream_read_uint32;
ulong function(GDataInputStream* stream, GCancellable* cancellable, GError** err) c_g_data_input_stream_read_uint64;
char* function(GDataInputStream* stream, const(char)* stopChars, size_t* length, GCancellable* cancellable, GError** err) c_g_data_input_stream_read_until;
void function(GDataInputStream* stream, const(char)* stopChars, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_data_input_stream_read_until_async;
char* function(GDataInputStream* stream, GAsyncResult* result, size_t* length, GError** err) c_g_data_input_stream_read_until_finish;
char* function(GDataInputStream* stream, const(char)* stopChars, ptrdiff_t stopCharsLen, size_t* length, GCancellable* cancellable, GError** err) c_g_data_input_stream_read_upto;
void function(GDataInputStream* stream, const(char)* stopChars, ptrdiff_t stopCharsLen, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_data_input_stream_read_upto_async;
char* function(GDataInputStream* stream, GAsyncResult* result, size_t* length, GError** err) c_g_data_input_stream_read_upto_finish;
void function(GDataInputStream* stream, GDataStreamByteOrder order) c_g_data_input_stream_set_byte_order;
void function(GDataInputStream* stream, GDataStreamNewlineType type) c_g_data_input_stream_set_newline_type;
// gio.DataOutputStream
GType function() c_g_data_output_stream_get_type;
GDataOutputStream* function(GOutputStream* baseStream) c_g_data_output_stream_new;
GDataStreamByteOrder function(GDataOutputStream* stream) c_g_data_output_stream_get_byte_order;
int function(GDataOutputStream* stream, char data, GCancellable* cancellable, GError** err) c_g_data_output_stream_put_byte;
int function(GDataOutputStream* stream, short data, GCancellable* cancellable, GError** err) c_g_data_output_stream_put_int16;
int function(GDataOutputStream* stream, int data, GCancellable* cancellable, GError** err) c_g_data_output_stream_put_int32;
int function(GDataOutputStream* stream, long data, GCancellable* cancellable, GError** err) c_g_data_output_stream_put_int64;
int function(GDataOutputStream* stream, const(char)* str, GCancellable* cancellable, GError** err) c_g_data_output_stream_put_string;
int function(GDataOutputStream* stream, ushort data, GCancellable* cancellable, GError** err) c_g_data_output_stream_put_uint16;
int function(GDataOutputStream* stream, uint data, GCancellable* cancellable, GError** err) c_g_data_output_stream_put_uint32;
int function(GDataOutputStream* stream, ulong data, GCancellable* cancellable, GError** err) c_g_data_output_stream_put_uint64;
void function(GDataOutputStream* stream, GDataStreamByteOrder order) c_g_data_output_stream_set_byte_order;
// gio.DatagramBased
GType function() c_g_datagram_based_get_type;
GIOCondition function(GDatagramBased* datagramBased, GIOCondition condition) c_g_datagram_based_condition_check;
int function(GDatagramBased* datagramBased, GIOCondition condition, long timeout, GCancellable* cancellable, GError** err) c_g_datagram_based_condition_wait;
GSource* function(GDatagramBased* datagramBased, GIOCondition condition, GCancellable* cancellable) c_g_datagram_based_create_source;
int function(GDatagramBased* datagramBased, GInputMessage* messages, uint numMessages, int flags, long timeout, GCancellable* cancellable, GError** err) c_g_datagram_based_receive_messages;
int function(GDatagramBased* datagramBased, GOutputMessage* messages, uint numMessages, int flags, long timeout, GCancellable* cancellable, GError** err) c_g_datagram_based_send_messages;
// gio.DesktopAppInfo
GType function() c_g_desktop_app_info_get_type;
GDesktopAppInfo* function(const(char)* desktopId) c_g_desktop_app_info_new;
GDesktopAppInfo* function(char* filename) c_g_desktop_app_info_new_from_filename;
GDesktopAppInfo* function(GKeyFile* keyFile) c_g_desktop_app_info_new_from_keyfile;
GList* function(const(char)* interface_) c_g_desktop_app_info_get_implementations;
char*** function(const(char)* searchString) c_g_desktop_app_info_search;
void function(const(char)* desktopEnv) c_g_desktop_app_info_set_desktop_env;
char* function(GDesktopAppInfo* info, const(char)* actionName) c_g_desktop_app_info_get_action_name;
int function(GDesktopAppInfo* info, const(char)* key) c_g_desktop_app_info_get_boolean;
const(char)* function(GDesktopAppInfo* info) c_g_desktop_app_info_get_categories;
char* function(GDesktopAppInfo* info) c_g_desktop_app_info_get_filename;
const(char)* function(GDesktopAppInfo* info) c_g_desktop_app_info_get_generic_name;
int function(GDesktopAppInfo* info) c_g_desktop_app_info_get_is_hidden;
char** function(GDesktopAppInfo* info) c_g_desktop_app_info_get_keywords;
char* function(GDesktopAppInfo* info, const(char)* key) c_g_desktop_app_info_get_locale_string;
int function(GDesktopAppInfo* info) c_g_desktop_app_info_get_nodisplay;
int function(GDesktopAppInfo* info, const(char)* desktopEnv) c_g_desktop_app_info_get_show_in;
const(char)* function(GDesktopAppInfo* info) c_g_desktop_app_info_get_startup_wm_class;
char* function(GDesktopAppInfo* info, const(char)* key) c_g_desktop_app_info_get_string;
char** function(GDesktopAppInfo* info, const(char)* key, size_t* length) c_g_desktop_app_info_get_string_list;
int function(GDesktopAppInfo* info, const(char)* key) c_g_desktop_app_info_has_key;
void function(GDesktopAppInfo* info, const(char)* actionName, GAppLaunchContext* launchContext) c_g_desktop_app_info_launch_action;
int function(GDesktopAppInfo* appinfo, GList* uris, GAppLaunchContext* launchContext, GSpawnFlags spawnFlags, GSpawnChildSetupFunc userSetup, void* userSetupData, GDesktopAppLaunchCallback pidCallback, void* pidCallbackData, GError** err) c_g_desktop_app_info_launch_uris_as_manager;
int function(GDesktopAppInfo* appinfo, GList* uris, GAppLaunchContext* launchContext, GSpawnFlags spawnFlags, GSpawnChildSetupFunc userSetup, void* userSetupData, GDesktopAppLaunchCallback pidCallback, void* pidCallbackData, int stdinFd, int stdoutFd, int stderrFd, GError** err) c_g_desktop_app_info_launch_uris_as_manager_with_fds;
char** function(GDesktopAppInfo* info) c_g_desktop_app_info_list_actions;
// gio.DesktopAppInfoLookup
GType function() c_g_desktop_app_info_lookup_get_type;
GAppInfo* function(GDesktopAppInfoLookup* lookup, const(char)* uriScheme) c_g_desktop_app_info_lookup_get_default_for_uri_scheme;
// gio.Drive
GType function() c_g_drive_get_type;
int function(GDrive* drive) c_g_drive_can_eject;
int function(GDrive* drive) c_g_drive_can_poll_for_media;
int function(GDrive* drive) c_g_drive_can_start;
int function(GDrive* drive) c_g_drive_can_start_degraded;
int function(GDrive* drive) c_g_drive_can_stop;
void function(GDrive* drive, GMountUnmountFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_drive_eject;
int function(GDrive* drive, GAsyncResult* result, GError** err) c_g_drive_eject_finish;
void function(GDrive* drive, GMountUnmountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_drive_eject_with_operation;
int function(GDrive* drive, GAsyncResult* result, GError** err) c_g_drive_eject_with_operation_finish;
char** function(GDrive* drive) c_g_drive_enumerate_identifiers;
GIcon* function(GDrive* drive) c_g_drive_get_icon;
char* function(GDrive* drive, const(char)* kind) c_g_drive_get_identifier;
char* function(GDrive* drive) c_g_drive_get_name;
const(char)* function(GDrive* drive) c_g_drive_get_sort_key;
GDriveStartStopType function(GDrive* drive) c_g_drive_get_start_stop_type;
GIcon* function(GDrive* drive) c_g_drive_get_symbolic_icon;
GList* function(GDrive* drive) c_g_drive_get_volumes;
int function(GDrive* drive) c_g_drive_has_media;
int function(GDrive* drive) c_g_drive_has_volumes;
int function(GDrive* drive) c_g_drive_is_media_check_automatic;
int function(GDrive* drive) c_g_drive_is_media_removable;
int function(GDrive* drive) c_g_drive_is_removable;
void function(GDrive* drive, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_drive_poll_for_media;
int function(GDrive* drive, GAsyncResult* result, GError** err) c_g_drive_poll_for_media_finish;
void function(GDrive* drive, GDriveStartFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_drive_start;
int function(GDrive* drive, GAsyncResult* result, GError** err) c_g_drive_start_finish;
void function(GDrive* drive, GMountUnmountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_drive_stop;
int function(GDrive* drive, GAsyncResult* result, GError** err) c_g_drive_stop_finish;
// gio.DtlsClientConnection
GType function() c_g_dtls_client_connection_get_type;
GDatagramBased* function(GDatagramBased* baseSocket, GSocketConnectable* serverIdentity, GError** err) c_g_dtls_client_connection_new;
GList* function(GDtlsClientConnection* conn) c_g_dtls_client_connection_get_accepted_cas;
GSocketConnectable* function(GDtlsClientConnection* conn) c_g_dtls_client_connection_get_server_identity;
GTlsCertificateFlags function(GDtlsClientConnection* conn) c_g_dtls_client_connection_get_validation_flags;
void function(GDtlsClientConnection* conn, GSocketConnectable* identity) c_g_dtls_client_connection_set_server_identity;
void function(GDtlsClientConnection* conn, GTlsCertificateFlags flags) c_g_dtls_client_connection_set_validation_flags;
// gio.DtlsConnection
GType function() c_g_dtls_connection_get_type;
int function(GDtlsConnection* conn, GCancellable* cancellable, GError** err) c_g_dtls_connection_close;
void function(GDtlsConnection* conn, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dtls_connection_close_async;
int function(GDtlsConnection* conn, GAsyncResult* result, GError** err) c_g_dtls_connection_close_finish;
int function(GDtlsConnection* conn, GTlsCertificate* peerCert, GTlsCertificateFlags errors) c_g_dtls_connection_emit_accept_certificate;
GTlsCertificate* function(GDtlsConnection* conn) c_g_dtls_connection_get_certificate;
GTlsDatabase* function(GDtlsConnection* conn) c_g_dtls_connection_get_database;
GTlsInteraction* function(GDtlsConnection* conn) c_g_dtls_connection_get_interaction;
const(char)* function(GDtlsConnection* conn) c_g_dtls_connection_get_negotiated_protocol;
GTlsCertificate* function(GDtlsConnection* conn) c_g_dtls_connection_get_peer_certificate;
GTlsCertificateFlags function(GDtlsConnection* conn) c_g_dtls_connection_get_peer_certificate_errors;
GTlsRehandshakeMode function(GDtlsConnection* conn) c_g_dtls_connection_get_rehandshake_mode;
int function(GDtlsConnection* conn) c_g_dtls_connection_get_require_close_notify;
int function(GDtlsConnection* conn, GCancellable* cancellable, GError** err) c_g_dtls_connection_handshake;
void function(GDtlsConnection* conn, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dtls_connection_handshake_async;
int function(GDtlsConnection* conn, GAsyncResult* result, GError** err) c_g_dtls_connection_handshake_finish;
void function(GDtlsConnection* conn, char** protocols) c_g_dtls_connection_set_advertised_protocols;
void function(GDtlsConnection* conn, GTlsCertificate* certificate) c_g_dtls_connection_set_certificate;
void function(GDtlsConnection* conn, GTlsDatabase* database) c_g_dtls_connection_set_database;
void function(GDtlsConnection* conn, GTlsInteraction* interaction) c_g_dtls_connection_set_interaction;
void function(GDtlsConnection* conn, GTlsRehandshakeMode mode) c_g_dtls_connection_set_rehandshake_mode;
void function(GDtlsConnection* conn, int requireCloseNotify) c_g_dtls_connection_set_require_close_notify;
int function(GDtlsConnection* conn, int shutdownRead, int shutdownWrite, GCancellable* cancellable, GError** err) c_g_dtls_connection_shutdown;
void function(GDtlsConnection* conn, int shutdownRead, int shutdownWrite, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dtls_connection_shutdown_async;
int function(GDtlsConnection* conn, GAsyncResult* result, GError** err) c_g_dtls_connection_shutdown_finish;
// gio.DtlsServerConnection
GType function() c_g_dtls_server_connection_get_type;
GDatagramBased* function(GDatagramBased* baseSocket, GTlsCertificate* certificate, GError** err) c_g_dtls_server_connection_new;
// gio.Emblem
GType function() c_g_emblem_get_type;
GEmblem* function(GIcon* icon) c_g_emblem_new;
GEmblem* function(GIcon* icon, GEmblemOrigin origin) c_g_emblem_new_with_origin;
GIcon* function(GEmblem* emblem) c_g_emblem_get_icon;
GEmblemOrigin function(GEmblem* emblem) c_g_emblem_get_origin;
// gio.EmblemedIcon
GType function() c_g_emblemed_icon_get_type;
GIcon* function(GIcon* icon, GEmblem* emblem) c_g_emblemed_icon_new;
void function(GEmblemedIcon* emblemed, GEmblem* emblem) c_g_emblemed_icon_add_emblem;
void function(GEmblemedIcon* emblemed) c_g_emblemed_icon_clear_emblems;
GList* function(GEmblemedIcon* emblemed) c_g_emblemed_icon_get_emblems;
GIcon* function(GEmblemedIcon* emblemed) c_g_emblemed_icon_get_icon;
// gio.File
GType function() c_g_file_get_type;
GFile* function(char* firstElement, ... ) c_g_file_new_build_filename;
GFile* function(char* arg) c_g_file_new_for_commandline_arg;
GFile* function(char* arg, char* cwd) c_g_file_new_for_commandline_arg_and_cwd;
GFile* function(char* path) c_g_file_new_for_path;
GFile* function(const(char)* uri) c_g_file_new_for_uri;
GFile* function(char* tmpl, GFileIOStream** iostream, GError** err) c_g_file_new_tmp;
GFile* function(const(char)* parseName) c_g_file_parse_name;
GFileOutputStream* function(GFile* file, GFileCreateFlags flags, GCancellable* cancellable, GError** err) c_g_file_append_to;
void function(GFile* file, GFileCreateFlags flags, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_append_to_async;
GFileOutputStream* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_append_to_finish;
int function(GFile* source, GFile* destination, GFileCopyFlags flags, GCancellable* cancellable, GFileProgressCallback progressCallback, void* progressCallbackData, GError** err) c_g_file_copy;
void function(GFile* source, GFile* destination, GFileCopyFlags flags, int ioPriority, GCancellable* cancellable, GFileProgressCallback progressCallback, void* progressCallbackData, GAsyncReadyCallback callback, void* userData) c_g_file_copy_async;
int function(GFile* source, GFile* destination, GFileCopyFlags flags, GCancellable* cancellable, GError** err) c_g_file_copy_attributes;
int function(GFile* file, GAsyncResult* res, GError** err) c_g_file_copy_finish;
GFileOutputStream* function(GFile* file, GFileCreateFlags flags, GCancellable* cancellable, GError** err) c_g_file_create;
void function(GFile* file, GFileCreateFlags flags, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_create_async;
GFileOutputStream* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_create_finish;
GFileIOStream* function(GFile* file, GFileCreateFlags flags, GCancellable* cancellable, GError** err) c_g_file_create_readwrite;
void function(GFile* file, GFileCreateFlags flags, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_create_readwrite_async;
GFileIOStream* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_create_readwrite_finish;
int function(GFile* file, GCancellable* cancellable, GError** err) c_g_file_delete;
void function(GFile* file, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_delete_async;
int function(GFile* file, GAsyncResult* result, GError** err) c_g_file_delete_finish;
GFile* function(GFile* file) c_g_file_dup;
void function(GFile* file, GMountUnmountFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_eject_mountable;
int function(GFile* file, GAsyncResult* result, GError** err) c_g_file_eject_mountable_finish;
void function(GFile* file, GMountUnmountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_eject_mountable_with_operation;
int function(GFile* file, GAsyncResult* result, GError** err) c_g_file_eject_mountable_with_operation_finish;
GFileEnumerator* function(GFile* file, const(char)* attributes, GFileQueryInfoFlags flags, GCancellable* cancellable, GError** err) c_g_file_enumerate_children;
void function(GFile* file, const(char)* attributes, GFileQueryInfoFlags flags, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_enumerate_children_async;
GFileEnumerator* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_enumerate_children_finish;
int function(GFile* file1, GFile* file2) c_g_file_equal;
GMount* function(GFile* file, GCancellable* cancellable, GError** err) c_g_file_find_enclosing_mount;
void function(GFile* file, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_find_enclosing_mount_async;
GMount* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_find_enclosing_mount_finish;
char* function(GFile* file) c_g_file_get_basename;
GFile* function(GFile* file, char* name) c_g_file_get_child;
GFile* function(GFile* file, const(char)* displayName, GError** err) c_g_file_get_child_for_display_name;
GFile* function(GFile* file) c_g_file_get_parent;
char* function(GFile* file) c_g_file_get_parse_name;
char* function(GFile* file) c_g_file_get_path;
char* function(GFile* parent, GFile* descendant) c_g_file_get_relative_path;
char* function(GFile* file) c_g_file_get_uri;
char* function(GFile* file) c_g_file_get_uri_scheme;
int function(GFile* file, GFile* parent) c_g_file_has_parent;
int function(GFile* file, GFile* prefix) c_g_file_has_prefix;
int function(GFile* file, const(char)* uriScheme) c_g_file_has_uri_scheme;
uint function(void* file) c_g_file_hash;
int function(GFile* file) c_g_file_is_native;
GBytes* function(GFile* file, GCancellable* cancellable, char** etagOut, GError** err) c_g_file_load_bytes;
void function(GFile* file, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_load_bytes_async;
GBytes* function(GFile* file, GAsyncResult* result, char** etagOut, GError** err) c_g_file_load_bytes_finish;
int function(GFile* file, GCancellable* cancellable, char** contents, size_t* length, char** etagOut, GError** err) c_g_file_load_contents;
void function(GFile* file, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_load_contents_async;
int function(GFile* file, GAsyncResult* res, char** contents, size_t* length, char** etagOut, GError** err) c_g_file_load_contents_finish;
void function(GFile* file, GCancellable* cancellable, GFileReadMoreCallback readMoreCallback, GAsyncReadyCallback callback, void* userData) c_g_file_load_partial_contents_async;
int function(GFile* file, GAsyncResult* res, char** contents, size_t* length, char** etagOut, GError** err) c_g_file_load_partial_contents_finish;
int function(GFile* file, GCancellable* cancellable, GError** err) c_g_file_make_directory;
void function(GFile* file, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_make_directory_async;
int function(GFile* file, GAsyncResult* result, GError** err) c_g_file_make_directory_finish;
int function(GFile* file, GCancellable* cancellable, GError** err) c_g_file_make_directory_with_parents;
int function(GFile* file, char* symlinkValue, GCancellable* cancellable, GError** err) c_g_file_make_symbolic_link;
int function(GFile* file, GFileMeasureFlags flags, GCancellable* cancellable, GFileMeasureProgressCallback progressCallback, void* progressData, ulong* diskUsage, ulong* numDirs, ulong* numFiles, GError** err) c_g_file_measure_disk_usage;
void function(GFile* file, GFileMeasureFlags flags, int ioPriority, GCancellable* cancellable, GFileMeasureProgressCallback progressCallback, void* progressData, GAsyncReadyCallback callback, void* userData) c_g_file_measure_disk_usage_async;
int function(GFile* file, GAsyncResult* result, ulong* diskUsage, ulong* numDirs, ulong* numFiles, GError** err) c_g_file_measure_disk_usage_finish;
GFileMonitor* function(GFile* file, GFileMonitorFlags flags, GCancellable* cancellable, GError** err) c_g_file_monitor;
GFileMonitor* function(GFile* file, GFileMonitorFlags flags, GCancellable* cancellable, GError** err) c_g_file_monitor_directory;
GFileMonitor* function(GFile* file, GFileMonitorFlags flags, GCancellable* cancellable, GError** err) c_g_file_monitor_file;
void function(GFile* location, GMountMountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_mount_enclosing_volume;
int function(GFile* location, GAsyncResult* result, GError** err) c_g_file_mount_enclosing_volume_finish;
void function(GFile* file, GMountMountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_mount_mountable;
GFile* function(GFile* file, GAsyncResult* result, GError** err) c_g_file_mount_mountable_finish;
int function(GFile* source, GFile* destination, GFileCopyFlags flags, GCancellable* cancellable, GFileProgressCallback progressCallback, void* progressCallbackData, GError** err) c_g_file_move;
GFileIOStream* function(GFile* file, GCancellable* cancellable, GError** err) c_g_file_open_readwrite;
void function(GFile* file, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_open_readwrite_async;
GFileIOStream* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_open_readwrite_finish;
char* function(GFile* file) c_g_file_peek_path;
void function(GFile* file, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_poll_mountable;
int function(GFile* file, GAsyncResult* result, GError** err) c_g_file_poll_mountable_finish;
GAppInfo* function(GFile* file, GCancellable* cancellable, GError** err) c_g_file_query_default_handler;
void function(GFile* file, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_query_default_handler_async;
GAppInfo* function(GFile* file, GAsyncResult* result, GError** err) c_g_file_query_default_handler_finish;
int function(GFile* file, GCancellable* cancellable) c_g_file_query_exists;
GFileType function(GFile* file, GFileQueryInfoFlags flags, GCancellable* cancellable) c_g_file_query_file_type;
GFileInfo* function(GFile* file, const(char)* attributes, GCancellable* cancellable, GError** err) c_g_file_query_filesystem_info;
void function(GFile* file, const(char)* attributes, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_query_filesystem_info_async;
GFileInfo* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_query_filesystem_info_finish;
GFileInfo* function(GFile* file, const(char)* attributes, GFileQueryInfoFlags flags, GCancellable* cancellable, GError** err) c_g_file_query_info;
void function(GFile* file, const(char)* attributes, GFileQueryInfoFlags flags, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_query_info_async;
GFileInfo* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_query_info_finish;
GFileAttributeInfoList* function(GFile* file, GCancellable* cancellable, GError** err) c_g_file_query_settable_attributes;
GFileAttributeInfoList* function(GFile* file, GCancellable* cancellable, GError** err) c_g_file_query_writable_namespaces;
GFileInputStream* function(GFile* file, GCancellable* cancellable, GError** err) c_g_file_read;
void function(GFile* file, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_read_async;
GFileInputStream* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_read_finish;
GFileOutputStream* function(GFile* file, const(char)* etag, int makeBackup, GFileCreateFlags flags, GCancellable* cancellable, GError** err) c_g_file_replace;
void function(GFile* file, const(char)* etag, int makeBackup, GFileCreateFlags flags, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_replace_async;
int function(GFile* file, char* contents, size_t length, const(char)* etag, int makeBackup, GFileCreateFlags flags, char** newEtag, GCancellable* cancellable, GError** err) c_g_file_replace_contents;
void function(GFile* file, char* contents, size_t length, const(char)* etag, int makeBackup, GFileCreateFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_replace_contents_async;
void function(GFile* file, GBytes* contents, const(char)* etag, int makeBackup, GFileCreateFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_replace_contents_bytes_async;
int function(GFile* file, GAsyncResult* res, char** newEtag, GError** err) c_g_file_replace_contents_finish;
GFileOutputStream* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_replace_finish;
GFileIOStream* function(GFile* file, const(char)* etag, int makeBackup, GFileCreateFlags flags, GCancellable* cancellable, GError** err) c_g_file_replace_readwrite;
void function(GFile* file, const(char)* etag, int makeBackup, GFileCreateFlags flags, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_replace_readwrite_async;
GFileIOStream* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_replace_readwrite_finish;
GFile* function(GFile* file, char* relativePath) c_g_file_resolve_relative_path;
int function(GFile* file, const(char)* attribute, GFileAttributeType type, void* valueP, GFileQueryInfoFlags flags, GCancellable* cancellable, GError** err) c_g_file_set_attribute;
int function(GFile* file, const(char)* attribute, const(char)* value, GFileQueryInfoFlags flags, GCancellable* cancellable, GError** err) c_g_file_set_attribute_byte_string;
int function(GFile* file, const(char)* attribute, int value, GFileQueryInfoFlags flags, GCancellable* cancellable, GError** err) c_g_file_set_attribute_int32;
int function(GFile* file, const(char)* attribute, long value, GFileQueryInfoFlags flags, GCancellable* cancellable, GError** err) c_g_file_set_attribute_int64;
int function(GFile* file, const(char)* attribute, const(char)* value, GFileQueryInfoFlags flags, GCancellable* cancellable, GError** err) c_g_file_set_attribute_string;
int function(GFile* file, const(char)* attribute, uint value, GFileQueryInfoFlags flags, GCancellable* cancellable, GError** err) c_g_file_set_attribute_uint32;
int function(GFile* file, const(char)* attribute, ulong value, GFileQueryInfoFlags flags, GCancellable* cancellable, GError** err) c_g_file_set_attribute_uint64;
void function(GFile* file, GFileInfo* info, GFileQueryInfoFlags flags, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_set_attributes_async;
int function(GFile* file, GAsyncResult* result, GFileInfo** info, GError** err) c_g_file_set_attributes_finish;
int function(GFile* file, GFileInfo* info, GFileQueryInfoFlags flags, GCancellable* cancellable, GError** err) c_g_file_set_attributes_from_info;
GFile* function(GFile* file, const(char)* displayName, GCancellable* cancellable, GError** err) c_g_file_set_display_name;
void function(GFile* file, const(char)* displayName, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_set_display_name_async;
GFile* function(GFile* file, GAsyncResult* res, GError** err) c_g_file_set_display_name_finish;
void function(GFile* file, GDriveStartFlags flags, GMountOperation* startOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_start_mountable;
int function(GFile* file, GAsyncResult* result, GError** err) c_g_file_start_mountable_finish;
void function(GFile* file, GMountUnmountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_stop_mountable;
int function(GFile* file, GAsyncResult* result, GError** err) c_g_file_stop_mountable_finish;
int function(GFile* file) c_g_file_supports_thread_contexts;
int function(GFile* file, GCancellable* cancellable, GError** err) c_g_file_trash;
void function(GFile* file, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_trash_async;
int function(GFile* file, GAsyncResult* result, GError** err) c_g_file_trash_finish;
void function(GFile* file, GMountUnmountFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_unmount_mountable;
int function(GFile* file, GAsyncResult* result, GError** err) c_g_file_unmount_mountable_finish;
void function(GFile* file, GMountUnmountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_unmount_mountable_with_operation;
int function(GFile* file, GAsyncResult* result, GError** err) c_g_file_unmount_mountable_with_operation_finish;
// gio.FileAttributeInfoList
GType function() c_g_file_attribute_info_list_get_type;
GFileAttributeInfoList* function() c_g_file_attribute_info_list_new;
void function(GFileAttributeInfoList* list, const(char)* name, GFileAttributeType type, GFileAttributeInfoFlags flags) c_g_file_attribute_info_list_add;
GFileAttributeInfoList* function(GFileAttributeInfoList* list) c_g_file_attribute_info_list_dup;
GFileAttributeInfo* function(GFileAttributeInfoList* list, const(char)* name) c_g_file_attribute_info_list_lookup;
GFileAttributeInfoList* function(GFileAttributeInfoList* list) c_g_file_attribute_info_list_ref;
void function(GFileAttributeInfoList* list) c_g_file_attribute_info_list_unref;
// gio.FileAttributeMatcher
GType function() c_g_file_attribute_matcher_get_type;
GFileAttributeMatcher* function(const(char)* attributes) c_g_file_attribute_matcher_new;
int function(GFileAttributeMatcher* matcher, const(char)* ns) c_g_file_attribute_matcher_enumerate_namespace;
const(char)* function(GFileAttributeMatcher* matcher) c_g_file_attribute_matcher_enumerate_next;
int function(GFileAttributeMatcher* matcher, const(char)* attribute) c_g_file_attribute_matcher_matches;
int function(GFileAttributeMatcher* matcher, const(char)* attribute) c_g_file_attribute_matcher_matches_only;
GFileAttributeMatcher* function(GFileAttributeMatcher* matcher) c_g_file_attribute_matcher_ref;
GFileAttributeMatcher* function(GFileAttributeMatcher* matcher, GFileAttributeMatcher* subtract) c_g_file_attribute_matcher_subtract;
char* function(GFileAttributeMatcher* matcher) c_g_file_attribute_matcher_to_string;
void function(GFileAttributeMatcher* matcher) c_g_file_attribute_matcher_unref;
// gio.FileDescriptorBased
GType function() c_g_file_descriptor_based_get_type;
int function(GFileDescriptorBased* fdBased) c_g_file_descriptor_based_get_fd;
// gio.FileEnumerator
GType function() c_g_file_enumerator_get_type;
int function(GFileEnumerator* enumerator, GCancellable* cancellable, GError** err) c_g_file_enumerator_close;
void function(GFileEnumerator* enumerator, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_enumerator_close_async;
int function(GFileEnumerator* enumerator, GAsyncResult* result, GError** err) c_g_file_enumerator_close_finish;
GFile* function(GFileEnumerator* enumerator, GFileInfo* info) c_g_file_enumerator_get_child;
GFile* function(GFileEnumerator* enumerator) c_g_file_enumerator_get_container;
int function(GFileEnumerator* enumerator) c_g_file_enumerator_has_pending;
int function(GFileEnumerator* enumerator) c_g_file_enumerator_is_closed;
int function(GFileEnumerator* direnum, GFileInfo** outInfo, GFile** outChild, GCancellable* cancellable, GError** err) c_g_file_enumerator_iterate;
GFileInfo* function(GFileEnumerator* enumerator, GCancellable* cancellable, GError** err) c_g_file_enumerator_next_file;
void function(GFileEnumerator* enumerator, int numFiles, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_enumerator_next_files_async;
GList* function(GFileEnumerator* enumerator, GAsyncResult* result, GError** err) c_g_file_enumerator_next_files_finish;
void function(GFileEnumerator* enumerator, int pending) c_g_file_enumerator_set_pending;
// gio.FileIOStream
GType function() c_g_file_io_stream_get_type;
char* function(GFileIOStream* stream) c_g_file_io_stream_get_etag;
GFileInfo* function(GFileIOStream* stream, const(char)* attributes, GCancellable* cancellable, GError** err) c_g_file_io_stream_query_info;
void function(GFileIOStream* stream, const(char)* attributes, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_io_stream_query_info_async;
GFileInfo* function(GFileIOStream* stream, GAsyncResult* result, GError** err) c_g_file_io_stream_query_info_finish;
// gio.FileIcon
GType function() c_g_file_icon_get_type;
GIcon* function(GFile* file) c_g_file_icon_new;
GFile* function(GFileIcon* icon) c_g_file_icon_get_file;
// gio.FileInfo
GType function() c_g_file_info_get_type;
GFileInfo* function() c_g_file_info_new;
void function(GFileInfo* info) c_g_file_info_clear_status;
void function(GFileInfo* srcInfo, GFileInfo* destInfo) c_g_file_info_copy_into;
GFileInfo* function(GFileInfo* other) c_g_file_info_dup;
char* function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_as_string;
int function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_boolean;
const(char)* function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_byte_string;
int function(GFileInfo* info, const(char)* attribute, GFileAttributeType* type, void** valuePp, GFileAttributeStatus* status) c_g_file_info_get_attribute_data;
int function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_int32;
long function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_int64;
GObject* function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_object;
GFileAttributeStatus function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_status;
const(char)* function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_string;
char** function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_stringv;
GFileAttributeType function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_type;
uint function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_uint32;
ulong function(GFileInfo* info, const(char)* attribute) c_g_file_info_get_attribute_uint64;
const(char)* function(GFileInfo* info) c_g_file_info_get_content_type;
GDateTime* function(GFileInfo* info) c_g_file_info_get_deletion_date;
const(char)* function(GFileInfo* info) c_g_file_info_get_display_name;
const(char)* function(GFileInfo* info) c_g_file_info_get_edit_name;
const(char)* function(GFileInfo* info) c_g_file_info_get_etag;
GFileType function(GFileInfo* info) c_g_file_info_get_file_type;
GIcon* function(GFileInfo* info) c_g_file_info_get_icon;
int function(GFileInfo* info) c_g_file_info_get_is_backup;
int function(GFileInfo* info) c_g_file_info_get_is_hidden;
int function(GFileInfo* info) c_g_file_info_get_is_symlink;
GDateTime* function(GFileInfo* info) c_g_file_info_get_modification_date_time;
void function(GFileInfo* info, GTimeVal* result) c_g_file_info_get_modification_time;
char* function(GFileInfo* info) c_g_file_info_get_name;
long function(GFileInfo* info) c_g_file_info_get_size;
int function(GFileInfo* info) c_g_file_info_get_sort_order;
GIcon* function(GFileInfo* info) c_g_file_info_get_symbolic_icon;
const(char)* function(GFileInfo* info) c_g_file_info_get_symlink_target;
int function(GFileInfo* info, const(char)* attribute) c_g_file_info_has_attribute;
int function(GFileInfo* info, const(char)* nameSpace) c_g_file_info_has_namespace;
char** function(GFileInfo* info, const(char)* nameSpace) c_g_file_info_list_attributes;
void function(GFileInfo* info, const(char)* attribute) c_g_file_info_remove_attribute;
void function(GFileInfo* info, const(char)* attribute, GFileAttributeType type, void* valueP) c_g_file_info_set_attribute;
void function(GFileInfo* info, const(char)* attribute, int attrValue) c_g_file_info_set_attribute_boolean;
void function(GFileInfo* info, const(char)* attribute, const(char)* attrValue) c_g_file_info_set_attribute_byte_string;
void function(GFileInfo* info, const(char)* attribute, int attrValue) c_g_file_info_set_attribute_int32;
void function(GFileInfo* info, const(char)* attribute, long attrValue) c_g_file_info_set_attribute_int64;
void function(GFileInfo* info, GFileAttributeMatcher* mask) c_g_file_info_set_attribute_mask;
void function(GFileInfo* info, const(char)* attribute, GObject* attrValue) c_g_file_info_set_attribute_object;
int function(GFileInfo* info, const(char)* attribute, GFileAttributeStatus status) c_g_file_info_set_attribute_status;
void function(GFileInfo* info, const(char)* attribute, const(char)* attrValue) c_g_file_info_set_attribute_string;
void function(GFileInfo* info, const(char)* attribute, char** attrValue) c_g_file_info_set_attribute_stringv;
void function(GFileInfo* info, const(char)* attribute, uint attrValue) c_g_file_info_set_attribute_uint32;
void function(GFileInfo* info, const(char)* attribute, ulong attrValue) c_g_file_info_set_attribute_uint64;
void function(GFileInfo* info, const(char)* contentType) c_g_file_info_set_content_type;
void function(GFileInfo* info, const(char)* displayName) c_g_file_info_set_display_name;
void function(GFileInfo* info, const(char)* editName) c_g_file_info_set_edit_name;
void function(GFileInfo* info, GFileType type) c_g_file_info_set_file_type;
void function(GFileInfo* info, GIcon* icon) c_g_file_info_set_icon;
void function(GFileInfo* info, int isHidden) c_g_file_info_set_is_hidden;
void function(GFileInfo* info, int isSymlink) c_g_file_info_set_is_symlink;
void function(GFileInfo* info, GDateTime* mtime) c_g_file_info_set_modification_date_time;
void function(GFileInfo* info, GTimeVal* mtime) c_g_file_info_set_modification_time;
void function(GFileInfo* info, char* name) c_g_file_info_set_name;
void function(GFileInfo* info, long size) c_g_file_info_set_size;
void function(GFileInfo* info, int sortOrder) c_g_file_info_set_sort_order;
void function(GFileInfo* info, GIcon* icon) c_g_file_info_set_symbolic_icon;
void function(GFileInfo* info, const(char)* symlinkTarget) c_g_file_info_set_symlink_target;
void function(GFileInfo* info) c_g_file_info_unset_attribute_mask;
// gio.FileInputStream
GType function() c_g_file_input_stream_get_type;
GFileInfo* function(GFileInputStream* stream, const(char)* attributes, GCancellable* cancellable, GError** err) c_g_file_input_stream_query_info;
void function(GFileInputStream* stream, const(char)* attributes, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_input_stream_query_info_async;
GFileInfo* function(GFileInputStream* stream, GAsyncResult* result, GError** err) c_g_file_input_stream_query_info_finish;
// gio.FileMonitor
GType function() c_g_file_monitor_get_type;
int function(GFileMonitor* monitor) c_g_file_monitor_cancel;
void function(GFileMonitor* monitor, GFile* child, GFile* otherFile, GFileMonitorEvent eventType) c_g_file_monitor_emit_event;
int function(GFileMonitor* monitor) c_g_file_monitor_is_cancelled;
void function(GFileMonitor* monitor, int limitMsecs) c_g_file_monitor_set_rate_limit;
// gio.FileOutputStream
GType function() c_g_file_output_stream_get_type;
char* function(GFileOutputStream* stream) c_g_file_output_stream_get_etag;
GFileInfo* function(GFileOutputStream* stream, const(char)* attributes, GCancellable* cancellable, GError** err) c_g_file_output_stream_query_info;
void function(GFileOutputStream* stream, const(char)* attributes, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_file_output_stream_query_info_async;
GFileInfo* function(GFileOutputStream* stream, GAsyncResult* result, GError** err) c_g_file_output_stream_query_info_finish;
// gio.FilenameCompleter
GType function() c_g_filename_completer_get_type;
GFilenameCompleter* function() c_g_filename_completer_new;
char* function(GFilenameCompleter* completer, const(char)* initialText) c_g_filename_completer_get_completion_suffix;
char** function(GFilenameCompleter* completer, const(char)* initialText) c_g_filename_completer_get_completions;
void function(GFilenameCompleter* completer, int dirsOnly) c_g_filename_completer_set_dirs_only;
// gio.FilterInputStream
GType function() c_g_filter_input_stream_get_type;
GInputStream* function(GFilterInputStream* stream) c_g_filter_input_stream_get_base_stream;
int function(GFilterInputStream* stream) c_g_filter_input_stream_get_close_base_stream;
void function(GFilterInputStream* stream, int closeBase) c_g_filter_input_stream_set_close_base_stream;
// gio.FilterOutputStream
GType function() c_g_filter_output_stream_get_type;
GOutputStream* function(GFilterOutputStream* stream) c_g_filter_output_stream_get_base_stream;
int function(GFilterOutputStream* stream) c_g_filter_output_stream_get_close_base_stream;
void function(GFilterOutputStream* stream, int closeBase) c_g_filter_output_stream_set_close_base_stream;
// gio.IOExtension
const(char)* function(GIOExtension* extension) c_g_io_extension_get_name;
int function(GIOExtension* extension) c_g_io_extension_get_priority;
GType function(GIOExtension* extension) c_g_io_extension_get_type;
GTypeClass* function(GIOExtension* extension) c_g_io_extension_ref_class;
// gio.IOExtensionPoint
GIOExtension* function(GIOExtensionPoint* extensionPoint, const(char)* name) c_g_io_extension_point_get_extension_by_name;
GList* function(GIOExtensionPoint* extensionPoint) c_g_io_extension_point_get_extensions;
GType function(GIOExtensionPoint* extensionPoint) c_g_io_extension_point_get_required_type;
void function(GIOExtensionPoint* extensionPoint, GType type) c_g_io_extension_point_set_required_type;
GIOExtension* function(const(char)* extensionPointName, GType type, const(char)* extensionName, int priority) c_g_io_extension_point_implement;
GIOExtensionPoint* function(const(char)* name) c_g_io_extension_point_lookup;
GIOExtensionPoint* function(const(char)* name) c_g_io_extension_point_register;
// gio.IOModule
GType function() c_g_io_module_get_type;
GIOModule* function(char* filename) c_g_io_module_new;
GList* function(char* dirname) c_g_io_modules_load_all_in_directory;
GList* function(char* dirname, GIOModuleScope* scope_) c_g_io_modules_load_all_in_directory_with_scope;
void function(char* dirname) c_g_io_modules_scan_all_in_directory;
void function(char* dirname, GIOModuleScope* scope_) c_g_io_modules_scan_all_in_directory_with_scope;
// gio.IOModuleScope
void function(GIOModuleScope* scope_, const(char)* basename) c_g_io_module_scope_block;
void function(GIOModuleScope* scope_) c_g_io_module_scope_free;
GIOModuleScope* function(GIOModuleScopeFlags flags) c_g_io_module_scope_new;
// gio.IOSchedulerJob
int function(GIOSchedulerJob* job, GSourceFunc func, void* userData, GDestroyNotify notify) c_g_io_scheduler_job_send_to_mainloop;
void function(GIOSchedulerJob* job, GSourceFunc func, void* userData, GDestroyNotify notify) c_g_io_scheduler_job_send_to_mainloop_async;
void function() c_g_io_scheduler_cancel_all_jobs;
void function(GIOSchedulerJobFunc jobFunc, void* userData, GDestroyNotify notify, int ioPriority, GCancellable* cancellable) c_g_io_scheduler_push_job;
// gio.IOStream
GType function() c_g_io_stream_get_type;
int function(GAsyncResult* result, GError** err) c_g_io_stream_splice_finish;
void function(GIOStream* stream) c_g_io_stream_clear_pending;
int function(GIOStream* stream, GCancellable* cancellable, GError** err) c_g_io_stream_close;
void function(GIOStream* stream, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_io_stream_close_async;
int function(GIOStream* stream, GAsyncResult* result, GError** err) c_g_io_stream_close_finish;
GInputStream* function(GIOStream* stream) c_g_io_stream_get_input_stream;
GOutputStream* function(GIOStream* stream) c_g_io_stream_get_output_stream;
int function(GIOStream* stream) c_g_io_stream_has_pending;
int function(GIOStream* stream) c_g_io_stream_is_closed;
int function(GIOStream* stream, GError** err) c_g_io_stream_set_pending;
void function(GIOStream* stream1, GIOStream* stream2, GIOStreamSpliceFlags flags, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_io_stream_splice_async;
// gio.Icon
GType function() c_g_icon_get_type;
GIcon* function(GVariant* value) c_g_icon_deserialize;
uint function(void* icon) c_g_icon_hash;
GIcon* function(const(char)* str, GError** err) c_g_icon_new_for_string;
int function(GIcon* icon1, GIcon* icon2) c_g_icon_equal;
GVariant* function(GIcon* icon) c_g_icon_serialize;
char* function(GIcon* icon) c_g_icon_to_string;
// gio.InetAddress
GType function() c_g_inet_address_get_type;
GInetAddress* function(GSocketFamily family) c_g_inet_address_new_any;
GInetAddress* function(ubyte* bytes, GSocketFamily family) c_g_inet_address_new_from_bytes;
GInetAddress* function(const(char)* string_) c_g_inet_address_new_from_string;
GInetAddress* function(GSocketFamily family) c_g_inet_address_new_loopback;
int function(GInetAddress* address, GInetAddress* otherAddress) c_g_inet_address_equal;
GSocketFamily function(GInetAddress* address) c_g_inet_address_get_family;
int function(GInetAddress* address) c_g_inet_address_get_is_any;
int function(GInetAddress* address) c_g_inet_address_get_is_link_local;
int function(GInetAddress* address) c_g_inet_address_get_is_loopback;
int function(GInetAddress* address) c_g_inet_address_get_is_mc_global;
int function(GInetAddress* address) c_g_inet_address_get_is_mc_link_local;
int function(GInetAddress* address) c_g_inet_address_get_is_mc_node_local;
int function(GInetAddress* address) c_g_inet_address_get_is_mc_org_local;
int function(GInetAddress* address) c_g_inet_address_get_is_mc_site_local;
int function(GInetAddress* address) c_g_inet_address_get_is_multicast;
int function(GInetAddress* address) c_g_inet_address_get_is_site_local;
size_t function(GInetAddress* address) c_g_inet_address_get_native_size;
ubyte* function(GInetAddress* address) c_g_inet_address_to_bytes;
char* function(GInetAddress* address) c_g_inet_address_to_string;
// gio.InetAddressMask
GType function() c_g_inet_address_mask_get_type;
GInetAddressMask* function(GInetAddress* addr, uint length, GError** err) c_g_inet_address_mask_new;
GInetAddressMask* function(const(char)* maskString, GError** err) c_g_inet_address_mask_new_from_string;
int function(GInetAddressMask* mask, GInetAddressMask* mask2) c_g_inet_address_mask_equal;
GInetAddress* function(GInetAddressMask* mask) c_g_inet_address_mask_get_address;
GSocketFamily function(GInetAddressMask* mask) c_g_inet_address_mask_get_family;
uint function(GInetAddressMask* mask) c_g_inet_address_mask_get_length;
int function(GInetAddressMask* mask, GInetAddress* address) c_g_inet_address_mask_matches;
char* function(GInetAddressMask* mask) c_g_inet_address_mask_to_string;
// gio.InetSocketAddress
GType function() c_g_inet_socket_address_get_type;
GSocketAddress* function(GInetAddress* address, ushort port) c_g_inet_socket_address_new;
GSocketAddress* function(const(char)* address, uint port) c_g_inet_socket_address_new_from_string;
GInetAddress* function(GInetSocketAddress* address) c_g_inet_socket_address_get_address;
uint function(GInetSocketAddress* address) c_g_inet_socket_address_get_flowinfo;
ushort function(GInetSocketAddress* address) c_g_inet_socket_address_get_port;
uint function(GInetSocketAddress* address) c_g_inet_socket_address_get_scope_id;
// gio.Initable
GType function() c_g_initable_get_type;
void* function(GType objectType, GCancellable* cancellable, GError** error, const(char)* firstPropertyName, ... ) c_g_initable_new;
GObject* function(GType objectType, const(char)* firstPropertyName, void* varArgs, GCancellable* cancellable, GError** err) c_g_initable_new_valist;
void* function(GType objectType, uint nParameters, GParameter* parameters, GCancellable* cancellable, GError** err) c_g_initable_newv;
int function(GInitable* initable, GCancellable* cancellable, GError** err) c_g_initable_init;
// gio.InputStream
GType function() c_g_input_stream_get_type;
void function(GInputStream* stream) c_g_input_stream_clear_pending;
int function(GInputStream* stream, GCancellable* cancellable, GError** err) c_g_input_stream_close;
void function(GInputStream* stream, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_input_stream_close_async;
int function(GInputStream* stream, GAsyncResult* result, GError** err) c_g_input_stream_close_finish;
int function(GInputStream* stream) c_g_input_stream_has_pending;
int function(GInputStream* stream) c_g_input_stream_is_closed;
ptrdiff_t function(GInputStream* stream, void* buffer, size_t count, GCancellable* cancellable, GError** err) c_g_input_stream_read;
int function(GInputStream* stream, void* buffer, size_t count, size_t* bytesRead, GCancellable* cancellable, GError** err) c_g_input_stream_read_all;
void function(GInputStream* stream, void* buffer, size_t count, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_input_stream_read_all_async;
int function(GInputStream* stream, GAsyncResult* result, size_t* bytesRead, GError** err) c_g_input_stream_read_all_finish;
void function(GInputStream* stream, void* buffer, size_t count, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_input_stream_read_async;
GBytes* function(GInputStream* stream, size_t count, GCancellable* cancellable, GError** err) c_g_input_stream_read_bytes;
void function(GInputStream* stream, size_t count, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_input_stream_read_bytes_async;
GBytes* function(GInputStream* stream, GAsyncResult* result, GError** err) c_g_input_stream_read_bytes_finish;
ptrdiff_t function(GInputStream* stream, GAsyncResult* result, GError** err) c_g_input_stream_read_finish;
int function(GInputStream* stream, GError** err) c_g_input_stream_set_pending;
ptrdiff_t function(GInputStream* stream, size_t count, GCancellable* cancellable, GError** err) c_g_input_stream_skip;
void function(GInputStream* stream, size_t count, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_input_stream_skip_async;
ptrdiff_t function(GInputStream* stream, GAsyncResult* result, GError** err) c_g_input_stream_skip_finish;
// gio.ListModel
GType function() c_g_list_model_get_type;
void* function(GListModel* list, uint position) c_g_list_model_get_item;
GType function(GListModel* list) c_g_list_model_get_item_type;
uint function(GListModel* list) c_g_list_model_get_n_items;
GObject* function(GListModel* list, uint position) c_g_list_model_get_object;
void function(GListModel* list, uint position, uint removed, uint added) c_g_list_model_items_changed;
// gio.ListStore
GType function() c_g_list_store_get_type;
GListStore* function(GType itemType) c_g_list_store_new;
void function(GListStore* store, void* item) c_g_list_store_append;
int function(GListStore* store, void* item, uint* position) c_g_list_store_find;
int function(GListStore* store, void* item, GEqualFunc equalFunc, uint* position) c_g_list_store_find_with_equal_func;
void function(GListStore* store, uint position, void* item) c_g_list_store_insert;
uint function(GListStore* store, void* item, GCompareDataFunc compareFunc, void* userData) c_g_list_store_insert_sorted;
void function(GListStore* store, uint position) c_g_list_store_remove;
void function(GListStore* store) c_g_list_store_remove_all;
void function(GListStore* store, GCompareDataFunc compareFunc, void* userData) c_g_list_store_sort;
void function(GListStore* store, uint position, uint nRemovals, void** additions, uint nAdditions) c_g_list_store_splice;
// gio.LoadableIcon
GType function() c_g_loadable_icon_get_type;
GInputStream* function(GLoadableIcon* icon, int size, char** type, GCancellable* cancellable, GError** err) c_g_loadable_icon_load;
void function(GLoadableIcon* icon, int size, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_loadable_icon_load_async;
GInputStream* function(GLoadableIcon* icon, GAsyncResult* res, char** type, GError** err) c_g_loadable_icon_load_finish;
// gio.MemoryInputStream
GType function() c_g_memory_input_stream_get_type;
GInputStream* function() c_g_memory_input_stream_new;
GInputStream* function(GBytes* bytes) c_g_memory_input_stream_new_from_bytes;
GInputStream* function(void* data, ptrdiff_t len, GDestroyNotify destroy) c_g_memory_input_stream_new_from_data;
void function(GMemoryInputStream* stream, GBytes* bytes) c_g_memory_input_stream_add_bytes;
void function(GMemoryInputStream* stream, void* data, ptrdiff_t len, GDestroyNotify destroy) c_g_memory_input_stream_add_data;
// gio.MemoryMonitor
GType function() c_g_memory_monitor_get_type;
GMemoryMonitor* function() c_g_memory_monitor_dup_default;
// gio.MemoryOutputStream
GType function() c_g_memory_output_stream_get_type;
GOutputStream* function(void* data, size_t size, GReallocFunc reallocFunction, GDestroyNotify destroyFunction) c_g_memory_output_stream_new;
GOutputStream* function() c_g_memory_output_stream_new_resizable;
void* function(GMemoryOutputStream* ostream) c_g_memory_output_stream_get_data;
size_t function(GMemoryOutputStream* ostream) c_g_memory_output_stream_get_data_size;
size_t function(GMemoryOutputStream* ostream) c_g_memory_output_stream_get_size;
GBytes* function(GMemoryOutputStream* ostream) c_g_memory_output_stream_steal_as_bytes;
void* function(GMemoryOutputStream* ostream) c_g_memory_output_stream_steal_data;
// gio.Menu
GType function() c_g_menu_get_type;
GMenu* function() c_g_menu_new;
void function(GMenu* menu, const(char)* label, const(char)* detailedAction) c_g_menu_append;
void function(GMenu* menu, GMenuItem* item) c_g_menu_append_item;
void function(GMenu* menu, const(char)* label, GMenuModel* section) c_g_menu_append_section;
void function(GMenu* menu, const(char)* label, GMenuModel* submenu) c_g_menu_append_submenu;
void function(GMenu* menu) c_g_menu_freeze;
void function(GMenu* menu, int position, const(char)* label, const(char)* detailedAction) c_g_menu_insert;
void function(GMenu* menu, int position, GMenuItem* item) c_g_menu_insert_item;
void function(GMenu* menu, int position, const(char)* label, GMenuModel* section) c_g_menu_insert_section;
void function(GMenu* menu, int position, const(char)* label, GMenuModel* submenu) c_g_menu_insert_submenu;
void function(GMenu* menu, const(char)* label, const(char)* detailedAction) c_g_menu_prepend;
void function(GMenu* menu, GMenuItem* item) c_g_menu_prepend_item;
void function(GMenu* menu, const(char)* label, GMenuModel* section) c_g_menu_prepend_section;
void function(GMenu* menu, const(char)* label, GMenuModel* submenu) c_g_menu_prepend_submenu;
void function(GMenu* menu, int position) c_g_menu_remove;
void function(GMenu* menu) c_g_menu_remove_all;
// gio.MenuAttributeIter
GType function() c_g_menu_attribute_iter_get_type;
const(char)* function(GMenuAttributeIter* iter) c_g_menu_attribute_iter_get_name;
int function(GMenuAttributeIter* iter, char** outName, GVariant** value) c_g_menu_attribute_iter_get_next;
GVariant* function(GMenuAttributeIter* iter) c_g_menu_attribute_iter_get_value;
int function(GMenuAttributeIter* iter) c_g_menu_attribute_iter_next;
// gio.MenuItem
GType function() c_g_menu_item_get_type;
GMenuItem* function(const(char)* label, const(char)* detailedAction) c_g_menu_item_new;
GMenuItem* function(GMenuModel* model, int itemIndex) c_g_menu_item_new_from_model;
GMenuItem* function(const(char)* label, GMenuModel* section) c_g_menu_item_new_section;
GMenuItem* function(const(char)* label, GMenuModel* submenu) c_g_menu_item_new_submenu;
int function(GMenuItem* menuItem, const(char)* attribute, const(char)* formatString, ... ) c_g_menu_item_get_attribute;
GVariant* function(GMenuItem* menuItem, const(char)* attribute, GVariantType* expectedType) c_g_menu_item_get_attribute_value;
GMenuModel* function(GMenuItem* menuItem, const(char)* link) c_g_menu_item_get_link;
void function(GMenuItem* menuItem, const(char)* action, const(char)* formatString, ... ) c_g_menu_item_set_action_and_target;
void function(GMenuItem* menuItem, const(char)* action, GVariant* targetValue) c_g_menu_item_set_action_and_target_value;
void function(GMenuItem* menuItem, const(char)* attribute, const(char)* formatString, ... ) c_g_menu_item_set_attribute;
void function(GMenuItem* menuItem, const(char)* attribute, GVariant* value) c_g_menu_item_set_attribute_value;
void function(GMenuItem* menuItem, const(char)* detailedAction) c_g_menu_item_set_detailed_action;
void function(GMenuItem* menuItem, GIcon* icon) c_g_menu_item_set_icon;
void function(GMenuItem* menuItem, const(char)* label) c_g_menu_item_set_label;
void function(GMenuItem* menuItem, const(char)* link, GMenuModel* model) c_g_menu_item_set_link;
void function(GMenuItem* menuItem, GMenuModel* section) c_g_menu_item_set_section;
void function(GMenuItem* menuItem, GMenuModel* submenu) c_g_menu_item_set_submenu;
// gio.MenuLinkIter
GType function() c_g_menu_link_iter_get_type;
const(char)* function(GMenuLinkIter* iter) c_g_menu_link_iter_get_name;
int function(GMenuLinkIter* iter, char** outLink, GMenuModel** value) c_g_menu_link_iter_get_next;
GMenuModel* function(GMenuLinkIter* iter) c_g_menu_link_iter_get_value;
int function(GMenuLinkIter* iter) c_g_menu_link_iter_next;
// gio.MenuModel
GType function() c_g_menu_model_get_type;
int function(GMenuModel* model, int itemIndex, const(char)* attribute, const(char)* formatString, ... ) c_g_menu_model_get_item_attribute;
GVariant* function(GMenuModel* model, int itemIndex, const(char)* attribute, GVariantType* expectedType) c_g_menu_model_get_item_attribute_value;
GMenuModel* function(GMenuModel* model, int itemIndex, const(char)* link) c_g_menu_model_get_item_link;
int function(GMenuModel* model) c_g_menu_model_get_n_items;
int function(GMenuModel* model) c_g_menu_model_is_mutable;
void function(GMenuModel* model, int position, int removed, int added) c_g_menu_model_items_changed;
GMenuAttributeIter* function(GMenuModel* model, int itemIndex) c_g_menu_model_iterate_item_attributes;
GMenuLinkIter* function(GMenuModel* model, int itemIndex) c_g_menu_model_iterate_item_links;
// gio.Mount
GType function() c_g_mount_get_type;
int function(GMount* mount) c_g_mount_can_eject;
int function(GMount* mount) c_g_mount_can_unmount;
void function(GMount* mount, GMountUnmountFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_mount_eject;
int function(GMount* mount, GAsyncResult* result, GError** err) c_g_mount_eject_finish;
void function(GMount* mount, GMountUnmountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_mount_eject_with_operation;
int function(GMount* mount, GAsyncResult* result, GError** err) c_g_mount_eject_with_operation_finish;
GFile* function(GMount* mount) c_g_mount_get_default_location;
GDrive* function(GMount* mount) c_g_mount_get_drive;
GIcon* function(GMount* mount) c_g_mount_get_icon;
char* function(GMount* mount) c_g_mount_get_name;
GFile* function(GMount* mount) c_g_mount_get_root;
const(char)* function(GMount* mount) c_g_mount_get_sort_key;
GIcon* function(GMount* mount) c_g_mount_get_symbolic_icon;
char* function(GMount* mount) c_g_mount_get_uuid;
GVolume* function(GMount* mount) c_g_mount_get_volume;
void function(GMount* mount, int forceRescan, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_mount_guess_content_type;
char** function(GMount* mount, GAsyncResult* result, GError** err) c_g_mount_guess_content_type_finish;
char** function(GMount* mount, int forceRescan, GCancellable* cancellable, GError** err) c_g_mount_guess_content_type_sync;
int function(GMount* mount) c_g_mount_is_shadowed;
void function(GMount* mount, GMountMountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_mount_remount;
int function(GMount* mount, GAsyncResult* result, GError** err) c_g_mount_remount_finish;
void function(GMount* mount) c_g_mount_shadow;
void function(GMount* mount, GMountUnmountFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_mount_unmount;
int function(GMount* mount, GAsyncResult* result, GError** err) c_g_mount_unmount_finish;
void function(GMount* mount, GMountUnmountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_mount_unmount_with_operation;
int function(GMount* mount, GAsyncResult* result, GError** err) c_g_mount_unmount_with_operation_finish;
void function(GMount* mount) c_g_mount_unshadow;
// gio.MountOperation
GType function() c_g_mount_operation_get_type;
GMountOperation* function() c_g_mount_operation_new;
int function(GMountOperation* op) c_g_mount_operation_get_anonymous;
int function(GMountOperation* op) c_g_mount_operation_get_choice;
const(char)* function(GMountOperation* op) c_g_mount_operation_get_domain;
int function(GMountOperation* op) c_g_mount_operation_get_is_tcrypt_hidden_volume;
int function(GMountOperation* op) c_g_mount_operation_get_is_tcrypt_system_volume;
const(char)* function(GMountOperation* op) c_g_mount_operation_get_password;
GPasswordSave function(GMountOperation* op) c_g_mount_operation_get_password_save;
uint function(GMountOperation* op) c_g_mount_operation_get_pim;
const(char)* function(GMountOperation* op) c_g_mount_operation_get_username;
void function(GMountOperation* op, GMountOperationResult result) c_g_mount_operation_reply;
void function(GMountOperation* op, int anonymous) c_g_mount_operation_set_anonymous;
void function(GMountOperation* op, int choice) c_g_mount_operation_set_choice;
void function(GMountOperation* op, const(char)* domain) c_g_mount_operation_set_domain;
void function(GMountOperation* op, int hiddenVolume) c_g_mount_operation_set_is_tcrypt_hidden_volume;
void function(GMountOperation* op, int systemVolume) c_g_mount_operation_set_is_tcrypt_system_volume;
void function(GMountOperation* op, const(char)* password) c_g_mount_operation_set_password;
void function(GMountOperation* op, GPasswordSave save) c_g_mount_operation_set_password_save;
void function(GMountOperation* op, uint pim) c_g_mount_operation_set_pim;
void function(GMountOperation* op, const(char)* username) c_g_mount_operation_set_username;
// gio.NativeSocketAddress
GType function() c_g_native_socket_address_get_type;
GSocketAddress* function(void* native, size_t len) c_g_native_socket_address_new;
// gio.NativeVolumeMonitor
GType function() c_g_native_volume_monitor_get_type;
// gio.NetworkAddress
GType function() c_g_network_address_get_type;
GSocketConnectable* function(const(char)* hostname, ushort port) c_g_network_address_new;
GSocketConnectable* function(ushort port) c_g_network_address_new_loopback;
GSocketConnectable* function(const(char)* hostAndPort, ushort defaultPort, GError** err) c_g_network_address_parse;
GSocketConnectable* function(const(char)* uri, ushort defaultPort, GError** err) c_g_network_address_parse_uri;
const(char)* function(GNetworkAddress* addr) c_g_network_address_get_hostname;
ushort function(GNetworkAddress* addr) c_g_network_address_get_port;
const(char)* function(GNetworkAddress* addr) c_g_network_address_get_scheme;
// gio.NetworkMonitor
GType function() c_g_network_monitor_get_type;
GNetworkMonitor* function() c_g_network_monitor_get_default;
int function(GNetworkMonitor* monitor, GSocketConnectable* connectable, GCancellable* cancellable, GError** err) c_g_network_monitor_can_reach;
void function(GNetworkMonitor* monitor, GSocketConnectable* connectable, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_network_monitor_can_reach_async;
int function(GNetworkMonitor* monitor, GAsyncResult* result, GError** err) c_g_network_monitor_can_reach_finish;
GNetworkConnectivity function(GNetworkMonitor* monitor) c_g_network_monitor_get_connectivity;
int function(GNetworkMonitor* monitor) c_g_network_monitor_get_network_available;
int function(GNetworkMonitor* monitor) c_g_network_monitor_get_network_metered;
// gio.NetworkService
GType function() c_g_network_service_get_type;
GSocketConnectable* function(const(char)* service, const(char)* protocol, const(char)* domain) c_g_network_service_new;
const(char)* function(GNetworkService* srv) c_g_network_service_get_domain;
const(char)* function(GNetworkService* srv) c_g_network_service_get_protocol;
const(char)* function(GNetworkService* srv) c_g_network_service_get_scheme;
const(char)* function(GNetworkService* srv) c_g_network_service_get_service;
void function(GNetworkService* srv, const(char)* scheme) c_g_network_service_set_scheme;
// gio.Notification
GType function() c_g_notification_get_type;
GNotification* function(const(char)* title) c_g_notification_new;
void function(GNotification* notification, const(char)* label, const(char)* detailedAction) c_g_notification_add_button;
void function(GNotification* notification, const(char)* label, const(char)* action, const(char)* targetFormat, ... ) c_g_notification_add_button_with_target;
void function(GNotification* notification, const(char)* label, const(char)* action, GVariant* target) c_g_notification_add_button_with_target_value;
void function(GNotification* notification, const(char)* body_) c_g_notification_set_body;
void function(GNotification* notification, const(char)* detailedAction) c_g_notification_set_default_action;
void function(GNotification* notification, const(char)* action, const(char)* targetFormat, ... ) c_g_notification_set_default_action_and_target;
void function(GNotification* notification, const(char)* action, GVariant* target) c_g_notification_set_default_action_and_target_value;
void function(GNotification* notification, GIcon* icon) c_g_notification_set_icon;
void function(GNotification* notification, GNotificationPriority priority) c_g_notification_set_priority;
void function(GNotification* notification, const(char)* title) c_g_notification_set_title;
void function(GNotification* notification, int urgent) c_g_notification_set_urgent;
// gio.OutputStream
GType function() c_g_output_stream_get_type;
void function(GOutputStream* stream) c_g_output_stream_clear_pending;
int function(GOutputStream* stream, GCancellable* cancellable, GError** err) c_g_output_stream_close;
void function(GOutputStream* stream, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_output_stream_close_async;
int function(GOutputStream* stream, GAsyncResult* result, GError** err) c_g_output_stream_close_finish;
int function(GOutputStream* stream, GCancellable* cancellable, GError** err) c_g_output_stream_flush;
void function(GOutputStream* stream, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_output_stream_flush_async;
int function(GOutputStream* stream, GAsyncResult* result, GError** err) c_g_output_stream_flush_finish;
int function(GOutputStream* stream) c_g_output_stream_has_pending;
int function(GOutputStream* stream) c_g_output_stream_is_closed;
int function(GOutputStream* stream) c_g_output_stream_is_closing;
int function(GOutputStream* stream, size_t* bytesWritten, GCancellable* cancellable, GError** error, const(char)* format, ... ) c_g_output_stream_printf;
int function(GOutputStream* stream, GError** err) c_g_output_stream_set_pending;
ptrdiff_t function(GOutputStream* stream, GInputStream* source, GOutputStreamSpliceFlags flags, GCancellable* cancellable, GError** err) c_g_output_stream_splice;
void function(GOutputStream* stream, GInputStream* source, GOutputStreamSpliceFlags flags, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_output_stream_splice_async;
ptrdiff_t function(GOutputStream* stream, GAsyncResult* result, GError** err) c_g_output_stream_splice_finish;
int function(GOutputStream* stream, size_t* bytesWritten, GCancellable* cancellable, GError** error, const(char)* format, void* args) c_g_output_stream_vprintf;
ptrdiff_t function(GOutputStream* stream, void* buffer, size_t count, GCancellable* cancellable, GError** err) c_g_output_stream_write;
int function(GOutputStream* stream, void* buffer, size_t count, size_t* bytesWritten, GCancellable* cancellable, GError** err) c_g_output_stream_write_all;
void function(GOutputStream* stream, void* buffer, size_t count, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_output_stream_write_all_async;
int function(GOutputStream* stream, GAsyncResult* result, size_t* bytesWritten, GError** err) c_g_output_stream_write_all_finish;
void function(GOutputStream* stream, void* buffer, size_t count, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_output_stream_write_async;
ptrdiff_t function(GOutputStream* stream, GBytes* bytes, GCancellable* cancellable, GError** err) c_g_output_stream_write_bytes;
void function(GOutputStream* stream, GBytes* bytes, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_output_stream_write_bytes_async;
ptrdiff_t function(GOutputStream* stream, GAsyncResult* result, GError** err) c_g_output_stream_write_bytes_finish;
ptrdiff_t function(GOutputStream* stream, GAsyncResult* result, GError** err) c_g_output_stream_write_finish;
int function(GOutputStream* stream, GOutputVector* vectors, size_t nVectors, size_t* bytesWritten, GCancellable* cancellable, GError** err) c_g_output_stream_writev;
int function(GOutputStream* stream, GOutputVector* vectors, size_t nVectors, size_t* bytesWritten, GCancellable* cancellable, GError** err) c_g_output_stream_writev_all;
void function(GOutputStream* stream, GOutputVector* vectors, size_t nVectors, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_output_stream_writev_all_async;
int function(GOutputStream* stream, GAsyncResult* result, size_t* bytesWritten, GError** err) c_g_output_stream_writev_all_finish;
void function(GOutputStream* stream, GOutputVector* vectors, size_t nVectors, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_output_stream_writev_async;
int function(GOutputStream* stream, GAsyncResult* result, size_t* bytesWritten, GError** err) c_g_output_stream_writev_finish;
// gio.Permission
GType function() c_g_permission_get_type;
int function(GPermission* permission, GCancellable* cancellable, GError** err) c_g_permission_acquire;
void function(GPermission* permission, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_permission_acquire_async;
int function(GPermission* permission, GAsyncResult* result, GError** err) c_g_permission_acquire_finish;
int function(GPermission* permission) c_g_permission_get_allowed;
int function(GPermission* permission) c_g_permission_get_can_acquire;
int function(GPermission* permission) c_g_permission_get_can_release;
void function(GPermission* permission, int allowed, int canAcquire, int canRelease) c_g_permission_impl_update;
int function(GPermission* permission, GCancellable* cancellable, GError** err) c_g_permission_release;
void function(GPermission* permission, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_permission_release_async;
int function(GPermission* permission, GAsyncResult* result, GError** err) c_g_permission_release_finish;
// gio.PollableInputStream
GType function() c_g_pollable_input_stream_get_type;
int function(GPollableInputStream* stream) c_g_pollable_input_stream_can_poll;
GSource* function(GPollableInputStream* stream, GCancellable* cancellable) c_g_pollable_input_stream_create_source;
int function(GPollableInputStream* stream) c_g_pollable_input_stream_is_readable;
ptrdiff_t function(GPollableInputStream* stream, void* buffer, size_t count, GCancellable* cancellable, GError** err) c_g_pollable_input_stream_read_nonblocking;
// gio.PollableOutputStream
GType function() c_g_pollable_output_stream_get_type;
int function(GPollableOutputStream* stream) c_g_pollable_output_stream_can_poll;
GSource* function(GPollableOutputStream* stream, GCancellable* cancellable) c_g_pollable_output_stream_create_source;
int function(GPollableOutputStream* stream) c_g_pollable_output_stream_is_writable;
ptrdiff_t function(GPollableOutputStream* stream, void* buffer, size_t count, GCancellable* cancellable, GError** err) c_g_pollable_output_stream_write_nonblocking;
GPollableReturn function(GPollableOutputStream* stream, GOutputVector* vectors, size_t nVectors, size_t* bytesWritten, GCancellable* cancellable, GError** err) c_g_pollable_output_stream_writev_nonblocking;
// gio.PropertyAction
GType function() c_g_property_action_get_type;
GPropertyAction* function(const(char)* name, void* object, const(char)* propertyName) c_g_property_action_new;
// gio.Proxy
GType function() c_g_proxy_get_type;
GProxy* function(const(char)* protocol) c_g_proxy_get_default_for_protocol;
GIOStream* function(GProxy* proxy, GIOStream* connection, GProxyAddress* proxyAddress, GCancellable* cancellable, GError** err) c_g_proxy_connect;
void function(GProxy* proxy, GIOStream* connection, GProxyAddress* proxyAddress, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_proxy_connect_async;
GIOStream* function(GProxy* proxy, GAsyncResult* result, GError** err) c_g_proxy_connect_finish;
int function(GProxy* proxy) c_g_proxy_supports_hostname;
// gio.ProxyAddress
GType function() c_g_proxy_address_get_type;
GSocketAddress* function(GInetAddress* inetaddr, ushort port, const(char)* protocol, const(char)* destHostname, ushort destPort, const(char)* username, const(char)* password) c_g_proxy_address_new;
const(char)* function(GProxyAddress* proxy) c_g_proxy_address_get_destination_hostname;
ushort function(GProxyAddress* proxy) c_g_proxy_address_get_destination_port;
const(char)* function(GProxyAddress* proxy) c_g_proxy_address_get_destination_protocol;
const(char)* function(GProxyAddress* proxy) c_g_proxy_address_get_password;
const(char)* function(GProxyAddress* proxy) c_g_proxy_address_get_protocol;
const(char)* function(GProxyAddress* proxy) c_g_proxy_address_get_uri;
const(char)* function(GProxyAddress* proxy) c_g_proxy_address_get_username;
// gio.ProxyAddressEnumerator
GType function() c_g_proxy_address_enumerator_get_type;
// gio.ProxyResolver
GType function() c_g_proxy_resolver_get_type;
GProxyResolver* function() c_g_proxy_resolver_get_default;
int function(GProxyResolver* resolver) c_g_proxy_resolver_is_supported;
char** function(GProxyResolver* resolver, const(char)* uri, GCancellable* cancellable, GError** err) c_g_proxy_resolver_lookup;
void function(GProxyResolver* resolver, const(char)* uri, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_proxy_resolver_lookup_async;
char** function(GProxyResolver* resolver, GAsyncResult* result, GError** err) c_g_proxy_resolver_lookup_finish;
// gio.RemoteActionGroup
GType function() c_g_remote_action_group_get_type;
void function(GRemoteActionGroup* remote, const(char)* actionName, GVariant* parameter, GVariant* platformData) c_g_remote_action_group_activate_action_full;
void function(GRemoteActionGroup* remote, const(char)* actionName, GVariant* value, GVariant* platformData) c_g_remote_action_group_change_action_state_full;
// gio.Resolver
GType function() c_g_resolver_get_type;
void function(GList* addresses) c_g_resolver_free_addresses;
void function(GList* targets) c_g_resolver_free_targets;
GResolver* function() c_g_resolver_get_default;
char* function(GResolver* resolver, GInetAddress* address, GCancellable* cancellable, GError** err) c_g_resolver_lookup_by_address;
void function(GResolver* resolver, GInetAddress* address, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_resolver_lookup_by_address_async;
char* function(GResolver* resolver, GAsyncResult* result, GError** err) c_g_resolver_lookup_by_address_finish;
GList* function(GResolver* resolver, const(char)* hostname, GCancellable* cancellable, GError** err) c_g_resolver_lookup_by_name;
void function(GResolver* resolver, const(char)* hostname, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_resolver_lookup_by_name_async;
GList* function(GResolver* resolver, GAsyncResult* result, GError** err) c_g_resolver_lookup_by_name_finish;
GList* function(GResolver* resolver, const(char)* hostname, GResolverNameLookupFlags flags, GCancellable* cancellable, GError** err) c_g_resolver_lookup_by_name_with_flags;
void function(GResolver* resolver, const(char)* hostname, GResolverNameLookupFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_resolver_lookup_by_name_with_flags_async;
GList* function(GResolver* resolver, GAsyncResult* result, GError** err) c_g_resolver_lookup_by_name_with_flags_finish;
GList* function(GResolver* resolver, const(char)* rrname, GResolverRecordType recordType, GCancellable* cancellable, GError** err) c_g_resolver_lookup_records;
void function(GResolver* resolver, const(char)* rrname, GResolverRecordType recordType, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_resolver_lookup_records_async;
GList* function(GResolver* resolver, GAsyncResult* result, GError** err) c_g_resolver_lookup_records_finish;
GList* function(GResolver* resolver, const(char)* service, const(char)* protocol, const(char)* domain, GCancellable* cancellable, GError** err) c_g_resolver_lookup_service;
void function(GResolver* resolver, const(char)* service, const(char)* protocol, const(char)* domain, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_resolver_lookup_service_async;
GList* function(GResolver* resolver, GAsyncResult* result, GError** err) c_g_resolver_lookup_service_finish;
void function(GResolver* resolver) c_g_resolver_set_default;
// gio.Resource
GType function() c_g_resource_get_type;
GResource* function(GBytes* data, GError** err) c_g_resource_new_from_data;
void function(GResource* resource) c_g_resources_register;
void function(GResource* resource) c_g_resources_unregister;
char** function(GResource* resource, const(char)* path, GResourceLookupFlags lookupFlags, GError** err) c_g_resource_enumerate_children;
int function(GResource* resource, const(char)* path, GResourceLookupFlags lookupFlags, size_t* size, uint* flags, GError** err) c_g_resource_get_info;
GBytes* function(GResource* resource, const(char)* path, GResourceLookupFlags lookupFlags, GError** err) c_g_resource_lookup_data;
GInputStream* function(GResource* resource, const(char)* path, GResourceLookupFlags lookupFlags, GError** err) c_g_resource_open_stream;
GResource* function(GResource* resource) c_g_resource_ref;
void function(GResource* resource) c_g_resource_unref;
GResource* function(char* filename, GError** err) c_g_resource_load;
char** function(const(char)* path, GResourceLookupFlags lookupFlags, GError** err) c_g_resources_enumerate_children;
int function(const(char)* path, GResourceLookupFlags lookupFlags, size_t* size, uint* flags, GError** err) c_g_resources_get_info;
GBytes* function(const(char)* path, GResourceLookupFlags lookupFlags, GError** err) c_g_resources_lookup_data;
GInputStream* function(const(char)* path, GResourceLookupFlags lookupFlags, GError** err) c_g_resources_open_stream;
// gio.Seekable
GType function() c_g_seekable_get_type;
int function(GSeekable* seekable) c_g_seekable_can_seek;
int function(GSeekable* seekable) c_g_seekable_can_truncate;
int function(GSeekable* seekable, long offset, GSeekType type, GCancellable* cancellable, GError** err) c_g_seekable_seek;
long function(GSeekable* seekable) c_g_seekable_tell;
int function(GSeekable* seekable, long offset, GCancellable* cancellable, GError** err) c_g_seekable_truncate;
// gio.Settings
GType function() c_g_settings_get_type;
GSettings* function(const(char)* schemaId) c_g_settings_new;
GSettings* function(GSettingsSchema* schema, GSettingsBackend* backend, const(char)* path) c_g_settings_new_full;
GSettings* function(const(char)* schemaId, GSettingsBackend* backend) c_g_settings_new_with_backend;
GSettings* function(const(char)* schemaId, GSettingsBackend* backend, const(char)* path) c_g_settings_new_with_backend_and_path;
GSettings* function(const(char)* schemaId, const(char)* path) c_g_settings_new_with_path;
char** function() c_g_settings_list_relocatable_schemas;
char** function() c_g_settings_list_schemas;
void function() c_g_settings_sync;
void function(void* object, const(char)* property) c_g_settings_unbind;
void function(GSettings* settings) c_g_settings_apply;
void function(GSettings* settings, const(char)* key, void* object, const(char)* property, GSettingsBindFlags flags) c_g_settings_bind;
void function(GSettings* settings, const(char)* key, void* object, const(char)* property, GSettingsBindFlags flags, GSettingsBindGetMapping getMapping, GSettingsBindSetMapping setMapping, void* userData, GDestroyNotify destroy) c_g_settings_bind_with_mapping;
void function(GSettings* settings, const(char)* key, void* object, const(char)* property, int inverted) c_g_settings_bind_writable;
GAction* function(GSettings* settings, const(char)* key) c_g_settings_create_action;
void function(GSettings* settings) c_g_settings_delay;
void function(GSettings* settings, const(char)* key, const(char)* format, ... ) c_g_settings_get;
int function(GSettings* settings, const(char)* key) c_g_settings_get_boolean;
GSettings* function(GSettings* settings, const(char)* name) c_g_settings_get_child;
GVariant* function(GSettings* settings, const(char)* key) c_g_settings_get_default_value;
double function(GSettings* settings, const(char)* key) c_g_settings_get_double;
int function(GSettings* settings, const(char)* key) c_g_settings_get_enum;
uint function(GSettings* settings, const(char)* key) c_g_settings_get_flags;
int function(GSettings* settings) c_g_settings_get_has_unapplied;
int function(GSettings* settings, const(char)* key) c_g_settings_get_int;
long function(GSettings* settings, const(char)* key) c_g_settings_get_int64;
void* function(GSettings* settings, const(char)* key, GSettingsGetMapping mapping, void* userData) c_g_settings_get_mapped;
GVariant* function(GSettings* settings, const(char)* key) c_g_settings_get_range;
char* function(GSettings* settings, const(char)* key) c_g_settings_get_string;
char** function(GSettings* settings, const(char)* key) c_g_settings_get_strv;
uint function(GSettings* settings, const(char)* key) c_g_settings_get_uint;
ulong function(GSettings* settings, const(char)* key) c_g_settings_get_uint64;
GVariant* function(GSettings* settings, const(char)* key) c_g_settings_get_user_value;
GVariant* function(GSettings* settings, const(char)* key) c_g_settings_get_value;
int function(GSettings* settings, const(char)* name) c_g_settings_is_writable;
char** function(GSettings* settings) c_g_settings_list_children;
char** function(GSettings* settings) c_g_settings_list_keys;
int function(GSettings* settings, const(char)* key, GVariant* value) c_g_settings_range_check;
void function(GSettings* settings, const(char)* key) c_g_settings_reset;
void function(GSettings* settings) c_g_settings_revert;
int function(GSettings* settings, const(char)* key, const(char)* format, ... ) c_g_settings_set;
int function(GSettings* settings, const(char)* key, int value) c_g_settings_set_boolean;
int function(GSettings* settings, const(char)* key, double value) c_g_settings_set_double;
int function(GSettings* settings, const(char)* key, int value) c_g_settings_set_enum;
int function(GSettings* settings, const(char)* key, uint value) c_g_settings_set_flags;
int function(GSettings* settings, const(char)* key, int value) c_g_settings_set_int;
int function(GSettings* settings, const(char)* key, long value) c_g_settings_set_int64;
int function(GSettings* settings, const(char)* key, const(char)* value) c_g_settings_set_string;
int function(GSettings* settings, const(char)* key, char** value) c_g_settings_set_strv;
int function(GSettings* settings, const(char)* key, uint value) c_g_settings_set_uint;
int function(GSettings* settings, const(char)* key, ulong value) c_g_settings_set_uint64;
int function(GSettings* settings, const(char)* key, GVariant* value) c_g_settings_set_value;
// gio.SettingsBackend
GType function() c_g_settings_backend_get_type;
void function(GTree* tree, char** path, char*** keys, GVariant*** values) c_g_settings_backend_flatten_tree;
GSettingsBackend* function() c_g_settings_backend_get_default;
void function(GSettingsBackend* backend, const(char)* key, void* originTag) c_g_settings_backend_changed;
void function(GSettingsBackend* backend, GTree* tree, void* originTag) c_g_settings_backend_changed_tree;
void function(GSettingsBackend* backend, const(char)* path, char** items, void* originTag) c_g_settings_backend_keys_changed;
void function(GSettingsBackend* backend, const(char)* path, void* originTag) c_g_settings_backend_path_changed;
void function(GSettingsBackend* backend, const(char)* path) c_g_settings_backend_path_writable_changed;
void function(GSettingsBackend* backend, const(char)* key) c_g_settings_backend_writable_changed;
GSettingsBackend* function(const(char)* filename, const(char)* rootPath, const(char)* rootGroup) c_g_keyfile_settings_backend_new;
GSettingsBackend* function() c_g_memory_settings_backend_new;
GSettingsBackend* function() c_g_null_settings_backend_new;
// gio.SettingsSchema
GType function() c_g_settings_schema_get_type;
const(char)* function(GSettingsSchema* schema) c_g_settings_schema_get_id;
GSettingsSchemaKey* function(GSettingsSchema* schema, const(char)* name) c_g_settings_schema_get_key;
const(char)* function(GSettingsSchema* schema) c_g_settings_schema_get_path;
int function(GSettingsSchema* schema, const(char)* name) c_g_settings_schema_has_key;
char** function(GSettingsSchema* schema) c_g_settings_schema_list_children;
char** function(GSettingsSchema* schema) c_g_settings_schema_list_keys;
GSettingsSchema* function(GSettingsSchema* schema) c_g_settings_schema_ref;
void function(GSettingsSchema* schema) c_g_settings_schema_unref;
// gio.SettingsSchemaKey
GType function() c_g_settings_schema_key_get_type;
GVariant* function(GSettingsSchemaKey* key) c_g_settings_schema_key_get_default_value;
const(char)* function(GSettingsSchemaKey* key) c_g_settings_schema_key_get_description;
const(char)* function(GSettingsSchemaKey* key) c_g_settings_schema_key_get_name;
GVariant* function(GSettingsSchemaKey* key) c_g_settings_schema_key_get_range;
const(char)* function(GSettingsSchemaKey* key) c_g_settings_schema_key_get_summary;
GVariantType* function(GSettingsSchemaKey* key) c_g_settings_schema_key_get_value_type;
int function(GSettingsSchemaKey* key, GVariant* value) c_g_settings_schema_key_range_check;
GSettingsSchemaKey* function(GSettingsSchemaKey* key) c_g_settings_schema_key_ref;
void function(GSettingsSchemaKey* key) c_g_settings_schema_key_unref;
// gio.SettingsSchemaSource
GType function() c_g_settings_schema_source_get_type;
GSettingsSchemaSource* function(char* directory, GSettingsSchemaSource* parent, int trusted, GError** err) c_g_settings_schema_source_new_from_directory;
void function(GSettingsSchemaSource* source, int recursive, char*** nonRelocatable, char*** relocatable) c_g_settings_schema_source_list_schemas;
GSettingsSchema* function(GSettingsSchemaSource* source, const(char)* schemaId, int recursive) c_g_settings_schema_source_lookup;
GSettingsSchemaSource* function(GSettingsSchemaSource* source) c_g_settings_schema_source_ref;
void function(GSettingsSchemaSource* source) c_g_settings_schema_source_unref;
GSettingsSchemaSource* function() c_g_settings_schema_source_get_default;
// gio.SimpleAction
GType function() c_g_simple_action_get_type;
GSimpleAction* function(const(char)* name, GVariantType* parameterType) c_g_simple_action_new;
GSimpleAction* function(const(char)* name, GVariantType* parameterType, GVariant* state) c_g_simple_action_new_stateful;
void function(GSimpleAction* simple, int enabled) c_g_simple_action_set_enabled;
void function(GSimpleAction* simple, GVariant* value) c_g_simple_action_set_state;
void function(GSimpleAction* simple, GVariant* stateHint) c_g_simple_action_set_state_hint;
// gio.SimpleActionGroup
GType function() c_g_simple_action_group_get_type;
GSimpleActionGroup* function() c_g_simple_action_group_new;
void function(GSimpleActionGroup* simple, GActionEntry* entries, int nEntries, void* userData) c_g_simple_action_group_add_entries;
void function(GSimpleActionGroup* simple, GAction* action) c_g_simple_action_group_insert;
GAction* function(GSimpleActionGroup* simple, const(char)* actionName) c_g_simple_action_group_lookup;
void function(GSimpleActionGroup* simple, const(char)* actionName) c_g_simple_action_group_remove;
// gio.SimpleAsyncResult
GType function() c_g_simple_async_result_get_type;
GSimpleAsyncResult* function(GObject* sourceObject, GAsyncReadyCallback callback, void* userData, void* sourceTag) c_g_simple_async_result_new;
GSimpleAsyncResult* function(GObject* sourceObject, GAsyncReadyCallback callback, void* userData, GQuark domain, int code, const(char)* format, ... ) c_g_simple_async_result_new_error;
GSimpleAsyncResult* function(GObject* sourceObject, GAsyncReadyCallback callback, void* userData, GError* error) c_g_simple_async_result_new_from_error;
GSimpleAsyncResult* function(GObject* sourceObject, GAsyncReadyCallback callback, void* userData, GError* error) c_g_simple_async_result_new_take_error;
int function(GAsyncResult* result, GObject* source, void* sourceTag) c_g_simple_async_result_is_valid;
void function(GSimpleAsyncResult* simple) c_g_simple_async_result_complete;
void function(GSimpleAsyncResult* simple) c_g_simple_async_result_complete_in_idle;
int function(GSimpleAsyncResult* simple) c_g_simple_async_result_get_op_res_gboolean;
void* function(GSimpleAsyncResult* simple) c_g_simple_async_result_get_op_res_gpointer;
ptrdiff_t function(GSimpleAsyncResult* simple) c_g_simple_async_result_get_op_res_gssize;
void* function(GSimpleAsyncResult* simple) c_g_simple_async_result_get_source_tag;
int function(GSimpleAsyncResult* simple, GError** err) c_g_simple_async_result_propagate_error;
void function(GSimpleAsyncResult* simple, GSimpleAsyncThreadFunc func, int ioPriority, GCancellable* cancellable) c_g_simple_async_result_run_in_thread;
void function(GSimpleAsyncResult* simple, GCancellable* checkCancellable) c_g_simple_async_result_set_check_cancellable;
void function(GSimpleAsyncResult* simple, GQuark domain, int code, const(char)* format, ... ) c_g_simple_async_result_set_error;
void function(GSimpleAsyncResult* simple, GQuark domain, int code, const(char)* format, void* args) c_g_simple_async_result_set_error_va;
void function(GSimpleAsyncResult* simple, GError* error) c_g_simple_async_result_set_from_error;
void function(GSimpleAsyncResult* simple, int handleCancellation) c_g_simple_async_result_set_handle_cancellation;
void function(GSimpleAsyncResult* simple, int opRes) c_g_simple_async_result_set_op_res_gboolean;
void function(GSimpleAsyncResult* simple, void* opRes, GDestroyNotify destroyOpRes) c_g_simple_async_result_set_op_res_gpointer;
void function(GSimpleAsyncResult* simple, ptrdiff_t opRes) c_g_simple_async_result_set_op_res_gssize;
void function(GSimpleAsyncResult* simple, GError* error) c_g_simple_async_result_take_error;
void function(GObject* object, GAsyncReadyCallback callback, void* userData, GQuark domain, int code, const(char)* format, ... ) c_g_simple_async_report_error_in_idle;
void function(GObject* object, GAsyncReadyCallback callback, void* userData, GError* error) c_g_simple_async_report_gerror_in_idle;
void function(GObject* object, GAsyncReadyCallback callback, void* userData, GError* error) c_g_simple_async_report_take_gerror_in_idle;
// gio.SimpleIOStream
GType function() c_g_simple_io_stream_get_type;
GIOStream* function(GInputStream* inputStream, GOutputStream* outputStream) c_g_simple_io_stream_new;
// gio.SimplePermission
GType function() c_g_simple_permission_get_type;
GPermission* function(int allowed) c_g_simple_permission_new;
// gio.SimpleProxyResolver
GType function() c_g_simple_proxy_resolver_get_type;
GProxyResolver* function(const(char)* defaultProxy, char** ignoreHosts) c_g_simple_proxy_resolver_new;
void function(GSimpleProxyResolver* resolver, const(char)* defaultProxy) c_g_simple_proxy_resolver_set_default_proxy;
void function(GSimpleProxyResolver* resolver, char** ignoreHosts) c_g_simple_proxy_resolver_set_ignore_hosts;
void function(GSimpleProxyResolver* resolver, const(char)* uriScheme, const(char)* proxy) c_g_simple_proxy_resolver_set_uri_proxy;
// gio.Socket
GType function() c_g_socket_get_type;
GSocket* function(GSocketFamily family, GSocketType type, GSocketProtocol protocol, GError** err) c_g_socket_new;
GSocket* function(int fd, GError** err) c_g_socket_new_from_fd;
GSocket* function(GSocket* socket, GCancellable* cancellable, GError** err) c_g_socket_accept;
int function(GSocket* socket, GSocketAddress* address, int allowReuse, GError** err) c_g_socket_bind;
int function(GSocket* socket, GError** err) c_g_socket_check_connect_result;
int function(GSocket* socket, GError** err) c_g_socket_close;
GIOCondition function(GSocket* socket, GIOCondition condition) c_g_socket_condition_check;
int function(GSocket* socket, GIOCondition condition, long timeoutUs, GCancellable* cancellable, GError** err) c_g_socket_condition_timed_wait;
int function(GSocket* socket, GIOCondition condition, GCancellable* cancellable, GError** err) c_g_socket_condition_wait;
int function(GSocket* socket, GSocketAddress* address, GCancellable* cancellable, GError** err) c_g_socket_connect;
GSocketConnection* function(GSocket* socket) c_g_socket_connection_factory_create_connection;
GSource* function(GSocket* socket, GIOCondition condition, GCancellable* cancellable) c_g_socket_create_source;
ptrdiff_t function(GSocket* socket) c_g_socket_get_available_bytes;
int function(GSocket* socket) c_g_socket_get_blocking;
int function(GSocket* socket) c_g_socket_get_broadcast;
GCredentials* function(GSocket* socket, GError** err) c_g_socket_get_credentials;
GSocketFamily function(GSocket* socket) c_g_socket_get_family;
int function(GSocket* socket) c_g_socket_get_fd;
int function(GSocket* socket) c_g_socket_get_keepalive;
int function(GSocket* socket) c_g_socket_get_listen_backlog;
GSocketAddress* function(GSocket* socket, GError** err) c_g_socket_get_local_address;
int function(GSocket* socket) c_g_socket_get_multicast_loopback;
uint function(GSocket* socket) c_g_socket_get_multicast_ttl;
int function(GSocket* socket, int level, int optname, int* value, GError** err) c_g_socket_get_option;
GSocketProtocol function(GSocket* socket) c_g_socket_get_protocol;
GSocketAddress* function(GSocket* socket, GError** err) c_g_socket_get_remote_address;
GSocketType function(GSocket* socket) c_g_socket_get_socket_type;
uint function(GSocket* socket) c_g_socket_get_timeout;
uint function(GSocket* socket) c_g_socket_get_ttl;
int function(GSocket* socket) c_g_socket_is_closed;
int function(GSocket* socket) c_g_socket_is_connected;
int function(GSocket* socket, GInetAddress* group, int sourceSpecific, const(char)* iface, GError** err) c_g_socket_join_multicast_group;
int function(GSocket* socket, GInetAddress* group, GInetAddress* sourceSpecific, const(char)* iface, GError** err) c_g_socket_join_multicast_group_ssm;
int function(GSocket* socket, GInetAddress* group, int sourceSpecific, const(char)* iface, GError** err) c_g_socket_leave_multicast_group;
int function(GSocket* socket, GInetAddress* group, GInetAddress* sourceSpecific, const(char)* iface, GError** err) c_g_socket_leave_multicast_group_ssm;
int function(GSocket* socket, GError** err) c_g_socket_listen;
ptrdiff_t function(GSocket* socket, char* buffer, size_t size, GCancellable* cancellable, GError** err) c_g_socket_receive;
ptrdiff_t function(GSocket* socket, GSocketAddress** address, char* buffer, size_t size, GCancellable* cancellable, GError** err) c_g_socket_receive_from;
ptrdiff_t function(GSocket* socket, GSocketAddress** address, GInputVector* vectors, int numVectors, GSocketControlMessage*** messages, int* numMessages, int* flags, GCancellable* cancellable, GError** err) c_g_socket_receive_message;
int function(GSocket* socket, GInputMessage* messages, uint numMessages, int flags, GCancellable* cancellable, GError** err) c_g_socket_receive_messages;
ptrdiff_t function(GSocket* socket, char* buffer, size_t size, int blocking, GCancellable* cancellable, GError** err) c_g_socket_receive_with_blocking;
ptrdiff_t function(GSocket* socket, char* buffer, size_t size, GCancellable* cancellable, GError** err) c_g_socket_send;
ptrdiff_t function(GSocket* socket, GSocketAddress* address, GOutputVector* vectors, int numVectors, GSocketControlMessage** messages, int numMessages, int flags, GCancellable* cancellable, GError** err) c_g_socket_send_message;
GPollableReturn function(GSocket* socket, GSocketAddress* address, GOutputVector* vectors, int numVectors, GSocketControlMessage** messages, int numMessages, int flags, long timeoutUs, size_t* bytesWritten, GCancellable* cancellable, GError** err) c_g_socket_send_message_with_timeout;
int function(GSocket* socket, GOutputMessage* messages, uint numMessages, int flags, GCancellable* cancellable, GError** err) c_g_socket_send_messages;
ptrdiff_t function(GSocket* socket, GSocketAddress* address, char* buffer, size_t size, GCancellable* cancellable, GError** err) c_g_socket_send_to;
ptrdiff_t function(GSocket* socket, char* buffer, size_t size, int blocking, GCancellable* cancellable, GError** err) c_g_socket_send_with_blocking;
void function(GSocket* socket, int blocking) c_g_socket_set_blocking;
void function(GSocket* socket, int broadcast) c_g_socket_set_broadcast;
void function(GSocket* socket, int keepalive) c_g_socket_set_keepalive;
void function(GSocket* socket, int backlog) c_g_socket_set_listen_backlog;
void function(GSocket* socket, int loopback) c_g_socket_set_multicast_loopback;
void function(GSocket* socket, uint ttl) c_g_socket_set_multicast_ttl;
int function(GSocket* socket, int level, int optname, int value, GError** err) c_g_socket_set_option;
void function(GSocket* socket, uint timeout) c_g_socket_set_timeout;
void function(GSocket* socket, uint ttl) c_g_socket_set_ttl;
int function(GSocket* socket, int shutdownRead, int shutdownWrite, GError** err) c_g_socket_shutdown;
int function(GSocket* socket) c_g_socket_speaks_ipv4;
// gio.SocketAddress
GType function() c_g_socket_address_get_type;
GSocketAddress* function(void* native, size_t len) c_g_socket_address_new_from_native;
GSocketFamily function(GSocketAddress* address) c_g_socket_address_get_family;
ptrdiff_t function(GSocketAddress* address) c_g_socket_address_get_native_size;
int function(GSocketAddress* address, void* dest, size_t destlen, GError** err) c_g_socket_address_to_native;
// gio.SocketAddressEnumerator
GType function() c_g_socket_address_enumerator_get_type;
GSocketAddress* function(GSocketAddressEnumerator* enumerator, GCancellable* cancellable, GError** err) c_g_socket_address_enumerator_next;
void function(GSocketAddressEnumerator* enumerator, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_socket_address_enumerator_next_async;
GSocketAddress* function(GSocketAddressEnumerator* enumerator, GAsyncResult* result, GError** err) c_g_socket_address_enumerator_next_finish;
// gio.SocketClient
GType function() c_g_socket_client_get_type;
GSocketClient* function() c_g_socket_client_new;
void function(GSocketClient* client, const(char)* protocol) c_g_socket_client_add_application_proxy;
GSocketConnection* function(GSocketClient* client, GSocketConnectable* connectable, GCancellable* cancellable, GError** err) c_g_socket_client_connect;
void function(GSocketClient* client, GSocketConnectable* connectable, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_socket_client_connect_async;
GSocketConnection* function(GSocketClient* client, GAsyncResult* result, GError** err) c_g_socket_client_connect_finish;
GSocketConnection* function(GSocketClient* client, const(char)* hostAndPort, ushort defaultPort, GCancellable* cancellable, GError** err) c_g_socket_client_connect_to_host;
void function(GSocketClient* client, const(char)* hostAndPort, ushort defaultPort, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_socket_client_connect_to_host_async;
GSocketConnection* function(GSocketClient* client, GAsyncResult* result, GError** err) c_g_socket_client_connect_to_host_finish;
GSocketConnection* function(GSocketClient* client, const(char)* domain, const(char)* service, GCancellable* cancellable, GError** err) c_g_socket_client_connect_to_service;
void function(GSocketClient* client, const(char)* domain, const(char)* service, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_socket_client_connect_to_service_async;
GSocketConnection* function(GSocketClient* client, GAsyncResult* result, GError** err) c_g_socket_client_connect_to_service_finish;
GSocketConnection* function(GSocketClient* client, const(char)* uri, ushort defaultPort, GCancellable* cancellable, GError** err) c_g_socket_client_connect_to_uri;
void function(GSocketClient* client, const(char)* uri, ushort defaultPort, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_socket_client_connect_to_uri_async;
GSocketConnection* function(GSocketClient* client, GAsyncResult* result, GError** err) c_g_socket_client_connect_to_uri_finish;
int function(GSocketClient* client) c_g_socket_client_get_enable_proxy;
GSocketFamily function(GSocketClient* client) c_g_socket_client_get_family;
GSocketAddress* function(GSocketClient* client) c_g_socket_client_get_local_address;
GSocketProtocol function(GSocketClient* client) c_g_socket_client_get_protocol;
GProxyResolver* function(GSocketClient* client) c_g_socket_client_get_proxy_resolver;
GSocketType function(GSocketClient* client) c_g_socket_client_get_socket_type;
uint function(GSocketClient* client) c_g_socket_client_get_timeout;
int function(GSocketClient* client) c_g_socket_client_get_tls;
GTlsCertificateFlags function(GSocketClient* client) c_g_socket_client_get_tls_validation_flags;
void function(GSocketClient* client, int enable) c_g_socket_client_set_enable_proxy;
void function(GSocketClient* client, GSocketFamily family) c_g_socket_client_set_family;
void function(GSocketClient* client, GSocketAddress* address) c_g_socket_client_set_local_address;
void function(GSocketClient* client, GSocketProtocol protocol) c_g_socket_client_set_protocol;
void function(GSocketClient* client, GProxyResolver* proxyResolver) c_g_socket_client_set_proxy_resolver;
void function(GSocketClient* client, GSocketType type) c_g_socket_client_set_socket_type;
void function(GSocketClient* client, uint timeout) c_g_socket_client_set_timeout;
void function(GSocketClient* client, int tls) c_g_socket_client_set_tls;
void function(GSocketClient* client, GTlsCertificateFlags flags) c_g_socket_client_set_tls_validation_flags;
// gio.SocketConnectable
GType function() c_g_socket_connectable_get_type;
GSocketAddressEnumerator* function(GSocketConnectable* connectable) c_g_socket_connectable_enumerate;
GSocketAddressEnumerator* function(GSocketConnectable* connectable) c_g_socket_connectable_proxy_enumerate;
char* function(GSocketConnectable* connectable) c_g_socket_connectable_to_string;
// gio.SocketConnection
GType function() c_g_socket_connection_get_type;
GType function(GSocketFamily family, GSocketType type, int protocolId) c_g_socket_connection_factory_lookup_type;
void function(GType gType, GSocketFamily family, GSocketType type, int protocol) c_g_socket_connection_factory_register_type;
int function(GSocketConnection* connection, GSocketAddress* address, GCancellable* cancellable, GError** err) c_g_socket_connection_connect;
void function(GSocketConnection* connection, GSocketAddress* address, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_socket_connection_connect_async;
int function(GSocketConnection* connection, GAsyncResult* result, GError** err) c_g_socket_connection_connect_finish;
GSocketAddress* function(GSocketConnection* connection, GError** err) c_g_socket_connection_get_local_address;
GSocketAddress* function(GSocketConnection* connection, GError** err) c_g_socket_connection_get_remote_address;
GSocket* function(GSocketConnection* connection) c_g_socket_connection_get_socket;
int function(GSocketConnection* connection) c_g_socket_connection_is_connected;
// gio.SocketControlMessage
GType function() c_g_socket_control_message_get_type;
GSocketControlMessage* function(int level, int type, size_t size, void* data) c_g_socket_control_message_deserialize;
int function(GSocketControlMessage* message) c_g_socket_control_message_get_level;
int function(GSocketControlMessage* message) c_g_socket_control_message_get_msg_type;
size_t function(GSocketControlMessage* message) c_g_socket_control_message_get_size;
void function(GSocketControlMessage* message, void* data) c_g_socket_control_message_serialize;
// gio.SocketListener
GType function() c_g_socket_listener_get_type;
GSocketListener* function() c_g_socket_listener_new;
GSocketConnection* function(GSocketListener* listener, GObject** sourceObject, GCancellable* cancellable, GError** err) c_g_socket_listener_accept;
void function(GSocketListener* listener, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_socket_listener_accept_async;
GSocketConnection* function(GSocketListener* listener, GAsyncResult* result, GObject** sourceObject, GError** err) c_g_socket_listener_accept_finish;
GSocket* function(GSocketListener* listener, GObject** sourceObject, GCancellable* cancellable, GError** err) c_g_socket_listener_accept_socket;
void function(GSocketListener* listener, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_socket_listener_accept_socket_async;
GSocket* function(GSocketListener* listener, GAsyncResult* result, GObject** sourceObject, GError** err) c_g_socket_listener_accept_socket_finish;
int function(GSocketListener* listener, GSocketAddress* address, GSocketType type, GSocketProtocol protocol, GObject* sourceObject, GSocketAddress** effectiveAddress, GError** err) c_g_socket_listener_add_address;
ushort function(GSocketListener* listener, GObject* sourceObject, GError** err) c_g_socket_listener_add_any_inet_port;
int function(GSocketListener* listener, ushort port, GObject* sourceObject, GError** err) c_g_socket_listener_add_inet_port;
int function(GSocketListener* listener, GSocket* socket, GObject* sourceObject, GError** err) c_g_socket_listener_add_socket;
void function(GSocketListener* listener) c_g_socket_listener_close;
void function(GSocketListener* listener, int listenBacklog) c_g_socket_listener_set_backlog;
// gio.SocketService
GType function() c_g_socket_service_get_type;
GSocketService* function() c_g_socket_service_new;
int function(GSocketService* service) c_g_socket_service_is_active;
void function(GSocketService* service) c_g_socket_service_start;
void function(GSocketService* service) c_g_socket_service_stop;
// gio.SrvTarget
GType function() c_g_srv_target_get_type;
GSrvTarget* function(const(char)* hostname, ushort port, ushort priority, ushort weight) c_g_srv_target_new;
GSrvTarget* function(GSrvTarget* target) c_g_srv_target_copy;
void function(GSrvTarget* target) c_g_srv_target_free;
const(char)* function(GSrvTarget* target) c_g_srv_target_get_hostname;
ushort function(GSrvTarget* target) c_g_srv_target_get_port;
ushort function(GSrvTarget* target) c_g_srv_target_get_priority;
ushort function(GSrvTarget* target) c_g_srv_target_get_weight;
GList* function(GList* targets) c_g_srv_target_list_sort;
// gio.StaticResource
void function(GStaticResource* staticResource) c_g_static_resource_fini;
GResource* function(GStaticResource* staticResource) c_g_static_resource_get_resource;
void function(GStaticResource* staticResource) c_g_static_resource_init;
// gio.Subprocess
GType function() c_g_subprocess_get_type;
GSubprocess* function(GSubprocessFlags flags, GError** error, const(char)* argv0, ... ) c_g_subprocess_new;
GSubprocess* function(char** argv, GSubprocessFlags flags, GError** err) c_g_subprocess_newv;
int function(GSubprocess* subprocess, GBytes* stdinBuf, GCancellable* cancellable, GBytes** stdoutBuf, GBytes** stderrBuf, GError** err) c_g_subprocess_communicate;
void function(GSubprocess* subprocess, GBytes* stdinBuf, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_subprocess_communicate_async;
int function(GSubprocess* subprocess, GAsyncResult* result, GBytes** stdoutBuf, GBytes** stderrBuf, GError** err) c_g_subprocess_communicate_finish;
int function(GSubprocess* subprocess, const(char)* stdinBuf, GCancellable* cancellable, char** stdoutBuf, char** stderrBuf, GError** err) c_g_subprocess_communicate_utf8;
void function(GSubprocess* subprocess, const(char)* stdinBuf, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_subprocess_communicate_utf8_async;
int function(GSubprocess* subprocess, GAsyncResult* result, char** stdoutBuf, char** stderrBuf, GError** err) c_g_subprocess_communicate_utf8_finish;
void function(GSubprocess* subprocess) c_g_subprocess_force_exit;
int function(GSubprocess* subprocess) c_g_subprocess_get_exit_status;
const(char)* function(GSubprocess* subprocess) c_g_subprocess_get_identifier;
int function(GSubprocess* subprocess) c_g_subprocess_get_if_exited;
int function(GSubprocess* subprocess) c_g_subprocess_get_if_signaled;
int function(GSubprocess* subprocess) c_g_subprocess_get_status;
GInputStream* function(GSubprocess* subprocess) c_g_subprocess_get_stderr_pipe;
GOutputStream* function(GSubprocess* subprocess) c_g_subprocess_get_stdin_pipe;
GInputStream* function(GSubprocess* subprocess) c_g_subprocess_get_stdout_pipe;
int function(GSubprocess* subprocess) c_g_subprocess_get_successful;
int function(GSubprocess* subprocess) c_g_subprocess_get_term_sig;
void function(GSubprocess* subprocess, int signalNum) c_g_subprocess_send_signal;
int function(GSubprocess* subprocess, GCancellable* cancellable, GError** err) c_g_subprocess_wait;
void function(GSubprocess* subprocess, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_subprocess_wait_async;
int function(GSubprocess* subprocess, GCancellable* cancellable, GError** err) c_g_subprocess_wait_check;
void function(GSubprocess* subprocess, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_subprocess_wait_check_async;
int function(GSubprocess* subprocess, GAsyncResult* result, GError** err) c_g_subprocess_wait_check_finish;
int function(GSubprocess* subprocess, GAsyncResult* result, GError** err) c_g_subprocess_wait_finish;
// gio.SubprocessLauncher
GType function() c_g_subprocess_launcher_get_type;
GSubprocessLauncher* function(GSubprocessFlags flags) c_g_subprocess_launcher_new;
char* function(GSubprocessLauncher* self, char* variable) c_g_subprocess_launcher_getenv;
void function(GSubprocessLauncher* self, GSpawnChildSetupFunc childSetup, void* userData, GDestroyNotify destroyNotify) c_g_subprocess_launcher_set_child_setup;
void function(GSubprocessLauncher* self, char* cwd) c_g_subprocess_launcher_set_cwd;
void function(GSubprocessLauncher* self, char** env) c_g_subprocess_launcher_set_environ;
void function(GSubprocessLauncher* self, GSubprocessFlags flags) c_g_subprocess_launcher_set_flags;
void function(GSubprocessLauncher* self, char* path) c_g_subprocess_launcher_set_stderr_file_path;
void function(GSubprocessLauncher* self, const(char)* path) c_g_subprocess_launcher_set_stdin_file_path;
void function(GSubprocessLauncher* self, char* path) c_g_subprocess_launcher_set_stdout_file_path;
void function(GSubprocessLauncher* self, char* variable, char* value, int overwrite) c_g_subprocess_launcher_setenv;
GSubprocess* function(GSubprocessLauncher* self, GError** error, const(char)* argv0, ... ) c_g_subprocess_launcher_spawn;
GSubprocess* function(GSubprocessLauncher* self, char** argv, GError** err) c_g_subprocess_launcher_spawnv;
void function(GSubprocessLauncher* self, int sourceFd, int targetFd) c_g_subprocess_launcher_take_fd;
void function(GSubprocessLauncher* self, int fd) c_g_subprocess_launcher_take_stderr_fd;
void function(GSubprocessLauncher* self, int fd) c_g_subprocess_launcher_take_stdin_fd;
void function(GSubprocessLauncher* self, int fd) c_g_subprocess_launcher_take_stdout_fd;
void function(GSubprocessLauncher* self, char* variable) c_g_subprocess_launcher_unsetenv;
// gio.Task
GType function() c_g_task_get_type;
GTask* function(void* sourceObject, GCancellable* cancellable, GAsyncReadyCallback callback, void* callbackData) c_g_task_new;
int function(void* result, void* sourceObject) c_g_task_is_valid;
void function(void* sourceObject, GAsyncReadyCallback callback, void* callbackData, void* sourceTag, GError* error) c_g_task_report_error;
void function(void* sourceObject, GAsyncReadyCallback callback, void* callbackData, void* sourceTag, GQuark domain, int code, const(char)* format, ... ) c_g_task_report_new_error;
void function(GTask* task, GSource* source, GSourceFunc callback) c_g_task_attach_source;
GCancellable* function(GTask* task) c_g_task_get_cancellable;
int function(GTask* task) c_g_task_get_check_cancellable;
int function(GTask* task) c_g_task_get_completed;
GMainContext* function(GTask* task) c_g_task_get_context;
const(char)* function(GTask* task) c_g_task_get_name;
int function(GTask* task) c_g_task_get_priority;
int function(GTask* task) c_g_task_get_return_on_cancel;
void* function(GTask* task) c_g_task_get_source_object;
void* function(GTask* task) c_g_task_get_source_tag;
void* function(GTask* task) c_g_task_get_task_data;
int function(GTask* task) c_g_task_had_error;
int function(GTask* task, GError** err) c_g_task_propagate_boolean;
ptrdiff_t function(GTask* task, GError** err) c_g_task_propagate_int;
void* function(GTask* task, GError** err) c_g_task_propagate_pointer;
int function(GTask* task, GValue* value, GError** err) c_g_task_propagate_value;
void function(GTask* task, int result) c_g_task_return_boolean;
void function(GTask* task, GError* error) c_g_task_return_error;
int function(GTask* task) c_g_task_return_error_if_cancelled;
void function(GTask* task, ptrdiff_t result) c_g_task_return_int;
void function(GTask* task, GQuark domain, int code, const(char)* format, ... ) c_g_task_return_new_error;
void function(GTask* task, void* result, GDestroyNotify resultDestroy) c_g_task_return_pointer;
void function(GTask* task, GValue* result) c_g_task_return_value;
void function(GTask* task, GTaskThreadFunc taskFunc) c_g_task_run_in_thread;
void function(GTask* task, GTaskThreadFunc taskFunc) c_g_task_run_in_thread_sync;
void function(GTask* task, int checkCancellable) c_g_task_set_check_cancellable;
void function(GTask* task, const(char)* name) c_g_task_set_name;
void function(GTask* task, int priority) c_g_task_set_priority;
int function(GTask* task, int returnOnCancel) c_g_task_set_return_on_cancel;
void function(GTask* task, void* sourceTag) c_g_task_set_source_tag;
void function(GTask* task, void* taskData, GDestroyNotify taskDataDestroy) c_g_task_set_task_data;
// gio.TcpConnection
GType function() c_g_tcp_connection_get_type;
int function(GTcpConnection* connection) c_g_tcp_connection_get_graceful_disconnect;
void function(GTcpConnection* connection, int gracefulDisconnect) c_g_tcp_connection_set_graceful_disconnect;
// gio.TcpWrapperConnection
GType function() c_g_tcp_wrapper_connection_get_type;
GSocketConnection* function(GIOStream* baseIoStream, GSocket* socket) c_g_tcp_wrapper_connection_new;
GIOStream* function(GTcpWrapperConnection* conn) c_g_tcp_wrapper_connection_get_base_io_stream;
// gio.TestDBus
GType function() c_g_test_dbus_get_type;
GTestDBus* function(GTestDBusFlags flags) c_g_test_dbus_new;
void function() c_g_test_dbus_unset;
void function(GTestDBus* self, const(char)* path) c_g_test_dbus_add_service_dir;
void function(GTestDBus* self) c_g_test_dbus_down;
const(char)* function(GTestDBus* self) c_g_test_dbus_get_bus_address;
GTestDBusFlags function(GTestDBus* self) c_g_test_dbus_get_flags;
void function(GTestDBus* self) c_g_test_dbus_stop;
void function(GTestDBus* self) c_g_test_dbus_up;
// gio.ThemedIcon
GType function() c_g_themed_icon_get_type;
GIcon* function(const(char)* iconname) c_g_themed_icon_new;
GIcon* function(char** iconnames, int len) c_g_themed_icon_new_from_names;
GIcon* function(const(char)* iconname) c_g_themed_icon_new_with_default_fallbacks;
void function(GThemedIcon* icon, const(char)* iconname) c_g_themed_icon_append_name;
char** function(GThemedIcon* icon) c_g_themed_icon_get_names;
void function(GThemedIcon* icon, const(char)* iconname) c_g_themed_icon_prepend_name;
// gio.ThreadedSocketService
GType function() c_g_threaded_socket_service_get_type;
GSocketService* function(int maxThreads) c_g_threaded_socket_service_new;
// gio.TlsBackend
GType function() c_g_tls_backend_get_type;
GTlsBackend* function() c_g_tls_backend_get_default;
GType function(GTlsBackend* backend) c_g_tls_backend_get_certificate_type;
GType function(GTlsBackend* backend) c_g_tls_backend_get_client_connection_type;
GTlsDatabase* function(GTlsBackend* backend) c_g_tls_backend_get_default_database;
GType function(GTlsBackend* backend) c_g_tls_backend_get_dtls_client_connection_type;
GType function(GTlsBackend* backend) c_g_tls_backend_get_dtls_server_connection_type;
GType function(GTlsBackend* backend) c_g_tls_backend_get_file_database_type;
GType function(GTlsBackend* backend) c_g_tls_backend_get_server_connection_type;
void function(GTlsBackend* backend, GTlsDatabase* database) c_g_tls_backend_set_default_database;
int function(GTlsBackend* backend) c_g_tls_backend_supports_dtls;
int function(GTlsBackend* backend) c_g_tls_backend_supports_tls;
// gio.TlsCertificate
GType function() c_g_tls_certificate_get_type;
GTlsCertificate* function(char* file, GError** err) c_g_tls_certificate_new_from_file;
GTlsCertificate* function(char* certFile, char* keyFile, GError** err) c_g_tls_certificate_new_from_files;
GTlsCertificate* function(const(char)* data, ptrdiff_t length, GError** err) c_g_tls_certificate_new_from_pem;
GList* function(char* file, GError** err) c_g_tls_certificate_list_new_from_file;
GTlsCertificate* function(GTlsCertificate* cert) c_g_tls_certificate_get_issuer;
int function(GTlsCertificate* certOne, GTlsCertificate* certTwo) c_g_tls_certificate_is_same;
GTlsCertificateFlags function(GTlsCertificate* cert, GSocketConnectable* identity, GTlsCertificate* trustedCa) c_g_tls_certificate_verify;
// gio.TlsClientConnection
GType function() c_g_tls_client_connection_get_type;
GIOStream* function(GIOStream* baseIoStream, GSocketConnectable* serverIdentity, GError** err) c_g_tls_client_connection_new;
void function(GTlsClientConnection* conn, GTlsClientConnection* source) c_g_tls_client_connection_copy_session_state;
GList* function(GTlsClientConnection* conn) c_g_tls_client_connection_get_accepted_cas;
GSocketConnectable* function(GTlsClientConnection* conn) c_g_tls_client_connection_get_server_identity;
int function(GTlsClientConnection* conn) c_g_tls_client_connection_get_use_ssl3;
GTlsCertificateFlags function(GTlsClientConnection* conn) c_g_tls_client_connection_get_validation_flags;
void function(GTlsClientConnection* conn, GSocketConnectable* identity) c_g_tls_client_connection_set_server_identity;
void function(GTlsClientConnection* conn, int useSsl3) c_g_tls_client_connection_set_use_ssl3;
void function(GTlsClientConnection* conn, GTlsCertificateFlags flags) c_g_tls_client_connection_set_validation_flags;
// gio.TlsConnection
GType function() c_g_tls_connection_get_type;
int function(GTlsConnection* conn, GTlsCertificate* peerCert, GTlsCertificateFlags errors) c_g_tls_connection_emit_accept_certificate;
GTlsCertificate* function(GTlsConnection* conn) c_g_tls_connection_get_certificate;
GTlsDatabase* function(GTlsConnection* conn) c_g_tls_connection_get_database;
GTlsInteraction* function(GTlsConnection* conn) c_g_tls_connection_get_interaction;
const(char)* function(GTlsConnection* conn) c_g_tls_connection_get_negotiated_protocol;
GTlsCertificate* function(GTlsConnection* conn) c_g_tls_connection_get_peer_certificate;
GTlsCertificateFlags function(GTlsConnection* conn) c_g_tls_connection_get_peer_certificate_errors;
GTlsRehandshakeMode function(GTlsConnection* conn) c_g_tls_connection_get_rehandshake_mode;
int function(GTlsConnection* conn) c_g_tls_connection_get_require_close_notify;
int function(GTlsConnection* conn) c_g_tls_connection_get_use_system_certdb;
int function(GTlsConnection* conn, GCancellable* cancellable, GError** err) c_g_tls_connection_handshake;
void function(GTlsConnection* conn, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_tls_connection_handshake_async;
int function(GTlsConnection* conn, GAsyncResult* result, GError** err) c_g_tls_connection_handshake_finish;
void function(GTlsConnection* conn, char** protocols) c_g_tls_connection_set_advertised_protocols;
void function(GTlsConnection* conn, GTlsCertificate* certificate) c_g_tls_connection_set_certificate;
void function(GTlsConnection* conn, GTlsDatabase* database) c_g_tls_connection_set_database;
void function(GTlsConnection* conn, GTlsInteraction* interaction) c_g_tls_connection_set_interaction;
void function(GTlsConnection* conn, GTlsRehandshakeMode mode) c_g_tls_connection_set_rehandshake_mode;
void function(GTlsConnection* conn, int requireCloseNotify) c_g_tls_connection_set_require_close_notify;
void function(GTlsConnection* conn, int useSystemCertdb) c_g_tls_connection_set_use_system_certdb;
// gio.TlsDatabase
GType function() c_g_tls_database_get_type;
char* function(GTlsDatabase* self, GTlsCertificate* certificate) c_g_tls_database_create_certificate_handle;
GTlsCertificate* function(GTlsDatabase* self, const(char)* handle, GTlsInteraction* interaction, GTlsDatabaseLookupFlags flags, GCancellable* cancellable, GError** err) c_g_tls_database_lookup_certificate_for_handle;
void function(GTlsDatabase* self, const(char)* handle, GTlsInteraction* interaction, GTlsDatabaseLookupFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_tls_database_lookup_certificate_for_handle_async;
GTlsCertificate* function(GTlsDatabase* self, GAsyncResult* result, GError** err) c_g_tls_database_lookup_certificate_for_handle_finish;
GTlsCertificate* function(GTlsDatabase* self, GTlsCertificate* certificate, GTlsInteraction* interaction, GTlsDatabaseLookupFlags flags, GCancellable* cancellable, GError** err) c_g_tls_database_lookup_certificate_issuer;
void function(GTlsDatabase* self, GTlsCertificate* certificate, GTlsInteraction* interaction, GTlsDatabaseLookupFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_tls_database_lookup_certificate_issuer_async;
GTlsCertificate* function(GTlsDatabase* self, GAsyncResult* result, GError** err) c_g_tls_database_lookup_certificate_issuer_finish;
GList* function(GTlsDatabase* self, GByteArray* issuerRawDn, GTlsInteraction* interaction, GTlsDatabaseLookupFlags flags, GCancellable* cancellable, GError** err) c_g_tls_database_lookup_certificates_issued_by;
void function(GTlsDatabase* self, GByteArray* issuerRawDn, GTlsInteraction* interaction, GTlsDatabaseLookupFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_tls_database_lookup_certificates_issued_by_async;
GList* function(GTlsDatabase* self, GAsyncResult* result, GError** err) c_g_tls_database_lookup_certificates_issued_by_finish;
GTlsCertificateFlags function(GTlsDatabase* self, GTlsCertificate* chain, const(char)* purpose, GSocketConnectable* identity, GTlsInteraction* interaction, GTlsDatabaseVerifyFlags flags, GCancellable* cancellable, GError** err) c_g_tls_database_verify_chain;
void function(GTlsDatabase* self, GTlsCertificate* chain, const(char)* purpose, GSocketConnectable* identity, GTlsInteraction* interaction, GTlsDatabaseVerifyFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_tls_database_verify_chain_async;
GTlsCertificateFlags function(GTlsDatabase* self, GAsyncResult* result, GError** err) c_g_tls_database_verify_chain_finish;
// gio.TlsFileDatabase
GType function() c_g_tls_file_database_get_type;
GTlsDatabase* function(char* anchors, GError** err) c_g_tls_file_database_new;
// gio.TlsInteraction
GType function() c_g_tls_interaction_get_type;
GTlsInteractionResult function(GTlsInteraction* interaction, GTlsPassword* password, GCancellable* cancellable, GError** err) c_g_tls_interaction_ask_password;
void function(GTlsInteraction* interaction, GTlsPassword* password, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_tls_interaction_ask_password_async;
GTlsInteractionResult function(GTlsInteraction* interaction, GAsyncResult* result, GError** err) c_g_tls_interaction_ask_password_finish;
GTlsInteractionResult function(GTlsInteraction* interaction, GTlsPassword* password, GCancellable* cancellable, GError** err) c_g_tls_interaction_invoke_ask_password;
GTlsInteractionResult function(GTlsInteraction* interaction, GTlsConnection* connection, GTlsCertificateRequestFlags flags, GCancellable* cancellable, GError** err) c_g_tls_interaction_invoke_request_certificate;
GTlsInteractionResult function(GTlsInteraction* interaction, GTlsConnection* connection, GTlsCertificateRequestFlags flags, GCancellable* cancellable, GError** err) c_g_tls_interaction_request_certificate;
void function(GTlsInteraction* interaction, GTlsConnection* connection, GTlsCertificateRequestFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_tls_interaction_request_certificate_async;
GTlsInteractionResult function(GTlsInteraction* interaction, GAsyncResult* result, GError** err) c_g_tls_interaction_request_certificate_finish;
// gio.TlsPassword
GType function() c_g_tls_password_get_type;
GTlsPassword* function(GTlsPasswordFlags flags, const(char)* description) c_g_tls_password_new;
const(char)* function(GTlsPassword* password) c_g_tls_password_get_description;
GTlsPasswordFlags function(GTlsPassword* password) c_g_tls_password_get_flags;
char* function(GTlsPassword* password, size_t* length) c_g_tls_password_get_value;
const(char)* function(GTlsPassword* password) c_g_tls_password_get_warning;
void function(GTlsPassword* password, const(char)* description) c_g_tls_password_set_description;
void function(GTlsPassword* password, GTlsPasswordFlags flags) c_g_tls_password_set_flags;
void function(GTlsPassword* password, char* value, ptrdiff_t length) c_g_tls_password_set_value;
void function(GTlsPassword* password, char* value, ptrdiff_t length, GDestroyNotify destroy) c_g_tls_password_set_value_full;
void function(GTlsPassword* password, const(char)* warning) c_g_tls_password_set_warning;
// gio.TlsServerConnection
GType function() c_g_tls_server_connection_get_type;
GIOStream* function(GIOStream* baseIoStream, GTlsCertificate* certificate, GError** err) c_g_tls_server_connection_new;
// gio.UnixConnection
GType function() c_g_unix_connection_get_type;
GCredentials* function(GUnixConnection* connection, GCancellable* cancellable, GError** err) c_g_unix_connection_receive_credentials;
void function(GUnixConnection* connection, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_unix_connection_receive_credentials_async;
GCredentials* function(GUnixConnection* connection, GAsyncResult* result, GError** err) c_g_unix_connection_receive_credentials_finish;
int function(GUnixConnection* connection, GCancellable* cancellable, GError** err) c_g_unix_connection_receive_fd;
int function(GUnixConnection* connection, GCancellable* cancellable, GError** err) c_g_unix_connection_send_credentials;
void function(GUnixConnection* connection, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_unix_connection_send_credentials_async;
int function(GUnixConnection* connection, GAsyncResult* result, GError** err) c_g_unix_connection_send_credentials_finish;
int function(GUnixConnection* connection, int fd, GCancellable* cancellable, GError** err) c_g_unix_connection_send_fd;
// gio.UnixCredentialsMessage
GType function() c_g_unix_credentials_message_get_type;
GSocketControlMessage* function() c_g_unix_credentials_message_new;
GSocketControlMessage* function(GCredentials* credentials) c_g_unix_credentials_message_new_with_credentials;
int function() c_g_unix_credentials_message_is_supported;
GCredentials* function(GUnixCredentialsMessage* message) c_g_unix_credentials_message_get_credentials;
// gio.UnixFDList
GType function() c_g_unix_fd_list_get_type;
GUnixFDList* function() c_g_unix_fd_list_new;
GUnixFDList* function(int* fds, int nFds) c_g_unix_fd_list_new_from_array;
int function(GUnixFDList* list, int fd, GError** err) c_g_unix_fd_list_append;
int function(GUnixFDList* list, int index, GError** err) c_g_unix_fd_list_get;
int function(GUnixFDList* list) c_g_unix_fd_list_get_length;
int* function(GUnixFDList* list, int* length) c_g_unix_fd_list_peek_fds;
int* function(GUnixFDList* list, int* length) c_g_unix_fd_list_steal_fds;
// gio.UnixFDMessage
GType function() c_g_unix_fd_message_get_type;
GSocketControlMessage* function() c_g_unix_fd_message_new;
GSocketControlMessage* function(GUnixFDList* fdList) c_g_unix_fd_message_new_with_fd_list;
int function(GUnixFDMessage* message, int fd, GError** err) c_g_unix_fd_message_append_fd;
GUnixFDList* function(GUnixFDMessage* message) c_g_unix_fd_message_get_fd_list;
int* function(GUnixFDMessage* message, int* length) c_g_unix_fd_message_steal_fds;
// gio.UnixInputStream
GType function() c_g_unix_input_stream_get_type;
GInputStream* function(int fd, int closeFd) c_g_unix_input_stream_new;
int function(GUnixInputStream* stream) c_g_unix_input_stream_get_close_fd;
int function(GUnixInputStream* stream) c_g_unix_input_stream_get_fd;
void function(GUnixInputStream* stream, int closeFd) c_g_unix_input_stream_set_close_fd;
// gio.UnixMountEntry
GType function() c_g_unix_mount_entry_get_type;
int function(char* mountPath) c_g_unix_is_mount_path_system_internal;
GUnixMountEntry* function(char* mountPath, ulong* timeRead) c_g_unix_mount_at;
int function(GUnixMountEntry* mount1, GUnixMountEntry* mount2) c_g_unix_mount_compare;
void function(GUnixMountEntry* mountEntry) c_g_unix_mount_free;
char* function(GUnixMountEntry* mountEntry) c_g_unix_mount_get_device_path;
const(char)* function(GUnixMountEntry* mountEntry) c_g_unix_mount_get_fs_type;
char* function(GUnixMountEntry* mountEntry) c_g_unix_mount_get_mount_path;
int function(GUnixMountEntry* mountEntry) c_g_unix_mount_guess_can_eject;
GIcon* function(GUnixMountEntry* mountEntry) c_g_unix_mount_guess_icon;
char* function(GUnixMountEntry* mountEntry) c_g_unix_mount_guess_name;
int function(GUnixMountEntry* mountEntry) c_g_unix_mount_guess_should_display;
GIcon* function(GUnixMountEntry* mountEntry) c_g_unix_mount_guess_symbolic_icon;
int function(GUnixMountEntry* mountEntry) c_g_unix_mount_is_readonly;
int function(GUnixMountEntry* mountEntry) c_g_unix_mount_is_system_internal;
int function(ulong time) c_g_unix_mount_points_changed_since;
GList* function(ulong* timeRead) c_g_unix_mount_points_get;
int function(ulong time) c_g_unix_mounts_changed_since;
GList* function(ulong* timeRead) c_g_unix_mounts_get;
GUnixMountEntry* function(GUnixMountEntry* mountEntry) c_g_unix_mount_copy;
GUnixMountEntry* function(char* filePath, ulong* timeRead) c_g_unix_mount_for;
const(char)* function(GUnixMountEntry* mountEntry) c_g_unix_mount_get_options;
const(char)* function(GUnixMountEntry* mountEntry) c_g_unix_mount_get_root_path;
// gio.UnixMountMonitor
GType function() c_g_unix_mount_monitor_get_type;
GUnixMountMonitor* function() c_g_unix_mount_monitor_new;
GUnixMountMonitor* function() c_g_unix_mount_monitor_get;
void function(GUnixMountMonitor* mountMonitor, int limitMsec) c_g_unix_mount_monitor_set_rate_limit;
// gio.UnixMountPoint
GType function() c_g_unix_mount_point_get_type;
int function(GUnixMountPoint* mount1, GUnixMountPoint* mount2) c_g_unix_mount_point_compare;
GUnixMountPoint* function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_copy;
void function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_free;
char* function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_get_device_path;
const(char)* function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_get_fs_type;
char* function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_get_mount_path;
const(char)* function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_get_options;
int function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_guess_can_eject;
GIcon* function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_guess_icon;
char* function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_guess_name;
GIcon* function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_guess_symbolic_icon;
int function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_is_loopback;
int function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_is_readonly;
int function(GUnixMountPoint* mountPoint) c_g_unix_mount_point_is_user_mountable;
// gio.UnixOutputStream
GType function() c_g_unix_output_stream_get_type;
GOutputStream* function(int fd, int closeFd) c_g_unix_output_stream_new;
int function(GUnixOutputStream* stream) c_g_unix_output_stream_get_close_fd;
int function(GUnixOutputStream* stream) c_g_unix_output_stream_get_fd;
void function(GUnixOutputStream* stream, int closeFd) c_g_unix_output_stream_set_close_fd;
// gio.UnixSocketAddress
GType function() c_g_unix_socket_address_get_type;
GSocketAddress* function(const(char)* path) c_g_unix_socket_address_new;
GSocketAddress* function(char* path, int pathLen) c_g_unix_socket_address_new_abstract;
GSocketAddress* function(char* path, int pathLen, GUnixSocketAddressType type) c_g_unix_socket_address_new_with_type;
int function() c_g_unix_socket_address_abstract_names_supported;
GUnixSocketAddressType function(GUnixSocketAddress* address) c_g_unix_socket_address_get_address_type;
int function(GUnixSocketAddress* address) c_g_unix_socket_address_get_is_abstract;
const(char)* function(GUnixSocketAddress* address) c_g_unix_socket_address_get_path;
size_t function(GUnixSocketAddress* address) c_g_unix_socket_address_get_path_len;
// gio.Vfs
GType function() c_g_vfs_get_type;
GVfs* function() c_g_vfs_get_default;
GVfs* function() c_g_vfs_get_local;
GFile* function(GVfs* vfs, const(char)* path) c_g_vfs_get_file_for_path;
GFile* function(GVfs* vfs, const(char)* uri) c_g_vfs_get_file_for_uri;
char** function(GVfs* vfs) c_g_vfs_get_supported_uri_schemes;
int function(GVfs* vfs) c_g_vfs_is_active;
GFile* function(GVfs* vfs, const(char)* parseName) c_g_vfs_parse_name;
int function(GVfs* vfs, const(char)* scheme, GVfsFileLookupFunc uriFunc, void* uriData, GDestroyNotify uriDestroy, GVfsFileLookupFunc parseNameFunc, void* parseNameData, GDestroyNotify parseNameDestroy) c_g_vfs_register_uri_scheme;
int function(GVfs* vfs, const(char)* scheme) c_g_vfs_unregister_uri_scheme;
// gio.Volume
GType function() c_g_volume_get_type;
int function(GVolume* volume) c_g_volume_can_eject;
int function(GVolume* volume) c_g_volume_can_mount;
void function(GVolume* volume, GMountUnmountFlags flags, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_volume_eject;
int function(GVolume* volume, GAsyncResult* result, GError** err) c_g_volume_eject_finish;
void function(GVolume* volume, GMountUnmountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_volume_eject_with_operation;
int function(GVolume* volume, GAsyncResult* result, GError** err) c_g_volume_eject_with_operation_finish;
char** function(GVolume* volume) c_g_volume_enumerate_identifiers;
GFile* function(GVolume* volume) c_g_volume_get_activation_root;
GDrive* function(GVolume* volume) c_g_volume_get_drive;
GIcon* function(GVolume* volume) c_g_volume_get_icon;
char* function(GVolume* volume, const(char)* kind) c_g_volume_get_identifier;
GMount* function(GVolume* volume) c_g_volume_get_mount;
char* function(GVolume* volume) c_g_volume_get_name;
const(char)* function(GVolume* volume) c_g_volume_get_sort_key;
GIcon* function(GVolume* volume) c_g_volume_get_symbolic_icon;
char* function(GVolume* volume) c_g_volume_get_uuid;
void function(GVolume* volume, GMountMountFlags flags, GMountOperation* mountOperation, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_volume_mount;
int function(GVolume* volume, GAsyncResult* result, GError** err) c_g_volume_mount_finish;
int function(GVolume* volume) c_g_volume_should_automount;
// gio.VolumeMonitor
GType function() c_g_volume_monitor_get_type;
GVolume* function(GMount* mount) c_g_volume_monitor_adopt_orphan_mount;
GVolumeMonitor* function() c_g_volume_monitor_get;
GList* function(GVolumeMonitor* volumeMonitor) c_g_volume_monitor_get_connected_drives;
GMount* function(GVolumeMonitor* volumeMonitor, const(char)* uuid) c_g_volume_monitor_get_mount_for_uuid;
GList* function(GVolumeMonitor* volumeMonitor) c_g_volume_monitor_get_mounts;
GVolume* function(GVolumeMonitor* volumeMonitor, const(char)* uuid) c_g_volume_monitor_get_volume_for_uuid;
GList* function(GVolumeMonitor* volumeMonitor) c_g_volume_monitor_get_volumes;
// gio.ZlibCompressor
GType function() c_g_zlib_compressor_get_type;
GZlibCompressor* function(GZlibCompressorFormat format, int level) c_g_zlib_compressor_new;
GFileInfo* function(GZlibCompressor* compressor) c_g_zlib_compressor_get_file_info;
void function(GZlibCompressor* compressor, GFileInfo* fileInfo) c_g_zlib_compressor_set_file_info;
// gio.ZlibDecompressor
GType function() c_g_zlib_decompressor_get_type;
GZlibDecompressor* function(GZlibCompressorFormat format) c_g_zlib_decompressor_new;
GFileInfo* function(GZlibDecompressor* decompressor) c_g_zlib_decompressor_get_file_info;
// gio.PollableUtils
GSource* function(GObject* pollableStream) c_g_pollable_source_new;
GSource* function(void* pollableStream, GSource* childSource, GCancellable* cancellable) c_g_pollable_source_new_full;
ptrdiff_t function(GInputStream* stream, void* buffer, size_t count, int blocking, GCancellable* cancellable, GError** err) c_g_pollable_stream_read;
ptrdiff_t function(GOutputStream* stream, void* buffer, size_t count, int blocking, GCancellable* cancellable, GError** err) c_g_pollable_stream_write;
int function(GOutputStream* stream, void* buffer, size_t count, int blocking, size_t* bytesWritten, GCancellable* cancellable, GError** err) c_g_pollable_stream_write_all;
// gio.DBusNames
uint function(GBusType busType, const(char)* name, GBusNameOwnerFlags flags, GBusAcquiredCallback busAcquiredHandler, GBusNameAcquiredCallback nameAcquiredHandler, GBusNameLostCallback nameLostHandler, void* userData, GDestroyNotify userDataFreeFunc) c_g_bus_own_name;
uint function(GDBusConnection* connection, const(char)* name, GBusNameOwnerFlags flags, GBusNameAcquiredCallback nameAcquiredHandler, GBusNameLostCallback nameLostHandler, void* userData, GDestroyNotify userDataFreeFunc) c_g_bus_own_name_on_connection;
uint function(GDBusConnection* connection, const(char)* name, GBusNameOwnerFlags flags, GClosure* nameAcquiredClosure, GClosure* nameLostClosure) c_g_bus_own_name_on_connection_with_closures;
uint function(GBusType busType, const(char)* name, GBusNameOwnerFlags flags, GClosure* busAcquiredClosure, GClosure* nameAcquiredClosure, GClosure* nameLostClosure) c_g_bus_own_name_with_closures;
void function(uint ownerId) c_g_bus_unown_name;
void function(uint watcherId) c_g_bus_unwatch_name;
uint function(GBusType busType, const(char)* name, GBusNameWatcherFlags flags, GBusNameAppearedCallback nameAppearedHandler, GBusNameVanishedCallback nameVanishedHandler, void* userData, GDestroyNotify userDataFreeFunc) c_g_bus_watch_name;
uint function(GDBusConnection* connection, const(char)* name, GBusNameWatcherFlags flags, GBusNameAppearedCallback nameAppearedHandler, GBusNameVanishedCallback nameVanishedHandler, void* userData, GDestroyNotify userDataFreeFunc) c_g_bus_watch_name_on_connection;
uint function(GDBusConnection* connection, const(char)* name, GBusNameWatcherFlags flags, GClosure* nameAppearedClosure, GClosure* nameVanishedClosure) c_g_bus_watch_name_on_connection_with_closures;
uint function(GBusType busType, const(char)* name, GBusNameWatcherFlags flags, GClosure* nameAppearedClosure, GClosure* nameVanishedClosure) c_g_bus_watch_name_with_closures;
// gio.ContentType
int function(const(char)* type) c_g_content_type_can_be_executable;
int function(const(char)* type1, const(char)* type2) c_g_content_type_equals;
char* function(const(char)* mimeType) c_g_content_type_from_mime_type;
char* function(const(char)* type) c_g_content_type_get_description;
char* function(const(char)* type) c_g_content_type_get_generic_icon_name;
GIcon* function(const(char)* type) c_g_content_type_get_icon;
char* function(const(char)* type) c_g_content_type_get_mime_type;
GIcon* function(const(char)* type) c_g_content_type_get_symbolic_icon;
char* function(const(char)* filename, char* data, size_t dataSize, int* resultUncertain) c_g_content_type_guess;
char** function(GFile* root) c_g_content_type_guess_for_tree;
int function(const(char)* type, const(char)* supertype) c_g_content_type_is_a;
int function(const(char)* type) c_g_content_type_is_unknown;
GList* function() c_g_content_types_get_registered;
int function(const(char)* type, const(char)* mimeType) c_g_content_type_is_mime_type;
char** function() c_g_content_type_get_mime_dirs;
void function(char** dirs) c_g_content_type_set_mime_dirs;
// gio.DBusError
char* function(GError* error) c_g_dbus_error_encode_gerror;
char* function(GError* error) c_g_dbus_error_get_remote_error;
int function(GError* error) c_g_dbus_error_is_remote_error;
GError* function(const(char)* dbusErrorName, const(char)* dbusErrorMessage) c_g_dbus_error_new_for_dbus_error;
GQuark function() c_g_dbus_error_quark;
int function(GQuark errorDomain, int errorCode, const(char)* dbusErrorName) c_g_dbus_error_register_error;
void function(const(char)* errorDomainQuarkName, size_t* quarkVolatile, GDBusErrorEntry* entries, uint numEntries) c_g_dbus_error_register_error_domain;
int function(GError* error) c_g_dbus_error_strip_remote_error;
int function(GQuark errorDomain, int errorCode, const(char)* dbusErrorName) c_g_dbus_error_unregister_error;
// gio.DBusUtilities
char* function(const(char)* string_) c_g_dbus_address_escape_value;
char* function(GBusType busType, GCancellable* cancellable, GError** err) c_g_dbus_address_get_for_bus_sync;
void function(const(char)* address, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_g_dbus_address_get_stream;
GIOStream* function(GAsyncResult* res, char** outGuid, GError** err) c_g_dbus_address_get_stream_finish;
GIOStream* function(const(char)* address, char** outGuid, GCancellable* cancellable, GError** err) c_g_dbus_address_get_stream_sync;
char* function() c_g_dbus_generate_guid;
GVariant* function(GValue* gvalue, GVariantType* type) c_g_dbus_gvalue_to_gvariant;
void function(GVariant* value, GValue* outGvalue) c_g_dbus_gvariant_to_gvalue;
int function(const(char)* string_) c_g_dbus_is_address;
int function(const(char)* string_) c_g_dbus_is_guid;
int function(const(char)* string_) c_g_dbus_is_interface_name;
int function(const(char)* string_) c_g_dbus_is_member_name;
int function(const(char)* string_) c_g_dbus_is_name;
int function(const(char)* string_, GError** err) c_g_dbus_is_supported_address;
int function(const(char)* string_) c_g_dbus_is_unique_name;
// gio.ErrorGIO
GIOErrorEnum function(int errNo) c_g_io_error_from_errno;
GQuark function() c_g_io_error_quark;
}
// gio.Action
alias c_g_action_get_type g_action_get_type;
alias c_g_action_name_is_valid g_action_name_is_valid;
alias c_g_action_parse_detailed_name g_action_parse_detailed_name;
alias c_g_action_print_detailed_name g_action_print_detailed_name;
alias c_g_action_activate g_action_activate;
alias c_g_action_change_state g_action_change_state;
alias c_g_action_get_enabled g_action_get_enabled;
alias c_g_action_get_name g_action_get_name;
alias c_g_action_get_parameter_type g_action_get_parameter_type;
alias c_g_action_get_state g_action_get_state;
alias c_g_action_get_state_hint g_action_get_state_hint;
alias c_g_action_get_state_type g_action_get_state_type;
// gio.ActionGroup
alias c_g_action_group_get_type g_action_group_get_type;
alias c_g_action_group_action_added g_action_group_action_added;
alias c_g_action_group_action_enabled_changed g_action_group_action_enabled_changed;
alias c_g_action_group_action_removed g_action_group_action_removed;
alias c_g_action_group_action_state_changed g_action_group_action_state_changed;
alias c_g_action_group_activate_action g_action_group_activate_action;
alias c_g_action_group_change_action_state g_action_group_change_action_state;
alias c_g_action_group_get_action_enabled g_action_group_get_action_enabled;
alias c_g_action_group_get_action_parameter_type g_action_group_get_action_parameter_type;
alias c_g_action_group_get_action_state g_action_group_get_action_state;
alias c_g_action_group_get_action_state_hint g_action_group_get_action_state_hint;
alias c_g_action_group_get_action_state_type g_action_group_get_action_state_type;
alias c_g_action_group_has_action g_action_group_has_action;
alias c_g_action_group_list_actions g_action_group_list_actions;
alias c_g_action_group_query_action g_action_group_query_action;
// gio.ActionMap
alias c_g_action_map_get_type g_action_map_get_type;
alias c_g_action_map_add_action g_action_map_add_action;
alias c_g_action_map_add_action_entries g_action_map_add_action_entries;
alias c_g_action_map_lookup_action g_action_map_lookup_action;
alias c_g_action_map_remove_action g_action_map_remove_action;
// gio.AppInfo
alias c_g_app_info_get_type g_app_info_get_type;
alias c_g_app_info_create_from_commandline g_app_info_create_from_commandline;
alias c_g_app_info_get_all g_app_info_get_all;
alias c_g_app_info_get_all_for_type g_app_info_get_all_for_type;
alias c_g_app_info_get_default_for_type g_app_info_get_default_for_type;
alias c_g_app_info_get_default_for_uri_scheme g_app_info_get_default_for_uri_scheme;
alias c_g_app_info_get_fallback_for_type g_app_info_get_fallback_for_type;
alias c_g_app_info_get_recommended_for_type g_app_info_get_recommended_for_type;
alias c_g_app_info_launch_default_for_uri g_app_info_launch_default_for_uri;
alias c_g_app_info_launch_default_for_uri_async g_app_info_launch_default_for_uri_async;
alias c_g_app_info_launch_default_for_uri_finish g_app_info_launch_default_for_uri_finish;
alias c_g_app_info_reset_type_associations g_app_info_reset_type_associations;
alias c_g_app_info_add_supports_type g_app_info_add_supports_type;
alias c_g_app_info_can_delete g_app_info_can_delete;
alias c_g_app_info_can_remove_supports_type g_app_info_can_remove_supports_type;
alias c_g_app_info_delete g_app_info_delete;
alias c_g_app_info_dup g_app_info_dup;
alias c_g_app_info_equal g_app_info_equal;
alias c_g_app_info_get_commandline g_app_info_get_commandline;
alias c_g_app_info_get_description g_app_info_get_description;
alias c_g_app_info_get_display_name g_app_info_get_display_name;
alias c_g_app_info_get_executable g_app_info_get_executable;
alias c_g_app_info_get_icon g_app_info_get_icon;
alias c_g_app_info_get_id g_app_info_get_id;
alias c_g_app_info_get_name g_app_info_get_name;
alias c_g_app_info_get_supported_types g_app_info_get_supported_types;
alias c_g_app_info_launch g_app_info_launch;
alias c_g_app_info_launch_uris g_app_info_launch_uris;
alias c_g_app_info_launch_uris_async g_app_info_launch_uris_async;
alias c_g_app_info_launch_uris_finish g_app_info_launch_uris_finish;
alias c_g_app_info_remove_supports_type g_app_info_remove_supports_type;
alias c_g_app_info_set_as_default_for_extension g_app_info_set_as_default_for_extension;
alias c_g_app_info_set_as_default_for_type g_app_info_set_as_default_for_type;
alias c_g_app_info_set_as_last_used_for_type g_app_info_set_as_last_used_for_type;
alias c_g_app_info_should_show g_app_info_should_show;
alias c_g_app_info_supports_files g_app_info_supports_files;
alias c_g_app_info_supports_uris g_app_info_supports_uris;
// gio.AppInfoMonitor
alias c_g_app_info_monitor_get_type g_app_info_monitor_get_type;
alias c_g_app_info_monitor_get g_app_info_monitor_get;
// gio.AppLaunchContext
alias c_g_app_launch_context_get_type g_app_launch_context_get_type;
alias c_g_app_launch_context_new g_app_launch_context_new;
alias c_g_app_launch_context_get_display g_app_launch_context_get_display;
alias c_g_app_launch_context_get_environment g_app_launch_context_get_environment;
alias c_g_app_launch_context_get_startup_notify_id g_app_launch_context_get_startup_notify_id;
alias c_g_app_launch_context_launch_failed g_app_launch_context_launch_failed;
alias c_g_app_launch_context_setenv g_app_launch_context_setenv;
alias c_g_app_launch_context_unsetenv g_app_launch_context_unsetenv;
// gio.Application
alias c_g_application_get_type g_application_get_type;
alias c_g_application_new g_application_new;
alias c_g_application_get_default g_application_get_default;
alias c_g_application_id_is_valid g_application_id_is_valid;
alias c_g_application_activate g_application_activate;
alias c_g_application_add_main_option g_application_add_main_option;
alias c_g_application_add_main_option_entries g_application_add_main_option_entries;
alias c_g_application_add_option_group g_application_add_option_group;
alias c_g_application_bind_busy_property g_application_bind_busy_property;
alias c_g_application_get_application_id g_application_get_application_id;
alias c_g_application_get_dbus_connection g_application_get_dbus_connection;
alias c_g_application_get_dbus_object_path g_application_get_dbus_object_path;
alias c_g_application_get_flags g_application_get_flags;
alias c_g_application_get_inactivity_timeout g_application_get_inactivity_timeout;
alias c_g_application_get_is_busy g_application_get_is_busy;
alias c_g_application_get_is_registered g_application_get_is_registered;
alias c_g_application_get_is_remote g_application_get_is_remote;
alias c_g_application_get_resource_base_path g_application_get_resource_base_path;
alias c_g_application_hold g_application_hold;
alias c_g_application_mark_busy g_application_mark_busy;
alias c_g_application_open g_application_open;
alias c_g_application_quit g_application_quit;
alias c_g_application_register g_application_register;
alias c_g_application_release g_application_release;
alias c_g_application_run g_application_run;
alias c_g_application_send_notification g_application_send_notification;
alias c_g_application_set_action_group g_application_set_action_group;
alias c_g_application_set_application_id g_application_set_application_id;
alias c_g_application_set_default g_application_set_default;
alias c_g_application_set_flags g_application_set_flags;
alias c_g_application_set_inactivity_timeout g_application_set_inactivity_timeout;
alias c_g_application_set_option_context_description g_application_set_option_context_description;
alias c_g_application_set_option_context_parameter_string g_application_set_option_context_parameter_string;
alias c_g_application_set_option_context_summary g_application_set_option_context_summary;
alias c_g_application_set_resource_base_path g_application_set_resource_base_path;
alias c_g_application_unbind_busy_property g_application_unbind_busy_property;
alias c_g_application_unmark_busy g_application_unmark_busy;
alias c_g_application_withdraw_notification g_application_withdraw_notification;
// gio.ApplicationCommandLine
alias c_g_application_command_line_get_type g_application_command_line_get_type;
alias c_g_application_command_line_create_file_for_arg g_application_command_line_create_file_for_arg;
alias c_g_application_command_line_get_arguments g_application_command_line_get_arguments;
alias c_g_application_command_line_get_cwd g_application_command_line_get_cwd;
alias c_g_application_command_line_get_environ g_application_command_line_get_environ;
alias c_g_application_command_line_get_exit_status g_application_command_line_get_exit_status;
alias c_g_application_command_line_get_is_remote g_application_command_line_get_is_remote;
alias c_g_application_command_line_get_options_dict g_application_command_line_get_options_dict;
alias c_g_application_command_line_get_platform_data g_application_command_line_get_platform_data;
alias c_g_application_command_line_get_stdin g_application_command_line_get_stdin;
alias c_g_application_command_line_getenv g_application_command_line_getenv;
alias c_g_application_command_line_print g_application_command_line_print;
alias c_g_application_command_line_printerr g_application_command_line_printerr;
alias c_g_application_command_line_set_exit_status g_application_command_line_set_exit_status;
// gio.AsyncInitable
alias c_g_async_initable_get_type g_async_initable_get_type;
alias c_g_async_initable_new_async g_async_initable_new_async;
alias c_g_async_initable_new_valist_async g_async_initable_new_valist_async;
alias c_g_async_initable_newv_async g_async_initable_newv_async;
alias c_g_async_initable_init_async g_async_initable_init_async;
alias c_g_async_initable_init_finish g_async_initable_init_finish;
alias c_g_async_initable_new_finish g_async_initable_new_finish;
// gio.AsyncResult
alias c_g_async_result_get_type g_async_result_get_type;
alias c_g_async_result_get_source_object g_async_result_get_source_object;
alias c_g_async_result_get_user_data g_async_result_get_user_data;
alias c_g_async_result_is_tagged g_async_result_is_tagged;
alias c_g_async_result_legacy_propagate_error g_async_result_legacy_propagate_error;
// gio.BufferedInputStream
alias c_g_buffered_input_stream_get_type g_buffered_input_stream_get_type;
alias c_g_buffered_input_stream_new g_buffered_input_stream_new;
alias c_g_buffered_input_stream_new_sized g_buffered_input_stream_new_sized;
alias c_g_buffered_input_stream_fill g_buffered_input_stream_fill;
alias c_g_buffered_input_stream_fill_async g_buffered_input_stream_fill_async;
alias c_g_buffered_input_stream_fill_finish g_buffered_input_stream_fill_finish;
alias c_g_buffered_input_stream_get_available g_buffered_input_stream_get_available;
alias c_g_buffered_input_stream_get_buffer_size g_buffered_input_stream_get_buffer_size;
alias c_g_buffered_input_stream_peek g_buffered_input_stream_peek;
alias c_g_buffered_input_stream_peek_buffer g_buffered_input_stream_peek_buffer;
alias c_g_buffered_input_stream_read_byte g_buffered_input_stream_read_byte;
alias c_g_buffered_input_stream_set_buffer_size g_buffered_input_stream_set_buffer_size;
// gio.BufferedOutputStream
alias c_g_buffered_output_stream_get_type g_buffered_output_stream_get_type;
alias c_g_buffered_output_stream_new g_buffered_output_stream_new;
alias c_g_buffered_output_stream_new_sized g_buffered_output_stream_new_sized;
alias c_g_buffered_output_stream_get_auto_grow g_buffered_output_stream_get_auto_grow;
alias c_g_buffered_output_stream_get_buffer_size g_buffered_output_stream_get_buffer_size;
alias c_g_buffered_output_stream_set_auto_grow g_buffered_output_stream_set_auto_grow;
alias c_g_buffered_output_stream_set_buffer_size g_buffered_output_stream_set_buffer_size;
// gio.BytesIcon
alias c_g_bytes_icon_get_type g_bytes_icon_get_type;
alias c_g_bytes_icon_new g_bytes_icon_new;
alias c_g_bytes_icon_get_bytes g_bytes_icon_get_bytes;
// gio.Cancellable
alias c_g_cancellable_get_type g_cancellable_get_type;
alias c_g_cancellable_new g_cancellable_new;
alias c_g_cancellable_get_current g_cancellable_get_current;
alias c_g_cancellable_cancel g_cancellable_cancel;
alias c_g_cancellable_connect g_cancellable_connect;
alias c_g_cancellable_disconnect g_cancellable_disconnect;
alias c_g_cancellable_get_fd g_cancellable_get_fd;
alias c_g_cancellable_is_cancelled g_cancellable_is_cancelled;
alias c_g_cancellable_make_pollfd g_cancellable_make_pollfd;
alias c_g_cancellable_pop_current g_cancellable_pop_current;
alias c_g_cancellable_push_current g_cancellable_push_current;
alias c_g_cancellable_release_fd g_cancellable_release_fd;
alias c_g_cancellable_reset g_cancellable_reset;
alias c_g_cancellable_set_error_if_cancelled g_cancellable_set_error_if_cancelled;
alias c_g_cancellable_source_new g_cancellable_source_new;
// gio.CharsetConverter
alias c_g_charset_converter_get_type g_charset_converter_get_type;
alias c_g_charset_converter_new g_charset_converter_new;
alias c_g_charset_converter_get_num_fallbacks g_charset_converter_get_num_fallbacks;
alias c_g_charset_converter_get_use_fallback g_charset_converter_get_use_fallback;
alias c_g_charset_converter_set_use_fallback g_charset_converter_set_use_fallback;
// gio.Converter
alias c_g_converter_get_type g_converter_get_type;
alias c_g_converter_convert g_converter_convert;
alias c_g_converter_reset g_converter_reset;
// gio.ConverterInputStream
alias c_g_converter_input_stream_get_type g_converter_input_stream_get_type;
alias c_g_converter_input_stream_new g_converter_input_stream_new;
alias c_g_converter_input_stream_get_converter g_converter_input_stream_get_converter;
// gio.ConverterOutputStream
alias c_g_converter_output_stream_get_type g_converter_output_stream_get_type;
alias c_g_converter_output_stream_new g_converter_output_stream_new;
alias c_g_converter_output_stream_get_converter g_converter_output_stream_get_converter;
// gio.Credentials
alias c_g_credentials_get_type g_credentials_get_type;
alias c_g_credentials_new g_credentials_new;
alias c_g_credentials_get_native g_credentials_get_native;
alias c_g_credentials_get_unix_pid g_credentials_get_unix_pid;
alias c_g_credentials_get_unix_user g_credentials_get_unix_user;
alias c_g_credentials_is_same_user g_credentials_is_same_user;
alias c_g_credentials_set_native g_credentials_set_native;
alias c_g_credentials_set_unix_user g_credentials_set_unix_user;
alias c_g_credentials_to_string g_credentials_to_string;
// gio.DBusActionGroup
alias c_g_dbus_action_group_get_type g_dbus_action_group_get_type;
alias c_g_dbus_action_group_get g_dbus_action_group_get;
// gio.DBusAnnotationInfo
alias c_g_dbus_annotation_info_get_type g_dbus_annotation_info_get_type;
alias c_g_dbus_annotation_info_ref g_dbus_annotation_info_ref;
alias c_g_dbus_annotation_info_unref g_dbus_annotation_info_unref;
alias c_g_dbus_annotation_info_lookup g_dbus_annotation_info_lookup;
// gio.DBusArgInfo
alias c_g_dbus_arg_info_get_type g_dbus_arg_info_get_type;
alias c_g_dbus_arg_info_ref g_dbus_arg_info_ref;
alias c_g_dbus_arg_info_unref g_dbus_arg_info_unref;
// gio.DBusAuthObserver
alias c_g_dbus_auth_observer_get_type g_dbus_auth_observer_get_type;
alias c_g_dbus_auth_observer_new g_dbus_auth_observer_new;
alias c_g_dbus_auth_observer_allow_mechanism g_dbus_auth_observer_allow_mechanism;
alias c_g_dbus_auth_observer_authorize_authenticated_peer g_dbus_auth_observer_authorize_authenticated_peer;
// gio.DBusConnection
alias c_g_dbus_connection_get_type g_dbus_connection_get_type;
alias c_g_dbus_connection_new_finish g_dbus_connection_new_finish;
alias c_g_dbus_connection_new_for_address_finish g_dbus_connection_new_for_address_finish;
alias c_g_dbus_connection_new_for_address_sync g_dbus_connection_new_for_address_sync;
alias c_g_dbus_connection_new_sync g_dbus_connection_new_sync;
alias c_g_dbus_connection_new g_dbus_connection_new;
alias c_g_dbus_connection_new_for_address g_dbus_connection_new_for_address;
alias c_g_dbus_connection_add_filter g_dbus_connection_add_filter;
alias c_g_dbus_connection_call g_dbus_connection_call;
alias c_g_dbus_connection_call_finish g_dbus_connection_call_finish;
alias c_g_dbus_connection_call_sync g_dbus_connection_call_sync;
alias c_g_dbus_connection_call_with_unix_fd_list g_dbus_connection_call_with_unix_fd_list;
alias c_g_dbus_connection_call_with_unix_fd_list_finish g_dbus_connection_call_with_unix_fd_list_finish;
alias c_g_dbus_connection_call_with_unix_fd_list_sync g_dbus_connection_call_with_unix_fd_list_sync;
alias c_g_dbus_connection_close g_dbus_connection_close;
alias c_g_dbus_connection_close_finish g_dbus_connection_close_finish;
alias c_g_dbus_connection_close_sync g_dbus_connection_close_sync;
alias c_g_dbus_connection_emit_signal g_dbus_connection_emit_signal;
alias c_g_dbus_connection_export_action_group g_dbus_connection_export_action_group;
alias c_g_dbus_connection_export_menu_model g_dbus_connection_export_menu_model;
alias c_g_dbus_connection_flush g_dbus_connection_flush;
alias c_g_dbus_connection_flush_finish g_dbus_connection_flush_finish;
alias c_g_dbus_connection_flush_sync g_dbus_connection_flush_sync;
alias c_g_dbus_connection_get_capabilities g_dbus_connection_get_capabilities;
alias c_g_dbus_connection_get_exit_on_close g_dbus_connection_get_exit_on_close;
alias c_g_dbus_connection_get_flags g_dbus_connection_get_flags;
alias c_g_dbus_connection_get_guid g_dbus_connection_get_guid;
alias c_g_dbus_connection_get_last_serial g_dbus_connection_get_last_serial;
alias c_g_dbus_connection_get_peer_credentials g_dbus_connection_get_peer_credentials;
alias c_g_dbus_connection_get_stream g_dbus_connection_get_stream;
alias c_g_dbus_connection_get_unique_name g_dbus_connection_get_unique_name;
alias c_g_dbus_connection_is_closed g_dbus_connection_is_closed;
alias c_g_dbus_connection_register_object g_dbus_connection_register_object;
alias c_g_dbus_connection_register_object_with_closures g_dbus_connection_register_object_with_closures;
alias c_g_dbus_connection_register_subtree g_dbus_connection_register_subtree;
alias c_g_dbus_connection_remove_filter g_dbus_connection_remove_filter;
alias c_g_dbus_connection_send_message g_dbus_connection_send_message;
alias c_g_dbus_connection_send_message_with_reply g_dbus_connection_send_message_with_reply;
alias c_g_dbus_connection_send_message_with_reply_finish g_dbus_connection_send_message_with_reply_finish;
alias c_g_dbus_connection_send_message_with_reply_sync g_dbus_connection_send_message_with_reply_sync;
alias c_g_dbus_connection_set_exit_on_close g_dbus_connection_set_exit_on_close;
alias c_g_dbus_connection_signal_subscribe g_dbus_connection_signal_subscribe;
alias c_g_dbus_connection_signal_unsubscribe g_dbus_connection_signal_unsubscribe;
alias c_g_dbus_connection_start_message_processing g_dbus_connection_start_message_processing;
alias c_g_dbus_connection_unexport_action_group g_dbus_connection_unexport_action_group;
alias c_g_dbus_connection_unexport_menu_model g_dbus_connection_unexport_menu_model;
alias c_g_dbus_connection_unregister_object g_dbus_connection_unregister_object;
alias c_g_dbus_connection_unregister_subtree g_dbus_connection_unregister_subtree;
alias c_g_bus_get g_bus_get;
alias c_g_bus_get_finish g_bus_get_finish;
alias c_g_bus_get_sync g_bus_get_sync;
// gio.DBusInterface
alias c_g_dbus_interface_get_type g_dbus_interface_get_type;
alias c_g_dbus_interface_dup_object g_dbus_interface_dup_object;
alias c_g_dbus_interface_get_info g_dbus_interface_get_info;
alias c_g_dbus_interface_get_object g_dbus_interface_get_object;
alias c_g_dbus_interface_set_object g_dbus_interface_set_object;
// gio.DBusInterfaceInfo
alias c_g_dbus_interface_info_get_type g_dbus_interface_info_get_type;
alias c_g_dbus_interface_info_cache_build g_dbus_interface_info_cache_build;
alias c_g_dbus_interface_info_cache_release g_dbus_interface_info_cache_release;
alias c_g_dbus_interface_info_generate_xml g_dbus_interface_info_generate_xml;
alias c_g_dbus_interface_info_lookup_method g_dbus_interface_info_lookup_method;
alias c_g_dbus_interface_info_lookup_property g_dbus_interface_info_lookup_property;
alias c_g_dbus_interface_info_lookup_signal g_dbus_interface_info_lookup_signal;
alias c_g_dbus_interface_info_ref g_dbus_interface_info_ref;
alias c_g_dbus_interface_info_unref g_dbus_interface_info_unref;
// gio.DBusInterfaceSkeleton
alias c_g_dbus_interface_skeleton_get_type g_dbus_interface_skeleton_get_type;
alias c_g_dbus_interface_skeleton_export g_dbus_interface_skeleton_export;
alias c_g_dbus_interface_skeleton_flush g_dbus_interface_skeleton_flush;
alias c_g_dbus_interface_skeleton_get_connection g_dbus_interface_skeleton_get_connection;
alias c_g_dbus_interface_skeleton_get_connections g_dbus_interface_skeleton_get_connections;
alias c_g_dbus_interface_skeleton_get_flags g_dbus_interface_skeleton_get_flags;
alias c_g_dbus_interface_skeleton_get_info g_dbus_interface_skeleton_get_info;
alias c_g_dbus_interface_skeleton_get_object_path g_dbus_interface_skeleton_get_object_path;
alias c_g_dbus_interface_skeleton_get_properties g_dbus_interface_skeleton_get_properties;
alias c_g_dbus_interface_skeleton_get_vtable g_dbus_interface_skeleton_get_vtable;
alias c_g_dbus_interface_skeleton_has_connection g_dbus_interface_skeleton_has_connection;
alias c_g_dbus_interface_skeleton_set_flags g_dbus_interface_skeleton_set_flags;
alias c_g_dbus_interface_skeleton_unexport g_dbus_interface_skeleton_unexport;
alias c_g_dbus_interface_skeleton_unexport_from_connection g_dbus_interface_skeleton_unexport_from_connection;
// gio.DBusMenuModel
alias c_g_dbus_menu_model_get_type g_dbus_menu_model_get_type;
alias c_g_dbus_menu_model_get g_dbus_menu_model_get;
// gio.DBusMessage
alias c_g_dbus_message_get_type g_dbus_message_get_type;
alias c_g_dbus_message_new g_dbus_message_new;
alias c_g_dbus_message_new_from_blob g_dbus_message_new_from_blob;
alias c_g_dbus_message_new_method_call g_dbus_message_new_method_call;
alias c_g_dbus_message_new_signal g_dbus_message_new_signal;
alias c_g_dbus_message_bytes_needed g_dbus_message_bytes_needed;
alias c_g_dbus_message_copy g_dbus_message_copy;
alias c_g_dbus_message_get_arg0 g_dbus_message_get_arg0;
alias c_g_dbus_message_get_body g_dbus_message_get_body;
alias c_g_dbus_message_get_byte_order g_dbus_message_get_byte_order;
alias c_g_dbus_message_get_destination g_dbus_message_get_destination;
alias c_g_dbus_message_get_error_name g_dbus_message_get_error_name;
alias c_g_dbus_message_get_flags g_dbus_message_get_flags;
alias c_g_dbus_message_get_header g_dbus_message_get_header;
alias c_g_dbus_message_get_header_fields g_dbus_message_get_header_fields;
alias c_g_dbus_message_get_interface g_dbus_message_get_interface;
alias c_g_dbus_message_get_locked g_dbus_message_get_locked;
alias c_g_dbus_message_get_member g_dbus_message_get_member;
alias c_g_dbus_message_get_message_type g_dbus_message_get_message_type;
alias c_g_dbus_message_get_num_unix_fds g_dbus_message_get_num_unix_fds;
alias c_g_dbus_message_get_path g_dbus_message_get_path;
alias c_g_dbus_message_get_reply_serial g_dbus_message_get_reply_serial;
alias c_g_dbus_message_get_sender g_dbus_message_get_sender;
alias c_g_dbus_message_get_serial g_dbus_message_get_serial;
alias c_g_dbus_message_get_signature g_dbus_message_get_signature;
alias c_g_dbus_message_get_unix_fd_list g_dbus_message_get_unix_fd_list;
alias c_g_dbus_message_lock g_dbus_message_lock;
alias c_g_dbus_message_new_method_error g_dbus_message_new_method_error;
alias c_g_dbus_message_new_method_error_literal g_dbus_message_new_method_error_literal;
alias c_g_dbus_message_new_method_error_valist g_dbus_message_new_method_error_valist;
alias c_g_dbus_message_new_method_reply g_dbus_message_new_method_reply;
alias c_g_dbus_message_print g_dbus_message_print;
alias c_g_dbus_message_set_body g_dbus_message_set_body;
alias c_g_dbus_message_set_byte_order g_dbus_message_set_byte_order;
alias c_g_dbus_message_set_destination g_dbus_message_set_destination;
alias c_g_dbus_message_set_error_name g_dbus_message_set_error_name;
alias c_g_dbus_message_set_flags g_dbus_message_set_flags;
alias c_g_dbus_message_set_header g_dbus_message_set_header;
alias c_g_dbus_message_set_interface g_dbus_message_set_interface;
alias c_g_dbus_message_set_member g_dbus_message_set_member;
alias c_g_dbus_message_set_message_type g_dbus_message_set_message_type;
alias c_g_dbus_message_set_num_unix_fds g_dbus_message_set_num_unix_fds;
alias c_g_dbus_message_set_path g_dbus_message_set_path;
alias c_g_dbus_message_set_reply_serial g_dbus_message_set_reply_serial;
alias c_g_dbus_message_set_sender g_dbus_message_set_sender;
alias c_g_dbus_message_set_serial g_dbus_message_set_serial;
alias c_g_dbus_message_set_signature g_dbus_message_set_signature;
alias c_g_dbus_message_set_unix_fd_list g_dbus_message_set_unix_fd_list;
alias c_g_dbus_message_to_blob g_dbus_message_to_blob;
alias c_g_dbus_message_to_gerror g_dbus_message_to_gerror;
// gio.DBusMethodInfo
alias c_g_dbus_method_info_get_type g_dbus_method_info_get_type;
alias c_g_dbus_method_info_ref g_dbus_method_info_ref;
alias c_g_dbus_method_info_unref g_dbus_method_info_unref;
// gio.DBusMethodInvocation
alias c_g_dbus_method_invocation_get_type g_dbus_method_invocation_get_type;
alias c_g_dbus_method_invocation_get_connection g_dbus_method_invocation_get_connection;
alias c_g_dbus_method_invocation_get_interface_name g_dbus_method_invocation_get_interface_name;
alias c_g_dbus_method_invocation_get_message g_dbus_method_invocation_get_message;
alias c_g_dbus_method_invocation_get_method_info g_dbus_method_invocation_get_method_info;
alias c_g_dbus_method_invocation_get_method_name g_dbus_method_invocation_get_method_name;
alias c_g_dbus_method_invocation_get_object_path g_dbus_method_invocation_get_object_path;
alias c_g_dbus_method_invocation_get_parameters g_dbus_method_invocation_get_parameters;
alias c_g_dbus_method_invocation_get_property_info g_dbus_method_invocation_get_property_info;
alias c_g_dbus_method_invocation_get_sender g_dbus_method_invocation_get_sender;
alias c_g_dbus_method_invocation_get_user_data g_dbus_method_invocation_get_user_data;
alias c_g_dbus_method_invocation_return_dbus_error g_dbus_method_invocation_return_dbus_error;
alias c_g_dbus_method_invocation_return_error g_dbus_method_invocation_return_error;
alias c_g_dbus_method_invocation_return_error_literal g_dbus_method_invocation_return_error_literal;
alias c_g_dbus_method_invocation_return_error_valist g_dbus_method_invocation_return_error_valist;
alias c_g_dbus_method_invocation_return_gerror g_dbus_method_invocation_return_gerror;
alias c_g_dbus_method_invocation_return_value g_dbus_method_invocation_return_value;
alias c_g_dbus_method_invocation_return_value_with_unix_fd_list g_dbus_method_invocation_return_value_with_unix_fd_list;
alias c_g_dbus_method_invocation_take_error g_dbus_method_invocation_take_error;
// gio.DBusNodeInfo
alias c_g_dbus_node_info_get_type g_dbus_node_info_get_type;
alias c_g_dbus_node_info_new_for_xml g_dbus_node_info_new_for_xml;
alias c_g_dbus_node_info_generate_xml g_dbus_node_info_generate_xml;
alias c_g_dbus_node_info_lookup_interface g_dbus_node_info_lookup_interface;
alias c_g_dbus_node_info_ref g_dbus_node_info_ref;
alias c_g_dbus_node_info_unref g_dbus_node_info_unref;
// gio.DBusObject
alias c_g_dbus_object_get_type g_dbus_object_get_type;
alias c_g_dbus_object_get_interface g_dbus_object_get_interface;
alias c_g_dbus_object_get_interfaces g_dbus_object_get_interfaces;
alias c_g_dbus_object_get_object_path g_dbus_object_get_object_path;
// gio.DBusObjectManager
alias c_g_dbus_object_manager_get_type g_dbus_object_manager_get_type;
alias c_g_dbus_object_manager_get_interface g_dbus_object_manager_get_interface;
alias c_g_dbus_object_manager_get_object g_dbus_object_manager_get_object;
alias c_g_dbus_object_manager_get_object_path g_dbus_object_manager_get_object_path;
alias c_g_dbus_object_manager_get_objects g_dbus_object_manager_get_objects;
// gio.DBusObjectManagerClient
alias c_g_dbus_object_manager_client_get_type g_dbus_object_manager_client_get_type;
alias c_g_dbus_object_manager_client_new_finish g_dbus_object_manager_client_new_finish;
alias c_g_dbus_object_manager_client_new_for_bus_finish g_dbus_object_manager_client_new_for_bus_finish;
alias c_g_dbus_object_manager_client_new_for_bus_sync g_dbus_object_manager_client_new_for_bus_sync;
alias c_g_dbus_object_manager_client_new_sync g_dbus_object_manager_client_new_sync;
alias c_g_dbus_object_manager_client_new g_dbus_object_manager_client_new;
alias c_g_dbus_object_manager_client_new_for_bus g_dbus_object_manager_client_new_for_bus;
alias c_g_dbus_object_manager_client_get_connection g_dbus_object_manager_client_get_connection;
alias c_g_dbus_object_manager_client_get_flags g_dbus_object_manager_client_get_flags;
alias c_g_dbus_object_manager_client_get_name g_dbus_object_manager_client_get_name;
alias c_g_dbus_object_manager_client_get_name_owner g_dbus_object_manager_client_get_name_owner;
// gio.DBusObjectManagerServer
alias c_g_dbus_object_manager_server_get_type g_dbus_object_manager_server_get_type;
alias c_g_dbus_object_manager_server_new g_dbus_object_manager_server_new;
alias c_g_dbus_object_manager_server_export g_dbus_object_manager_server_export;
alias c_g_dbus_object_manager_server_export_uniquely g_dbus_object_manager_server_export_uniquely;
alias c_g_dbus_object_manager_server_get_connection g_dbus_object_manager_server_get_connection;
alias c_g_dbus_object_manager_server_is_exported g_dbus_object_manager_server_is_exported;
alias c_g_dbus_object_manager_server_set_connection g_dbus_object_manager_server_set_connection;
alias c_g_dbus_object_manager_server_unexport g_dbus_object_manager_server_unexport;
// gio.DBusObjectProxy
alias c_g_dbus_object_proxy_get_type g_dbus_object_proxy_get_type;
alias c_g_dbus_object_proxy_new g_dbus_object_proxy_new;
alias c_g_dbus_object_proxy_get_connection g_dbus_object_proxy_get_connection;
// gio.DBusObjectSkeleton
alias c_g_dbus_object_skeleton_get_type g_dbus_object_skeleton_get_type;
alias c_g_dbus_object_skeleton_new g_dbus_object_skeleton_new;
alias c_g_dbus_object_skeleton_add_interface g_dbus_object_skeleton_add_interface;
alias c_g_dbus_object_skeleton_flush g_dbus_object_skeleton_flush;
alias c_g_dbus_object_skeleton_remove_interface g_dbus_object_skeleton_remove_interface;
alias c_g_dbus_object_skeleton_remove_interface_by_name g_dbus_object_skeleton_remove_interface_by_name;
alias c_g_dbus_object_skeleton_set_object_path g_dbus_object_skeleton_set_object_path;
// gio.DBusPropertyInfo
alias c_g_dbus_property_info_get_type g_dbus_property_info_get_type;
alias c_g_dbus_property_info_ref g_dbus_property_info_ref;
alias c_g_dbus_property_info_unref g_dbus_property_info_unref;
// gio.DBusProxy
alias c_g_dbus_proxy_get_type g_dbus_proxy_get_type;
alias c_g_dbus_proxy_new_finish g_dbus_proxy_new_finish;
alias c_g_dbus_proxy_new_for_bus_finish g_dbus_proxy_new_for_bus_finish;
alias c_g_dbus_proxy_new_for_bus_sync g_dbus_proxy_new_for_bus_sync;
alias c_g_dbus_proxy_new_sync g_dbus_proxy_new_sync;
alias c_g_dbus_proxy_new g_dbus_proxy_new;
alias c_g_dbus_proxy_new_for_bus g_dbus_proxy_new_for_bus;
alias c_g_dbus_proxy_call g_dbus_proxy_call;
alias c_g_dbus_proxy_call_finish g_dbus_proxy_call_finish;
alias c_g_dbus_proxy_call_sync g_dbus_proxy_call_sync;
alias c_g_dbus_proxy_call_with_unix_fd_list g_dbus_proxy_call_with_unix_fd_list;
alias c_g_dbus_proxy_call_with_unix_fd_list_finish g_dbus_proxy_call_with_unix_fd_list_finish;
alias c_g_dbus_proxy_call_with_unix_fd_list_sync g_dbus_proxy_call_with_unix_fd_list_sync;
alias c_g_dbus_proxy_get_cached_property g_dbus_proxy_get_cached_property;
alias c_g_dbus_proxy_get_cached_property_names g_dbus_proxy_get_cached_property_names;
alias c_g_dbus_proxy_get_connection g_dbus_proxy_get_connection;
alias c_g_dbus_proxy_get_default_timeout g_dbus_proxy_get_default_timeout;
alias c_g_dbus_proxy_get_flags g_dbus_proxy_get_flags;
alias c_g_dbus_proxy_get_interface_info g_dbus_proxy_get_interface_info;
alias c_g_dbus_proxy_get_interface_name g_dbus_proxy_get_interface_name;
alias c_g_dbus_proxy_get_name g_dbus_proxy_get_name;
alias c_g_dbus_proxy_get_name_owner g_dbus_proxy_get_name_owner;
alias c_g_dbus_proxy_get_object_path g_dbus_proxy_get_object_path;
alias c_g_dbus_proxy_set_cached_property g_dbus_proxy_set_cached_property;
alias c_g_dbus_proxy_set_default_timeout g_dbus_proxy_set_default_timeout;
alias c_g_dbus_proxy_set_interface_info g_dbus_proxy_set_interface_info;
// gio.DBusServer
alias c_g_dbus_server_get_type g_dbus_server_get_type;
alias c_g_dbus_server_new_sync g_dbus_server_new_sync;
alias c_g_dbus_server_get_client_address g_dbus_server_get_client_address;
alias c_g_dbus_server_get_flags g_dbus_server_get_flags;
alias c_g_dbus_server_get_guid g_dbus_server_get_guid;
alias c_g_dbus_server_is_active g_dbus_server_is_active;
alias c_g_dbus_server_start g_dbus_server_start;
alias c_g_dbus_server_stop g_dbus_server_stop;
// gio.DBusSignalInfo
alias c_g_dbus_signal_info_get_type g_dbus_signal_info_get_type;
alias c_g_dbus_signal_info_ref g_dbus_signal_info_ref;
alias c_g_dbus_signal_info_unref g_dbus_signal_info_unref;
// gio.DataInputStream
alias c_g_data_input_stream_get_type g_data_input_stream_get_type;
alias c_g_data_input_stream_new g_data_input_stream_new;
alias c_g_data_input_stream_get_byte_order g_data_input_stream_get_byte_order;
alias c_g_data_input_stream_get_newline_type g_data_input_stream_get_newline_type;
alias c_g_data_input_stream_read_byte g_data_input_stream_read_byte;
alias c_g_data_input_stream_read_int16 g_data_input_stream_read_int16;
alias c_g_data_input_stream_read_int32 g_data_input_stream_read_int32;
alias c_g_data_input_stream_read_int64 g_data_input_stream_read_int64;
alias c_g_data_input_stream_read_line g_data_input_stream_read_line;
alias c_g_data_input_stream_read_line_async g_data_input_stream_read_line_async;
alias c_g_data_input_stream_read_line_finish g_data_input_stream_read_line_finish;
alias c_g_data_input_stream_read_line_finish_utf8 g_data_input_stream_read_line_finish_utf8;
alias c_g_data_input_stream_read_line_utf8 g_data_input_stream_read_line_utf8;
alias c_g_data_input_stream_read_uint16 g_data_input_stream_read_uint16;
alias c_g_data_input_stream_read_uint32 g_data_input_stream_read_uint32;
alias c_g_data_input_stream_read_uint64 g_data_input_stream_read_uint64;
alias c_g_data_input_stream_read_until g_data_input_stream_read_until;
alias c_g_data_input_stream_read_until_async g_data_input_stream_read_until_async;
alias c_g_data_input_stream_read_until_finish g_data_input_stream_read_until_finish;
alias c_g_data_input_stream_read_upto g_data_input_stream_read_upto;
alias c_g_data_input_stream_read_upto_async g_data_input_stream_read_upto_async;
alias c_g_data_input_stream_read_upto_finish g_data_input_stream_read_upto_finish;
alias c_g_data_input_stream_set_byte_order g_data_input_stream_set_byte_order;
alias c_g_data_input_stream_set_newline_type g_data_input_stream_set_newline_type;
// gio.DataOutputStream
alias c_g_data_output_stream_get_type g_data_output_stream_get_type;
alias c_g_data_output_stream_new g_data_output_stream_new;
alias c_g_data_output_stream_get_byte_order g_data_output_stream_get_byte_order;
alias c_g_data_output_stream_put_byte g_data_output_stream_put_byte;
alias c_g_data_output_stream_put_int16 g_data_output_stream_put_int16;
alias c_g_data_output_stream_put_int32 g_data_output_stream_put_int32;
alias c_g_data_output_stream_put_int64 g_data_output_stream_put_int64;
alias c_g_data_output_stream_put_string g_data_output_stream_put_string;
alias c_g_data_output_stream_put_uint16 g_data_output_stream_put_uint16;
alias c_g_data_output_stream_put_uint32 g_data_output_stream_put_uint32;
alias c_g_data_output_stream_put_uint64 g_data_output_stream_put_uint64;
alias c_g_data_output_stream_set_byte_order g_data_output_stream_set_byte_order;
// gio.DatagramBased
alias c_g_datagram_based_get_type g_datagram_based_get_type;
alias c_g_datagram_based_condition_check g_datagram_based_condition_check;
alias c_g_datagram_based_condition_wait g_datagram_based_condition_wait;
alias c_g_datagram_based_create_source g_datagram_based_create_source;
alias c_g_datagram_based_receive_messages g_datagram_based_receive_messages;
alias c_g_datagram_based_send_messages g_datagram_based_send_messages;
// gio.DesktopAppInfo
alias c_g_desktop_app_info_get_type g_desktop_app_info_get_type;
alias c_g_desktop_app_info_new g_desktop_app_info_new;
alias c_g_desktop_app_info_new_from_filename g_desktop_app_info_new_from_filename;
alias c_g_desktop_app_info_new_from_keyfile g_desktop_app_info_new_from_keyfile;
alias c_g_desktop_app_info_get_implementations g_desktop_app_info_get_implementations;
alias c_g_desktop_app_info_search g_desktop_app_info_search;
alias c_g_desktop_app_info_set_desktop_env g_desktop_app_info_set_desktop_env;
alias c_g_desktop_app_info_get_action_name g_desktop_app_info_get_action_name;
alias c_g_desktop_app_info_get_boolean g_desktop_app_info_get_boolean;
alias c_g_desktop_app_info_get_categories g_desktop_app_info_get_categories;
alias c_g_desktop_app_info_get_filename g_desktop_app_info_get_filename;
alias c_g_desktop_app_info_get_generic_name g_desktop_app_info_get_generic_name;
alias c_g_desktop_app_info_get_is_hidden g_desktop_app_info_get_is_hidden;
alias c_g_desktop_app_info_get_keywords g_desktop_app_info_get_keywords;
alias c_g_desktop_app_info_get_locale_string g_desktop_app_info_get_locale_string;
alias c_g_desktop_app_info_get_nodisplay g_desktop_app_info_get_nodisplay;
alias c_g_desktop_app_info_get_show_in g_desktop_app_info_get_show_in;
alias c_g_desktop_app_info_get_startup_wm_class g_desktop_app_info_get_startup_wm_class;
alias c_g_desktop_app_info_get_string g_desktop_app_info_get_string;
alias c_g_desktop_app_info_get_string_list g_desktop_app_info_get_string_list;
alias c_g_desktop_app_info_has_key g_desktop_app_info_has_key;
alias c_g_desktop_app_info_launch_action g_desktop_app_info_launch_action;
alias c_g_desktop_app_info_launch_uris_as_manager g_desktop_app_info_launch_uris_as_manager;
alias c_g_desktop_app_info_launch_uris_as_manager_with_fds g_desktop_app_info_launch_uris_as_manager_with_fds;
alias c_g_desktop_app_info_list_actions g_desktop_app_info_list_actions;
// gio.DesktopAppInfoLookup
alias c_g_desktop_app_info_lookup_get_type g_desktop_app_info_lookup_get_type;
alias c_g_desktop_app_info_lookup_get_default_for_uri_scheme g_desktop_app_info_lookup_get_default_for_uri_scheme;
// gio.Drive
alias c_g_drive_get_type g_drive_get_type;
alias c_g_drive_can_eject g_drive_can_eject;
alias c_g_drive_can_poll_for_media g_drive_can_poll_for_media;
alias c_g_drive_can_start g_drive_can_start;
alias c_g_drive_can_start_degraded g_drive_can_start_degraded;
alias c_g_drive_can_stop g_drive_can_stop;
alias c_g_drive_eject g_drive_eject;
alias c_g_drive_eject_finish g_drive_eject_finish;
alias c_g_drive_eject_with_operation g_drive_eject_with_operation;
alias c_g_drive_eject_with_operation_finish g_drive_eject_with_operation_finish;
alias c_g_drive_enumerate_identifiers g_drive_enumerate_identifiers;
alias c_g_drive_get_icon g_drive_get_icon;
alias c_g_drive_get_identifier g_drive_get_identifier;
alias c_g_drive_get_name g_drive_get_name;
alias c_g_drive_get_sort_key g_drive_get_sort_key;
alias c_g_drive_get_start_stop_type g_drive_get_start_stop_type;
alias c_g_drive_get_symbolic_icon g_drive_get_symbolic_icon;
alias c_g_drive_get_volumes g_drive_get_volumes;
alias c_g_drive_has_media g_drive_has_media;
alias c_g_drive_has_volumes g_drive_has_volumes;
alias c_g_drive_is_media_check_automatic g_drive_is_media_check_automatic;
alias c_g_drive_is_media_removable g_drive_is_media_removable;
alias c_g_drive_is_removable g_drive_is_removable;
alias c_g_drive_poll_for_media g_drive_poll_for_media;
alias c_g_drive_poll_for_media_finish g_drive_poll_for_media_finish;
alias c_g_drive_start g_drive_start;
alias c_g_drive_start_finish g_drive_start_finish;
alias c_g_drive_stop g_drive_stop;
alias c_g_drive_stop_finish g_drive_stop_finish;
// gio.DtlsClientConnection
alias c_g_dtls_client_connection_get_type g_dtls_client_connection_get_type;
alias c_g_dtls_client_connection_new g_dtls_client_connection_new;
alias c_g_dtls_client_connection_get_accepted_cas g_dtls_client_connection_get_accepted_cas;
alias c_g_dtls_client_connection_get_server_identity g_dtls_client_connection_get_server_identity;
alias c_g_dtls_client_connection_get_validation_flags g_dtls_client_connection_get_validation_flags;
alias c_g_dtls_client_connection_set_server_identity g_dtls_client_connection_set_server_identity;
alias c_g_dtls_client_connection_set_validation_flags g_dtls_client_connection_set_validation_flags;
// gio.DtlsConnection
alias c_g_dtls_connection_get_type g_dtls_connection_get_type;
alias c_g_dtls_connection_close g_dtls_connection_close;
alias c_g_dtls_connection_close_async g_dtls_connection_close_async;
alias c_g_dtls_connection_close_finish g_dtls_connection_close_finish;
alias c_g_dtls_connection_emit_accept_certificate g_dtls_connection_emit_accept_certificate;
alias c_g_dtls_connection_get_certificate g_dtls_connection_get_certificate;
alias c_g_dtls_connection_get_database g_dtls_connection_get_database;
alias c_g_dtls_connection_get_interaction g_dtls_connection_get_interaction;
alias c_g_dtls_connection_get_negotiated_protocol g_dtls_connection_get_negotiated_protocol;
alias c_g_dtls_connection_get_peer_certificate g_dtls_connection_get_peer_certificate;
alias c_g_dtls_connection_get_peer_certificate_errors g_dtls_connection_get_peer_certificate_errors;
alias c_g_dtls_connection_get_rehandshake_mode g_dtls_connection_get_rehandshake_mode;
alias c_g_dtls_connection_get_require_close_notify g_dtls_connection_get_require_close_notify;
alias c_g_dtls_connection_handshake g_dtls_connection_handshake;
alias c_g_dtls_connection_handshake_async g_dtls_connection_handshake_async;
alias c_g_dtls_connection_handshake_finish g_dtls_connection_handshake_finish;
alias c_g_dtls_connection_set_advertised_protocols g_dtls_connection_set_advertised_protocols;
alias c_g_dtls_connection_set_certificate g_dtls_connection_set_certificate;
alias c_g_dtls_connection_set_database g_dtls_connection_set_database;
alias c_g_dtls_connection_set_interaction g_dtls_connection_set_interaction;
alias c_g_dtls_connection_set_rehandshake_mode g_dtls_connection_set_rehandshake_mode;
alias c_g_dtls_connection_set_require_close_notify g_dtls_connection_set_require_close_notify;
alias c_g_dtls_connection_shutdown g_dtls_connection_shutdown;
alias c_g_dtls_connection_shutdown_async g_dtls_connection_shutdown_async;
alias c_g_dtls_connection_shutdown_finish g_dtls_connection_shutdown_finish;
// gio.DtlsServerConnection
alias c_g_dtls_server_connection_get_type g_dtls_server_connection_get_type;
alias c_g_dtls_server_connection_new g_dtls_server_connection_new;
// gio.Emblem
alias c_g_emblem_get_type g_emblem_get_type;
alias c_g_emblem_new g_emblem_new;
alias c_g_emblem_new_with_origin g_emblem_new_with_origin;
alias c_g_emblem_get_icon g_emblem_get_icon;
alias c_g_emblem_get_origin g_emblem_get_origin;
// gio.EmblemedIcon
alias c_g_emblemed_icon_get_type g_emblemed_icon_get_type;
alias c_g_emblemed_icon_new g_emblemed_icon_new;
alias c_g_emblemed_icon_add_emblem g_emblemed_icon_add_emblem;
alias c_g_emblemed_icon_clear_emblems g_emblemed_icon_clear_emblems;
alias c_g_emblemed_icon_get_emblems g_emblemed_icon_get_emblems;
alias c_g_emblemed_icon_get_icon g_emblemed_icon_get_icon;
// gio.File
alias c_g_file_get_type g_file_get_type;
alias c_g_file_new_build_filename g_file_new_build_filename;
alias c_g_file_new_for_commandline_arg g_file_new_for_commandline_arg;
alias c_g_file_new_for_commandline_arg_and_cwd g_file_new_for_commandline_arg_and_cwd;
alias c_g_file_new_for_path g_file_new_for_path;
alias c_g_file_new_for_uri g_file_new_for_uri;
alias c_g_file_new_tmp g_file_new_tmp;
alias c_g_file_parse_name g_file_parse_name;
alias c_g_file_append_to g_file_append_to;
alias c_g_file_append_to_async g_file_append_to_async;
alias c_g_file_append_to_finish g_file_append_to_finish;
alias c_g_file_copy g_file_copy;
alias c_g_file_copy_async g_file_copy_async;
alias c_g_file_copy_attributes g_file_copy_attributes;
alias c_g_file_copy_finish g_file_copy_finish;
alias c_g_file_create g_file_create;
alias c_g_file_create_async g_file_create_async;
alias c_g_file_create_finish g_file_create_finish;
alias c_g_file_create_readwrite g_file_create_readwrite;
alias c_g_file_create_readwrite_async g_file_create_readwrite_async;
alias c_g_file_create_readwrite_finish g_file_create_readwrite_finish;
alias c_g_file_delete g_file_delete;
alias c_g_file_delete_async g_file_delete_async;
alias c_g_file_delete_finish g_file_delete_finish;
alias c_g_file_dup g_file_dup;
alias c_g_file_eject_mountable g_file_eject_mountable;
alias c_g_file_eject_mountable_finish g_file_eject_mountable_finish;
alias c_g_file_eject_mountable_with_operation g_file_eject_mountable_with_operation;
alias c_g_file_eject_mountable_with_operation_finish g_file_eject_mountable_with_operation_finish;
alias c_g_file_enumerate_children g_file_enumerate_children;
alias c_g_file_enumerate_children_async g_file_enumerate_children_async;
alias c_g_file_enumerate_children_finish g_file_enumerate_children_finish;
alias c_g_file_equal g_file_equal;
alias c_g_file_find_enclosing_mount g_file_find_enclosing_mount;
alias c_g_file_find_enclosing_mount_async g_file_find_enclosing_mount_async;
alias c_g_file_find_enclosing_mount_finish g_file_find_enclosing_mount_finish;
alias c_g_file_get_basename g_file_get_basename;
alias c_g_file_get_child g_file_get_child;
alias c_g_file_get_child_for_display_name g_file_get_child_for_display_name;
alias c_g_file_get_parent g_file_get_parent;
alias c_g_file_get_parse_name g_file_get_parse_name;
alias c_g_file_get_path g_file_get_path;
alias c_g_file_get_relative_path g_file_get_relative_path;
alias c_g_file_get_uri g_file_get_uri;
alias c_g_file_get_uri_scheme g_file_get_uri_scheme;
alias c_g_file_has_parent g_file_has_parent;
alias c_g_file_has_prefix g_file_has_prefix;
alias c_g_file_has_uri_scheme g_file_has_uri_scheme;
alias c_g_file_hash g_file_hash;
alias c_g_file_is_native g_file_is_native;
alias c_g_file_load_bytes g_file_load_bytes;
alias c_g_file_load_bytes_async g_file_load_bytes_async;
alias c_g_file_load_bytes_finish g_file_load_bytes_finish;
alias c_g_file_load_contents g_file_load_contents;
alias c_g_file_load_contents_async g_file_load_contents_async;
alias c_g_file_load_contents_finish g_file_load_contents_finish;
alias c_g_file_load_partial_contents_async g_file_load_partial_contents_async;
alias c_g_file_load_partial_contents_finish g_file_load_partial_contents_finish;
alias c_g_file_make_directory g_file_make_directory;
alias c_g_file_make_directory_async g_file_make_directory_async;
alias c_g_file_make_directory_finish g_file_make_directory_finish;
alias c_g_file_make_directory_with_parents g_file_make_directory_with_parents;
alias c_g_file_make_symbolic_link g_file_make_symbolic_link;
alias c_g_file_measure_disk_usage g_file_measure_disk_usage;
alias c_g_file_measure_disk_usage_async g_file_measure_disk_usage_async;
alias c_g_file_measure_disk_usage_finish g_file_measure_disk_usage_finish;
alias c_g_file_monitor g_file_monitor;
alias c_g_file_monitor_directory g_file_monitor_directory;
alias c_g_file_monitor_file g_file_monitor_file;
alias c_g_file_mount_enclosing_volume g_file_mount_enclosing_volume;
alias c_g_file_mount_enclosing_volume_finish g_file_mount_enclosing_volume_finish;
alias c_g_file_mount_mountable g_file_mount_mountable;
alias c_g_file_mount_mountable_finish g_file_mount_mountable_finish;
alias c_g_file_move g_file_move;
alias c_g_file_open_readwrite g_file_open_readwrite;
alias c_g_file_open_readwrite_async g_file_open_readwrite_async;
alias c_g_file_open_readwrite_finish g_file_open_readwrite_finish;
alias c_g_file_peek_path g_file_peek_path;
alias c_g_file_poll_mountable g_file_poll_mountable;
alias c_g_file_poll_mountable_finish g_file_poll_mountable_finish;
alias c_g_file_query_default_handler g_file_query_default_handler;
alias c_g_file_query_default_handler_async g_file_query_default_handler_async;
alias c_g_file_query_default_handler_finish g_file_query_default_handler_finish;
alias c_g_file_query_exists g_file_query_exists;
alias c_g_file_query_file_type g_file_query_file_type;
alias c_g_file_query_filesystem_info g_file_query_filesystem_info;
alias c_g_file_query_filesystem_info_async g_file_query_filesystem_info_async;
alias c_g_file_query_filesystem_info_finish g_file_query_filesystem_info_finish;
alias c_g_file_query_info g_file_query_info;
alias c_g_file_query_info_async g_file_query_info_async;
alias c_g_file_query_info_finish g_file_query_info_finish;
alias c_g_file_query_settable_attributes g_file_query_settable_attributes;
alias c_g_file_query_writable_namespaces g_file_query_writable_namespaces;
alias c_g_file_read g_file_read;
alias c_g_file_read_async g_file_read_async;
alias c_g_file_read_finish g_file_read_finish;
alias c_g_file_replace g_file_replace;
alias c_g_file_replace_async g_file_replace_async;
alias c_g_file_replace_contents g_file_replace_contents;
alias c_g_file_replace_contents_async g_file_replace_contents_async;
alias c_g_file_replace_contents_bytes_async g_file_replace_contents_bytes_async;
alias c_g_file_replace_contents_finish g_file_replace_contents_finish;
alias c_g_file_replace_finish g_file_replace_finish;
alias c_g_file_replace_readwrite g_file_replace_readwrite;
alias c_g_file_replace_readwrite_async g_file_replace_readwrite_async;
alias c_g_file_replace_readwrite_finish g_file_replace_readwrite_finish;
alias c_g_file_resolve_relative_path g_file_resolve_relative_path;
alias c_g_file_set_attribute g_file_set_attribute;
alias c_g_file_set_attribute_byte_string g_file_set_attribute_byte_string;
alias c_g_file_set_attribute_int32 g_file_set_attribute_int32;
alias c_g_file_set_attribute_int64 g_file_set_attribute_int64;
alias c_g_file_set_attribute_string g_file_set_attribute_string;
alias c_g_file_set_attribute_uint32 g_file_set_attribute_uint32;
alias c_g_file_set_attribute_uint64 g_file_set_attribute_uint64;
alias c_g_file_set_attributes_async g_file_set_attributes_async;
alias c_g_file_set_attributes_finish g_file_set_attributes_finish;
alias c_g_file_set_attributes_from_info g_file_set_attributes_from_info;
alias c_g_file_set_display_name g_file_set_display_name;
alias c_g_file_set_display_name_async g_file_set_display_name_async;
alias c_g_file_set_display_name_finish g_file_set_display_name_finish;
alias c_g_file_start_mountable g_file_start_mountable;
alias c_g_file_start_mountable_finish g_file_start_mountable_finish;
alias c_g_file_stop_mountable g_file_stop_mountable;
alias c_g_file_stop_mountable_finish g_file_stop_mountable_finish;
alias c_g_file_supports_thread_contexts g_file_supports_thread_contexts;
alias c_g_file_trash g_file_trash;
alias c_g_file_trash_async g_file_trash_async;
alias c_g_file_trash_finish g_file_trash_finish;
alias c_g_file_unmount_mountable g_file_unmount_mountable;
alias c_g_file_unmount_mountable_finish g_file_unmount_mountable_finish;
alias c_g_file_unmount_mountable_with_operation g_file_unmount_mountable_with_operation;
alias c_g_file_unmount_mountable_with_operation_finish g_file_unmount_mountable_with_operation_finish;
// gio.FileAttributeInfoList
alias c_g_file_attribute_info_list_get_type g_file_attribute_info_list_get_type;
alias c_g_file_attribute_info_list_new g_file_attribute_info_list_new;
alias c_g_file_attribute_info_list_add g_file_attribute_info_list_add;
alias c_g_file_attribute_info_list_dup g_file_attribute_info_list_dup;
alias c_g_file_attribute_info_list_lookup g_file_attribute_info_list_lookup;
alias c_g_file_attribute_info_list_ref g_file_attribute_info_list_ref;
alias c_g_file_attribute_info_list_unref g_file_attribute_info_list_unref;
// gio.FileAttributeMatcher
alias c_g_file_attribute_matcher_get_type g_file_attribute_matcher_get_type;
alias c_g_file_attribute_matcher_new g_file_attribute_matcher_new;
alias c_g_file_attribute_matcher_enumerate_namespace g_file_attribute_matcher_enumerate_namespace;
alias c_g_file_attribute_matcher_enumerate_next g_file_attribute_matcher_enumerate_next;
alias c_g_file_attribute_matcher_matches g_file_attribute_matcher_matches;
alias c_g_file_attribute_matcher_matches_only g_file_attribute_matcher_matches_only;
alias c_g_file_attribute_matcher_ref g_file_attribute_matcher_ref;
alias c_g_file_attribute_matcher_subtract g_file_attribute_matcher_subtract;
alias c_g_file_attribute_matcher_to_string g_file_attribute_matcher_to_string;
alias c_g_file_attribute_matcher_unref g_file_attribute_matcher_unref;
// gio.FileDescriptorBased
alias c_g_file_descriptor_based_get_type g_file_descriptor_based_get_type;
alias c_g_file_descriptor_based_get_fd g_file_descriptor_based_get_fd;
// gio.FileEnumerator
alias c_g_file_enumerator_get_type g_file_enumerator_get_type;
alias c_g_file_enumerator_close g_file_enumerator_close;
alias c_g_file_enumerator_close_async g_file_enumerator_close_async;
alias c_g_file_enumerator_close_finish g_file_enumerator_close_finish;
alias c_g_file_enumerator_get_child g_file_enumerator_get_child;
alias c_g_file_enumerator_get_container g_file_enumerator_get_container;
alias c_g_file_enumerator_has_pending g_file_enumerator_has_pending;
alias c_g_file_enumerator_is_closed g_file_enumerator_is_closed;
alias c_g_file_enumerator_iterate g_file_enumerator_iterate;
alias c_g_file_enumerator_next_file g_file_enumerator_next_file;
alias c_g_file_enumerator_next_files_async g_file_enumerator_next_files_async;
alias c_g_file_enumerator_next_files_finish g_file_enumerator_next_files_finish;
alias c_g_file_enumerator_set_pending g_file_enumerator_set_pending;
// gio.FileIOStream
alias c_g_file_io_stream_get_type g_file_io_stream_get_type;
alias c_g_file_io_stream_get_etag g_file_io_stream_get_etag;
alias c_g_file_io_stream_query_info g_file_io_stream_query_info;
alias c_g_file_io_stream_query_info_async g_file_io_stream_query_info_async;
alias c_g_file_io_stream_query_info_finish g_file_io_stream_query_info_finish;
// gio.FileIcon
alias c_g_file_icon_get_type g_file_icon_get_type;
alias c_g_file_icon_new g_file_icon_new;
alias c_g_file_icon_get_file g_file_icon_get_file;
// gio.FileInfo
alias c_g_file_info_get_type g_file_info_get_type;
alias c_g_file_info_new g_file_info_new;
alias c_g_file_info_clear_status g_file_info_clear_status;
alias c_g_file_info_copy_into g_file_info_copy_into;
alias c_g_file_info_dup g_file_info_dup;
alias c_g_file_info_get_attribute_as_string g_file_info_get_attribute_as_string;
alias c_g_file_info_get_attribute_boolean g_file_info_get_attribute_boolean;
alias c_g_file_info_get_attribute_byte_string g_file_info_get_attribute_byte_string;
alias c_g_file_info_get_attribute_data g_file_info_get_attribute_data;
alias c_g_file_info_get_attribute_int32 g_file_info_get_attribute_int32;
alias c_g_file_info_get_attribute_int64 g_file_info_get_attribute_int64;
alias c_g_file_info_get_attribute_object g_file_info_get_attribute_object;
alias c_g_file_info_get_attribute_status g_file_info_get_attribute_status;
alias c_g_file_info_get_attribute_string g_file_info_get_attribute_string;
alias c_g_file_info_get_attribute_stringv g_file_info_get_attribute_stringv;
alias c_g_file_info_get_attribute_type g_file_info_get_attribute_type;
alias c_g_file_info_get_attribute_uint32 g_file_info_get_attribute_uint32;
alias c_g_file_info_get_attribute_uint64 g_file_info_get_attribute_uint64;
alias c_g_file_info_get_content_type g_file_info_get_content_type;
alias c_g_file_info_get_deletion_date g_file_info_get_deletion_date;
alias c_g_file_info_get_display_name g_file_info_get_display_name;
alias c_g_file_info_get_edit_name g_file_info_get_edit_name;
alias c_g_file_info_get_etag g_file_info_get_etag;
alias c_g_file_info_get_file_type g_file_info_get_file_type;
alias c_g_file_info_get_icon g_file_info_get_icon;
alias c_g_file_info_get_is_backup g_file_info_get_is_backup;
alias c_g_file_info_get_is_hidden g_file_info_get_is_hidden;
alias c_g_file_info_get_is_symlink g_file_info_get_is_symlink;
alias c_g_file_info_get_modification_date_time g_file_info_get_modification_date_time;
alias c_g_file_info_get_modification_time g_file_info_get_modification_time;
alias c_g_file_info_get_name g_file_info_get_name;
alias c_g_file_info_get_size g_file_info_get_size;
alias c_g_file_info_get_sort_order g_file_info_get_sort_order;
alias c_g_file_info_get_symbolic_icon g_file_info_get_symbolic_icon;
alias c_g_file_info_get_symlink_target g_file_info_get_symlink_target;
alias c_g_file_info_has_attribute g_file_info_has_attribute;
alias c_g_file_info_has_namespace g_file_info_has_namespace;
alias c_g_file_info_list_attributes g_file_info_list_attributes;
alias c_g_file_info_remove_attribute g_file_info_remove_attribute;
alias c_g_file_info_set_attribute g_file_info_set_attribute;
alias c_g_file_info_set_attribute_boolean g_file_info_set_attribute_boolean;
alias c_g_file_info_set_attribute_byte_string g_file_info_set_attribute_byte_string;
alias c_g_file_info_set_attribute_int32 g_file_info_set_attribute_int32;
alias c_g_file_info_set_attribute_int64 g_file_info_set_attribute_int64;
alias c_g_file_info_set_attribute_mask g_file_info_set_attribute_mask;
alias c_g_file_info_set_attribute_object g_file_info_set_attribute_object;
alias c_g_file_info_set_attribute_status g_file_info_set_attribute_status;
alias c_g_file_info_set_attribute_string g_file_info_set_attribute_string;
alias c_g_file_info_set_attribute_stringv g_file_info_set_attribute_stringv;
alias c_g_file_info_set_attribute_uint32 g_file_info_set_attribute_uint32;
alias c_g_file_info_set_attribute_uint64 g_file_info_set_attribute_uint64;
alias c_g_file_info_set_content_type g_file_info_set_content_type;
alias c_g_file_info_set_display_name g_file_info_set_display_name;
alias c_g_file_info_set_edit_name g_file_info_set_edit_name;
alias c_g_file_info_set_file_type g_file_info_set_file_type;
alias c_g_file_info_set_icon g_file_info_set_icon;
alias c_g_file_info_set_is_hidden g_file_info_set_is_hidden;
alias c_g_file_info_set_is_symlink g_file_info_set_is_symlink;
alias c_g_file_info_set_modification_date_time g_file_info_set_modification_date_time;
alias c_g_file_info_set_modification_time g_file_info_set_modification_time;
alias c_g_file_info_set_name g_file_info_set_name;
alias c_g_file_info_set_size g_file_info_set_size;
alias c_g_file_info_set_sort_order g_file_info_set_sort_order;
alias c_g_file_info_set_symbolic_icon g_file_info_set_symbolic_icon;
alias c_g_file_info_set_symlink_target g_file_info_set_symlink_target;
alias c_g_file_info_unset_attribute_mask g_file_info_unset_attribute_mask;
// gio.FileInputStream
alias c_g_file_input_stream_get_type g_file_input_stream_get_type;
alias c_g_file_input_stream_query_info g_file_input_stream_query_info;
alias c_g_file_input_stream_query_info_async g_file_input_stream_query_info_async;
alias c_g_file_input_stream_query_info_finish g_file_input_stream_query_info_finish;
// gio.FileMonitor
alias c_g_file_monitor_get_type g_file_monitor_get_type;
alias c_g_file_monitor_cancel g_file_monitor_cancel;
alias c_g_file_monitor_emit_event g_file_monitor_emit_event;
alias c_g_file_monitor_is_cancelled g_file_monitor_is_cancelled;
alias c_g_file_monitor_set_rate_limit g_file_monitor_set_rate_limit;
// gio.FileOutputStream
alias c_g_file_output_stream_get_type g_file_output_stream_get_type;
alias c_g_file_output_stream_get_etag g_file_output_stream_get_etag;
alias c_g_file_output_stream_query_info g_file_output_stream_query_info;
alias c_g_file_output_stream_query_info_async g_file_output_stream_query_info_async;
alias c_g_file_output_stream_query_info_finish g_file_output_stream_query_info_finish;
// gio.FilenameCompleter
alias c_g_filename_completer_get_type g_filename_completer_get_type;
alias c_g_filename_completer_new g_filename_completer_new;
alias c_g_filename_completer_get_completion_suffix g_filename_completer_get_completion_suffix;
alias c_g_filename_completer_get_completions g_filename_completer_get_completions;
alias c_g_filename_completer_set_dirs_only g_filename_completer_set_dirs_only;
// gio.FilterInputStream
alias c_g_filter_input_stream_get_type g_filter_input_stream_get_type;
alias c_g_filter_input_stream_get_base_stream g_filter_input_stream_get_base_stream;
alias c_g_filter_input_stream_get_close_base_stream g_filter_input_stream_get_close_base_stream;
alias c_g_filter_input_stream_set_close_base_stream g_filter_input_stream_set_close_base_stream;
// gio.FilterOutputStream
alias c_g_filter_output_stream_get_type g_filter_output_stream_get_type;
alias c_g_filter_output_stream_get_base_stream g_filter_output_stream_get_base_stream;
alias c_g_filter_output_stream_get_close_base_stream g_filter_output_stream_get_close_base_stream;
alias c_g_filter_output_stream_set_close_base_stream g_filter_output_stream_set_close_base_stream;
// gio.IOExtension
alias c_g_io_extension_get_name g_io_extension_get_name;
alias c_g_io_extension_get_priority g_io_extension_get_priority;
alias c_g_io_extension_get_type g_io_extension_get_type;
alias c_g_io_extension_ref_class g_io_extension_ref_class;
// gio.IOExtensionPoint
alias c_g_io_extension_point_get_extension_by_name g_io_extension_point_get_extension_by_name;
alias c_g_io_extension_point_get_extensions g_io_extension_point_get_extensions;
alias c_g_io_extension_point_get_required_type g_io_extension_point_get_required_type;
alias c_g_io_extension_point_set_required_type g_io_extension_point_set_required_type;
alias c_g_io_extension_point_implement g_io_extension_point_implement;
alias c_g_io_extension_point_lookup g_io_extension_point_lookup;
alias c_g_io_extension_point_register g_io_extension_point_register;
// gio.IOModule
alias c_g_io_module_get_type g_io_module_get_type;
alias c_g_io_module_new g_io_module_new;
alias c_g_io_modules_load_all_in_directory g_io_modules_load_all_in_directory;
alias c_g_io_modules_load_all_in_directory_with_scope g_io_modules_load_all_in_directory_with_scope;
alias c_g_io_modules_scan_all_in_directory g_io_modules_scan_all_in_directory;
alias c_g_io_modules_scan_all_in_directory_with_scope g_io_modules_scan_all_in_directory_with_scope;
// gio.IOModuleScope
alias c_g_io_module_scope_block g_io_module_scope_block;
alias c_g_io_module_scope_free g_io_module_scope_free;
alias c_g_io_module_scope_new g_io_module_scope_new;
// gio.IOSchedulerJob
alias c_g_io_scheduler_job_send_to_mainloop g_io_scheduler_job_send_to_mainloop;
alias c_g_io_scheduler_job_send_to_mainloop_async g_io_scheduler_job_send_to_mainloop_async;
alias c_g_io_scheduler_cancel_all_jobs g_io_scheduler_cancel_all_jobs;
alias c_g_io_scheduler_push_job g_io_scheduler_push_job;
// gio.IOStream
alias c_g_io_stream_get_type g_io_stream_get_type;
alias c_g_io_stream_splice_finish g_io_stream_splice_finish;
alias c_g_io_stream_clear_pending g_io_stream_clear_pending;
alias c_g_io_stream_close g_io_stream_close;
alias c_g_io_stream_close_async g_io_stream_close_async;
alias c_g_io_stream_close_finish g_io_stream_close_finish;
alias c_g_io_stream_get_input_stream g_io_stream_get_input_stream;
alias c_g_io_stream_get_output_stream g_io_stream_get_output_stream;
alias c_g_io_stream_has_pending g_io_stream_has_pending;
alias c_g_io_stream_is_closed g_io_stream_is_closed;
alias c_g_io_stream_set_pending g_io_stream_set_pending;
alias c_g_io_stream_splice_async g_io_stream_splice_async;
// gio.Icon
alias c_g_icon_get_type g_icon_get_type;
alias c_g_icon_deserialize g_icon_deserialize;
alias c_g_icon_hash g_icon_hash;
alias c_g_icon_new_for_string g_icon_new_for_string;
alias c_g_icon_equal g_icon_equal;
alias c_g_icon_serialize g_icon_serialize;
alias c_g_icon_to_string g_icon_to_string;
// gio.InetAddress
alias c_g_inet_address_get_type g_inet_address_get_type;
alias c_g_inet_address_new_any g_inet_address_new_any;
alias c_g_inet_address_new_from_bytes g_inet_address_new_from_bytes;
alias c_g_inet_address_new_from_string g_inet_address_new_from_string;
alias c_g_inet_address_new_loopback g_inet_address_new_loopback;
alias c_g_inet_address_equal g_inet_address_equal;
alias c_g_inet_address_get_family g_inet_address_get_family;
alias c_g_inet_address_get_is_any g_inet_address_get_is_any;
alias c_g_inet_address_get_is_link_local g_inet_address_get_is_link_local;
alias c_g_inet_address_get_is_loopback g_inet_address_get_is_loopback;
alias c_g_inet_address_get_is_mc_global g_inet_address_get_is_mc_global;
alias c_g_inet_address_get_is_mc_link_local g_inet_address_get_is_mc_link_local;
alias c_g_inet_address_get_is_mc_node_local g_inet_address_get_is_mc_node_local;
alias c_g_inet_address_get_is_mc_org_local g_inet_address_get_is_mc_org_local;
alias c_g_inet_address_get_is_mc_site_local g_inet_address_get_is_mc_site_local;
alias c_g_inet_address_get_is_multicast g_inet_address_get_is_multicast;
alias c_g_inet_address_get_is_site_local g_inet_address_get_is_site_local;
alias c_g_inet_address_get_native_size g_inet_address_get_native_size;
alias c_g_inet_address_to_bytes g_inet_address_to_bytes;
alias c_g_inet_address_to_string g_inet_address_to_string;
// gio.InetAddressMask
alias c_g_inet_address_mask_get_type g_inet_address_mask_get_type;
alias c_g_inet_address_mask_new g_inet_address_mask_new;
alias c_g_inet_address_mask_new_from_string g_inet_address_mask_new_from_string;
alias c_g_inet_address_mask_equal g_inet_address_mask_equal;
alias c_g_inet_address_mask_get_address g_inet_address_mask_get_address;
alias c_g_inet_address_mask_get_family g_inet_address_mask_get_family;
alias c_g_inet_address_mask_get_length g_inet_address_mask_get_length;
alias c_g_inet_address_mask_matches g_inet_address_mask_matches;
alias c_g_inet_address_mask_to_string g_inet_address_mask_to_string;
// gio.InetSocketAddress
alias c_g_inet_socket_address_get_type g_inet_socket_address_get_type;
alias c_g_inet_socket_address_new g_inet_socket_address_new;
alias c_g_inet_socket_address_new_from_string g_inet_socket_address_new_from_string;
alias c_g_inet_socket_address_get_address g_inet_socket_address_get_address;
alias c_g_inet_socket_address_get_flowinfo g_inet_socket_address_get_flowinfo;
alias c_g_inet_socket_address_get_port g_inet_socket_address_get_port;
alias c_g_inet_socket_address_get_scope_id g_inet_socket_address_get_scope_id;
// gio.Initable
alias c_g_initable_get_type g_initable_get_type;
alias c_g_initable_new g_initable_new;
alias c_g_initable_new_valist g_initable_new_valist;
alias c_g_initable_newv g_initable_newv;
alias c_g_initable_init g_initable_init;
// gio.InputStream
alias c_g_input_stream_get_type g_input_stream_get_type;
alias c_g_input_stream_clear_pending g_input_stream_clear_pending;
alias c_g_input_stream_close g_input_stream_close;
alias c_g_input_stream_close_async g_input_stream_close_async;
alias c_g_input_stream_close_finish g_input_stream_close_finish;
alias c_g_input_stream_has_pending g_input_stream_has_pending;
alias c_g_input_stream_is_closed g_input_stream_is_closed;
alias c_g_input_stream_read g_input_stream_read;
alias c_g_input_stream_read_all g_input_stream_read_all;
alias c_g_input_stream_read_all_async g_input_stream_read_all_async;
alias c_g_input_stream_read_all_finish g_input_stream_read_all_finish;
alias c_g_input_stream_read_async g_input_stream_read_async;
alias c_g_input_stream_read_bytes g_input_stream_read_bytes;
alias c_g_input_stream_read_bytes_async g_input_stream_read_bytes_async;
alias c_g_input_stream_read_bytes_finish g_input_stream_read_bytes_finish;
alias c_g_input_stream_read_finish g_input_stream_read_finish;
alias c_g_input_stream_set_pending g_input_stream_set_pending;
alias c_g_input_stream_skip g_input_stream_skip;
alias c_g_input_stream_skip_async g_input_stream_skip_async;
alias c_g_input_stream_skip_finish g_input_stream_skip_finish;
// gio.ListModel
alias c_g_list_model_get_type g_list_model_get_type;
alias c_g_list_model_get_item g_list_model_get_item;
alias c_g_list_model_get_item_type g_list_model_get_item_type;
alias c_g_list_model_get_n_items g_list_model_get_n_items;
alias c_g_list_model_get_object g_list_model_get_object;
alias c_g_list_model_items_changed g_list_model_items_changed;
// gio.ListStore
alias c_g_list_store_get_type g_list_store_get_type;
alias c_g_list_store_new g_list_store_new;
alias c_g_list_store_append g_list_store_append;
alias c_g_list_store_find g_list_store_find;
alias c_g_list_store_find_with_equal_func g_list_store_find_with_equal_func;
alias c_g_list_store_insert g_list_store_insert;
alias c_g_list_store_insert_sorted g_list_store_insert_sorted;
alias c_g_list_store_remove g_list_store_remove;
alias c_g_list_store_remove_all g_list_store_remove_all;
alias c_g_list_store_sort g_list_store_sort;
alias c_g_list_store_splice g_list_store_splice;
// gio.LoadableIcon
alias c_g_loadable_icon_get_type g_loadable_icon_get_type;
alias c_g_loadable_icon_load g_loadable_icon_load;
alias c_g_loadable_icon_load_async g_loadable_icon_load_async;
alias c_g_loadable_icon_load_finish g_loadable_icon_load_finish;
// gio.MemoryInputStream
alias c_g_memory_input_stream_get_type g_memory_input_stream_get_type;
alias c_g_memory_input_stream_new g_memory_input_stream_new;
alias c_g_memory_input_stream_new_from_bytes g_memory_input_stream_new_from_bytes;
alias c_g_memory_input_stream_new_from_data g_memory_input_stream_new_from_data;
alias c_g_memory_input_stream_add_bytes g_memory_input_stream_add_bytes;
alias c_g_memory_input_stream_add_data g_memory_input_stream_add_data;
// gio.MemoryMonitor
alias c_g_memory_monitor_get_type g_memory_monitor_get_type;
alias c_g_memory_monitor_dup_default g_memory_monitor_dup_default;
// gio.MemoryOutputStream
alias c_g_memory_output_stream_get_type g_memory_output_stream_get_type;
alias c_g_memory_output_stream_new g_memory_output_stream_new;
alias c_g_memory_output_stream_new_resizable g_memory_output_stream_new_resizable;
alias c_g_memory_output_stream_get_data g_memory_output_stream_get_data;
alias c_g_memory_output_stream_get_data_size g_memory_output_stream_get_data_size;
alias c_g_memory_output_stream_get_size g_memory_output_stream_get_size;
alias c_g_memory_output_stream_steal_as_bytes g_memory_output_stream_steal_as_bytes;
alias c_g_memory_output_stream_steal_data g_memory_output_stream_steal_data;
// gio.Menu
alias c_g_menu_get_type g_menu_get_type;
alias c_g_menu_new g_menu_new;
alias c_g_menu_append g_menu_append;
alias c_g_menu_append_item g_menu_append_item;
alias c_g_menu_append_section g_menu_append_section;
alias c_g_menu_append_submenu g_menu_append_submenu;
alias c_g_menu_freeze g_menu_freeze;
alias c_g_menu_insert g_menu_insert;
alias c_g_menu_insert_item g_menu_insert_item;
alias c_g_menu_insert_section g_menu_insert_section;
alias c_g_menu_insert_submenu g_menu_insert_submenu;
alias c_g_menu_prepend g_menu_prepend;
alias c_g_menu_prepend_item g_menu_prepend_item;
alias c_g_menu_prepend_section g_menu_prepend_section;
alias c_g_menu_prepend_submenu g_menu_prepend_submenu;
alias c_g_menu_remove g_menu_remove;
alias c_g_menu_remove_all g_menu_remove_all;
// gio.MenuAttributeIter
alias c_g_menu_attribute_iter_get_type g_menu_attribute_iter_get_type;
alias c_g_menu_attribute_iter_get_name g_menu_attribute_iter_get_name;
alias c_g_menu_attribute_iter_get_next g_menu_attribute_iter_get_next;
alias c_g_menu_attribute_iter_get_value g_menu_attribute_iter_get_value;
alias c_g_menu_attribute_iter_next g_menu_attribute_iter_next;
// gio.MenuItem
alias c_g_menu_item_get_type g_menu_item_get_type;
alias c_g_menu_item_new g_menu_item_new;
alias c_g_menu_item_new_from_model g_menu_item_new_from_model;
alias c_g_menu_item_new_section g_menu_item_new_section;
alias c_g_menu_item_new_submenu g_menu_item_new_submenu;
alias c_g_menu_item_get_attribute g_menu_item_get_attribute;
alias c_g_menu_item_get_attribute_value g_menu_item_get_attribute_value;
alias c_g_menu_item_get_link g_menu_item_get_link;
alias c_g_menu_item_set_action_and_target g_menu_item_set_action_and_target;
alias c_g_menu_item_set_action_and_target_value g_menu_item_set_action_and_target_value;
alias c_g_menu_item_set_attribute g_menu_item_set_attribute;
alias c_g_menu_item_set_attribute_value g_menu_item_set_attribute_value;
alias c_g_menu_item_set_detailed_action g_menu_item_set_detailed_action;
alias c_g_menu_item_set_icon g_menu_item_set_icon;
alias c_g_menu_item_set_label g_menu_item_set_label;
alias c_g_menu_item_set_link g_menu_item_set_link;
alias c_g_menu_item_set_section g_menu_item_set_section;
alias c_g_menu_item_set_submenu g_menu_item_set_submenu;
// gio.MenuLinkIter
alias c_g_menu_link_iter_get_type g_menu_link_iter_get_type;
alias c_g_menu_link_iter_get_name g_menu_link_iter_get_name;
alias c_g_menu_link_iter_get_next g_menu_link_iter_get_next;
alias c_g_menu_link_iter_get_value g_menu_link_iter_get_value;
alias c_g_menu_link_iter_next g_menu_link_iter_next;
// gio.MenuModel
alias c_g_menu_model_get_type g_menu_model_get_type;
alias c_g_menu_model_get_item_attribute g_menu_model_get_item_attribute;
alias c_g_menu_model_get_item_attribute_value g_menu_model_get_item_attribute_value;
alias c_g_menu_model_get_item_link g_menu_model_get_item_link;
alias c_g_menu_model_get_n_items g_menu_model_get_n_items;
alias c_g_menu_model_is_mutable g_menu_model_is_mutable;
alias c_g_menu_model_items_changed g_menu_model_items_changed;
alias c_g_menu_model_iterate_item_attributes g_menu_model_iterate_item_attributes;
alias c_g_menu_model_iterate_item_links g_menu_model_iterate_item_links;
// gio.Mount
alias c_g_mount_get_type g_mount_get_type;
alias c_g_mount_can_eject g_mount_can_eject;
alias c_g_mount_can_unmount g_mount_can_unmount;
alias c_g_mount_eject g_mount_eject;
alias c_g_mount_eject_finish g_mount_eject_finish;
alias c_g_mount_eject_with_operation g_mount_eject_with_operation;
alias c_g_mount_eject_with_operation_finish g_mount_eject_with_operation_finish;
alias c_g_mount_get_default_location g_mount_get_default_location;
alias c_g_mount_get_drive g_mount_get_drive;
alias c_g_mount_get_icon g_mount_get_icon;
alias c_g_mount_get_name g_mount_get_name;
alias c_g_mount_get_root g_mount_get_root;
alias c_g_mount_get_sort_key g_mount_get_sort_key;
alias c_g_mount_get_symbolic_icon g_mount_get_symbolic_icon;
alias c_g_mount_get_uuid g_mount_get_uuid;
alias c_g_mount_get_volume g_mount_get_volume;
alias c_g_mount_guess_content_type g_mount_guess_content_type;
alias c_g_mount_guess_content_type_finish g_mount_guess_content_type_finish;
alias c_g_mount_guess_content_type_sync g_mount_guess_content_type_sync;
alias c_g_mount_is_shadowed g_mount_is_shadowed;
alias c_g_mount_remount g_mount_remount;
alias c_g_mount_remount_finish g_mount_remount_finish;
alias c_g_mount_shadow g_mount_shadow;
alias c_g_mount_unmount g_mount_unmount;
alias c_g_mount_unmount_finish g_mount_unmount_finish;
alias c_g_mount_unmount_with_operation g_mount_unmount_with_operation;
alias c_g_mount_unmount_with_operation_finish g_mount_unmount_with_operation_finish;
alias c_g_mount_unshadow g_mount_unshadow;
// gio.MountOperation
alias c_g_mount_operation_get_type g_mount_operation_get_type;
alias c_g_mount_operation_new g_mount_operation_new;
alias c_g_mount_operation_get_anonymous g_mount_operation_get_anonymous;
alias c_g_mount_operation_get_choice g_mount_operation_get_choice;
alias c_g_mount_operation_get_domain g_mount_operation_get_domain;
alias c_g_mount_operation_get_is_tcrypt_hidden_volume g_mount_operation_get_is_tcrypt_hidden_volume;
alias c_g_mount_operation_get_is_tcrypt_system_volume g_mount_operation_get_is_tcrypt_system_volume;
alias c_g_mount_operation_get_password g_mount_operation_get_password;
alias c_g_mount_operation_get_password_save g_mount_operation_get_password_save;
alias c_g_mount_operation_get_pim g_mount_operation_get_pim;
alias c_g_mount_operation_get_username g_mount_operation_get_username;
alias c_g_mount_operation_reply g_mount_operation_reply;
alias c_g_mount_operation_set_anonymous g_mount_operation_set_anonymous;
alias c_g_mount_operation_set_choice g_mount_operation_set_choice;
alias c_g_mount_operation_set_domain g_mount_operation_set_domain;
alias c_g_mount_operation_set_is_tcrypt_hidden_volume g_mount_operation_set_is_tcrypt_hidden_volume;
alias c_g_mount_operation_set_is_tcrypt_system_volume g_mount_operation_set_is_tcrypt_system_volume;
alias c_g_mount_operation_set_password g_mount_operation_set_password;
alias c_g_mount_operation_set_password_save g_mount_operation_set_password_save;
alias c_g_mount_operation_set_pim g_mount_operation_set_pim;
alias c_g_mount_operation_set_username g_mount_operation_set_username;
// gio.NativeSocketAddress
alias c_g_native_socket_address_get_type g_native_socket_address_get_type;
alias c_g_native_socket_address_new g_native_socket_address_new;
// gio.NativeVolumeMonitor
alias c_g_native_volume_monitor_get_type g_native_volume_monitor_get_type;
// gio.NetworkAddress
alias c_g_network_address_get_type g_network_address_get_type;
alias c_g_network_address_new g_network_address_new;
alias c_g_network_address_new_loopback g_network_address_new_loopback;
alias c_g_network_address_parse g_network_address_parse;
alias c_g_network_address_parse_uri g_network_address_parse_uri;
alias c_g_network_address_get_hostname g_network_address_get_hostname;
alias c_g_network_address_get_port g_network_address_get_port;
alias c_g_network_address_get_scheme g_network_address_get_scheme;
// gio.NetworkMonitor
alias c_g_network_monitor_get_type g_network_monitor_get_type;
alias c_g_network_monitor_get_default g_network_monitor_get_default;
alias c_g_network_monitor_can_reach g_network_monitor_can_reach;
alias c_g_network_monitor_can_reach_async g_network_monitor_can_reach_async;
alias c_g_network_monitor_can_reach_finish g_network_monitor_can_reach_finish;
alias c_g_network_monitor_get_connectivity g_network_monitor_get_connectivity;
alias c_g_network_monitor_get_network_available g_network_monitor_get_network_available;
alias c_g_network_monitor_get_network_metered g_network_monitor_get_network_metered;
// gio.NetworkService
alias c_g_network_service_get_type g_network_service_get_type;
alias c_g_network_service_new g_network_service_new;
alias c_g_network_service_get_domain g_network_service_get_domain;
alias c_g_network_service_get_protocol g_network_service_get_protocol;
alias c_g_network_service_get_scheme g_network_service_get_scheme;
alias c_g_network_service_get_service g_network_service_get_service;
alias c_g_network_service_set_scheme g_network_service_set_scheme;
// gio.Notification
alias c_g_notification_get_type g_notification_get_type;
alias c_g_notification_new g_notification_new;
alias c_g_notification_add_button g_notification_add_button;
alias c_g_notification_add_button_with_target g_notification_add_button_with_target;
alias c_g_notification_add_button_with_target_value g_notification_add_button_with_target_value;
alias c_g_notification_set_body g_notification_set_body;
alias c_g_notification_set_default_action g_notification_set_default_action;
alias c_g_notification_set_default_action_and_target g_notification_set_default_action_and_target;
alias c_g_notification_set_default_action_and_target_value g_notification_set_default_action_and_target_value;
alias c_g_notification_set_icon g_notification_set_icon;
alias c_g_notification_set_priority g_notification_set_priority;
alias c_g_notification_set_title g_notification_set_title;
alias c_g_notification_set_urgent g_notification_set_urgent;
// gio.OutputStream
alias c_g_output_stream_get_type g_output_stream_get_type;
alias c_g_output_stream_clear_pending g_output_stream_clear_pending;
alias c_g_output_stream_close g_output_stream_close;
alias c_g_output_stream_close_async g_output_stream_close_async;
alias c_g_output_stream_close_finish g_output_stream_close_finish;
alias c_g_output_stream_flush g_output_stream_flush;
alias c_g_output_stream_flush_async g_output_stream_flush_async;
alias c_g_output_stream_flush_finish g_output_stream_flush_finish;
alias c_g_output_stream_has_pending g_output_stream_has_pending;
alias c_g_output_stream_is_closed g_output_stream_is_closed;
alias c_g_output_stream_is_closing g_output_stream_is_closing;
alias c_g_output_stream_printf g_output_stream_printf;
alias c_g_output_stream_set_pending g_output_stream_set_pending;
alias c_g_output_stream_splice g_output_stream_splice;
alias c_g_output_stream_splice_async g_output_stream_splice_async;
alias c_g_output_stream_splice_finish g_output_stream_splice_finish;
alias c_g_output_stream_vprintf g_output_stream_vprintf;
alias c_g_output_stream_write g_output_stream_write;
alias c_g_output_stream_write_all g_output_stream_write_all;
alias c_g_output_stream_write_all_async g_output_stream_write_all_async;
alias c_g_output_stream_write_all_finish g_output_stream_write_all_finish;
alias c_g_output_stream_write_async g_output_stream_write_async;
alias c_g_output_stream_write_bytes g_output_stream_write_bytes;
alias c_g_output_stream_write_bytes_async g_output_stream_write_bytes_async;
alias c_g_output_stream_write_bytes_finish g_output_stream_write_bytes_finish;
alias c_g_output_stream_write_finish g_output_stream_write_finish;
alias c_g_output_stream_writev g_output_stream_writev;
alias c_g_output_stream_writev_all g_output_stream_writev_all;
alias c_g_output_stream_writev_all_async g_output_stream_writev_all_async;
alias c_g_output_stream_writev_all_finish g_output_stream_writev_all_finish;
alias c_g_output_stream_writev_async g_output_stream_writev_async;
alias c_g_output_stream_writev_finish g_output_stream_writev_finish;
// gio.Permission
alias c_g_permission_get_type g_permission_get_type;
alias c_g_permission_acquire g_permission_acquire;
alias c_g_permission_acquire_async g_permission_acquire_async;
alias c_g_permission_acquire_finish g_permission_acquire_finish;
alias c_g_permission_get_allowed g_permission_get_allowed;
alias c_g_permission_get_can_acquire g_permission_get_can_acquire;
alias c_g_permission_get_can_release g_permission_get_can_release;
alias c_g_permission_impl_update g_permission_impl_update;
alias c_g_permission_release g_permission_release;
alias c_g_permission_release_async g_permission_release_async;
alias c_g_permission_release_finish g_permission_release_finish;
// gio.PollableInputStream
alias c_g_pollable_input_stream_get_type g_pollable_input_stream_get_type;
alias c_g_pollable_input_stream_can_poll g_pollable_input_stream_can_poll;
alias c_g_pollable_input_stream_create_source g_pollable_input_stream_create_source;
alias c_g_pollable_input_stream_is_readable g_pollable_input_stream_is_readable;
alias c_g_pollable_input_stream_read_nonblocking g_pollable_input_stream_read_nonblocking;
// gio.PollableOutputStream
alias c_g_pollable_output_stream_get_type g_pollable_output_stream_get_type;
alias c_g_pollable_output_stream_can_poll g_pollable_output_stream_can_poll;
alias c_g_pollable_output_stream_create_source g_pollable_output_stream_create_source;
alias c_g_pollable_output_stream_is_writable g_pollable_output_stream_is_writable;
alias c_g_pollable_output_stream_write_nonblocking g_pollable_output_stream_write_nonblocking;
alias c_g_pollable_output_stream_writev_nonblocking g_pollable_output_stream_writev_nonblocking;
// gio.PropertyAction
alias c_g_property_action_get_type g_property_action_get_type;
alias c_g_property_action_new g_property_action_new;
// gio.Proxy
alias c_g_proxy_get_type g_proxy_get_type;
alias c_g_proxy_get_default_for_protocol g_proxy_get_default_for_protocol;
alias c_g_proxy_connect g_proxy_connect;
alias c_g_proxy_connect_async g_proxy_connect_async;
alias c_g_proxy_connect_finish g_proxy_connect_finish;
alias c_g_proxy_supports_hostname g_proxy_supports_hostname;
// gio.ProxyAddress
alias c_g_proxy_address_get_type g_proxy_address_get_type;
alias c_g_proxy_address_new g_proxy_address_new;
alias c_g_proxy_address_get_destination_hostname g_proxy_address_get_destination_hostname;
alias c_g_proxy_address_get_destination_port g_proxy_address_get_destination_port;
alias c_g_proxy_address_get_destination_protocol g_proxy_address_get_destination_protocol;
alias c_g_proxy_address_get_password g_proxy_address_get_password;
alias c_g_proxy_address_get_protocol g_proxy_address_get_protocol;
alias c_g_proxy_address_get_uri g_proxy_address_get_uri;
alias c_g_proxy_address_get_username g_proxy_address_get_username;
// gio.ProxyAddressEnumerator
alias c_g_proxy_address_enumerator_get_type g_proxy_address_enumerator_get_type;
// gio.ProxyResolver
alias c_g_proxy_resolver_get_type g_proxy_resolver_get_type;
alias c_g_proxy_resolver_get_default g_proxy_resolver_get_default;
alias c_g_proxy_resolver_is_supported g_proxy_resolver_is_supported;
alias c_g_proxy_resolver_lookup g_proxy_resolver_lookup;
alias c_g_proxy_resolver_lookup_async g_proxy_resolver_lookup_async;
alias c_g_proxy_resolver_lookup_finish g_proxy_resolver_lookup_finish;
// gio.RemoteActionGroup
alias c_g_remote_action_group_get_type g_remote_action_group_get_type;
alias c_g_remote_action_group_activate_action_full g_remote_action_group_activate_action_full;
alias c_g_remote_action_group_change_action_state_full g_remote_action_group_change_action_state_full;
// gio.Resolver
alias c_g_resolver_get_type g_resolver_get_type;
alias c_g_resolver_free_addresses g_resolver_free_addresses;
alias c_g_resolver_free_targets g_resolver_free_targets;
alias c_g_resolver_get_default g_resolver_get_default;
alias c_g_resolver_lookup_by_address g_resolver_lookup_by_address;
alias c_g_resolver_lookup_by_address_async g_resolver_lookup_by_address_async;
alias c_g_resolver_lookup_by_address_finish g_resolver_lookup_by_address_finish;
alias c_g_resolver_lookup_by_name g_resolver_lookup_by_name;
alias c_g_resolver_lookup_by_name_async g_resolver_lookup_by_name_async;
alias c_g_resolver_lookup_by_name_finish g_resolver_lookup_by_name_finish;
alias c_g_resolver_lookup_by_name_with_flags g_resolver_lookup_by_name_with_flags;
alias c_g_resolver_lookup_by_name_with_flags_async g_resolver_lookup_by_name_with_flags_async;
alias c_g_resolver_lookup_by_name_with_flags_finish g_resolver_lookup_by_name_with_flags_finish;
alias c_g_resolver_lookup_records g_resolver_lookup_records;
alias c_g_resolver_lookup_records_async g_resolver_lookup_records_async;
alias c_g_resolver_lookup_records_finish g_resolver_lookup_records_finish;
alias c_g_resolver_lookup_service g_resolver_lookup_service;
alias c_g_resolver_lookup_service_async g_resolver_lookup_service_async;
alias c_g_resolver_lookup_service_finish g_resolver_lookup_service_finish;
alias c_g_resolver_set_default g_resolver_set_default;
// gio.Resource
alias c_g_resource_get_type g_resource_get_type;
alias c_g_resource_new_from_data g_resource_new_from_data;
alias c_g_resources_register g_resources_register;
alias c_g_resources_unregister g_resources_unregister;
alias c_g_resource_enumerate_children g_resource_enumerate_children;
alias c_g_resource_get_info g_resource_get_info;
alias c_g_resource_lookup_data g_resource_lookup_data;
alias c_g_resource_open_stream g_resource_open_stream;
alias c_g_resource_ref g_resource_ref;
alias c_g_resource_unref g_resource_unref;
alias c_g_resource_load g_resource_load;
alias c_g_resources_enumerate_children g_resources_enumerate_children;
alias c_g_resources_get_info g_resources_get_info;
alias c_g_resources_lookup_data g_resources_lookup_data;
alias c_g_resources_open_stream g_resources_open_stream;
// gio.Seekable
alias c_g_seekable_get_type g_seekable_get_type;
alias c_g_seekable_can_seek g_seekable_can_seek;
alias c_g_seekable_can_truncate g_seekable_can_truncate;
alias c_g_seekable_seek g_seekable_seek;
alias c_g_seekable_tell g_seekable_tell;
alias c_g_seekable_truncate g_seekable_truncate;
// gio.Settings
alias c_g_settings_get_type g_settings_get_type;
alias c_g_settings_new g_settings_new;
alias c_g_settings_new_full g_settings_new_full;
alias c_g_settings_new_with_backend g_settings_new_with_backend;
alias c_g_settings_new_with_backend_and_path g_settings_new_with_backend_and_path;
alias c_g_settings_new_with_path g_settings_new_with_path;
alias c_g_settings_list_relocatable_schemas g_settings_list_relocatable_schemas;
alias c_g_settings_list_schemas g_settings_list_schemas;
alias c_g_settings_sync g_settings_sync;
alias c_g_settings_unbind g_settings_unbind;
alias c_g_settings_apply g_settings_apply;
alias c_g_settings_bind g_settings_bind;
alias c_g_settings_bind_with_mapping g_settings_bind_with_mapping;
alias c_g_settings_bind_writable g_settings_bind_writable;
alias c_g_settings_create_action g_settings_create_action;
alias c_g_settings_delay g_settings_delay;
alias c_g_settings_get g_settings_get;
alias c_g_settings_get_boolean g_settings_get_boolean;
alias c_g_settings_get_child g_settings_get_child;
alias c_g_settings_get_default_value g_settings_get_default_value;
alias c_g_settings_get_double g_settings_get_double;
alias c_g_settings_get_enum g_settings_get_enum;
alias c_g_settings_get_flags g_settings_get_flags;
alias c_g_settings_get_has_unapplied g_settings_get_has_unapplied;
alias c_g_settings_get_int g_settings_get_int;
alias c_g_settings_get_int64 g_settings_get_int64;
alias c_g_settings_get_mapped g_settings_get_mapped;
alias c_g_settings_get_range g_settings_get_range;
alias c_g_settings_get_string g_settings_get_string;
alias c_g_settings_get_strv g_settings_get_strv;
alias c_g_settings_get_uint g_settings_get_uint;
alias c_g_settings_get_uint64 g_settings_get_uint64;
alias c_g_settings_get_user_value g_settings_get_user_value;
alias c_g_settings_get_value g_settings_get_value;
alias c_g_settings_is_writable g_settings_is_writable;
alias c_g_settings_list_children g_settings_list_children;
alias c_g_settings_list_keys g_settings_list_keys;
alias c_g_settings_range_check g_settings_range_check;
alias c_g_settings_reset g_settings_reset;
alias c_g_settings_revert g_settings_revert;
alias c_g_settings_set g_settings_set;
alias c_g_settings_set_boolean g_settings_set_boolean;
alias c_g_settings_set_double g_settings_set_double;
alias c_g_settings_set_enum g_settings_set_enum;
alias c_g_settings_set_flags g_settings_set_flags;
alias c_g_settings_set_int g_settings_set_int;
alias c_g_settings_set_int64 g_settings_set_int64;
alias c_g_settings_set_string g_settings_set_string;
alias c_g_settings_set_strv g_settings_set_strv;
alias c_g_settings_set_uint g_settings_set_uint;
alias c_g_settings_set_uint64 g_settings_set_uint64;
alias c_g_settings_set_value g_settings_set_value;
// gio.SettingsBackend
alias c_g_settings_backend_get_type g_settings_backend_get_type;
alias c_g_settings_backend_flatten_tree g_settings_backend_flatten_tree;
alias c_g_settings_backend_get_default g_settings_backend_get_default;
alias c_g_settings_backend_changed g_settings_backend_changed;
alias c_g_settings_backend_changed_tree g_settings_backend_changed_tree;
alias c_g_settings_backend_keys_changed g_settings_backend_keys_changed;
alias c_g_settings_backend_path_changed g_settings_backend_path_changed;
alias c_g_settings_backend_path_writable_changed g_settings_backend_path_writable_changed;
alias c_g_settings_backend_writable_changed g_settings_backend_writable_changed;
alias c_g_keyfile_settings_backend_new g_keyfile_settings_backend_new;
alias c_g_memory_settings_backend_new g_memory_settings_backend_new;
alias c_g_null_settings_backend_new g_null_settings_backend_new;
// gio.SettingsSchema
alias c_g_settings_schema_get_type g_settings_schema_get_type;
alias c_g_settings_schema_get_id g_settings_schema_get_id;
alias c_g_settings_schema_get_key g_settings_schema_get_key;
alias c_g_settings_schema_get_path g_settings_schema_get_path;
alias c_g_settings_schema_has_key g_settings_schema_has_key;
alias c_g_settings_schema_list_children g_settings_schema_list_children;
alias c_g_settings_schema_list_keys g_settings_schema_list_keys;
alias c_g_settings_schema_ref g_settings_schema_ref;
alias c_g_settings_schema_unref g_settings_schema_unref;
// gio.SettingsSchemaKey
alias c_g_settings_schema_key_get_type g_settings_schema_key_get_type;
alias c_g_settings_schema_key_get_default_value g_settings_schema_key_get_default_value;
alias c_g_settings_schema_key_get_description g_settings_schema_key_get_description;
alias c_g_settings_schema_key_get_name g_settings_schema_key_get_name;
alias c_g_settings_schema_key_get_range g_settings_schema_key_get_range;
alias c_g_settings_schema_key_get_summary g_settings_schema_key_get_summary;
alias c_g_settings_schema_key_get_value_type g_settings_schema_key_get_value_type;
alias c_g_settings_schema_key_range_check g_settings_schema_key_range_check;
alias c_g_settings_schema_key_ref g_settings_schema_key_ref;
alias c_g_settings_schema_key_unref g_settings_schema_key_unref;
// gio.SettingsSchemaSource
alias c_g_settings_schema_source_get_type g_settings_schema_source_get_type;
alias c_g_settings_schema_source_new_from_directory g_settings_schema_source_new_from_directory;
alias c_g_settings_schema_source_list_schemas g_settings_schema_source_list_schemas;
alias c_g_settings_schema_source_lookup g_settings_schema_source_lookup;
alias c_g_settings_schema_source_ref g_settings_schema_source_ref;
alias c_g_settings_schema_source_unref g_settings_schema_source_unref;
alias c_g_settings_schema_source_get_default g_settings_schema_source_get_default;
// gio.SimpleAction
alias c_g_simple_action_get_type g_simple_action_get_type;
alias c_g_simple_action_new g_simple_action_new;
alias c_g_simple_action_new_stateful g_simple_action_new_stateful;
alias c_g_simple_action_set_enabled g_simple_action_set_enabled;
alias c_g_simple_action_set_state g_simple_action_set_state;
alias c_g_simple_action_set_state_hint g_simple_action_set_state_hint;
// gio.SimpleActionGroup
alias c_g_simple_action_group_get_type g_simple_action_group_get_type;
alias c_g_simple_action_group_new g_simple_action_group_new;
alias c_g_simple_action_group_add_entries g_simple_action_group_add_entries;
alias c_g_simple_action_group_insert g_simple_action_group_insert;
alias c_g_simple_action_group_lookup g_simple_action_group_lookup;
alias c_g_simple_action_group_remove g_simple_action_group_remove;
// gio.SimpleAsyncResult
alias c_g_simple_async_result_get_type g_simple_async_result_get_type;
alias c_g_simple_async_result_new g_simple_async_result_new;
alias c_g_simple_async_result_new_error g_simple_async_result_new_error;
alias c_g_simple_async_result_new_from_error g_simple_async_result_new_from_error;
alias c_g_simple_async_result_new_take_error g_simple_async_result_new_take_error;
alias c_g_simple_async_result_is_valid g_simple_async_result_is_valid;
alias c_g_simple_async_result_complete g_simple_async_result_complete;
alias c_g_simple_async_result_complete_in_idle g_simple_async_result_complete_in_idle;
alias c_g_simple_async_result_get_op_res_gboolean g_simple_async_result_get_op_res_gboolean;
alias c_g_simple_async_result_get_op_res_gpointer g_simple_async_result_get_op_res_gpointer;
alias c_g_simple_async_result_get_op_res_gssize g_simple_async_result_get_op_res_gssize;
alias c_g_simple_async_result_get_source_tag g_simple_async_result_get_source_tag;
alias c_g_simple_async_result_propagate_error g_simple_async_result_propagate_error;
alias c_g_simple_async_result_run_in_thread g_simple_async_result_run_in_thread;
alias c_g_simple_async_result_set_check_cancellable g_simple_async_result_set_check_cancellable;
alias c_g_simple_async_result_set_error g_simple_async_result_set_error;
alias c_g_simple_async_result_set_error_va g_simple_async_result_set_error_va;
alias c_g_simple_async_result_set_from_error g_simple_async_result_set_from_error;
alias c_g_simple_async_result_set_handle_cancellation g_simple_async_result_set_handle_cancellation;
alias c_g_simple_async_result_set_op_res_gboolean g_simple_async_result_set_op_res_gboolean;
alias c_g_simple_async_result_set_op_res_gpointer g_simple_async_result_set_op_res_gpointer;
alias c_g_simple_async_result_set_op_res_gssize g_simple_async_result_set_op_res_gssize;
alias c_g_simple_async_result_take_error g_simple_async_result_take_error;
alias c_g_simple_async_report_error_in_idle g_simple_async_report_error_in_idle;
alias c_g_simple_async_report_gerror_in_idle g_simple_async_report_gerror_in_idle;
alias c_g_simple_async_report_take_gerror_in_idle g_simple_async_report_take_gerror_in_idle;
// gio.SimpleIOStream
alias c_g_simple_io_stream_get_type g_simple_io_stream_get_type;
alias c_g_simple_io_stream_new g_simple_io_stream_new;
// gio.SimplePermission
alias c_g_simple_permission_get_type g_simple_permission_get_type;
alias c_g_simple_permission_new g_simple_permission_new;
// gio.SimpleProxyResolver
alias c_g_simple_proxy_resolver_get_type g_simple_proxy_resolver_get_type;
alias c_g_simple_proxy_resolver_new g_simple_proxy_resolver_new;
alias c_g_simple_proxy_resolver_set_default_proxy g_simple_proxy_resolver_set_default_proxy;
alias c_g_simple_proxy_resolver_set_ignore_hosts g_simple_proxy_resolver_set_ignore_hosts;
alias c_g_simple_proxy_resolver_set_uri_proxy g_simple_proxy_resolver_set_uri_proxy;
// gio.Socket
alias c_g_socket_get_type g_socket_get_type;
alias c_g_socket_new g_socket_new;
alias c_g_socket_new_from_fd g_socket_new_from_fd;
alias c_g_socket_accept g_socket_accept;
alias c_g_socket_bind g_socket_bind;
alias c_g_socket_check_connect_result g_socket_check_connect_result;
alias c_g_socket_close g_socket_close;
alias c_g_socket_condition_check g_socket_condition_check;
alias c_g_socket_condition_timed_wait g_socket_condition_timed_wait;
alias c_g_socket_condition_wait g_socket_condition_wait;
alias c_g_socket_connect g_socket_connect;
alias c_g_socket_connection_factory_create_connection g_socket_connection_factory_create_connection;
alias c_g_socket_create_source g_socket_create_source;
alias c_g_socket_get_available_bytes g_socket_get_available_bytes;
alias c_g_socket_get_blocking g_socket_get_blocking;
alias c_g_socket_get_broadcast g_socket_get_broadcast;
alias c_g_socket_get_credentials g_socket_get_credentials;
alias c_g_socket_get_family g_socket_get_family;
alias c_g_socket_get_fd g_socket_get_fd;
alias c_g_socket_get_keepalive g_socket_get_keepalive;
alias c_g_socket_get_listen_backlog g_socket_get_listen_backlog;
alias c_g_socket_get_local_address g_socket_get_local_address;
alias c_g_socket_get_multicast_loopback g_socket_get_multicast_loopback;
alias c_g_socket_get_multicast_ttl g_socket_get_multicast_ttl;
alias c_g_socket_get_option g_socket_get_option;
alias c_g_socket_get_protocol g_socket_get_protocol;
alias c_g_socket_get_remote_address g_socket_get_remote_address;
alias c_g_socket_get_socket_type g_socket_get_socket_type;
alias c_g_socket_get_timeout g_socket_get_timeout;
alias c_g_socket_get_ttl g_socket_get_ttl;
alias c_g_socket_is_closed g_socket_is_closed;
alias c_g_socket_is_connected g_socket_is_connected;
alias c_g_socket_join_multicast_group g_socket_join_multicast_group;
alias c_g_socket_join_multicast_group_ssm g_socket_join_multicast_group_ssm;
alias c_g_socket_leave_multicast_group g_socket_leave_multicast_group;
alias c_g_socket_leave_multicast_group_ssm g_socket_leave_multicast_group_ssm;
alias c_g_socket_listen g_socket_listen;
alias c_g_socket_receive g_socket_receive;
alias c_g_socket_receive_from g_socket_receive_from;
alias c_g_socket_receive_message g_socket_receive_message;
alias c_g_socket_receive_messages g_socket_receive_messages;
alias c_g_socket_receive_with_blocking g_socket_receive_with_blocking;
alias c_g_socket_send g_socket_send;
alias c_g_socket_send_message g_socket_send_message;
alias c_g_socket_send_message_with_timeout g_socket_send_message_with_timeout;
alias c_g_socket_send_messages g_socket_send_messages;
alias c_g_socket_send_to g_socket_send_to;
alias c_g_socket_send_with_blocking g_socket_send_with_blocking;
alias c_g_socket_set_blocking g_socket_set_blocking;
alias c_g_socket_set_broadcast g_socket_set_broadcast;
alias c_g_socket_set_keepalive g_socket_set_keepalive;
alias c_g_socket_set_listen_backlog g_socket_set_listen_backlog;
alias c_g_socket_set_multicast_loopback g_socket_set_multicast_loopback;
alias c_g_socket_set_multicast_ttl g_socket_set_multicast_ttl;
alias c_g_socket_set_option g_socket_set_option;
alias c_g_socket_set_timeout g_socket_set_timeout;
alias c_g_socket_set_ttl g_socket_set_ttl;
alias c_g_socket_shutdown g_socket_shutdown;
alias c_g_socket_speaks_ipv4 g_socket_speaks_ipv4;
// gio.SocketAddress
alias c_g_socket_address_get_type g_socket_address_get_type;
alias c_g_socket_address_new_from_native g_socket_address_new_from_native;
alias c_g_socket_address_get_family g_socket_address_get_family;
alias c_g_socket_address_get_native_size g_socket_address_get_native_size;
alias c_g_socket_address_to_native g_socket_address_to_native;
// gio.SocketAddressEnumerator
alias c_g_socket_address_enumerator_get_type g_socket_address_enumerator_get_type;
alias c_g_socket_address_enumerator_next g_socket_address_enumerator_next;
alias c_g_socket_address_enumerator_next_async g_socket_address_enumerator_next_async;
alias c_g_socket_address_enumerator_next_finish g_socket_address_enumerator_next_finish;
// gio.SocketClient
alias c_g_socket_client_get_type g_socket_client_get_type;
alias c_g_socket_client_new g_socket_client_new;
alias c_g_socket_client_add_application_proxy g_socket_client_add_application_proxy;
alias c_g_socket_client_connect g_socket_client_connect;
alias c_g_socket_client_connect_async g_socket_client_connect_async;
alias c_g_socket_client_connect_finish g_socket_client_connect_finish;
alias c_g_socket_client_connect_to_host g_socket_client_connect_to_host;
alias c_g_socket_client_connect_to_host_async g_socket_client_connect_to_host_async;
alias c_g_socket_client_connect_to_host_finish g_socket_client_connect_to_host_finish;
alias c_g_socket_client_connect_to_service g_socket_client_connect_to_service;
alias c_g_socket_client_connect_to_service_async g_socket_client_connect_to_service_async;
alias c_g_socket_client_connect_to_service_finish g_socket_client_connect_to_service_finish;
alias c_g_socket_client_connect_to_uri g_socket_client_connect_to_uri;
alias c_g_socket_client_connect_to_uri_async g_socket_client_connect_to_uri_async;
alias c_g_socket_client_connect_to_uri_finish g_socket_client_connect_to_uri_finish;
alias c_g_socket_client_get_enable_proxy g_socket_client_get_enable_proxy;
alias c_g_socket_client_get_family g_socket_client_get_family;
alias c_g_socket_client_get_local_address g_socket_client_get_local_address;
alias c_g_socket_client_get_protocol g_socket_client_get_protocol;
alias c_g_socket_client_get_proxy_resolver g_socket_client_get_proxy_resolver;
alias c_g_socket_client_get_socket_type g_socket_client_get_socket_type;
alias c_g_socket_client_get_timeout g_socket_client_get_timeout;
alias c_g_socket_client_get_tls g_socket_client_get_tls;
alias c_g_socket_client_get_tls_validation_flags g_socket_client_get_tls_validation_flags;
alias c_g_socket_client_set_enable_proxy g_socket_client_set_enable_proxy;
alias c_g_socket_client_set_family g_socket_client_set_family;
alias c_g_socket_client_set_local_address g_socket_client_set_local_address;
alias c_g_socket_client_set_protocol g_socket_client_set_protocol;
alias c_g_socket_client_set_proxy_resolver g_socket_client_set_proxy_resolver;
alias c_g_socket_client_set_socket_type g_socket_client_set_socket_type;
alias c_g_socket_client_set_timeout g_socket_client_set_timeout;
alias c_g_socket_client_set_tls g_socket_client_set_tls;
alias c_g_socket_client_set_tls_validation_flags g_socket_client_set_tls_validation_flags;
// gio.SocketConnectable
alias c_g_socket_connectable_get_type g_socket_connectable_get_type;
alias c_g_socket_connectable_enumerate g_socket_connectable_enumerate;
alias c_g_socket_connectable_proxy_enumerate g_socket_connectable_proxy_enumerate;
alias c_g_socket_connectable_to_string g_socket_connectable_to_string;
// gio.SocketConnection
alias c_g_socket_connection_get_type g_socket_connection_get_type;
alias c_g_socket_connection_factory_lookup_type g_socket_connection_factory_lookup_type;
alias c_g_socket_connection_factory_register_type g_socket_connection_factory_register_type;
alias c_g_socket_connection_connect g_socket_connection_connect;
alias c_g_socket_connection_connect_async g_socket_connection_connect_async;
alias c_g_socket_connection_connect_finish g_socket_connection_connect_finish;
alias c_g_socket_connection_get_local_address g_socket_connection_get_local_address;
alias c_g_socket_connection_get_remote_address g_socket_connection_get_remote_address;
alias c_g_socket_connection_get_socket g_socket_connection_get_socket;
alias c_g_socket_connection_is_connected g_socket_connection_is_connected;
// gio.SocketControlMessage
alias c_g_socket_control_message_get_type g_socket_control_message_get_type;
alias c_g_socket_control_message_deserialize g_socket_control_message_deserialize;
alias c_g_socket_control_message_get_level g_socket_control_message_get_level;
alias c_g_socket_control_message_get_msg_type g_socket_control_message_get_msg_type;
alias c_g_socket_control_message_get_size g_socket_control_message_get_size;
alias c_g_socket_control_message_serialize g_socket_control_message_serialize;
// gio.SocketListener
alias c_g_socket_listener_get_type g_socket_listener_get_type;
alias c_g_socket_listener_new g_socket_listener_new;
alias c_g_socket_listener_accept g_socket_listener_accept;
alias c_g_socket_listener_accept_async g_socket_listener_accept_async;
alias c_g_socket_listener_accept_finish g_socket_listener_accept_finish;
alias c_g_socket_listener_accept_socket g_socket_listener_accept_socket;
alias c_g_socket_listener_accept_socket_async g_socket_listener_accept_socket_async;
alias c_g_socket_listener_accept_socket_finish g_socket_listener_accept_socket_finish;
alias c_g_socket_listener_add_address g_socket_listener_add_address;
alias c_g_socket_listener_add_any_inet_port g_socket_listener_add_any_inet_port;
alias c_g_socket_listener_add_inet_port g_socket_listener_add_inet_port;
alias c_g_socket_listener_add_socket g_socket_listener_add_socket;
alias c_g_socket_listener_close g_socket_listener_close;
alias c_g_socket_listener_set_backlog g_socket_listener_set_backlog;
// gio.SocketService
alias c_g_socket_service_get_type g_socket_service_get_type;
alias c_g_socket_service_new g_socket_service_new;
alias c_g_socket_service_is_active g_socket_service_is_active;
alias c_g_socket_service_start g_socket_service_start;
alias c_g_socket_service_stop g_socket_service_stop;
// gio.SrvTarget
alias c_g_srv_target_get_type g_srv_target_get_type;
alias c_g_srv_target_new g_srv_target_new;
alias c_g_srv_target_copy g_srv_target_copy;
alias c_g_srv_target_free g_srv_target_free;
alias c_g_srv_target_get_hostname g_srv_target_get_hostname;
alias c_g_srv_target_get_port g_srv_target_get_port;
alias c_g_srv_target_get_priority g_srv_target_get_priority;
alias c_g_srv_target_get_weight g_srv_target_get_weight;
alias c_g_srv_target_list_sort g_srv_target_list_sort;
// gio.StaticResource
alias c_g_static_resource_fini g_static_resource_fini;
alias c_g_static_resource_get_resource g_static_resource_get_resource;
alias c_g_static_resource_init g_static_resource_init;
// gio.Subprocess
alias c_g_subprocess_get_type g_subprocess_get_type;
alias c_g_subprocess_new g_subprocess_new;
alias c_g_subprocess_newv g_subprocess_newv;
alias c_g_subprocess_communicate g_subprocess_communicate;
alias c_g_subprocess_communicate_async g_subprocess_communicate_async;
alias c_g_subprocess_communicate_finish g_subprocess_communicate_finish;
alias c_g_subprocess_communicate_utf8 g_subprocess_communicate_utf8;
alias c_g_subprocess_communicate_utf8_async g_subprocess_communicate_utf8_async;
alias c_g_subprocess_communicate_utf8_finish g_subprocess_communicate_utf8_finish;
alias c_g_subprocess_force_exit g_subprocess_force_exit;
alias c_g_subprocess_get_exit_status g_subprocess_get_exit_status;
alias c_g_subprocess_get_identifier g_subprocess_get_identifier;
alias c_g_subprocess_get_if_exited g_subprocess_get_if_exited;
alias c_g_subprocess_get_if_signaled g_subprocess_get_if_signaled;
alias c_g_subprocess_get_status g_subprocess_get_status;
alias c_g_subprocess_get_stderr_pipe g_subprocess_get_stderr_pipe;
alias c_g_subprocess_get_stdin_pipe g_subprocess_get_stdin_pipe;
alias c_g_subprocess_get_stdout_pipe g_subprocess_get_stdout_pipe;
alias c_g_subprocess_get_successful g_subprocess_get_successful;
alias c_g_subprocess_get_term_sig g_subprocess_get_term_sig;
alias c_g_subprocess_send_signal g_subprocess_send_signal;
alias c_g_subprocess_wait g_subprocess_wait;
alias c_g_subprocess_wait_async g_subprocess_wait_async;
alias c_g_subprocess_wait_check g_subprocess_wait_check;
alias c_g_subprocess_wait_check_async g_subprocess_wait_check_async;
alias c_g_subprocess_wait_check_finish g_subprocess_wait_check_finish;
alias c_g_subprocess_wait_finish g_subprocess_wait_finish;
// gio.SubprocessLauncher
alias c_g_subprocess_launcher_get_type g_subprocess_launcher_get_type;
alias c_g_subprocess_launcher_new g_subprocess_launcher_new;
alias c_g_subprocess_launcher_getenv g_subprocess_launcher_getenv;
alias c_g_subprocess_launcher_set_child_setup g_subprocess_launcher_set_child_setup;
alias c_g_subprocess_launcher_set_cwd g_subprocess_launcher_set_cwd;
alias c_g_subprocess_launcher_set_environ g_subprocess_launcher_set_environ;
alias c_g_subprocess_launcher_set_flags g_subprocess_launcher_set_flags;
alias c_g_subprocess_launcher_set_stderr_file_path g_subprocess_launcher_set_stderr_file_path;
alias c_g_subprocess_launcher_set_stdin_file_path g_subprocess_launcher_set_stdin_file_path;
alias c_g_subprocess_launcher_set_stdout_file_path g_subprocess_launcher_set_stdout_file_path;
alias c_g_subprocess_launcher_setenv g_subprocess_launcher_setenv;
alias c_g_subprocess_launcher_spawn g_subprocess_launcher_spawn;
alias c_g_subprocess_launcher_spawnv g_subprocess_launcher_spawnv;
alias c_g_subprocess_launcher_take_fd g_subprocess_launcher_take_fd;
alias c_g_subprocess_launcher_take_stderr_fd g_subprocess_launcher_take_stderr_fd;
alias c_g_subprocess_launcher_take_stdin_fd g_subprocess_launcher_take_stdin_fd;
alias c_g_subprocess_launcher_take_stdout_fd g_subprocess_launcher_take_stdout_fd;
alias c_g_subprocess_launcher_unsetenv g_subprocess_launcher_unsetenv;
// gio.Task
alias c_g_task_get_type g_task_get_type;
alias c_g_task_new g_task_new;
alias c_g_task_is_valid g_task_is_valid;
alias c_g_task_report_error g_task_report_error;
alias c_g_task_report_new_error g_task_report_new_error;
alias c_g_task_attach_source g_task_attach_source;
alias c_g_task_get_cancellable g_task_get_cancellable;
alias c_g_task_get_check_cancellable g_task_get_check_cancellable;
alias c_g_task_get_completed g_task_get_completed;
alias c_g_task_get_context g_task_get_context;
alias c_g_task_get_name g_task_get_name;
alias c_g_task_get_priority g_task_get_priority;
alias c_g_task_get_return_on_cancel g_task_get_return_on_cancel;
alias c_g_task_get_source_object g_task_get_source_object;
alias c_g_task_get_source_tag g_task_get_source_tag;
alias c_g_task_get_task_data g_task_get_task_data;
alias c_g_task_had_error g_task_had_error;
alias c_g_task_propagate_boolean g_task_propagate_boolean;
alias c_g_task_propagate_int g_task_propagate_int;
alias c_g_task_propagate_pointer g_task_propagate_pointer;
alias c_g_task_propagate_value g_task_propagate_value;
alias c_g_task_return_boolean g_task_return_boolean;
alias c_g_task_return_error g_task_return_error;
alias c_g_task_return_error_if_cancelled g_task_return_error_if_cancelled;
alias c_g_task_return_int g_task_return_int;
alias c_g_task_return_new_error g_task_return_new_error;
alias c_g_task_return_pointer g_task_return_pointer;
alias c_g_task_return_value g_task_return_value;
alias c_g_task_run_in_thread g_task_run_in_thread;
alias c_g_task_run_in_thread_sync g_task_run_in_thread_sync;
alias c_g_task_set_check_cancellable g_task_set_check_cancellable;
alias c_g_task_set_name g_task_set_name;
alias c_g_task_set_priority g_task_set_priority;
alias c_g_task_set_return_on_cancel g_task_set_return_on_cancel;
alias c_g_task_set_source_tag g_task_set_source_tag;
alias c_g_task_set_task_data g_task_set_task_data;
// gio.TcpConnection
alias c_g_tcp_connection_get_type g_tcp_connection_get_type;
alias c_g_tcp_connection_get_graceful_disconnect g_tcp_connection_get_graceful_disconnect;
alias c_g_tcp_connection_set_graceful_disconnect g_tcp_connection_set_graceful_disconnect;
// gio.TcpWrapperConnection
alias c_g_tcp_wrapper_connection_get_type g_tcp_wrapper_connection_get_type;
alias c_g_tcp_wrapper_connection_new g_tcp_wrapper_connection_new;
alias c_g_tcp_wrapper_connection_get_base_io_stream g_tcp_wrapper_connection_get_base_io_stream;
// gio.TestDBus
alias c_g_test_dbus_get_type g_test_dbus_get_type;
alias c_g_test_dbus_new g_test_dbus_new;
alias c_g_test_dbus_unset g_test_dbus_unset;
alias c_g_test_dbus_add_service_dir g_test_dbus_add_service_dir;
alias c_g_test_dbus_down g_test_dbus_down;
alias c_g_test_dbus_get_bus_address g_test_dbus_get_bus_address;
alias c_g_test_dbus_get_flags g_test_dbus_get_flags;
alias c_g_test_dbus_stop g_test_dbus_stop;
alias c_g_test_dbus_up g_test_dbus_up;
// gio.ThemedIcon
alias c_g_themed_icon_get_type g_themed_icon_get_type;
alias c_g_themed_icon_new g_themed_icon_new;
alias c_g_themed_icon_new_from_names g_themed_icon_new_from_names;
alias c_g_themed_icon_new_with_default_fallbacks g_themed_icon_new_with_default_fallbacks;
alias c_g_themed_icon_append_name g_themed_icon_append_name;
alias c_g_themed_icon_get_names g_themed_icon_get_names;
alias c_g_themed_icon_prepend_name g_themed_icon_prepend_name;
// gio.ThreadedSocketService
alias c_g_threaded_socket_service_get_type g_threaded_socket_service_get_type;
alias c_g_threaded_socket_service_new g_threaded_socket_service_new;
// gio.TlsBackend
alias c_g_tls_backend_get_type g_tls_backend_get_type;
alias c_g_tls_backend_get_default g_tls_backend_get_default;
alias c_g_tls_backend_get_certificate_type g_tls_backend_get_certificate_type;
alias c_g_tls_backend_get_client_connection_type g_tls_backend_get_client_connection_type;
alias c_g_tls_backend_get_default_database g_tls_backend_get_default_database;
alias c_g_tls_backend_get_dtls_client_connection_type g_tls_backend_get_dtls_client_connection_type;
alias c_g_tls_backend_get_dtls_server_connection_type g_tls_backend_get_dtls_server_connection_type;
alias c_g_tls_backend_get_file_database_type g_tls_backend_get_file_database_type;
alias c_g_tls_backend_get_server_connection_type g_tls_backend_get_server_connection_type;
alias c_g_tls_backend_set_default_database g_tls_backend_set_default_database;
alias c_g_tls_backend_supports_dtls g_tls_backend_supports_dtls;
alias c_g_tls_backend_supports_tls g_tls_backend_supports_tls;
// gio.TlsCertificate
alias c_g_tls_certificate_get_type g_tls_certificate_get_type;
alias c_g_tls_certificate_new_from_file g_tls_certificate_new_from_file;
alias c_g_tls_certificate_new_from_files g_tls_certificate_new_from_files;
alias c_g_tls_certificate_new_from_pem g_tls_certificate_new_from_pem;
alias c_g_tls_certificate_list_new_from_file g_tls_certificate_list_new_from_file;
alias c_g_tls_certificate_get_issuer g_tls_certificate_get_issuer;
alias c_g_tls_certificate_is_same g_tls_certificate_is_same;
alias c_g_tls_certificate_verify g_tls_certificate_verify;
// gio.TlsClientConnection
alias c_g_tls_client_connection_get_type g_tls_client_connection_get_type;
alias c_g_tls_client_connection_new g_tls_client_connection_new;
alias c_g_tls_client_connection_copy_session_state g_tls_client_connection_copy_session_state;
alias c_g_tls_client_connection_get_accepted_cas g_tls_client_connection_get_accepted_cas;
alias c_g_tls_client_connection_get_server_identity g_tls_client_connection_get_server_identity;
alias c_g_tls_client_connection_get_use_ssl3 g_tls_client_connection_get_use_ssl3;
alias c_g_tls_client_connection_get_validation_flags g_tls_client_connection_get_validation_flags;
alias c_g_tls_client_connection_set_server_identity g_tls_client_connection_set_server_identity;
alias c_g_tls_client_connection_set_use_ssl3 g_tls_client_connection_set_use_ssl3;
alias c_g_tls_client_connection_set_validation_flags g_tls_client_connection_set_validation_flags;
// gio.TlsConnection
alias c_g_tls_connection_get_type g_tls_connection_get_type;
alias c_g_tls_connection_emit_accept_certificate g_tls_connection_emit_accept_certificate;
alias c_g_tls_connection_get_certificate g_tls_connection_get_certificate;
alias c_g_tls_connection_get_database g_tls_connection_get_database;
alias c_g_tls_connection_get_interaction g_tls_connection_get_interaction;
alias c_g_tls_connection_get_negotiated_protocol g_tls_connection_get_negotiated_protocol;
alias c_g_tls_connection_get_peer_certificate g_tls_connection_get_peer_certificate;
alias c_g_tls_connection_get_peer_certificate_errors g_tls_connection_get_peer_certificate_errors;
alias c_g_tls_connection_get_rehandshake_mode g_tls_connection_get_rehandshake_mode;
alias c_g_tls_connection_get_require_close_notify g_tls_connection_get_require_close_notify;
alias c_g_tls_connection_get_use_system_certdb g_tls_connection_get_use_system_certdb;
alias c_g_tls_connection_handshake g_tls_connection_handshake;
alias c_g_tls_connection_handshake_async g_tls_connection_handshake_async;
alias c_g_tls_connection_handshake_finish g_tls_connection_handshake_finish;
alias c_g_tls_connection_set_advertised_protocols g_tls_connection_set_advertised_protocols;
alias c_g_tls_connection_set_certificate g_tls_connection_set_certificate;
alias c_g_tls_connection_set_database g_tls_connection_set_database;
alias c_g_tls_connection_set_interaction g_tls_connection_set_interaction;
alias c_g_tls_connection_set_rehandshake_mode g_tls_connection_set_rehandshake_mode;
alias c_g_tls_connection_set_require_close_notify g_tls_connection_set_require_close_notify;
alias c_g_tls_connection_set_use_system_certdb g_tls_connection_set_use_system_certdb;
// gio.TlsDatabase
alias c_g_tls_database_get_type g_tls_database_get_type;
alias c_g_tls_database_create_certificate_handle g_tls_database_create_certificate_handle;
alias c_g_tls_database_lookup_certificate_for_handle g_tls_database_lookup_certificate_for_handle;
alias c_g_tls_database_lookup_certificate_for_handle_async g_tls_database_lookup_certificate_for_handle_async;
alias c_g_tls_database_lookup_certificate_for_handle_finish g_tls_database_lookup_certificate_for_handle_finish;
alias c_g_tls_database_lookup_certificate_issuer g_tls_database_lookup_certificate_issuer;
alias c_g_tls_database_lookup_certificate_issuer_async g_tls_database_lookup_certificate_issuer_async;
alias c_g_tls_database_lookup_certificate_issuer_finish g_tls_database_lookup_certificate_issuer_finish;
alias c_g_tls_database_lookup_certificates_issued_by g_tls_database_lookup_certificates_issued_by;
alias c_g_tls_database_lookup_certificates_issued_by_async g_tls_database_lookup_certificates_issued_by_async;
alias c_g_tls_database_lookup_certificates_issued_by_finish g_tls_database_lookup_certificates_issued_by_finish;
alias c_g_tls_database_verify_chain g_tls_database_verify_chain;
alias c_g_tls_database_verify_chain_async g_tls_database_verify_chain_async;
alias c_g_tls_database_verify_chain_finish g_tls_database_verify_chain_finish;
// gio.TlsFileDatabase
alias c_g_tls_file_database_get_type g_tls_file_database_get_type;
alias c_g_tls_file_database_new g_tls_file_database_new;
// gio.TlsInteraction
alias c_g_tls_interaction_get_type g_tls_interaction_get_type;
alias c_g_tls_interaction_ask_password g_tls_interaction_ask_password;
alias c_g_tls_interaction_ask_password_async g_tls_interaction_ask_password_async;
alias c_g_tls_interaction_ask_password_finish g_tls_interaction_ask_password_finish;
alias c_g_tls_interaction_invoke_ask_password g_tls_interaction_invoke_ask_password;
alias c_g_tls_interaction_invoke_request_certificate g_tls_interaction_invoke_request_certificate;
alias c_g_tls_interaction_request_certificate g_tls_interaction_request_certificate;
alias c_g_tls_interaction_request_certificate_async g_tls_interaction_request_certificate_async;
alias c_g_tls_interaction_request_certificate_finish g_tls_interaction_request_certificate_finish;
// gio.TlsPassword
alias c_g_tls_password_get_type g_tls_password_get_type;
alias c_g_tls_password_new g_tls_password_new;
alias c_g_tls_password_get_description g_tls_password_get_description;
alias c_g_tls_password_get_flags g_tls_password_get_flags;
alias c_g_tls_password_get_value g_tls_password_get_value;
alias c_g_tls_password_get_warning g_tls_password_get_warning;
alias c_g_tls_password_set_description g_tls_password_set_description;
alias c_g_tls_password_set_flags g_tls_password_set_flags;
alias c_g_tls_password_set_value g_tls_password_set_value;
alias c_g_tls_password_set_value_full g_tls_password_set_value_full;
alias c_g_tls_password_set_warning g_tls_password_set_warning;
// gio.TlsServerConnection
alias c_g_tls_server_connection_get_type g_tls_server_connection_get_type;
alias c_g_tls_server_connection_new g_tls_server_connection_new;
// gio.UnixConnection
alias c_g_unix_connection_get_type g_unix_connection_get_type;
alias c_g_unix_connection_receive_credentials g_unix_connection_receive_credentials;
alias c_g_unix_connection_receive_credentials_async g_unix_connection_receive_credentials_async;
alias c_g_unix_connection_receive_credentials_finish g_unix_connection_receive_credentials_finish;
alias c_g_unix_connection_receive_fd g_unix_connection_receive_fd;
alias c_g_unix_connection_send_credentials g_unix_connection_send_credentials;
alias c_g_unix_connection_send_credentials_async g_unix_connection_send_credentials_async;
alias c_g_unix_connection_send_credentials_finish g_unix_connection_send_credentials_finish;
alias c_g_unix_connection_send_fd g_unix_connection_send_fd;
// gio.UnixCredentialsMessage
alias c_g_unix_credentials_message_get_type g_unix_credentials_message_get_type;
alias c_g_unix_credentials_message_new g_unix_credentials_message_new;
alias c_g_unix_credentials_message_new_with_credentials g_unix_credentials_message_new_with_credentials;
alias c_g_unix_credentials_message_is_supported g_unix_credentials_message_is_supported;
alias c_g_unix_credentials_message_get_credentials g_unix_credentials_message_get_credentials;
// gio.UnixFDList
alias c_g_unix_fd_list_get_type g_unix_fd_list_get_type;
alias c_g_unix_fd_list_new g_unix_fd_list_new;
alias c_g_unix_fd_list_new_from_array g_unix_fd_list_new_from_array;
alias c_g_unix_fd_list_append g_unix_fd_list_append;
alias c_g_unix_fd_list_get g_unix_fd_list_get;
alias c_g_unix_fd_list_get_length g_unix_fd_list_get_length;
alias c_g_unix_fd_list_peek_fds g_unix_fd_list_peek_fds;
alias c_g_unix_fd_list_steal_fds g_unix_fd_list_steal_fds;
// gio.UnixFDMessage
alias c_g_unix_fd_message_get_type g_unix_fd_message_get_type;
alias c_g_unix_fd_message_new g_unix_fd_message_new;
alias c_g_unix_fd_message_new_with_fd_list g_unix_fd_message_new_with_fd_list;
alias c_g_unix_fd_message_append_fd g_unix_fd_message_append_fd;
alias c_g_unix_fd_message_get_fd_list g_unix_fd_message_get_fd_list;
alias c_g_unix_fd_message_steal_fds g_unix_fd_message_steal_fds;
// gio.UnixInputStream
alias c_g_unix_input_stream_get_type g_unix_input_stream_get_type;
alias c_g_unix_input_stream_new g_unix_input_stream_new;
alias c_g_unix_input_stream_get_close_fd g_unix_input_stream_get_close_fd;
alias c_g_unix_input_stream_get_fd g_unix_input_stream_get_fd;
alias c_g_unix_input_stream_set_close_fd g_unix_input_stream_set_close_fd;
// gio.UnixMountEntry
alias c_g_unix_mount_entry_get_type g_unix_mount_entry_get_type;
alias c_g_unix_is_mount_path_system_internal g_unix_is_mount_path_system_internal;
alias c_g_unix_mount_at g_unix_mount_at;
alias c_g_unix_mount_compare g_unix_mount_compare;
alias c_g_unix_mount_free g_unix_mount_free;
alias c_g_unix_mount_get_device_path g_unix_mount_get_device_path;
alias c_g_unix_mount_get_fs_type g_unix_mount_get_fs_type;
alias c_g_unix_mount_get_mount_path g_unix_mount_get_mount_path;
alias c_g_unix_mount_guess_can_eject g_unix_mount_guess_can_eject;
alias c_g_unix_mount_guess_icon g_unix_mount_guess_icon;
alias c_g_unix_mount_guess_name g_unix_mount_guess_name;
alias c_g_unix_mount_guess_should_display g_unix_mount_guess_should_display;
alias c_g_unix_mount_guess_symbolic_icon g_unix_mount_guess_symbolic_icon;
alias c_g_unix_mount_is_readonly g_unix_mount_is_readonly;
alias c_g_unix_mount_is_system_internal g_unix_mount_is_system_internal;
alias c_g_unix_mount_points_changed_since g_unix_mount_points_changed_since;
alias c_g_unix_mount_points_get g_unix_mount_points_get;
alias c_g_unix_mounts_changed_since g_unix_mounts_changed_since;
alias c_g_unix_mounts_get g_unix_mounts_get;
alias c_g_unix_mount_copy g_unix_mount_copy;
alias c_g_unix_mount_for g_unix_mount_for;
alias c_g_unix_mount_get_options g_unix_mount_get_options;
alias c_g_unix_mount_get_root_path g_unix_mount_get_root_path;
// gio.UnixMountMonitor
alias c_g_unix_mount_monitor_get_type g_unix_mount_monitor_get_type;
alias c_g_unix_mount_monitor_new g_unix_mount_monitor_new;
alias c_g_unix_mount_monitor_get g_unix_mount_monitor_get;
alias c_g_unix_mount_monitor_set_rate_limit g_unix_mount_monitor_set_rate_limit;
// gio.UnixMountPoint
alias c_g_unix_mount_point_get_type g_unix_mount_point_get_type;
alias c_g_unix_mount_point_compare g_unix_mount_point_compare;
alias c_g_unix_mount_point_copy g_unix_mount_point_copy;
alias c_g_unix_mount_point_free g_unix_mount_point_free;
alias c_g_unix_mount_point_get_device_path g_unix_mount_point_get_device_path;
alias c_g_unix_mount_point_get_fs_type g_unix_mount_point_get_fs_type;
alias c_g_unix_mount_point_get_mount_path g_unix_mount_point_get_mount_path;
alias c_g_unix_mount_point_get_options g_unix_mount_point_get_options;
alias c_g_unix_mount_point_guess_can_eject g_unix_mount_point_guess_can_eject;
alias c_g_unix_mount_point_guess_icon g_unix_mount_point_guess_icon;
alias c_g_unix_mount_point_guess_name g_unix_mount_point_guess_name;
alias c_g_unix_mount_point_guess_symbolic_icon g_unix_mount_point_guess_symbolic_icon;
alias c_g_unix_mount_point_is_loopback g_unix_mount_point_is_loopback;
alias c_g_unix_mount_point_is_readonly g_unix_mount_point_is_readonly;
alias c_g_unix_mount_point_is_user_mountable g_unix_mount_point_is_user_mountable;
// gio.UnixOutputStream
alias c_g_unix_output_stream_get_type g_unix_output_stream_get_type;
alias c_g_unix_output_stream_new g_unix_output_stream_new;
alias c_g_unix_output_stream_get_close_fd g_unix_output_stream_get_close_fd;
alias c_g_unix_output_stream_get_fd g_unix_output_stream_get_fd;
alias c_g_unix_output_stream_set_close_fd g_unix_output_stream_set_close_fd;
// gio.UnixSocketAddress
alias c_g_unix_socket_address_get_type g_unix_socket_address_get_type;
alias c_g_unix_socket_address_new g_unix_socket_address_new;
alias c_g_unix_socket_address_new_abstract g_unix_socket_address_new_abstract;
alias c_g_unix_socket_address_new_with_type g_unix_socket_address_new_with_type;
alias c_g_unix_socket_address_abstract_names_supported g_unix_socket_address_abstract_names_supported;
alias c_g_unix_socket_address_get_address_type g_unix_socket_address_get_address_type;
alias c_g_unix_socket_address_get_is_abstract g_unix_socket_address_get_is_abstract;
alias c_g_unix_socket_address_get_path g_unix_socket_address_get_path;
alias c_g_unix_socket_address_get_path_len g_unix_socket_address_get_path_len;
// gio.Vfs
alias c_g_vfs_get_type g_vfs_get_type;
alias c_g_vfs_get_default g_vfs_get_default;
alias c_g_vfs_get_local g_vfs_get_local;
alias c_g_vfs_get_file_for_path g_vfs_get_file_for_path;
alias c_g_vfs_get_file_for_uri g_vfs_get_file_for_uri;
alias c_g_vfs_get_supported_uri_schemes g_vfs_get_supported_uri_schemes;
alias c_g_vfs_is_active g_vfs_is_active;
alias c_g_vfs_parse_name g_vfs_parse_name;
alias c_g_vfs_register_uri_scheme g_vfs_register_uri_scheme;
alias c_g_vfs_unregister_uri_scheme g_vfs_unregister_uri_scheme;
// gio.Volume
alias c_g_volume_get_type g_volume_get_type;
alias c_g_volume_can_eject g_volume_can_eject;
alias c_g_volume_can_mount g_volume_can_mount;
alias c_g_volume_eject g_volume_eject;
alias c_g_volume_eject_finish g_volume_eject_finish;
alias c_g_volume_eject_with_operation g_volume_eject_with_operation;
alias c_g_volume_eject_with_operation_finish g_volume_eject_with_operation_finish;
alias c_g_volume_enumerate_identifiers g_volume_enumerate_identifiers;
alias c_g_volume_get_activation_root g_volume_get_activation_root;
alias c_g_volume_get_drive g_volume_get_drive;
alias c_g_volume_get_icon g_volume_get_icon;
alias c_g_volume_get_identifier g_volume_get_identifier;
alias c_g_volume_get_mount g_volume_get_mount;
alias c_g_volume_get_name g_volume_get_name;
alias c_g_volume_get_sort_key g_volume_get_sort_key;
alias c_g_volume_get_symbolic_icon g_volume_get_symbolic_icon;
alias c_g_volume_get_uuid g_volume_get_uuid;
alias c_g_volume_mount g_volume_mount;
alias c_g_volume_mount_finish g_volume_mount_finish;
alias c_g_volume_should_automount g_volume_should_automount;
// gio.VolumeMonitor
alias c_g_volume_monitor_get_type g_volume_monitor_get_type;
alias c_g_volume_monitor_adopt_orphan_mount g_volume_monitor_adopt_orphan_mount;
alias c_g_volume_monitor_get g_volume_monitor_get;
alias c_g_volume_monitor_get_connected_drives g_volume_monitor_get_connected_drives;
alias c_g_volume_monitor_get_mount_for_uuid g_volume_monitor_get_mount_for_uuid;
alias c_g_volume_monitor_get_mounts g_volume_monitor_get_mounts;
alias c_g_volume_monitor_get_volume_for_uuid g_volume_monitor_get_volume_for_uuid;
alias c_g_volume_monitor_get_volumes g_volume_monitor_get_volumes;
// gio.ZlibCompressor
alias c_g_zlib_compressor_get_type g_zlib_compressor_get_type;
alias c_g_zlib_compressor_new g_zlib_compressor_new;
alias c_g_zlib_compressor_get_file_info g_zlib_compressor_get_file_info;
alias c_g_zlib_compressor_set_file_info g_zlib_compressor_set_file_info;
// gio.ZlibDecompressor
alias c_g_zlib_decompressor_get_type g_zlib_decompressor_get_type;
alias c_g_zlib_decompressor_new g_zlib_decompressor_new;
alias c_g_zlib_decompressor_get_file_info g_zlib_decompressor_get_file_info;
// gio.PollableUtils
alias c_g_pollable_source_new g_pollable_source_new;
alias c_g_pollable_source_new_full g_pollable_source_new_full;
alias c_g_pollable_stream_read g_pollable_stream_read;
alias c_g_pollable_stream_write g_pollable_stream_write;
alias c_g_pollable_stream_write_all g_pollable_stream_write_all;
// gio.DBusNames
alias c_g_bus_own_name g_bus_own_name;
alias c_g_bus_own_name_on_connection g_bus_own_name_on_connection;
alias c_g_bus_own_name_on_connection_with_closures g_bus_own_name_on_connection_with_closures;
alias c_g_bus_own_name_with_closures g_bus_own_name_with_closures;
alias c_g_bus_unown_name g_bus_unown_name;
alias c_g_bus_unwatch_name g_bus_unwatch_name;
alias c_g_bus_watch_name g_bus_watch_name;
alias c_g_bus_watch_name_on_connection g_bus_watch_name_on_connection;
alias c_g_bus_watch_name_on_connection_with_closures g_bus_watch_name_on_connection_with_closures;
alias c_g_bus_watch_name_with_closures g_bus_watch_name_with_closures;
// gio.ContentType
alias c_g_content_type_can_be_executable g_content_type_can_be_executable;
alias c_g_content_type_equals g_content_type_equals;
alias c_g_content_type_from_mime_type g_content_type_from_mime_type;
alias c_g_content_type_get_description g_content_type_get_description;
alias c_g_content_type_get_generic_icon_name g_content_type_get_generic_icon_name;
alias c_g_content_type_get_icon g_content_type_get_icon;
alias c_g_content_type_get_mime_type g_content_type_get_mime_type;
alias c_g_content_type_get_symbolic_icon g_content_type_get_symbolic_icon;
alias c_g_content_type_guess g_content_type_guess;
alias c_g_content_type_guess_for_tree g_content_type_guess_for_tree;
alias c_g_content_type_is_a g_content_type_is_a;
alias c_g_content_type_is_unknown g_content_type_is_unknown;
alias c_g_content_types_get_registered g_content_types_get_registered;
alias c_g_content_type_is_mime_type g_content_type_is_mime_type;
alias c_g_content_type_get_mime_dirs g_content_type_get_mime_dirs;
alias c_g_content_type_set_mime_dirs g_content_type_set_mime_dirs;
// gio.DBusError
alias c_g_dbus_error_encode_gerror g_dbus_error_encode_gerror;
alias c_g_dbus_error_get_remote_error g_dbus_error_get_remote_error;
alias c_g_dbus_error_is_remote_error g_dbus_error_is_remote_error;
alias c_g_dbus_error_new_for_dbus_error g_dbus_error_new_for_dbus_error;
alias c_g_dbus_error_quark g_dbus_error_quark;
alias c_g_dbus_error_register_error g_dbus_error_register_error;
alias c_g_dbus_error_register_error_domain g_dbus_error_register_error_domain;
alias c_g_dbus_error_strip_remote_error g_dbus_error_strip_remote_error;
alias c_g_dbus_error_unregister_error g_dbus_error_unregister_error;
// gio.DBusUtilities
alias c_g_dbus_address_escape_value g_dbus_address_escape_value;
alias c_g_dbus_address_get_for_bus_sync g_dbus_address_get_for_bus_sync;
alias c_g_dbus_address_get_stream g_dbus_address_get_stream;
alias c_g_dbus_address_get_stream_finish g_dbus_address_get_stream_finish;
alias c_g_dbus_address_get_stream_sync g_dbus_address_get_stream_sync;
alias c_g_dbus_generate_guid g_dbus_generate_guid;
alias c_g_dbus_gvalue_to_gvariant g_dbus_gvalue_to_gvariant;
alias c_g_dbus_gvariant_to_gvalue g_dbus_gvariant_to_gvalue;
alias c_g_dbus_is_address g_dbus_is_address;
alias c_g_dbus_is_guid g_dbus_is_guid;
alias c_g_dbus_is_interface_name g_dbus_is_interface_name;
alias c_g_dbus_is_member_name g_dbus_is_member_name;
alias c_g_dbus_is_name g_dbus_is_name;
alias c_g_dbus_is_supported_address g_dbus_is_supported_address;
alias c_g_dbus_is_unique_name g_dbus_is_unique_name;
// gio.ErrorGIO
alias c_g_io_error_from_errno g_io_error_from_errno;
alias c_g_io_error_quark g_io_error_quark;
|