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
|
/*
* 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 glib.c.types;
public alias uint uid_t;
public alias int pid_t;
version( Windows )
{
alias int glong;
alias uint gulong;
}
else version( X86_64 )
{
alias long glong;
alias ulong gulong;
}
else
{
alias int glong;
alias uint gulong;
}
version (Windows)
{
private import core.stdc.stdio;
static if( !is(typeof(fdopen(0, null))) )
{
extern (C) FILE* fdopen(int, char*);
}
}
struct Scoped(T)
{
T payload;
alias payload this;
@disable this();
@disable this(this);
~this()
{
.destroy(payload);
}
}
auto getScopedGobject(T, Args...)(auto ref Args args) if (is(T == class))
{
Scoped!(T) result = void;
result.payload = new T(args);
return result;
}
/**
* Get the length of a zero terminated array.
*/
size_t getArrayLength(T)(T* arr)
{
size_t len;
for ( ; arr[len]; len++ ){}
return len;
}
unittest
{
assert(getArrayLength("aaaaaaaaa\0".ptr) == 9);
}
Type* gMalloc(Type)()
{
import glib.c.functions;
return cast(Type*)g_malloc0(Type.sizeof);
}
alias void* GIConv;
/**
* Integer representing a day of the month; between 1 and 31.
* #G_DATE_BAD_DAY represents an invalid day of the month.
*/
public alias ubyte GDateDay;
/**
* Integer representing a year; #G_DATE_BAD_YEAR is the invalid
* value. The year must be 1 or higher; negative (BC) years are not
* allowed. The year is represented with four digits.
*/
public alias ushort GDateYear;
/**
* Opaque type. See g_main_context_pusher_new() for details.
*/
public alias void GMainContextPusher;
/**
* Opaque type. See g_mutex_locker_new() for details.
*/
public alias void GMutexLocker;
/**
* A type which is used to hold a process identification.
*
* On UNIX, processes are identified by a process id (an integer),
* while Windows uses process handles (which are pointers).
*
* GPid is used in GLib only for descendant processes spawned with
* the g_spawn functions.
*/
public alias int GPid;
/**
* A GQuark is a non-zero integer which uniquely identifies a
* particular string. A GQuark value of zero is associated to %NULL.
*/
public alias uint GQuark;
/**
* Opaque type. See g_rw_lock_reader_locker_new() for details.
*/
public alias void GRWLockReaderLocker;
/**
* Opaque type. See g_rw_lock_writer_locker_new() for details.
*/
public alias void GRWLockWriterLocker;
/**
* Opaque type. See g_rec_mutex_locker_new() for details.
*/
public alias void GRecMutexLocker;
/**
* A typedef for a reference-counted string. A pointer to a #GRefString can be
* treated like a standard `char*` array by all code, but can additionally have
* `g_ref_string_*()` methods called on it. `g_ref_string_*()` methods cannot be
* called on `char*` arrays not allocated using g_ref_string_new().
*
* If using #GRefString with autocleanups, g_autoptr() must be used rather than
* g_autofree(), so that the reference counting metadata is also freed.
*/
public alias char GRefString;
/**
* A typedef alias for gchar**. This is mostly useful when used together with
* g_auto().
*/
public alias char** GStrv;
/**
* Simply a replacement for `time_t`. It has been deprecated
* since it is not equivalent to `time_t` on 64-bit platforms
* with a 64-bit `time_t`. Unrelated to #GTimer.
*
* Note that #GTime is defined to always be a 32-bit integer,
* unlike `time_t` which may be 64-bit on some systems. Therefore,
* #GTime will overflow in the year 2038, and you cannot use the
* address of a #GTime variable as argument to the UNIX time()
* function.
*
* Instead, do the following:
* |[<!-- language="C" -->
* time_t ttime;
* GTime gtime;
*
* time (&ttime);
* gtime = (GTime)ttime;
* ]|
*
* Deprecated: This is not [Y2038-safe](https://en.wikipedia.org/wiki/Year_2038_problem).
* Use #GDateTime or #time_t instead.
*/
public alias int GTime;
/**
* A value representing an interval of time, in microseconds.
*/
public alias long GTimeSpan;
enum GPriority
{
HIGH = -100,
DEFAULT = 0,
HIGH_IDLE = 100,
DEFAULT_IDLE = 200,
LOW = 300
}
public enum GAsciiType
{
ALNUM = 1,
ALPHA = 2,
CNTRL = 4,
DIGIT = 8,
GRAPH = 16,
LOWER = 32,
PRINT = 64,
PUNCT = 128,
SPACE = 256,
UPPER = 512,
XDIGIT = 1024,
}
alias GAsciiType AsciiType;
/**
* Error codes returned by bookmark file parsing.
*/
public enum GBookmarkFileError
{
/**
* URI was ill-formed
*/
INVALID_URI = 0,
/**
* a requested field was not found
*/
INVALID_VALUE = 1,
/**
* a requested application did
* not register a bookmark
*/
APP_NOT_REGISTERED = 2,
/**
* a requested URI was not found
*/
URI_NOT_FOUND = 3,
/**
* document was ill formed
*/
READ = 4,
/**
* the text being parsed was
* in an unknown encoding
*/
UNKNOWN_ENCODING = 5,
/**
* an error occurred while writing
*/
WRITE = 6,
/**
* requested file was not found
*/
FILE_NOT_FOUND = 7,
}
alias GBookmarkFileError BookmarkFileError;
/**
* The hashing algorithm to be used by #GChecksum when performing the
* digest of some data.
*
* Note that the #GChecksumType enumeration may be extended at a later
* date to include new hashing algorithm types.
*
* Since: 2.16
*/
public enum GChecksumType
{
/**
* Use the MD5 hashing algorithm
*/
MD5 = 0,
/**
* Use the SHA-1 hashing algorithm
*/
SHA1 = 1,
/**
* Use the SHA-256 hashing algorithm
*/
SHA256 = 2,
/**
* Use the SHA-512 hashing algorithm (Since: 2.36)
*/
SHA512 = 3,
/**
* Use the SHA-384 hashing algorithm (Since: 2.51)
*/
SHA384 = 4,
}
alias GChecksumType ChecksumType;
/**
* Error codes returned by character set conversion routines.
*/
public enum GConvertError
{
/**
* Conversion between the requested character
* sets is not supported.
*/
NO_CONVERSION = 0,
/**
* Invalid byte sequence in conversion input;
* or the character sequence could not be represented in the target
* character set.
*/
ILLEGAL_SEQUENCE = 1,
/**
* Conversion failed for some reason.
*/
FAILED = 2,
/**
* Partial character sequence at end of input.
*/
PARTIAL_INPUT = 3,
/**
* URI is invalid.
*/
BAD_URI = 4,
/**
* Pathname is not an absolute path.
*/
NOT_ABSOLUTE_PATH = 5,
/**
* No memory available. Since: 2.40
*/
NO_MEMORY = 6,
/**
* An embedded NUL character is present in
* conversion output where a NUL-terminated string is expected.
* Since: 2.56
*/
EMBEDDED_NUL = 7,
}
alias GConvertError ConvertError;
/**
* This enumeration isn't used in the API, but may be useful if you need
* to mark a number as a day, month, or year.
*/
public enum GDateDMY
{
/**
* a day
*/
DAY = 0,
/**
* a month
*/
MONTH = 1,
/**
* a year
*/
YEAR = 2,
}
alias GDateDMY DateDMY;
/**
* Enumeration representing a month; values are #G_DATE_JANUARY,
* #G_DATE_FEBRUARY, etc. #G_DATE_BAD_MONTH is the invalid value.
*/
public enum GDateMonth
{
/**
* invalid value
*/
BAD_MONTH = 0,
/**
* January
*/
JANUARY = 1,
/**
* February
*/
FEBRUARY = 2,
/**
* March
*/
MARCH = 3,
/**
* April
*/
APRIL = 4,
/**
* May
*/
MAY = 5,
/**
* June
*/
JUNE = 6,
/**
* July
*/
JULY = 7,
/**
* August
*/
AUGUST = 8,
/**
* September
*/
SEPTEMBER = 9,
/**
* October
*/
OCTOBER = 10,
/**
* November
*/
NOVEMBER = 11,
/**
* December
*/
DECEMBER = 12,
}
alias GDateMonth DateMonth;
/**
* Enumeration representing a day of the week; #G_DATE_MONDAY,
* #G_DATE_TUESDAY, etc. #G_DATE_BAD_WEEKDAY is an invalid weekday.
*/
public enum GDateWeekday
{
/**
* invalid value
*/
BAD_WEEKDAY = 0,
/**
* Monday
*/
MONDAY = 1,
/**
* Tuesday
*/
TUESDAY = 2,
/**
* Wednesday
*/
WEDNESDAY = 3,
/**
* Thursday
*/
THURSDAY = 4,
/**
* Friday
*/
FRIDAY = 5,
/**
* Saturday
*/
SATURDAY = 6,
/**
* Sunday
*/
SUNDAY = 7,
}
alias GDateWeekday DateWeekday;
/**
* The possible errors, used in the @v_error field
* of #GTokenValue, when the token is a %G_TOKEN_ERROR.
*/
public enum GErrorType
{
/**
* unknown error
*/
UNKNOWN = 0,
/**
* unexpected end of file
*/
UNEXP_EOF = 1,
/**
* unterminated string constant
*/
UNEXP_EOF_IN_STRING = 2,
/**
* unterminated comment
*/
UNEXP_EOF_IN_COMMENT = 3,
/**
* non-digit character in a number
*/
NON_DIGIT_IN_CONST = 4,
/**
* digit beyond radix in a number
*/
DIGIT_RADIX = 5,
/**
* non-decimal floating point number
*/
FLOAT_RADIX = 6,
/**
* malformed floating point number
*/
FLOAT_MALFORMED = 7,
}
alias GErrorType ErrorType;
/**
* Values corresponding to @errno codes returned from file operations
* on UNIX. Unlike @errno codes, GFileError values are available on
* all systems, even Windows. The exact meaning of each code depends
* on what sort of file operation you were performing; the UNIX
* documentation gives more details. The following error code descriptions
* come from the GNU C Library manual, and are under the copyright
* of that manual.
*
* It's not very portable to make detailed assumptions about exactly
* which errors will be returned from a given operation. Some errors
* don't occur on some systems, etc., sometimes there are subtle
* differences in when a system will report a given error, etc.
*/
public enum GFileError
{
/**
* Operation not permitted; only the owner of
* the file (or other resource) or processes with special privileges
* can perform the operation.
*/
EXIST = 0,
/**
* File is a directory; you cannot open a directory
* for writing, or create or remove hard links to it.
*/
ISDIR = 1,
/**
* Permission denied; the file permissions do not
* allow the attempted operation.
*/
ACCES = 2,
/**
* Filename too long.
*/
NAMETOOLONG = 3,
/**
* No such file or directory. This is a "file
* doesn't exist" error for ordinary files that are referenced in
* contexts where they are expected to already exist.
*/
NOENT = 4,
/**
* A file that isn't a directory was specified when
* a directory is required.
*/
NOTDIR = 5,
/**
* No such device or address. The system tried to
* use the device represented by a file you specified, and it
* couldn't find the device. This can mean that the device file was
* installed incorrectly, or that the physical device is missing or
* not correctly attached to the computer.
*/
NXIO = 6,
/**
* The underlying file system of the specified file
* does not support memory mapping.
*/
NODEV = 7,
/**
* The directory containing the new link can't be
* modified because it's on a read-only file system.
*/
ROFS = 8,
/**
* Text file busy.
*/
TXTBSY = 9,
/**
* You passed in a pointer to bad memory.
* (GLib won't reliably return this, don't pass in pointers to bad
* memory.)
*/
FAULT = 10,
/**
* Too many levels of symbolic links were encountered
* in looking up a file name. This often indicates a cycle of symbolic
* links.
*/
LOOP = 11,
/**
* No space left on device; write operation on a
* file failed because the disk is full.
*/
NOSPC = 12,
/**
* No memory available. The system cannot allocate
* more virtual memory because its capacity is full.
*/
NOMEM = 13,
/**
* The current process has too many files open and
* can't open any more. Duplicate descriptors do count toward this
* limit.
*/
MFILE = 14,
/**
* There are too many distinct file openings in the
* entire system.
*/
NFILE = 15,
/**
* Bad file descriptor; for example, I/O on a
* descriptor that has been closed or reading from a descriptor open
* only for writing (or vice versa).
*/
BADF = 16,
/**
* Invalid argument. This is used to indicate
* various kinds of problems with passing the wrong argument to a
* library function.
*/
INVAL = 17,
/**
* Broken pipe; there is no process reading from the
* other end of a pipe. Every library function that returns this
* error code also generates a 'SIGPIPE' signal; this signal
* terminates the program if not handled or blocked. Thus, your
* program will never actually see this code unless it has handled
* or blocked 'SIGPIPE'.
*/
PIPE = 18,
/**
* Resource temporarily unavailable; the call might
* work if you try again later.
*/
AGAIN = 19,
/**
* Interrupted function call; an asynchronous signal
* occurred and prevented completion of the call. When this
* happens, you should try the call again.
*/
INTR = 20,
/**
* Input/output error; usually used for physical read
* or write errors. i.e. the disk or other physical device hardware
* is returning errors.
*/
IO = 21,
/**
* Operation not permitted; only the owner of the
* file (or other resource) or processes with special privileges can
* perform the operation.
*/
PERM = 22,
/**
* Function not implemented; this indicates that
* the system is missing some functionality.
*/
NOSYS = 23,
/**
* Does not correspond to a UNIX error code; this
* is the standard "failed for unspecified reason" error code present
* in all #GError error code enumerations. Returned if no specific
* code applies.
*/
FAILED = 24,
}
alias GFileError FileError;
/**
* A test to perform on a file using g_file_test().
*/
public enum GFileTest
{
/**
* %TRUE if the file is a regular file
* (not a directory). Note that this test will also return %TRUE
* if the tested file is a symlink to a regular file.
*/
IS_REGULAR = 1,
/**
* %TRUE if the file is a symlink.
*/
IS_SYMLINK = 2,
/**
* %TRUE if the file is a directory.
*/
IS_DIR = 4,
/**
* %TRUE if the file is executable.
*/
IS_EXECUTABLE = 8,
/**
* %TRUE if the file exists. It may or may not
* be a regular file.
*/
EXISTS = 16,
}
alias GFileTest FileTest;
/**
* Flags to modify the format of the string returned by g_format_size_full().
*/
public enum GFormatSizeFlags
{
/**
* behave the same as g_format_size()
*/
DEFAULT = 0,
/**
* include the exact number of bytes as part
* of the returned string. For example, "45.6 kB (45,612 bytes)".
*/
LONG_FORMAT = 1,
/**
* use IEC (base 1024) units with "KiB"-style
* suffixes. IEC units should only be used for reporting things with
* a strong "power of 2" basis, like RAM sizes or RAID stripe sizes.
* Network and storage sizes should be reported in the normal SI units.
*/
IEC_UNITS = 2,
/**
* set the size as a quantity in bits, rather than
* bytes, and return units in bits. For example, ‘Mb’ rather than ‘MB’.
*/
BITS = 4,
}
alias GFormatSizeFlags FormatSizeFlags;
/**
* Flags used internally in the #GHook implementation.
*/
public enum GHookFlagMask
{
/**
* set if the hook has not been destroyed
*/
ACTIVE = 1,
/**
* set if the hook is currently being run
*/
IN_CALL = 2,
/**
* A mask covering all bits reserved for
* hook flags; see %G_HOOK_FLAG_USER_SHIFT
*/
MASK = 15,
}
alias GHookFlagMask HookFlagMask;
/**
* Error codes returned by #GIOChannel operations.
*/
public enum GIOChannelError
{
/**
* File too large.
*/
FBIG = 0,
/**
* Invalid argument.
*/
INVAL = 1,
/**
* IO error.
*/
IO = 2,
/**
* File is a directory.
*/
ISDIR = 3,
/**
* No space left on device.
*/
NOSPC = 4,
/**
* No such device or address.
*/
NXIO = 5,
/**
* Value too large for defined datatype.
*/
OVERFLOW = 6,
/**
* Broken pipe.
*/
PIPE = 7,
/**
* Some other error.
*/
FAILED = 8,
}
alias GIOChannelError IOChannelError;
/**
* A bitwise combination representing a condition to watch for on an
* event source.
*/
public enum GIOCondition
{
/**
* There is data to read.
*/
IN = 1,
/**
* Data can be written (without blocking).
*/
OUT = 4,
/**
* There is urgent data to read.
*/
PRI = 2,
/**
* Error condition.
*/
ERR = 8,
/**
* Hung up (the connection has been broken, usually for
* pipes and sockets).
*/
HUP = 16,
/**
* Invalid request. The file descriptor is not open.
*/
NVAL = 32,
}
alias GIOCondition IOCondition;
/**
* #GIOError is only used by the deprecated functions
* g_io_channel_read(), g_io_channel_write(), and g_io_channel_seek().
*/
public enum GIOError
{
/**
* no error
*/
NONE = 0,
/**
* an EAGAIN error occurred
*/
AGAIN = 1,
/**
* an EINVAL error occurred
*/
INVAL = 2,
/**
* another error occurred
*/
UNKNOWN = 3,
}
alias GIOError IOError;
/**
* Specifies properties of a #GIOChannel. Some of the flags can only be
* read with g_io_channel_get_flags(), but not changed with
* g_io_channel_set_flags().
*/
public enum GIOFlags
{
/**
* turns on append mode, corresponds to %O_APPEND
* (see the documentation of the UNIX open() syscall)
*/
APPEND = 1,
/**
* turns on nonblocking mode, corresponds to
* %O_NONBLOCK/%O_NDELAY (see the documentation of the UNIX open()
* syscall)
*/
NONBLOCK = 2,
/**
* indicates that the io channel is readable.
* This flag cannot be changed.
*/
IS_READABLE = 4,
/**
* indicates that the io channel is writable.
* This flag cannot be changed.
*/
IS_WRITABLE = 8,
/**
* a misspelled version of @G_IO_FLAG_IS_WRITABLE
* that existed before the spelling was fixed in GLib 2.30. It is kept
* here for compatibility reasons. Deprecated since 2.30
*/
IS_WRITEABLE = 8,
/**
* indicates that the io channel is seekable,
* i.e. that g_io_channel_seek_position() can be used on it.
* This flag cannot be changed.
*/
IS_SEEKABLE = 16,
/**
* the mask that specifies all the valid flags.
*/
MASK = 31,
/**
* the mask of the flags that are returned from
* g_io_channel_get_flags()
*/
GET_MASK = 31,
/**
* the mask of the flags that the user can modify
* with g_io_channel_set_flags()
*/
SET_MASK = 3,
}
alias GIOFlags IOFlags;
/**
* Stati returned by most of the #GIOFuncs functions.
*/
public enum GIOStatus
{
/**
* An error occurred.
*/
ERROR = 0,
/**
* Success.
*/
NORMAL = 1,
/**
* End of file.
*/
EOF = 2,
/**
* Resource temporarily unavailable.
*/
AGAIN = 3,
}
alias GIOStatus IOStatus;
/**
* Error codes returned by key file parsing.
*/
public enum GKeyFileError
{
/**
* the text being parsed was in
* an unknown encoding
*/
UNKNOWN_ENCODING = 0,
/**
* document was ill-formed
*/
PARSE = 1,
/**
* the file was not found
*/
NOT_FOUND = 2,
/**
* a requested key was not found
*/
KEY_NOT_FOUND = 3,
/**
* a requested group was not found
*/
GROUP_NOT_FOUND = 4,
/**
* a value could not be parsed
*/
INVALID_VALUE = 5,
}
alias GKeyFileError KeyFileError;
/**
* Flags which influence the parsing.
*/
public enum GKeyFileFlags
{
/**
* No flags, default behaviour
*/
NONE = 0,
/**
* Use this flag if you plan to write the
* (possibly modified) contents of the key file back to a file;
* otherwise all comments will be lost when the key file is
* written back.
*/
KEEP_COMMENTS = 1,
/**
* Use this flag if you plan to write the
* (possibly modified) contents of the key file back to a file;
* otherwise only the translations for the current language will be
* written back.
*/
KEEP_TRANSLATIONS = 2,
}
alias GKeyFileFlags KeyFileFlags;
/**
* Flags specifying the level of log messages.
*
* It is possible to change how GLib treats messages of the various
* levels using g_log_set_handler() and g_log_set_fatal_mask().
*/
public enum GLogLevelFlags
{
/**
* internal flag
*/
FLAG_RECURSION = 1,
/**
* internal flag
*/
FLAG_FATAL = 2,
/**
* log level for errors, see g_error().
* This level is also used for messages produced by g_assert().
*/
LEVEL_ERROR = 4,
/**
* log level for critical warning messages, see
* g_critical().
* This level is also used for messages produced by g_return_if_fail()
* and g_return_val_if_fail().
*/
LEVEL_CRITICAL = 8,
/**
* log level for warnings, see g_warning()
*/
LEVEL_WARNING = 16,
/**
* log level for messages, see g_message()
*/
LEVEL_MESSAGE = 32,
/**
* log level for informational messages, see g_info()
*/
LEVEL_INFO = 64,
/**
* log level for debug messages, see g_debug()
*/
LEVEL_DEBUG = 128,
/**
* a mask including all log levels
*/
LEVEL_MASK = -4,
}
alias GLogLevelFlags LogLevelFlags;
/**
* Return values from #GLogWriterFuncs to indicate whether the given log entry
* was successfully handled by the writer, or whether there was an error in
* handling it (and hence a fallback writer should be used).
*
* If a #GLogWriterFunc ignores a log entry, it should return
* %G_LOG_WRITER_HANDLED.
*
* Since: 2.50
*/
public enum GLogWriterOutput
{
/**
* Log writer has handled the log entry.
*/
HANDLED = 1,
/**
* Log writer could not handle the log entry.
*/
UNHANDLED = 0,
}
alias GLogWriterOutput LogWriterOutput;
/**
* A mixed enumerated type and flags field. You must specify one type
* (string, strdup, boolean, tristate). Additionally, you may optionally
* bitwise OR the type with the flag %G_MARKUP_COLLECT_OPTIONAL.
*
* It is likely that this enum will be extended in the future to
* support other types.
*/
public enum GMarkupCollectType
{
/**
* used to terminate the list of attributes
* to collect
*/
INVALID = 0,
/**
* collect the string pointer directly from
* the attribute_values[] array. Expects a parameter of type (const
* char **). If %G_MARKUP_COLLECT_OPTIONAL is specified and the
* attribute isn't present then the pointer will be set to %NULL
*/
STRING = 1,
/**
* as with %G_MARKUP_COLLECT_STRING, but
* expects a parameter of type (char **) and g_strdup()s the
* returned pointer. The pointer must be freed with g_free()
*/
STRDUP = 2,
/**
* expects a parameter of type (gboolean *)
* and parses the attribute value as a boolean. Sets %FALSE if the
* attribute isn't present. Valid boolean values consist of
* (case-insensitive) "false", "f", "no", "n", "0" and "true", "t",
* "yes", "y", "1"
*/
BOOLEAN = 3,
/**
* as with %G_MARKUP_COLLECT_BOOLEAN, but
* in the case of a missing attribute a value is set that compares
* equal to neither %FALSE nor %TRUE G_MARKUP_COLLECT_OPTIONAL is
* implied
*/
TRISTATE = 4,
/**
* can be bitwise ORed with the other fields.
* If present, allows the attribute not to appear. A default value
* is set depending on what value type is used
*/
OPTIONAL = 65536,
}
alias GMarkupCollectType MarkupCollectType;
/**
* Error codes returned by markup parsing.
*/
public enum GMarkupError
{
/**
* text being parsed was not valid UTF-8
*/
BAD_UTF8 = 0,
/**
* document contained nothing, or only whitespace
*/
EMPTY = 1,
/**
* document was ill-formed
*/
PARSE = 2,
/**
* error should be set by #GMarkupParser
* functions; element wasn't known
*/
UNKNOWN_ELEMENT = 3,
/**
* error should be set by #GMarkupParser
* functions; attribute wasn't known
*/
UNKNOWN_ATTRIBUTE = 4,
/**
* error should be set by #GMarkupParser
* functions; content was invalid
*/
INVALID_CONTENT = 5,
/**
* error should be set by #GMarkupParser
* functions; a required attribute was missing
*/
MISSING_ATTRIBUTE = 6,
}
alias GMarkupError MarkupError;
/**
* Flags that affect the behaviour of the parser.
*/
public enum GMarkupParseFlags
{
/**
* flag you should not use
*/
DO_NOT_USE_THIS_UNSUPPORTED_FLAG = 1,
/**
* When this flag is set, CDATA marked
* sections are not passed literally to the @passthrough function of
* the parser. Instead, the content of the section (without the
* `<![CDATA[` and `]]>`) is
* passed to the @text function. This flag was added in GLib 2.12
*/
TREAT_CDATA_AS_TEXT = 2,
/**
* Normally errors caught by GMarkup
* itself have line/column information prefixed to them to let the
* caller know the location of the error. When this flag is set the
* location information is also prefixed to errors generated by the
* #GMarkupParser implementation functions
*/
PREFIX_ERROR_POSITION = 4,
/**
* Ignore (don't report) qualified
* attributes and tags, along with their contents. A qualified
* attribute or tag is one that contains ':' in its name (ie: is in
* another namespace). Since: 2.40.
*/
IGNORE_QUALIFIED = 8,
}
alias GMarkupParseFlags MarkupParseFlags;
/**
* Defines how a Unicode string is transformed in a canonical
* form, standardizing such issues as whether a character with
* an accent is represented as a base character and combining
* accent or as a single precomposed character. Unicode strings
* should generally be normalized before comparing them.
*/
public enum GNormalizeMode
{
/**
* standardize differences that do not affect the
* text content, such as the above-mentioned accent representation
*/
DEFAULT = 0,
/**
* another name for %G_NORMALIZE_DEFAULT
*/
NFD = 0,
/**
* like %G_NORMALIZE_DEFAULT, but with
* composed forms rather than a maximally decomposed form
*/
DEFAULT_COMPOSE = 1,
/**
* another name for %G_NORMALIZE_DEFAULT_COMPOSE
*/
NFC = 1,
/**
* beyond %G_NORMALIZE_DEFAULT also standardize the
* "compatibility" characters in Unicode, such as SUPERSCRIPT THREE
* to the standard forms (in this case DIGIT THREE). Formatting
* information may be lost but for most text operations such
* characters should be considered the same
*/
ALL = 2,
/**
* another name for %G_NORMALIZE_ALL
*/
NFKD = 2,
/**
* like %G_NORMALIZE_ALL, but with composed
* forms rather than a maximally decomposed form
*/
ALL_COMPOSE = 3,
/**
* another name for %G_NORMALIZE_ALL_COMPOSE
*/
NFKC = 3,
}
alias GNormalizeMode NormalizeMode;
/**
* Error codes returned by functions converting a string to a number.
*
* Since: 2.54
*/
public enum GNumberParserError
{
/**
* String was not a valid number.
*/
INVALID = 0,
/**
* String was a number, but out of bounds.
*/
OUT_OF_BOUNDS = 1,
}
alias GNumberParserError NumberParserError;
/**
* The possible statuses of a one-time initialization function
* controlled by a #GOnce struct.
*
* Since: 2.4
*/
public enum GOnceStatus
{
/**
* the function has not been called yet.
*/
NOTCALLED = 0,
/**
* the function call is currently in progress.
*/
PROGRESS = 1,
/**
* the function has been called.
*/
READY = 2,
}
alias GOnceStatus OnceStatus;
/**
* The #GOptionArg enum values determine which type of extra argument the
* options expect to find. If an option expects an extra argument, it can
* be specified in several ways; with a short option: `-x arg`, with a long
* option: `--name arg` or combined in a single argument: `--name=arg`.
*/
public enum GOptionArg
{
/**
* No extra argument. This is useful for simple flags.
*/
NONE = 0,
/**
* The option takes a UTF-8 string argument.
*/
STRING = 1,
/**
* The option takes an integer argument.
*/
INT = 2,
/**
* The option provides a callback (of type
* #GOptionArgFunc) to parse the extra argument.
*/
CALLBACK = 3,
/**
* The option takes a filename as argument, which will
* be in the GLib filename encoding rather than UTF-8.
*/
FILENAME = 4,
/**
* The option takes a string argument, multiple
* uses of the option are collected into an array of strings.
*/
STRING_ARRAY = 5,
/**
* The option takes a filename as argument,
* multiple uses of the option are collected into an array of strings.
*/
FILENAME_ARRAY = 6,
/**
* The option takes a double argument. The argument
* can be formatted either for the user's locale or for the "C" locale.
* Since 2.12
*/
DOUBLE = 7,
/**
* The option takes a 64-bit integer. Like
* %G_OPTION_ARG_INT but for larger numbers. The number can be in
* decimal base, or in hexadecimal (when prefixed with `0x`, for
* example, `0xffffffff`). Since 2.12
*/
INT64 = 8,
}
alias GOptionArg OptionArg;
/**
* Error codes returned by option parsing.
*/
public enum GOptionError
{
/**
* An option was not known to the parser.
* This error will only be reported, if the parser hasn't been instructed
* to ignore unknown options, see g_option_context_set_ignore_unknown_options().
*/
UNKNOWN_OPTION = 0,
/**
* A value couldn't be parsed.
*/
BAD_VALUE = 1,
/**
* A #GOptionArgFunc callback failed.
*/
FAILED = 2,
}
alias GOptionError OptionError;
/**
* Flags which modify individual options.
*/
public enum GOptionFlags
{
/**
* No flags. Since: 2.42.
*/
NONE = 0,
/**
* The option doesn't appear in `--help` output.
*/
HIDDEN = 1,
/**
* The option appears in the main section of the
* `--help` output, even if it is defined in a group.
*/
IN_MAIN = 2,
/**
* For options of the %G_OPTION_ARG_NONE kind, this
* flag indicates that the sense of the option is reversed.
*/
REVERSE = 4,
/**
* For options of the %G_OPTION_ARG_CALLBACK kind,
* this flag indicates that the callback does not take any argument
* (like a %G_OPTION_ARG_NONE option). Since 2.8
*/
NO_ARG = 8,
/**
* For options of the %G_OPTION_ARG_CALLBACK
* kind, this flag indicates that the argument should be passed to the
* callback in the GLib filename encoding rather than UTF-8. Since 2.8
*/
FILENAME = 16,
/**
* For options of the %G_OPTION_ARG_CALLBACK
* kind, this flag indicates that the argument supply is optional.
* If no argument is given then data of %GOptionParseFunc will be
* set to NULL. Since 2.8
*/
OPTIONAL_ARG = 32,
/**
* This flag turns off the automatic conflict
* resolution which prefixes long option names with `groupname-` if
* there is a conflict. This option should only be used in situations
* where aliasing is necessary to model some legacy commandline interface.
* It is not safe to use this option, unless all option groups are under
* your direct control. Since 2.8.
*/
NOALIAS = 64,
}
alias GOptionFlags OptionFlags;
/**
* Flags specifying compile-time options.
*
* Since: 2.14
*/
public enum GRegexCompileFlags
{
/**
* Letters in the pattern match both upper- and
* lowercase letters. This option can be changed within a pattern
* by a "(?i)" option setting.
*/
CASELESS = 1,
/**
* By default, GRegex treats the strings as consisting
* of a single line of characters (even if it actually contains
* newlines). The "start of line" metacharacter ("^") matches only
* at the start of the string, while the "end of line" metacharacter
* ("$") matches only at the end of the string, or before a terminating
* newline (unless #G_REGEX_DOLLAR_ENDONLY is set). When
* #G_REGEX_MULTILINE is set, the "start of line" and "end of line"
* constructs match immediately following or immediately before any
* newline in the string, respectively, as well as at the very start
* and end. This can be changed within a pattern by a "(?m)" option
* setting.
*/
MULTILINE = 2,
/**
* A dot metacharacter (".") in the pattern matches all
* characters, including newlines. Without it, newlines are excluded.
* This option can be changed within a pattern by a ("?s") option setting.
*/
DOTALL = 4,
/**
* Whitespace data characters in the pattern are
* totally ignored except when escaped or inside a character class.
* Whitespace does not include the VT character (code 11). In addition,
* characters between an unescaped "#" outside a character class and
* the next newline character, inclusive, are also ignored. This can
* be changed within a pattern by a "(?x)" option setting.
*/
EXTENDED = 8,
/**
* The pattern is forced to be "anchored", that is,
* it is constrained to match only at the first matching point in the
* string that is being searched. This effect can also be achieved by
* appropriate constructs in the pattern itself such as the "^"
* metacharacter.
*/
ANCHORED = 16,
/**
* A dollar metacharacter ("$") in the pattern
* matches only at the end of the string. Without this option, a
* dollar also matches immediately before the final character if
* it is a newline (but not before any other newlines). This option
* is ignored if #G_REGEX_MULTILINE is set.
*/
DOLLAR_ENDONLY = 32,
/**
* Inverts the "greediness" of the quantifiers so that
* they are not greedy by default, but become greedy if followed by "?".
* It can also be set by a "(?U)" option setting within the pattern.
*/
UNGREEDY = 512,
/**
* Usually strings must be valid UTF-8 strings, using this
* flag they are considered as a raw sequence of bytes.
*/
RAW = 2048,
/**
* Disables the use of numbered capturing
* parentheses in the pattern. Any opening parenthesis that is not
* followed by "?" behaves as if it were followed by "?:" but named
* parentheses can still be used for capturing (and they acquire numbers
* in the usual way).
*/
NO_AUTO_CAPTURE = 4096,
/**
* Optimize the regular expression. If the pattern will
* be used many times, then it may be worth the effort to optimize it
* to improve the speed of matches.
*/
OPTIMIZE = 8192,
/**
* Limits an unanchored pattern to match before (or at) the
* first newline. Since: 2.34
*/
FIRSTLINE = 262144,
/**
* Names used to identify capturing subpatterns need not
* be unique. This can be helpful for certain types of pattern when it
* is known that only one instance of the named subpattern can ever be
* matched.
*/
DUPNAMES = 524288,
/**
* Usually any newline character or character sequence is
* recognized. If this option is set, the only recognized newline character
* is '\r'.
*/
NEWLINE_CR = 1048576,
/**
* Usually any newline character or character sequence is
* recognized. If this option is set, the only recognized newline character
* is '\n'.
*/
NEWLINE_LF = 2097152,
/**
* Usually any newline character or character sequence is
* recognized. If this option is set, the only recognized newline character
* sequence is '\r\n'.
*/
NEWLINE_CRLF = 3145728,
/**
* Usually any newline character or character sequence
* is recognized. If this option is set, the only recognized newline character
* sequences are '\r', '\n', and '\r\n'. Since: 2.34
*/
NEWLINE_ANYCRLF = 5242880,
/**
* Usually any newline character or character sequence
* is recognised. If this option is set, then "\R" only recognizes the newline
* characters '\r', '\n' and '\r\n'. Since: 2.34
*/
BSR_ANYCRLF = 8388608,
/**
* Changes behaviour so that it is compatible with
* JavaScript rather than PCRE. Since: 2.34
*/
JAVASCRIPT_COMPAT = 33554432,
}
alias GRegexCompileFlags RegexCompileFlags;
/**
* Error codes returned by regular expressions functions.
*
* Since: 2.14
*/
public enum GRegexError
{
/**
* Compilation of the regular expression failed.
*/
COMPILE = 0,
/**
* Optimization of the regular expression failed.
*/
OPTIMIZE = 1,
/**
* Replacement failed due to an ill-formed replacement
* string.
*/
REPLACE = 2,
/**
* The match process failed.
*/
MATCH = 3,
/**
* Internal error of the regular expression engine.
* Since 2.16
*/
INTERNAL = 4,
/**
* "\\" at end of pattern. Since 2.16
*/
STRAY_BACKSLASH = 101,
/**
* "\\c" at end of pattern. Since 2.16
*/
MISSING_CONTROL_CHAR = 102,
/**
* Unrecognized character follows "\\".
* Since 2.16
*/
UNRECOGNIZED_ESCAPE = 103,
/**
* Numbers out of order in "{}"
* quantifier. Since 2.16
*/
QUANTIFIERS_OUT_OF_ORDER = 104,
/**
* Number too big in "{}" quantifier.
* Since 2.16
*/
QUANTIFIER_TOO_BIG = 105,
/**
* Missing terminating "]" for
* character class. Since 2.16
*/
UNTERMINATED_CHARACTER_CLASS = 106,
/**
* Invalid escape sequence
* in character class. Since 2.16
*/
INVALID_ESCAPE_IN_CHARACTER_CLASS = 107,
/**
* Range out of order in character class.
* Since 2.16
*/
RANGE_OUT_OF_ORDER = 108,
/**
* Nothing to repeat. Since 2.16
*/
NOTHING_TO_REPEAT = 109,
/**
* Unrecognized character after "(?",
* "(?<" or "(?P". Since 2.16
*/
UNRECOGNIZED_CHARACTER = 112,
/**
* POSIX named classes are
* supported only within a class. Since 2.16
*/
POSIX_NAMED_CLASS_OUTSIDE_CLASS = 113,
/**
* Missing terminating ")" or ")"
* without opening "(". Since 2.16
*/
UNMATCHED_PARENTHESIS = 114,
/**
* Reference to non-existent
* subpattern. Since 2.16
*/
INEXISTENT_SUBPATTERN_REFERENCE = 115,
/**
* Missing terminating ")" after comment.
* Since 2.16
*/
UNTERMINATED_COMMENT = 118,
/**
* Regular expression too large.
* Since 2.16
*/
EXPRESSION_TOO_LARGE = 120,
/**
* Failed to get memory. Since 2.16
*/
MEMORY_ERROR = 121,
/**
* Lookbehind assertion is not
* fixed length. Since 2.16
*/
VARIABLE_LENGTH_LOOKBEHIND = 125,
/**
* Malformed number or name after "(?(".
* Since 2.16
*/
MALFORMED_CONDITION = 126,
/**
* Conditional group contains
* more than two branches. Since 2.16
*/
TOO_MANY_CONDITIONAL_BRANCHES = 127,
/**
* Assertion expected after "(?(".
* Since 2.16
*/
ASSERTION_EXPECTED = 128,
/**
* Unknown POSIX class name.
* Since 2.16
*/
UNKNOWN_POSIX_CLASS_NAME = 130,
/**
* POSIX collating
* elements are not supported. Since 2.16
*/
POSIX_COLLATING_ELEMENTS_NOT_SUPPORTED = 131,
/**
* Character value in "\\x{...}" sequence
* is too large. Since 2.16
*/
HEX_CODE_TOO_LARGE = 134,
/**
* Invalid condition "(?(0)". Since 2.16
*/
INVALID_CONDITION = 135,
/**
* \\C not allowed in
* lookbehind assertion. Since 2.16
*/
SINGLE_BYTE_MATCH_IN_LOOKBEHIND = 136,
/**
* Recursive call could loop indefinitely.
* Since 2.16
*/
INFINITE_LOOP = 140,
/**
* Missing terminator
* in subpattern name. Since 2.16
*/
MISSING_SUBPATTERN_NAME_TERMINATOR = 142,
/**
* Two named subpatterns have
* the same name. Since 2.16
*/
DUPLICATE_SUBPATTERN_NAME = 143,
/**
* Malformed "\\P" or "\\p" sequence.
* Since 2.16
*/
MALFORMED_PROPERTY = 146,
/**
* Unknown property name after "\\P" or
* "\\p". Since 2.16
*/
UNKNOWN_PROPERTY = 147,
/**
* Subpattern name is too long
* (maximum 32 characters). Since 2.16
*/
SUBPATTERN_NAME_TOO_LONG = 148,
/**
* Too many named subpatterns (maximum
* 10,000). Since 2.16
*/
TOO_MANY_SUBPATTERNS = 149,
/**
* Octal value is greater than "\\377".
* Since 2.16
*/
INVALID_OCTAL_VALUE = 151,
/**
* "DEFINE" group contains more
* than one branch. Since 2.16
*/
TOO_MANY_BRANCHES_IN_DEFINE = 154,
/**
* Repeating a "DEFINE" group is not allowed.
* This error is never raised. Since: 2.16 Deprecated: 2.34
*/
DEFINE_REPETION = 155,
/**
* Inconsistent newline options.
* Since 2.16
*/
INCONSISTENT_NEWLINE_OPTIONS = 156,
/**
* "\\g" is not followed by a braced,
* angle-bracketed, or quoted name or number, or by a plain number. Since: 2.16
*/
MISSING_BACK_REFERENCE = 157,
/**
* relative reference must not be zero. Since: 2.34
*/
INVALID_RELATIVE_REFERENCE = 158,
/**
* the backtracing
* control verb used does not allow an argument. Since: 2.34
*/
BACKTRACKING_CONTROL_VERB_ARGUMENT_FORBIDDEN = 159,
/**
* unknown backtracing
* control verb. Since: 2.34
*/
UNKNOWN_BACKTRACKING_CONTROL_VERB = 160,
/**
* number is too big in escape sequence. Since: 2.34
*/
NUMBER_TOO_BIG = 161,
/**
* Missing subpattern name. Since: 2.34
*/
MISSING_SUBPATTERN_NAME = 162,
/**
* Missing digit. Since 2.34
*/
MISSING_DIGIT = 163,
/**
* In JavaScript compatibility mode,
* "[" is an invalid data character. Since: 2.34
*/
INVALID_DATA_CHARACTER = 164,
/**
* different names for subpatterns of the
* same number are not allowed. Since: 2.34
*/
EXTRA_SUBPATTERN_NAME = 165,
/**
* the backtracing control
* verb requires an argument. Since: 2.34
*/
BACKTRACKING_CONTROL_VERB_ARGUMENT_REQUIRED = 166,
/**
* "\\c" must be followed by an ASCII
* character. Since: 2.34
*/
INVALID_CONTROL_CHAR = 168,
/**
* "\\k" is not followed by a braced, angle-bracketed, or
* quoted name. Since: 2.34
*/
MISSING_NAME = 169,
/**
* "\\N" is not supported in a class. Since: 2.34
*/
NOT_SUPPORTED_IN_CLASS = 171,
/**
* too many forward references. Since: 2.34
*/
TOO_MANY_FORWARD_REFERENCES = 172,
/**
* the name is too long in "(*MARK)", "(*PRUNE)",
* "(*SKIP)", or "(*THEN)". Since: 2.34
*/
NAME_TOO_LONG = 175,
/**
* the character value in the \\u sequence is
* too large. Since: 2.34
*/
CHARACTER_VALUE_TOO_LARGE = 176,
}
alias GRegexError RegexError;
/**
* Flags specifying match-time options.
*
* Since: 2.14
*/
public enum GRegexMatchFlags
{
/**
* The pattern is forced to be "anchored", that is,
* it is constrained to match only at the first matching point in the
* string that is being searched. This effect can also be achieved by
* appropriate constructs in the pattern itself such as the "^"
* metacharacter.
*/
ANCHORED = 16,
/**
* Specifies that first character of the string is
* not the beginning of a line, so the circumflex metacharacter should
* not match before it. Setting this without #G_REGEX_MULTILINE (at
* compile time) causes circumflex never to match. This option affects
* only the behaviour of the circumflex metacharacter, it does not
* affect "\A".
*/
NOTBOL = 128,
/**
* Specifies that the end of the subject string is
* not the end of a line, so the dollar metacharacter should not match
* it nor (except in multiline mode) a newline immediately before it.
* Setting this without #G_REGEX_MULTILINE (at compile time) causes
* dollar never to match. This option affects only the behaviour of
* the dollar metacharacter, it does not affect "\Z" or "\z".
*/
NOTEOL = 256,
/**
* An empty string is not considered to be a valid
* match if this option is set. If there are alternatives in the pattern,
* they are tried. If all the alternatives match the empty string, the
* entire match fails. For example, if the pattern "a?b?" is applied to
* a string not beginning with "a" or "b", it matches the empty string
* at the start of the string. With this flag set, this match is not
* valid, so GRegex searches further into the string for occurrences
* of "a" or "b".
*/
NOTEMPTY = 1024,
/**
* Turns on the partial matching feature, for more
* documentation on partial matching see g_match_info_is_partial_match().
*/
PARTIAL = 32768,
/**
* Overrides the newline definition set when
* creating a new #GRegex, setting the '\r' character as line terminator.
*/
NEWLINE_CR = 1048576,
/**
* Overrides the newline definition set when
* creating a new #GRegex, setting the '\n' character as line terminator.
*/
NEWLINE_LF = 2097152,
/**
* Overrides the newline definition set when
* creating a new #GRegex, setting the '\r\n' characters sequence as line terminator.
*/
NEWLINE_CRLF = 3145728,
/**
* Overrides the newline definition set when
* creating a new #GRegex, any Unicode newline sequence
* is recognised as a newline. These are '\r', '\n' and '\rn', and the
* single characters U+000B LINE TABULATION, U+000C FORM FEED (FF),
* U+0085 NEXT LINE (NEL), U+2028 LINE SEPARATOR and
* U+2029 PARAGRAPH SEPARATOR.
*/
NEWLINE_ANY = 4194304,
/**
* Overrides the newline definition set when
* creating a new #GRegex; any '\r', '\n', or '\r\n' character sequence
* is recognized as a newline. Since: 2.34
*/
NEWLINE_ANYCRLF = 5242880,
/**
* Overrides the newline definition for "\R" set when
* creating a new #GRegex; only '\r', '\n', or '\r\n' character sequences
* are recognized as a newline by "\R". Since: 2.34
*/
BSR_ANYCRLF = 8388608,
/**
* Overrides the newline definition for "\R" set when
* creating a new #GRegex; any Unicode newline character or character sequence
* are recognized as a newline by "\R". These are '\r', '\n' and '\rn', and the
* single characters U+000B LINE TABULATION, U+000C FORM FEED (FF),
* U+0085 NEXT LINE (NEL), U+2028 LINE SEPARATOR and
* U+2029 PARAGRAPH SEPARATOR. Since: 2.34
*/
BSR_ANY = 16777216,
/**
* An alias for #G_REGEX_MATCH_PARTIAL. Since: 2.34
*/
PARTIAL_SOFT = 32768,
/**
* Turns on the partial matching feature. In contrast to
* to #G_REGEX_MATCH_PARTIAL_SOFT, this stops matching as soon as a partial match
* is found, without continuing to search for a possible complete match. See
* g_match_info_is_partial_match() for more information. Since: 2.34
*/
PARTIAL_HARD = 134217728,
/**
* Like #G_REGEX_MATCH_NOTEMPTY, but only applied to
* the start of the matched string. For anchored
* patterns this can only happen for pattern containing "\K". Since: 2.34
*/
NOTEMPTY_ATSTART = 268435456,
}
alias GRegexMatchFlags RegexMatchFlags;
/**
* An enumeration specifying the base position for a
* g_io_channel_seek_position() operation.
*/
public enum GSeekType
{
/**
* the current position in the file.
*/
CUR = 0,
/**
* the start of the file.
*/
SET = 1,
/**
* the end of the file.
*/
END = 2,
}
alias GSeekType SeekType;
/**
* Error codes returned by shell functions.
*/
public enum GShellError
{
/**
* Mismatched or otherwise mangled quoting.
*/
BAD_QUOTING = 0,
/**
* String to be parsed was empty.
*/
EMPTY_STRING = 1,
/**
* Some other error.
*/
FAILED = 2,
}
alias GShellError ShellError;
public enum GSliceConfig
{
ALWAYS_MALLOC = 1,
BYPASS_MAGAZINES = 2,
WORKING_SET_MSECS = 3,
COLOR_INCREMENT = 4,
CHUNK_SIZES = 5,
CONTENTION_COUNTER = 6,
}
alias GSliceConfig SliceConfig;
/**
* Error codes returned by spawning processes.
*/
public enum GSpawnError
{
/**
* Fork failed due to lack of memory.
*/
FORK = 0,
/**
* Read or select on pipes failed.
*/
READ = 1,
/**
* Changing to working directory failed.
*/
CHDIR = 2,
/**
* execv() returned `EACCES`
*/
ACCES = 3,
/**
* execv() returned `EPERM`
*/
PERM = 4,
/**
* execv() returned `E2BIG`
*/
TOO_BIG = 5,
/**
* execv() returned `ENOEXEC`
*/
NOEXEC = 6,
/**
* execv() returned `ENAMETOOLONG`
*/
NAMETOOLONG = 7,
/**
* execv() returned `ENOENT`
*/
NOENT = 8,
/**
* execv() returned `ENOMEM`
*/
NOMEM = 9,
/**
* execv() returned `ENOTDIR`
*/
NOTDIR = 10,
/**
* execv() returned `ELOOP`
*/
LOOP = 11,
/**
* execv() returned `ETXTBUSY`
*/
TXTBUSY = 12,
/**
* execv() returned `EIO`
*/
IO = 13,
/**
* execv() returned `ENFILE`
*/
NFILE = 14,
/**
* execv() returned `EMFILE`
*/
MFILE = 15,
/**
* execv() returned `EINVAL`
*/
INVAL = 16,
/**
* execv() returned `EISDIR`
*/
ISDIR = 17,
/**
* execv() returned `ELIBBAD`
*/
LIBBAD = 18,
/**
* Some other fatal failure,
* `error->message` should explain.
*/
FAILED = 19,
}
alias GSpawnError SpawnError;
/**
* Flags passed to g_spawn_sync(), g_spawn_async() and g_spawn_async_with_pipes().
*/
public enum GSpawnFlags
{
/**
* no flags, default behaviour
*/
DEFAULT = 0,
/**
* the parent's open file descriptors will
* be inherited by the child; otherwise all descriptors except stdin,
* stdout and stderr will be closed before calling exec() in the child.
*/
LEAVE_DESCRIPTORS_OPEN = 1,
/**
* the child will not be automatically reaped;
* you must use g_child_watch_add() yourself (or call waitpid() or handle
* `SIGCHLD` yourself), or the child will become a zombie.
*/
DO_NOT_REAP_CHILD = 2,
/**
* `argv[0]` need not be an absolute path, it will be
* looked for in the user's `PATH`.
*/
SEARCH_PATH = 4,
/**
* the child's standard output will be discarded,
* instead of going to the same location as the parent's standard output.
*/
STDOUT_TO_DEV_NULL = 8,
/**
* the child's standard error will be discarded.
*/
STDERR_TO_DEV_NULL = 16,
/**
* the child will inherit the parent's standard
* input (by default, the child's standard input is attached to `/dev/null`).
*/
CHILD_INHERITS_STDIN = 32,
/**
* the first element of `argv` is the file to
* execute, while the remaining elements are the actual argument vector
* to pass to the file. Normally g_spawn_async_with_pipes() uses `argv[0]`
* as the file to execute, and passes all of `argv` to the child.
*/
FILE_AND_ARGV_ZERO = 64,
/**
* if `argv[0]` is not an abolute path,
* it will be looked for in the `PATH` from the passed child environment.
* Since: 2.34
*/
SEARCH_PATH_FROM_ENVP = 128,
/**
* create all pipes with the `O_CLOEXEC` flag set.
* Since: 2.40
*/
CLOEXEC_PIPES = 256,
}
alias GSpawnFlags SpawnFlags;
/**
* The type of file to return the filename for, when used with
* g_test_build_filename().
*
* These two options correspond rather directly to the 'dist' and
* 'built' terminology that automake uses and are explicitly used to
* distinguish between the 'srcdir' and 'builddir' being separate. All
* files in your project should either be dist (in the
* `EXTRA_DIST` or `dist_schema_DATA`
* sense, in which case they will always be in the srcdir) or built (in
* the `BUILT_SOURCES` sense, in which case they will
* always be in the builddir).
*
* Note: as a general rule of automake, files that are generated only as
* part of the build-from-git process (but then are distributed with the
* tarball) always go in srcdir (even if doing a srcdir != builddir
* build from git) and are considered as distributed files.
*
* Since: 2.38
*/
public enum GTestFileType
{
/**
* a file that was included in the distribution tarball
*/
DIST = 0,
/**
* a file that was built on the compiling machine
*/
BUILT = 1,
}
alias GTestFileType TestFileType;
public enum GTestLogType
{
NONE = 0,
ERROR = 1,
START_BINARY = 2,
LIST_CASE = 3,
SKIP_CASE = 4,
START_CASE = 5,
STOP_CASE = 6,
MIN_RESULT = 7,
MAX_RESULT = 8,
MESSAGE = 9,
START_SUITE = 10,
STOP_SUITE = 11,
}
alias GTestLogType TestLogType;
public enum GTestResult
{
SUCCESS = 0,
SKIPPED = 1,
FAILURE = 2,
INCOMPLETE = 3,
}
alias GTestResult TestResult;
/**
* Flags to pass to g_test_trap_subprocess() to control input and output.
*
* Note that in contrast with g_test_trap_fork(), the default is to
* not show stdout and stderr.
*/
public enum GTestSubprocessFlags
{
/**
* If this flag is given, the child
* process will inherit the parent's stdin. Otherwise, the child's
* stdin is redirected to `/dev/null`.
*/
STDIN = 1,
/**
* If this flag is given, the child
* process will inherit the parent's stdout. Otherwise, the child's
* stdout will not be visible, but it will be captured to allow
* later tests with g_test_trap_assert_stdout().
*/
STDOUT = 2,
/**
* If this flag is given, the child
* process will inherit the parent's stderr. Otherwise, the child's
* stderr will not be visible, but it will be captured to allow
* later tests with g_test_trap_assert_stderr().
*/
STDERR = 4,
}
alias GTestSubprocessFlags TestSubprocessFlags;
/**
* Test traps are guards around forked tests.
* These flags determine what traps to set.
*
* Deprecated: #GTestTrapFlags is used only with g_test_trap_fork(),
* which is deprecated. g_test_trap_subprocess() uses
* #GTestSubprocessFlags.
*/
public enum GTestTrapFlags
{
/**
* Redirect stdout of the test child to
* `/dev/null` so it cannot be observed on the console during test
* runs. The actual output is still captured though to allow later
* tests with g_test_trap_assert_stdout().
*/
SILENCE_STDOUT = 128,
/**
* Redirect stderr of the test child to
* `/dev/null` so it cannot be observed on the console during test
* runs. The actual output is still captured though to allow later
* tests with g_test_trap_assert_stderr().
*/
SILENCE_STDERR = 256,
/**
* If this flag is given, stdin of the
* child process is shared with stdin of its parent process.
* It is redirected to `/dev/null` otherwise.
*/
INHERIT_STDIN = 512,
}
alias GTestTrapFlags TestTrapFlags;
/**
* Possible errors of thread related functions.
*/
public enum GThreadError
{
/**
* a thread couldn't be created due to resource
* shortage. Try again later.
*/
THREAD_ERROR_AGAIN = 0,
}
alias GThreadError ThreadError;
/**
* Disambiguates a given time in two ways.
*
* First, specifies if the given time is in universal or local time.
*
* Second, if the time is in local time, specifies if it is local
* standard time or local daylight time. This is important for the case
* where the same local time occurs twice (during daylight savings time
* transitions, for example).
*/
public enum GTimeType
{
/**
* the time is in local standard time
*/
STANDARD = 0,
/**
* the time is in local daylight time
*/
DAYLIGHT = 1,
/**
* the time is in UTC
*/
UNIVERSAL = 2,
}
alias GTimeType TimeType;
/**
* The possible types of token returned from each
* g_scanner_get_next_token() call.
*/
public enum GTokenType
{
/**
* the end of the file
*/
EOF = 0,
/**
* a '(' character
*/
LEFT_PAREN = 40,
/**
* a ')' character
*/
RIGHT_PAREN = 41,
/**
* a '{' character
*/
LEFT_CURLY = 123,
/**
* a '}' character
*/
RIGHT_CURLY = 125,
/**
* a '[' character
*/
LEFT_BRACE = 91,
/**
* a ']' character
*/
RIGHT_BRACE = 93,
/**
* a '=' character
*/
EQUAL_SIGN = 61,
/**
* a ',' character
*/
COMMA = 44,
/**
* not a token
*/
NONE = 256,
/**
* an error occurred
*/
ERROR = 257,
/**
* a character
*/
CHAR = 258,
/**
* a binary integer
*/
BINARY = 259,
/**
* an octal integer
*/
OCTAL = 260,
/**
* an integer
*/
INT = 261,
/**
* a hex integer
*/
HEX = 262,
/**
* a floating point number
*/
FLOAT = 263,
/**
* a string
*/
STRING = 264,
/**
* a symbol
*/
SYMBOL = 265,
/**
* an identifier
*/
IDENTIFIER = 266,
/**
* a null identifier
*/
IDENTIFIER_NULL = 267,
/**
* one line comment
*/
COMMENT_SINGLE = 268,
/**
* multi line comment
*/
COMMENT_MULTI = 269,
}
alias GTokenType TokenType;
/**
* Specifies which nodes are visited during several of the tree
* functions, including g_node_traverse() and g_node_find().
*/
public enum GTraverseFlags
{
/**
* only leaf nodes should be visited. This name has
* been introduced in 2.6, for older version use
* %G_TRAVERSE_LEAFS.
*/
LEAVES = 1,
/**
* only non-leaf nodes should be visited. This
* name has been introduced in 2.6, for older
* version use %G_TRAVERSE_NON_LEAFS.
*/
NON_LEAVES = 2,
/**
* all nodes should be visited.
*/
ALL = 3,
/**
* a mask of all traverse flags.
*/
MASK = 3,
/**
* identical to %G_TRAVERSE_LEAVES.
*/
LEAFS = 1,
/**
* identical to %G_TRAVERSE_NON_LEAVES.
*/
NON_LEAFS = 2,
}
alias GTraverseFlags TraverseFlags;
/**
* Specifies the type of traveral performed by g_tree_traverse(),
* g_node_traverse() and g_node_find(). The different orders are
* illustrated here:
* - In order: A, B, C, D, E, F, G, H, I
* 
* - Pre order: F, B, A, D, C, E, G, I, H
* 
* - Post order: A, C, E, D, B, H, I, G, F
* 
* - Level order: F, B, G, A, D, I, C, E, H
* 
*/
public enum GTraverseType
{
/**
* vists a node's left child first, then the node itself,
* then its right child. This is the one to use if you
* want the output sorted according to the compare
* function.
*/
IN_ORDER = 0,
/**
* visits a node, then its children.
*/
PRE_ORDER = 1,
/**
* visits the node's children, then the node itself.
*/
POST_ORDER = 2,
/**
* is not implemented for
* [balanced binary trees][glib-Balanced-Binary-Trees].
* For [n-ary trees][glib-N-ary-Trees], it
* vists the root node first, then its children, then
* its grandchildren, and so on. Note that this is less
* efficient than the other orders.
*/
LEVEL_ORDER = 3,
}
alias GTraverseType TraverseType;
/**
* These are the possible line break classifications.
*
* Since new unicode versions may add new types here, applications should be ready
* to handle unknown values. They may be regarded as %G_UNICODE_BREAK_UNKNOWN.
*
* See [Unicode Line Breaking Algorithm](http://www.unicode.org/unicode/reports/tr14/).
*/
public enum GUnicodeBreakType
{
/**
* Mandatory Break (BK)
*/
MANDATORY = 0,
/**
* Carriage Return (CR)
*/
CARRIAGE_RETURN = 1,
/**
* Line Feed (LF)
*/
LINE_FEED = 2,
/**
* Attached Characters and Combining Marks (CM)
*/
COMBINING_MARK = 3,
/**
* Surrogates (SG)
*/
SURROGATE = 4,
/**
* Zero Width Space (ZW)
*/
ZERO_WIDTH_SPACE = 5,
/**
* Inseparable (IN)
*/
INSEPARABLE = 6,
/**
* Non-breaking ("Glue") (GL)
*/
NON_BREAKING_GLUE = 7,
/**
* Contingent Break Opportunity (CB)
*/
CONTINGENT = 8,
/**
* Space (SP)
*/
SPACE = 9,
/**
* Break Opportunity After (BA)
*/
AFTER = 10,
/**
* Break Opportunity Before (BB)
*/
BEFORE = 11,
/**
* Break Opportunity Before and After (B2)
*/
BEFORE_AND_AFTER = 12,
/**
* Hyphen (HY)
*/
HYPHEN = 13,
/**
* Nonstarter (NS)
*/
NON_STARTER = 14,
/**
* Opening Punctuation (OP)
*/
OPEN_PUNCTUATION = 15,
/**
* Closing Punctuation (CL)
*/
CLOSE_PUNCTUATION = 16,
/**
* Ambiguous Quotation (QU)
*/
QUOTATION = 17,
/**
* Exclamation/Interrogation (EX)
*/
EXCLAMATION = 18,
/**
* Ideographic (ID)
*/
IDEOGRAPHIC = 19,
/**
* Numeric (NU)
*/
NUMERIC = 20,
/**
* Infix Separator (Numeric) (IS)
*/
INFIX_SEPARATOR = 21,
/**
* Symbols Allowing Break After (SY)
*/
SYMBOL = 22,
/**
* Ordinary Alphabetic and Symbol Characters (AL)
*/
ALPHABETIC = 23,
/**
* Prefix (Numeric) (PR)
*/
PREFIX = 24,
/**
* Postfix (Numeric) (PO)
*/
POSTFIX = 25,
/**
* Complex Content Dependent (South East Asian) (SA)
*/
COMPLEX_CONTEXT = 26,
/**
* Ambiguous (Alphabetic or Ideographic) (AI)
*/
AMBIGUOUS = 27,
/**
* Unknown (XX)
*/
UNKNOWN = 28,
/**
* Next Line (NL)
*/
NEXT_LINE = 29,
/**
* Word Joiner (WJ)
*/
WORD_JOINER = 30,
/**
* Hangul L Jamo (JL)
*/
HANGUL_L_JAMO = 31,
/**
* Hangul V Jamo (JV)
*/
HANGUL_V_JAMO = 32,
/**
* Hangul T Jamo (JT)
*/
HANGUL_T_JAMO = 33,
/**
* Hangul LV Syllable (H2)
*/
HANGUL_LV_SYLLABLE = 34,
/**
* Hangul LVT Syllable (H3)
*/
HANGUL_LVT_SYLLABLE = 35,
/**
* Closing Parenthesis (CP). Since 2.28
*/
CLOSE_PARANTHESIS = 36,
/**
* Conditional Japanese Starter (CJ). Since: 2.32
*/
CONDITIONAL_JAPANESE_STARTER = 37,
/**
* Hebrew Letter (HL). Since: 2.32
*/
HEBREW_LETTER = 38,
/**
* Regional Indicator (RI). Since: 2.36
*/
REGIONAL_INDICATOR = 39,
/**
* Emoji Base (EB). Since: 2.50
*/
EMOJI_BASE = 40,
/**
* Emoji Modifier (EM). Since: 2.50
*/
EMOJI_MODIFIER = 41,
/**
* Zero Width Joiner (ZWJ). Since: 2.50
*/
ZERO_WIDTH_JOINER = 42,
}
alias GUnicodeBreakType UnicodeBreakType;
/**
* The #GUnicodeScript enumeration identifies different writing
* systems. The values correspond to the names as defined in the
* Unicode standard. The enumeration has been added in GLib 2.14,
* and is interchangeable with #PangoScript.
*
* Note that new types may be added in the future. Applications
* should be ready to handle unknown values.
* See [Unicode Standard Annex #24: Script names](http://www.unicode.org/reports/tr24/).
*/
public enum GUnicodeScript
{
/**
* a value never returned from g_unichar_get_script()
*/
INVALID_CODE = -1,
/**
* a character used by multiple different scripts
*/
COMMON = 0,
/**
* a mark glyph that takes its script from the
* base glyph to which it is attached
*/
INHERITED = 1,
/**
* Arabic
*/
ARABIC = 2,
/**
* Armenian
*/
ARMENIAN = 3,
/**
* Bengali
*/
BENGALI = 4,
/**
* Bopomofo
*/
BOPOMOFO = 5,
/**
* Cherokee
*/
CHEROKEE = 6,
/**
* Coptic
*/
COPTIC = 7,
/**
* Cyrillic
*/
CYRILLIC = 8,
/**
* Deseret
*/
DESERET = 9,
/**
* Devanagari
*/
DEVANAGARI = 10,
/**
* Ethiopic
*/
ETHIOPIC = 11,
/**
* Georgian
*/
GEORGIAN = 12,
/**
* Gothic
*/
GOTHIC = 13,
/**
* Greek
*/
GREEK = 14,
/**
* Gujarati
*/
GUJARATI = 15,
/**
* Gurmukhi
*/
GURMUKHI = 16,
/**
* Han
*/
HAN = 17,
/**
* Hangul
*/
HANGUL = 18,
/**
* Hebrew
*/
HEBREW = 19,
/**
* Hiragana
*/
HIRAGANA = 20,
/**
* Kannada
*/
KANNADA = 21,
/**
* Katakana
*/
KATAKANA = 22,
/**
* Khmer
*/
KHMER = 23,
/**
* Lao
*/
LAO = 24,
/**
* Latin
*/
LATIN = 25,
/**
* Malayalam
*/
MALAYALAM = 26,
/**
* Mongolian
*/
MONGOLIAN = 27,
/**
* Myanmar
*/
MYANMAR = 28,
/**
* Ogham
*/
OGHAM = 29,
/**
* Old Italic
*/
OLD_ITALIC = 30,
/**
* Oriya
*/
ORIYA = 31,
/**
* Runic
*/
RUNIC = 32,
/**
* Sinhala
*/
SINHALA = 33,
/**
* Syriac
*/
SYRIAC = 34,
/**
* Tamil
*/
TAMIL = 35,
/**
* Telugu
*/
TELUGU = 36,
/**
* Thaana
*/
THAANA = 37,
/**
* Thai
*/
THAI = 38,
/**
* Tibetan
*/
TIBETAN = 39,
/**
* Canadian Aboriginal
*/
CANADIAN_ABORIGINAL = 40,
/**
* Yi
*/
YI = 41,
/**
* Tagalog
*/
TAGALOG = 42,
/**
* Hanunoo
*/
HANUNOO = 43,
/**
* Buhid
*/
BUHID = 44,
/**
* Tagbanwa
*/
TAGBANWA = 45,
/**
* Braille
*/
BRAILLE = 46,
/**
* Cypriot
*/
CYPRIOT = 47,
/**
* Limbu
*/
LIMBU = 48,
/**
* Osmanya
*/
OSMANYA = 49,
/**
* Shavian
*/
SHAVIAN = 50,
/**
* Linear B
*/
LINEAR_B = 51,
/**
* Tai Le
*/
TAI_LE = 52,
/**
* Ugaritic
*/
UGARITIC = 53,
/**
* New Tai Lue
*/
NEW_TAI_LUE = 54,
/**
* Buginese
*/
BUGINESE = 55,
/**
* Glagolitic
*/
GLAGOLITIC = 56,
/**
* Tifinagh
*/
TIFINAGH = 57,
/**
* Syloti Nagri
*/
SYLOTI_NAGRI = 58,
/**
* Old Persian
*/
OLD_PERSIAN = 59,
/**
* Kharoshthi
*/
KHAROSHTHI = 60,
/**
* an unassigned code point
*/
UNKNOWN = 61,
/**
* Balinese
*/
BALINESE = 62,
/**
* Cuneiform
*/
CUNEIFORM = 63,
/**
* Phoenician
*/
PHOENICIAN = 64,
/**
* Phags-pa
*/
PHAGS_PA = 65,
/**
* N'Ko
*/
NKO = 66,
/**
* Kayah Li. Since 2.16.3
*/
KAYAH_LI = 67,
/**
* Lepcha. Since 2.16.3
*/
LEPCHA = 68,
/**
* Rejang. Since 2.16.3
*/
REJANG = 69,
/**
* Sundanese. Since 2.16.3
*/
SUNDANESE = 70,
/**
* Saurashtra. Since 2.16.3
*/
SAURASHTRA = 71,
/**
* Cham. Since 2.16.3
*/
CHAM = 72,
/**
* Ol Chiki. Since 2.16.3
*/
OL_CHIKI = 73,
/**
* Vai. Since 2.16.3
*/
VAI = 74,
/**
* Carian. Since 2.16.3
*/
CARIAN = 75,
/**
* Lycian. Since 2.16.3
*/
LYCIAN = 76,
/**
* Lydian. Since 2.16.3
*/
LYDIAN = 77,
/**
* Avestan. Since 2.26
*/
AVESTAN = 78,
/**
* Bamum. Since 2.26
*/
BAMUM = 79,
/**
* Egyptian Hieroglpyhs. Since 2.26
*/
EGYPTIAN_HIEROGLYPHS = 80,
/**
* Imperial Aramaic. Since 2.26
*/
IMPERIAL_ARAMAIC = 81,
/**
* Inscriptional Pahlavi. Since 2.26
*/
INSCRIPTIONAL_PAHLAVI = 82,
/**
* Inscriptional Parthian. Since 2.26
*/
INSCRIPTIONAL_PARTHIAN = 83,
/**
* Javanese. Since 2.26
*/
JAVANESE = 84,
/**
* Kaithi. Since 2.26
*/
KAITHI = 85,
/**
* Lisu. Since 2.26
*/
LISU = 86,
/**
* Meetei Mayek. Since 2.26
*/
MEETEI_MAYEK = 87,
/**
* Old South Arabian. Since 2.26
*/
OLD_SOUTH_ARABIAN = 88,
/**
* Old Turkic. Since 2.28
*/
OLD_TURKIC = 89,
/**
* Samaritan. Since 2.26
*/
SAMARITAN = 90,
/**
* Tai Tham. Since 2.26
*/
TAI_THAM = 91,
/**
* Tai Viet. Since 2.26
*/
TAI_VIET = 92,
/**
* Batak. Since 2.28
*/
BATAK = 93,
/**
* Brahmi. Since 2.28
*/
BRAHMI = 94,
/**
* Mandaic. Since 2.28
*/
MANDAIC = 95,
/**
* Chakma. Since: 2.32
*/
CHAKMA = 96,
/**
* Meroitic Cursive. Since: 2.32
*/
MEROITIC_CURSIVE = 97,
/**
* Meroitic Hieroglyphs. Since: 2.32
*/
MEROITIC_HIEROGLYPHS = 98,
/**
* Miao. Since: 2.32
*/
MIAO = 99,
/**
* Sharada. Since: 2.32
*/
SHARADA = 100,
/**
* Sora Sompeng. Since: 2.32
*/
SORA_SOMPENG = 101,
/**
* Takri. Since: 2.32
*/
TAKRI = 102,
/**
* Bassa. Since: 2.42
*/
BASSA_VAH = 103,
/**
* Caucasian Albanian. Since: 2.42
*/
CAUCASIAN_ALBANIAN = 104,
/**
* Duployan. Since: 2.42
*/
DUPLOYAN = 105,
/**
* Elbasan. Since: 2.42
*/
ELBASAN = 106,
/**
* Grantha. Since: 2.42
*/
GRANTHA = 107,
/**
* Kjohki. Since: 2.42
*/
KHOJKI = 108,
/**
* Khudawadi, Sindhi. Since: 2.42
*/
KHUDAWADI = 109,
/**
* Linear A. Since: 2.42
*/
LINEAR_A = 110,
/**
* Mahajani. Since: 2.42
*/
MAHAJANI = 111,
/**
* Manichaean. Since: 2.42
*/
MANICHAEAN = 112,
/**
* Mende Kikakui. Since: 2.42
*/
MENDE_KIKAKUI = 113,
/**
* Modi. Since: 2.42
*/
MODI = 114,
/**
* Mro. Since: 2.42
*/
MRO = 115,
/**
* Nabataean. Since: 2.42
*/
NABATAEAN = 116,
/**
* Old North Arabian. Since: 2.42
*/
OLD_NORTH_ARABIAN = 117,
/**
* Old Permic. Since: 2.42
*/
OLD_PERMIC = 118,
/**
* Pahawh Hmong. Since: 2.42
*/
PAHAWH_HMONG = 119,
/**
* Palmyrene. Since: 2.42
*/
PALMYRENE = 120,
/**
* Pau Cin Hau. Since: 2.42
*/
PAU_CIN_HAU = 121,
/**
* Psalter Pahlavi. Since: 2.42
*/
PSALTER_PAHLAVI = 122,
/**
* Siddham. Since: 2.42
*/
SIDDHAM = 123,
/**
* Tirhuta. Since: 2.42
*/
TIRHUTA = 124,
/**
* Warang Citi. Since: 2.42
*/
WARANG_CITI = 125,
/**
* Ahom. Since: 2.48
*/
AHOM = 126,
/**
* Anatolian Hieroglyphs. Since: 2.48
*/
ANATOLIAN_HIEROGLYPHS = 127,
/**
* Hatran. Since: 2.48
*/
HATRAN = 128,
/**
* Multani. Since: 2.48
*/
MULTANI = 129,
/**
* Old Hungarian. Since: 2.48
*/
OLD_HUNGARIAN = 130,
/**
* Signwriting. Since: 2.48
*/
SIGNWRITING = 131,
/**
* Adlam. Since: 2.50
*/
ADLAM = 132,
/**
* Bhaiksuki. Since: 2.50
*/
BHAIKSUKI = 133,
/**
* Marchen. Since: 2.50
*/
MARCHEN = 134,
/**
* Newa. Since: 2.50
*/
NEWA = 135,
/**
* Osage. Since: 2.50
*/
OSAGE = 136,
/**
* Tangut. Since: 2.50
*/
TANGUT = 137,
/**
* Masaram Gondi. Since: 2.54
*/
MASARAM_GONDI = 138,
/**
* Nushu. Since: 2.54
*/
NUSHU = 139,
/**
* Soyombo. Since: 2.54
*/
SOYOMBO = 140,
/**
* Zanabazar Square. Since: 2.54
*/
ZANABAZAR_SQUARE = 141,
/**
* Dogra. Since: 2.58
*/
DOGRA = 142,
/**
* Gunjala Gondi. Since: 2.58
*/
GUNJALA_GONDI = 143,
/**
* Hanifi Rohingya. Since: 2.58
*/
HANIFI_ROHINGYA = 144,
/**
* Makasar. Since: 2.58
*/
MAKASAR = 145,
/**
* Medefaidrin. Since: 2.58
*/
MEDEFAIDRIN = 146,
/**
* Old Sogdian. Since: 2.58
*/
OLD_SOGDIAN = 147,
/**
* Sogdian. Since: 2.58
*/
SOGDIAN = 148,
/**
* Elym. Since: 2.62
*/
ELYMAIC = 149,
/**
* Nand. Since: 2.62
*/
NANDINAGARI = 150,
/**
* Rohg. Since: 2.62
*/
NYIAKENG_PUACHUE_HMONG = 151,
/**
* Wcho. Since: 2.62
*/
WANCHO = 152,
}
alias GUnicodeScript UnicodeScript;
/**
* These are the possible character classifications from the
* Unicode specification.
* See [Unicode Character Database](http://www.unicode.org/reports/tr44/#General_Category_Values).
*/
public enum GUnicodeType
{
/**
* General category "Other, Control" (Cc)
*/
CONTROL = 0,
/**
* General category "Other, Format" (Cf)
*/
FORMAT = 1,
/**
* General category "Other, Not Assigned" (Cn)
*/
UNASSIGNED = 2,
/**
* General category "Other, Private Use" (Co)
*/
PRIVATE_USE = 3,
/**
* General category "Other, Surrogate" (Cs)
*/
SURROGATE = 4,
/**
* General category "Letter, Lowercase" (Ll)
*/
LOWERCASE_LETTER = 5,
/**
* General category "Letter, Modifier" (Lm)
*/
MODIFIER_LETTER = 6,
/**
* General category "Letter, Other" (Lo)
*/
OTHER_LETTER = 7,
/**
* General category "Letter, Titlecase" (Lt)
*/
TITLECASE_LETTER = 8,
/**
* General category "Letter, Uppercase" (Lu)
*/
UPPERCASE_LETTER = 9,
/**
* General category "Mark, Spacing" (Mc)
*/
SPACING_MARK = 10,
/**
* General category "Mark, Enclosing" (Me)
*/
ENCLOSING_MARK = 11,
/**
* General category "Mark, Nonspacing" (Mn)
*/
NON_SPACING_MARK = 12,
/**
* General category "Number, Decimal Digit" (Nd)
*/
DECIMAL_NUMBER = 13,
/**
* General category "Number, Letter" (Nl)
*/
LETTER_NUMBER = 14,
/**
* General category "Number, Other" (No)
*/
OTHER_NUMBER = 15,
/**
* General category "Punctuation, Connector" (Pc)
*/
CONNECT_PUNCTUATION = 16,
/**
* General category "Punctuation, Dash" (Pd)
*/
DASH_PUNCTUATION = 17,
/**
* General category "Punctuation, Close" (Pe)
*/
CLOSE_PUNCTUATION = 18,
/**
* General category "Punctuation, Final quote" (Pf)
*/
FINAL_PUNCTUATION = 19,
/**
* General category "Punctuation, Initial quote" (Pi)
*/
INITIAL_PUNCTUATION = 20,
/**
* General category "Punctuation, Other" (Po)
*/
OTHER_PUNCTUATION = 21,
/**
* General category "Punctuation, Open" (Ps)
*/
OPEN_PUNCTUATION = 22,
/**
* General category "Symbol, Currency" (Sc)
*/
CURRENCY_SYMBOL = 23,
/**
* General category "Symbol, Modifier" (Sk)
*/
MODIFIER_SYMBOL = 24,
/**
* General category "Symbol, Math" (Sm)
*/
MATH_SYMBOL = 25,
/**
* General category "Symbol, Other" (So)
*/
OTHER_SYMBOL = 26,
/**
* General category "Separator, Line" (Zl)
*/
LINE_SEPARATOR = 27,
/**
* General category "Separator, Paragraph" (Zp)
*/
PARAGRAPH_SEPARATOR = 28,
/**
* General category "Separator, Space" (Zs)
*/
SPACE_SEPARATOR = 29,
}
alias GUnicodeType UnicodeType;
/**
* These are logical ids for special directories which are defined
* depending on the platform used. You should use g_get_user_special_dir()
* to retrieve the full path associated to the logical id.
*
* The #GUserDirectory enumeration can be extended at later date. Not
* every platform has a directory for every logical id in this
* enumeration.
*
* Since: 2.14
*/
public enum GUserDirectory
{
/**
* the user's Desktop directory
*/
DIRECTORY_DESKTOP = 0,
/**
* the user's Documents directory
*/
DIRECTORY_DOCUMENTS = 1,
/**
* the user's Downloads directory
*/
DIRECTORY_DOWNLOAD = 2,
/**
* the user's Music directory
*/
DIRECTORY_MUSIC = 3,
/**
* the user's Pictures directory
*/
DIRECTORY_PICTURES = 4,
/**
* the user's shared directory
*/
DIRECTORY_PUBLIC_SHARE = 5,
/**
* the user's Templates directory
*/
DIRECTORY_TEMPLATES = 6,
/**
* the user's Movies directory
*/
DIRECTORY_VIDEOS = 7,
/**
* the number of enum values
*/
N_DIRECTORIES = 8,
}
alias GUserDirectory UserDirectory;
/**
* The range of possible top-level types of #GVariant instances.
*
* Since: 2.24
*/
public enum GVariantClass
{
/**
* The #GVariant is a boolean.
*/
BOOLEAN = 98,
/**
* The #GVariant is a byte.
*/
BYTE = 121,
/**
* The #GVariant is a signed 16 bit integer.
*/
INT16 = 110,
/**
* The #GVariant is an unsigned 16 bit integer.
*/
UINT16 = 113,
/**
* The #GVariant is a signed 32 bit integer.
*/
INT32 = 105,
/**
* The #GVariant is an unsigned 32 bit integer.
*/
UINT32 = 117,
/**
* The #GVariant is a signed 64 bit integer.
*/
INT64 = 120,
/**
* The #GVariant is an unsigned 64 bit integer.
*/
UINT64 = 116,
/**
* The #GVariant is a file handle index.
*/
HANDLE = 104,
/**
* The #GVariant is a double precision floating
* point value.
*/
DOUBLE = 100,
/**
* The #GVariant is a normal string.
*/
STRING = 115,
/**
* The #GVariant is a D-Bus object path
* string.
*/
OBJECT_PATH = 111,
/**
* The #GVariant is a D-Bus signature string.
*/
SIGNATURE = 103,
/**
* The #GVariant is a variant.
*/
VARIANT = 118,
/**
* The #GVariant is a maybe-typed value.
*/
MAYBE = 109,
/**
* The #GVariant is an array.
*/
ARRAY = 97,
/**
* The #GVariant is a tuple.
*/
TUPLE = 40,
/**
* The #GVariant is a dictionary entry.
*/
DICT_ENTRY = 123,
}
alias GVariantClass VariantClass;
/**
* Error codes returned by parsing text-format GVariants.
*/
public enum GVariantParseError
{
/**
* generic error (unused)
*/
FAILED = 0,
/**
* a non-basic #GVariantType was given where a basic type was expected
*/
BASIC_TYPE_EXPECTED = 1,
/**
* cannot infer the #GVariantType
*/
CANNOT_INFER_TYPE = 2,
/**
* an indefinite #GVariantType was given where a definite type was expected
*/
DEFINITE_TYPE_EXPECTED = 3,
/**
* extra data after parsing finished
*/
INPUT_NOT_AT_END = 4,
/**
* invalid character in number or unicode escape
*/
INVALID_CHARACTER = 5,
/**
* not a valid #GVariant format string
*/
INVALID_FORMAT_STRING = 6,
/**
* not a valid object path
*/
INVALID_OBJECT_PATH = 7,
/**
* not a valid type signature
*/
INVALID_SIGNATURE = 8,
/**
* not a valid #GVariant type string
*/
INVALID_TYPE_STRING = 9,
/**
* could not find a common type for array entries
*/
NO_COMMON_TYPE = 10,
/**
* the numerical value is out of range of the given type
*/
NUMBER_OUT_OF_RANGE = 11,
/**
* the numerical value is out of range for any type
*/
NUMBER_TOO_BIG = 12,
/**
* cannot parse as variant of the specified type
*/
TYPE_ERROR = 13,
/**
* an unexpected token was encountered
*/
UNEXPECTED_TOKEN = 14,
/**
* an unknown keyword was encountered
*/
UNKNOWN_KEYWORD = 15,
/**
* unterminated string constant
*/
UNTERMINATED_STRING_CONSTANT = 16,
/**
* no value given
*/
VALUE_EXPECTED = 17,
/**
* variant was too deeply nested; #GVariant is only guaranteed to handle nesting up to 64 levels (Since: 2.64)
*/
RECURSION = 18,
}
alias GVariantParseError VariantParseError;
/**
* Flags passed to g_module_open().
* Note that these flags are not supported on all platforms.
*/
public enum GModuleFlags
{
/**
* specifies that symbols are only resolved when
* needed. The default action is to bind all symbols when the module
* is loaded.
*/
LAZY = 1,
/**
* specifies that symbols in the module should
* not be added to the global name space. The default action on most
* platforms is to place symbols in the module in the global name space,
* which may cause conflicts with existing symbols.
*/
LOCAL = 2,
/**
* mask for all flags.
*/
MASK = 3,
}
alias GModuleFlags ModuleFlags;
/**
* Contains the public fields of a GArray.
*/
struct GArray
{
/**
* a pointer to the element data. The data may be moved as
* elements are added to the #GArray.
*/
char* data;
/**
* the number of elements in the #GArray not including the
* possible terminating zero element.
*/
uint len;
}
struct GAsyncQueue;
struct GBookmarkFile;
/**
* Contains the public fields of a GByteArray.
*/
struct GByteArray
{
/**
* a pointer to the element data. The data may be moved as
* elements are added to the #GByteArray
*/
ubyte* data;
/**
* the number of elements in the #GByteArray
*/
uint len;
}
struct GBytes;
struct GChecksum;
struct GCond
{
void* p;
uint[2] i;
}
/**
* The #GData struct is an opaque data structure to represent a
* [Keyed Data List][glib-Keyed-Data-Lists]. It should only be
* accessed via the following functions.
*/
struct GData;
struct GDate
{
import std.bitmanip: bitfields;
mixin(bitfields!(
uint, "julianDays", 32,
uint, "julian", 1,
uint, "dmy", 1,
uint, "day", 6,
uint, "month", 4,
uint, "year", 16,
uint, "", 4
));
}
struct GDateTime;
/**
* Associates a string with a bit flag.
* Used in g_parse_debug_string().
*/
struct GDebugKey
{
/**
* the string
*/
const(char)* key;
/**
* the flag
*/
uint value;
}
struct GDir;
/**
* The #GFloatIEEE754 and #GDoubleIEEE754 unions are used to access the sign,
* mantissa and exponent of IEEE floats and doubles. These unions are defined
* as appropriate for a given platform. IEEE floats and doubles are supported
* (used for storage) by at least Intel, PPC and Sparc.
*/
struct GDoubleIEEE754
{
union
{
/**
* the double value
*/
double vDouble;
struct Mpn
{
import std.bitmanip: bitfields;
mixin(bitfields!(
uint, "mantissaLow", 32,
uint, "mantissaHigh", 20,
uint, "biasedExponent", 11,
uint, "sign", 1
));
}
Mpn mpn;
}
}
struct GError
{
/**
* error domain, e.g. #G_FILE_ERROR
*/
GQuark domain;
/**
* error code, e.g. %G_FILE_ERROR_NOENT
*/
int code;
/**
* human-readable informative error message
*/
char* message;
}
/**
* The #GFloatIEEE754 and #GDoubleIEEE754 unions are used to access the sign,
* mantissa and exponent of IEEE floats and doubles. These unions are defined
* as appropriate for a given platform. IEEE floats and doubles are supported
* (used for storage) by at least Intel, PPC and Sparc.
*/
struct GFloatIEEE754
{
union
{
/**
* the double value
*/
float vFloat;
struct Mpn
{
import std.bitmanip: bitfields;
mixin(bitfields!(
uint, "mantissa", 23,
uint, "biasedExponent", 8,
uint, "sign", 1
));
}
Mpn mpn;
}
}
/**
* The #GHashTable struct is an opaque data structure to represent a
* [Hash Table][glib-Hash-Tables]. It should only be accessed via the
* following functions.
*/
struct GHashTable;
struct GHashTableIter
{
void* dummy1;
void* dummy2;
void* dummy3;
int dummy4;
bool dummy5;
void* dummy6;
}
struct GHmac;
struct GHook
{
/**
* data which is passed to func when this hook is invoked
*/
void* data;
/**
* pointer to the next hook in the list
*/
GHook* next;
/**
* pointer to the previous hook in the list
*/
GHook* prev;
/**
* the reference count of this hook
*/
uint refCount;
/**
* the id of this hook, which is unique within its list
*/
gulong hookId;
/**
* flags which are set for this hook. See #GHookFlagMask for
* predefined flags
*/
uint flags;
/**
* the function to call when this hook is invoked. The possible
* signatures for this function are #GHookFunc and #GHookCheckFunc
*/
void* func;
/**
* the default @finalize_hook function of a #GHookList calls
* this member of the hook that is being finalized
*/
GDestroyNotify destroy;
}
struct GHookList
{
/**
* the next free #GHook id
*/
gulong seqId;
import std.bitmanip: bitfields;
mixin(bitfields!(
uint, "hookSize", 16,
uint, "isSetup", 1,
uint, "", 15
));
/**
* the first #GHook element in the list
*/
GHook* hooks;
/**
* unused
*/
void* dummy3;
/**
* the function to call to finalize a #GHook element.
* The default behaviour is to call the hooks @destroy function
*/
GHookFinalizeFunc finalizeHook;
/**
* unused
*/
void*[2] dummy;
}
struct GIOChannel
{
int refCount;
GIOFuncs* funcs;
char* encoding;
GIConv readCd;
GIConv writeCd;
char* lineTerm;
uint lineTermLen;
size_t bufSize;
GString* readBuf;
GString* encodedReadBuf;
GString* writeBuf;
char[6] partialWriteBuf;
import std.bitmanip: bitfields;
mixin(bitfields!(
uint, "useBuffer", 1,
uint, "doEncode", 1,
uint, "closeOnUnref", 1,
uint, "isReadable", 1,
uint, "isWriteable", 1,
uint, "isSeekable", 1,
uint, "", 26
));
void* reserved1;
void* reserved2;
}
/**
* A table of functions used to handle different types of #GIOChannel
* in a generic way.
*/
struct GIOFuncs
{
/** */
extern(C) GIOStatus function(GIOChannel* channel, char* buf, size_t count, size_t* bytesRead, GError** err) ioRead;
/** */
extern(C) GIOStatus function(GIOChannel* channel, const(char)* buf, size_t count, size_t* bytesWritten, GError** err) ioWrite;
/** */
extern(C) GIOStatus function(GIOChannel* channel, long offset, GSeekType type, GError** err) ioSeek;
/** */
extern(C) GIOStatus function(GIOChannel* channel, GError** err) ioClose;
/** */
extern(C) GSource* function(GIOChannel* channel, GIOCondition condition) ioCreateWatch;
/** */
extern(C) void function(GIOChannel* channel) ioFree;
/** */
extern(C) GIOStatus function(GIOChannel* channel, GIOFlags flags, GError** err) ioSetFlags;
/** */
extern(C) GIOFlags function(GIOChannel* channel) ioGetFlags;
}
struct GKeyFile;
/**
* The #GList struct is used for each element in a doubly-linked list.
*/
struct GList
{
/**
* holds the element's data, which can be a pointer to any kind
* of data, or any integer value using the
* [Type Conversion Macros][glib-Type-Conversion-Macros]
*/
void* data;
/**
* contains the link to the next element in the list
*/
GList* next;
/**
* contains the link to the previous element in the list
*/
GList* prev;
}
/**
* Structure representing a single field in a structured log entry. See
* g_log_structured() for details.
*
* Log fields may contain arbitrary values, including binary with embedded nul
* bytes. If the field contains a string, the string must be UTF-8 encoded and
* have a trailing nul byte. Otherwise, @length must be set to a non-negative
* value.
*
* Since: 2.50
*/
struct GLogField
{
/**
* field name (UTF-8 string)
*/
const(char)* key;
/**
* field value (arbitrary bytes)
*/
void* value;
/**
* length of @value, in bytes, or -1 if it is nul-terminated
*/
ptrdiff_t length;
}
struct GMainContext;
struct GMainLoop;
struct GMappedFile;
struct GMarkupParseContext;
/**
* Any of the fields in #GMarkupParser can be %NULL, in which case they
* will be ignored. Except for the @error function, any of these callbacks
* can set an error; in particular the %G_MARKUP_ERROR_UNKNOWN_ELEMENT,
* %G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE, and %G_MARKUP_ERROR_INVALID_CONTENT
* errors are intended to be set from these callbacks. If you set an error
* from a callback, g_markup_parse_context_parse() will report that error
* back to its caller.
*/
struct GMarkupParser
{
/** */
extern(C) void function(GMarkupParseContext* context, const(char)* elementName, char** attributeNames, char** attributeValues, void* userData, GError** err) startElement;
/** */
extern(C) void function(GMarkupParseContext* context, const(char)* elementName, void* userData, GError** err) endElement;
/** */
extern(C) void function(GMarkupParseContext* context, const(char)* text, size_t textLen, void* userData, GError** err) text;
/** */
extern(C) void function(GMarkupParseContext* context, const(char)* passthroughText, size_t textLen, void* userData, GError** err) passthrough;
/** */
extern(C) void function(GMarkupParseContext* context, GError* error, void* userData) error;
}
struct GMatchInfo;
/**
* A set of functions used to perform memory allocation. The same #GMemVTable must
* be used for all allocations in the same program; a call to g_mem_set_vtable(),
* if it exists, should be prior to any use of GLib.
*
* This functions related to this has been deprecated in 2.46, and no longer work.
*/
struct GMemVTable
{
/** */
extern(C) void* function(size_t nBytes) malloc;
/** */
extern(C) void* function(void* mem, size_t nBytes) realloc;
/** */
extern(C) void function(void* mem) free;
/** */
extern(C) void* function(size_t nBlocks, size_t nBlockBytes) calloc;
/** */
extern(C) void* function(size_t nBytes) tryMalloc;
/** */
extern(C) void* function(void* mem, size_t nBytes) tryRealloc;
}
struct GMutex
{
union
{
void* p;
uint[2] i;
}
}
struct GNode
{
/**
* contains the actual data of the node.
*/
void* data;
/**
* points to the node's next sibling (a sibling is another
* #GNode with the same parent).
*/
GNode* next;
/**
* points to the node's previous sibling.
*/
GNode* prev;
/**
* points to the parent of the #GNode, or is %NULL if the
* #GNode is the root of the tree.
*/
GNode* parent;
/**
* points to the first child of the #GNode. The other
* children are accessed by using the @next pointer of each
* child.
*/
GNode* children;
}
struct GOnce
{
/**
* the status of the #GOnce
*/
GOnceStatus status;
/**
* the value returned by the call to the function, if @status
* is %G_ONCE_STATUS_READY
*/
void* retval;
}
struct GOptionContext;
/**
* A GOptionEntry struct defines a single option. To have an effect, they
* must be added to a #GOptionGroup with g_option_context_add_main_entries()
* or g_option_group_add_entries().
*/
struct GOptionEntry
{
/**
* The long name of an option can be used to specify it
* in a commandline as `--long_name`. Every option must have a
* long name. To resolve conflicts if multiple option groups contain
* the same long name, it is also possible to specify the option as
* `--groupname-long_name`.
*/
const(char)* longName;
/**
* If an option has a short name, it can be specified
* `-short_name` in a commandline. @short_name must be a printable
* ASCII character different from '-', or zero if the option has no
* short name.
*/
char shortName;
/**
* Flags from #GOptionFlags
*/
int flags;
/**
* The type of the option, as a #GOptionArg
*/
GOptionArg arg;
/**
* If the @arg type is %G_OPTION_ARG_CALLBACK, then @arg_data
* must point to a #GOptionArgFunc callback function, which will be
* called to handle the extra argument. Otherwise, @arg_data is a
* pointer to a location to store the value, the required type of
* the location depends on the @arg type:
* - %G_OPTION_ARG_NONE: %gboolean
* - %G_OPTION_ARG_STRING: %gchar*
* - %G_OPTION_ARG_INT: %gint
* - %G_OPTION_ARG_FILENAME: %gchar*
* - %G_OPTION_ARG_STRING_ARRAY: %gchar**
* - %G_OPTION_ARG_FILENAME_ARRAY: %gchar**
* - %G_OPTION_ARG_DOUBLE: %gdouble
* If @arg type is %G_OPTION_ARG_STRING or %G_OPTION_ARG_FILENAME,
* the location will contain a newly allocated string if the option
* was given. That string needs to be freed by the callee using g_free().
* Likewise if @arg type is %G_OPTION_ARG_STRING_ARRAY or
* %G_OPTION_ARG_FILENAME_ARRAY, the data should be freed using g_strfreev().
*/
void* argData;
/**
* the description for the option in `--help`
* output. The @description is translated using the @translate_func
* of the group, see g_option_group_set_translation_domain().
*/
const(char)* description;
/**
* The placeholder to use for the extra argument parsed
* by the option in `--help` output. The @arg_description is translated
* using the @translate_func of the group, see
* g_option_group_set_translation_domain().
*/
const(char)* argDescription;
}
struct GOptionGroup;
struct GPatternSpec;
/**
* Represents a file descriptor, which events to poll for, and which events
* occurred.
*/
struct GPollFD
{
/**
* the file descriptor to poll (or a HANDLE on Win32)
*/
int fd;
/**
* a bitwise combination from #GIOCondition, specifying which
* events should be polled for. Typically for reading from a file
* descriptor you would use %G_IO_IN | %G_IO_HUP | %G_IO_ERR, and
* for writing you would use %G_IO_OUT | %G_IO_ERR.
*/
ushort events;
/**
* a bitwise combination of flags from #GIOCondition, returned
* from the poll() function to indicate which events occurred.
*/
ushort revents;
}
struct GPrivate
{
void* p;
GDestroyNotify notify;
void*[2] future;
}
/**
* Contains the public fields of a pointer array.
*/
struct GPtrArray
{
/**
* points to the array of pointers, which may be moved when the
* array grows
*/
void** pdata;
/**
* number of pointers in the array
*/
uint len;
}
struct GQueue
{
/**
* a pointer to the first element of the queue
*/
GList* head;
/**
* a pointer to the last element of the queue
*/
GList* tail;
/**
* the number of elements in the queue
*/
uint length;
}
struct GRWLock
{
void* p;
uint[2] i;
}
struct GRand;
struct GRecMutex
{
void* p;
uint[2] i;
}
struct GRegex;
/**
* The #GSList struct is used for each element in the singly-linked
* list.
*/
struct GSList
{
/**
* holds the element's data, which can be a pointer to any kind
* of data, or any integer value using the
* [Type Conversion Macros][glib-Type-Conversion-Macros]
*/
void* data;
/**
* contains the link to the next element in the list.
*/
GSList* next;
}
struct GScanner
{
/**
* unused
*/
void* userData;
/**
* unused
*/
uint maxParseErrors;
/**
* g_scanner_error() increments this field
*/
uint parseErrors;
/**
* name of input stream, featured by the default message handler
*/
const(char)* inputName;
/**
* quarked data
*/
GData* qdata;
/**
* link into the scanner configuration
*/
GScannerConfig* config;
/**
* token parsed by the last g_scanner_get_next_token()
*/
GTokenType token;
/**
* value of the last token from g_scanner_get_next_token()
*/
GTokenValue value;
/**
* line number of the last token from g_scanner_get_next_token()
*/
uint line;
/**
* char number of the last token from g_scanner_get_next_token()
*/
uint position;
/**
* token parsed by the last g_scanner_peek_next_token()
*/
GTokenType nextToken;
/**
* value of the last token from g_scanner_peek_next_token()
*/
GTokenValue nextValue;
/**
* line number of the last token from g_scanner_peek_next_token()
*/
uint nextLine;
/**
* char number of the last token from g_scanner_peek_next_token()
*/
uint nextPosition;
GHashTable* symbolTable;
int inputFd;
const(char)* text;
const(char)* textEnd;
char* buffer;
uint scopeId;
/**
* handler function for _warn and _error
*/
GScannerMsgFunc msgHandler;
}
/**
* Specifies the #GScanner parser configuration. Most settings can
* be changed during the parsing phase and will affect the lexical
* parsing of the next unpeeked token.
*/
struct GScannerConfig
{
/**
* specifies which characters should be skipped
* by the scanner (the default is the whitespace characters: space,
* tab, carriage-return and line-feed).
*/
char* csetSkipCharacters;
/**
* specifies the characters which can start
* identifiers (the default is #G_CSET_a_2_z, "_", and #G_CSET_A_2_Z).
*/
char* csetIdentifierFirst;
/**
* specifies the characters which can be used
* in identifiers, after the first character (the default is
* #G_CSET_a_2_z, "_0123456789", #G_CSET_A_2_Z, #G_CSET_LATINS,
* #G_CSET_LATINC).
*/
char* csetIdentifierNth;
/**
* specifies the characters at the start and
* end of single-line comments. The default is "#\n" which means
* that single-line comments start with a '#' and continue until
* a '\n' (end of line).
*/
char* cpairCommentSingle;
import std.bitmanip: bitfields;
mixin(bitfields!(
uint, "caseSensitive", 1,
uint, "skipCommentMulti", 1,
uint, "skipCommentSingle", 1,
uint, "scanCommentMulti", 1,
uint, "scanIdentifier", 1,
uint, "scanIdentifier1char", 1,
uint, "scanIdentifierNULL", 1,
uint, "scanSymbols", 1,
uint, "scanBinary", 1,
uint, "scanOctal", 1,
uint, "scanFloat", 1,
uint, "scanHex", 1,
uint, "scanHexDollar", 1,
uint, "scanStringSq", 1,
uint, "scanStringDq", 1,
uint, "numbers2Int", 1,
uint, "int2Float", 1,
uint, "identifier2String", 1,
uint, "char2Token", 1,
uint, "symbol2Token", 1,
uint, "scope0Fallback", 1,
uint, "storeInt64", 1,
uint, "", 10
));
uint paddingDummy;
}
struct GSequence;
struct GSequenceIter;
struct GSource
{
void* callbackData;
GSourceCallbackFuncs* callbackFuncs;
GSourceFuncs* sourceFuncs;
uint refCount;
GMainContext* context;
int priority;
uint flags;
uint sourceId;
GSList* pollFds;
GSource* prev;
GSource* next;
char* name;
GSourcePrivate* priv;
}
/**
* The `GSourceCallbackFuncs` struct contains
* functions for managing callback objects.
*/
struct GSourceCallbackFuncs
{
/** */
extern(C) void function(void* cbData) ref_;
/** */
extern(C) void function(void* cbData) unref;
/** */
extern(C) void function(void* cbData, GSource* source, GSourceFunc* func, void** data) get;
}
/**
* The `GSourceFuncs` struct contains a table of
* functions used to handle event sources in a generic manner.
*
* For idle sources, the prepare and check functions always return %TRUE
* to indicate that the source is always ready to be processed. The prepare
* function also returns a timeout value of 0 to ensure that the poll() call
* doesn't block (since that would be time wasted which could have been spent
* running the idle function).
*
* For timeout sources, the prepare and check functions both return %TRUE
* if the timeout interval has expired. The prepare function also returns
* a timeout value to ensure that the poll() call doesn't block too long
* and miss the next timeout.
*
* For file descriptor sources, the prepare function typically returns %FALSE,
* since it must wait until poll() has been called before it knows whether
* any events need to be processed. It sets the returned timeout to -1 to
* indicate that it doesn't mind how long the poll() call blocks. In the
* check function, it tests the results of the poll() call to see if the
* required condition has been met, and returns %TRUE if so.
*/
struct GSourceFuncs
{
/** */
extern(C) int function(GSource* source, int* timeout) prepare;
/** */
extern(C) int function(GSource* source) check;
/** */
extern(C) int function(GSource* source, GSourceFunc callback, void* userData) dispatch;
/** */
extern(C) void function(GSource* source) finalize;
GSourceFunc closureCallback;
GSourceDummyMarshal closureMarshal;
}
struct GSourcePrivate;
/**
* A type corresponding to the appropriate struct type for the stat()
* system call, depending on the platform and/or compiler being used.
*
* See g_stat() for more information.
*/
struct GStatBuf;
struct GString
{
/**
* points to the character data. It may move as text is added.
* The @str field is null-terminated and so
* can be used as an ordinary C string.
*/
char* str;
/**
* contains the length of the string, not including the
* terminating nul byte.
*/
size_t len;
/**
* the number of bytes that can be stored in the
* string before it needs to be reallocated. May be larger than @len.
*/
size_t allocatedLen;
}
struct GStringChunk;
/**
* An opaque structure representing a test case.
*/
struct GTestCase;
struct GTestConfig
{
bool testInitialized;
bool testQuick;
bool testPerf;
bool testVerbose;
bool testQuiet;
bool testUndefined;
}
struct GTestLogBuffer
{
GString* data;
GSList* msgs;
}
struct GTestLogMsg
{
GTestLogType logType;
uint nStrings;
char** strings;
uint nNums;
real nums;
}
struct GTestSuite;
struct GThread;
struct GThreadPool
{
/**
* the function to execute in the threads of this pool
*/
GFunc func;
/**
* the user data for the threads of this pool
*/
void* userData;
/**
* are all threads exclusive to this pool
*/
bool exclusive;
}
struct GTimeVal
{
/**
* seconds
*/
glong tvSec;
/**
* microseconds
*/
glong tvUsec;
}
struct GTimeZone;
struct GTimer;
/**
* A union holding the value of the token.
*/
struct GTokenValue
{
union
{
/**
* token symbol value
*/
void* vSymbol;
/**
* token identifier value
*/
char* vIdentifier;
/**
* token binary integer value
*/
gulong vBinary;
/**
* octal integer value
*/
gulong vOctal;
/**
* integer value
*/
gulong vInt;
/**
* 64-bit integer value
*/
ulong vInt64;
/**
* floating point value
*/
double vFloat;
/**
* hex integer value
*/
gulong vHex;
/**
* string value
*/
char* vString;
/**
* comment value
*/
char* vComment;
/**
* character value
*/
char vChar;
/**
* error value
*/
uint vError;
}
}
/**
* Each piece of memory that is pushed onto the stack
* is cast to a GTrashStack*.
*
* Deprecated: #GTrashStack is deprecated without replacement
*/
struct GTrashStack
{
/**
* pointer to the previous element of the stack,
* gets stored in the first `sizeof (gpointer)`
* bytes of the element
*/
GTrashStack* next;
}
struct GTree;
struct GVariant;
struct GVariantBuilder
{
union U
{
struct S
{
size_t partialMagic;
GVariantType* type;
size_t[14] y;
}
S s;
size_t[16] x;
}
U u;
}
struct GVariantDict
{
union U
{
struct S
{
GVariant* asv;
size_t partialMagic;
size_t[14] y;
}
S s;
size_t[16] x;
}
U u;
}
struct GVariantIter
{
size_t[16] x;
}
struct GVariantType;
struct GModule;
/**
* Prototype of a #GChildWatchSource callback, called when a child
* process has exited. To interpret @status, see the documentation
* for g_spawn_check_exit_status().
*
* Params:
* pid = the process id of the child process
* status = Status information about the child process, encoded
* in a platform-specific manner
* userData = user data passed to g_child_watch_add()
*/
public alias extern(C) void function(GPid pid, int status, void* userData) GChildWatchFunc;
/**
* Specifies the type of function passed to g_clear_handle_id().
* The implementation is expected to free the resource identified
* by @handle_id; for instance, if @handle_id is a #GSource ID,
* g_source_remove() can be used.
*
* Params:
* handleId = the handle ID to clear
*
* Since: 2.56
*/
public alias extern(C) void function(uint handleId) GClearHandleFunc;
/**
* Specifies the type of a comparison function used to compare two
* values. The function should return a negative integer if the first
* value comes before the second, 0 if they are equal, or a positive
* integer if the first value comes after the second.
*
* Params:
* a = a value
* b = a value to compare with
* userData = user data
*
* Returns: negative value if @a < @b; zero if @a = @b; positive
* value if @a > @b
*/
public alias extern(C) int function(void* a, void* b, void* userData) GCompareDataFunc;
/**
* Specifies the type of a comparison function used to compare two
* values. The function should return a negative integer if the first
* value comes before the second, 0 if they are equal, or a positive
* integer if the first value comes after the second.
*
* Params:
* a = a value
* b = a value to compare with
*
* Returns: negative value if @a < @b; zero if @a = @b; positive
* value if @a > @b
*/
public alias extern(C) int function(void* a, void* b) GCompareFunc;
/**
* A function of this signature is used to copy the node data
* when doing a deep-copy of a tree.
*
* Params:
* src = A pointer to the data which should be copied
* data = Additional data
*
* Returns: A pointer to the copy
*
* Since: 2.4
*/
public alias extern(C) void* function(void* src, void* data) GCopyFunc;
/**
* Specifies the type of function passed to g_dataset_foreach(). It is
* called with each #GQuark id and associated data element, together
* with the @user_data parameter supplied to g_dataset_foreach().
*
* Params:
* keyId = the #GQuark id to identifying the data element.
* data = the data element.
* userData = user data passed to g_dataset_foreach().
*/
public alias extern(C) void function(GQuark keyId, void* data, void* userData) GDataForeachFunc;
/**
* Specifies the type of function which is called when a data element
* is destroyed. It is passed the pointer to the data element and
* should free any memory and resources allocated for it.
*
* Params:
* data = the data element.
*/
public alias extern(C) void function(void* data) GDestroyNotify;
/**
* The type of functions that are used to 'duplicate' an object.
* What this means depends on the context, it could just be
* incrementing the reference count, if @data is a ref-counted
* object.
*
* Params:
* data = the data to duplicate
* userData = user data that was specified in
* g_datalist_id_dup_data()
*
* Returns: a duplicate of data
*/
public alias extern(C) void* function(void* data, void* userData) GDuplicateFunc;
/**
* Specifies the type of a function used to test two values for
* equality. The function should return %TRUE if both values are equal
* and %FALSE otherwise.
*
* Params:
* a = a value
* b = a value to compare with
*
* Returns: %TRUE if @a = @b; %FALSE otherwise
*/
public alias extern(C) int function(void* a, void* b) GEqualFunc;
/**
* Declares a type of function which takes an arbitrary
* data pointer argument and has no return value. It is
* not currently used in GLib or GTK+.
*
* Params:
* data = a data pointer
*/
public alias extern(C) void function(void* data) GFreeFunc;
/**
* Specifies the type of functions passed to g_list_foreach() and
* g_slist_foreach().
*
* Params:
* data = the element's data
* userData = user data passed to g_list_foreach() or g_slist_foreach()
*/
public alias extern(C) void function(void* data, void* userData) GFunc;
/**
* Specifies the type of the function passed to g_hash_table_foreach().
* It is called with each key/value pair, together with the @user_data
* parameter which is passed to g_hash_table_foreach().
*
* Params:
* key = a key
* value = the value corresponding to the key
* userData = user data passed to g_hash_table_foreach()
*/
public alias extern(C) void function(void* key, void* value, void* userData) GHFunc;
/**
* Specifies the type of the function passed to
* g_hash_table_foreach_remove(). It is called with each key/value
* pair, together with the @user_data parameter passed to
* g_hash_table_foreach_remove(). It should return %TRUE if the
* key/value pair should be removed from the #GHashTable.
*
* Params:
* key = a key
* value = the value associated with the key
* userData = user data passed to g_hash_table_remove()
*
* Returns: %TRUE if the key/value pair should be removed from the
* #GHashTable
*/
public alias extern(C) int function(void* key, void* value, void* userData) GHRFunc;
/**
* Specifies the type of the hash function which is passed to
* g_hash_table_new() when a #GHashTable is created.
*
* The function is passed a key and should return a #guint hash value.
* The functions g_direct_hash(), g_int_hash() and g_str_hash() provide
* hash functions which can be used when the key is a #gpointer, #gint*,
* and #gchar* respectively.
*
* g_direct_hash() is also the appropriate hash function for keys
* of the form `GINT_TO_POINTER (n)` (or similar macros).
*
* A good hash functions should produce
* hash values that are evenly distributed over a fairly large range.
* The modulus is taken with the hash table size (a prime number) to
* find the 'bucket' to place each key into. The function should also
* be very fast, since it is called for each key lookup.
*
* Note that the hash functions provided by GLib have these qualities,
* but are not particularly robust against manufactured keys that
* cause hash collisions. Therefore, you should consider choosing
* a more secure hash function when using a GHashTable with keys
* that originate in untrusted data (such as HTTP requests).
* Using g_str_hash() in that situation might make your application
* vulerable to
* [Algorithmic Complexity Attacks](https://lwn.net/Articles/474912/).
*
* The key to choosing a good hash is unpredictability. Even
* cryptographic hashes are very easy to find collisions for when the
* remainder is taken modulo a somewhat predictable prime number. There
* must be an element of randomness that an attacker is unable to guess.
*
* Params:
* key = a key
*
* Returns: the hash value corresponding to the key
*/
public alias extern(C) uint function(void* key) GHashFunc;
/**
* Defines the type of a hook function that can be invoked
* by g_hook_list_invoke_check().
*
* Params:
* data = the data field of the #GHook is passed to the hook function here
*
* Returns: %FALSE if the #GHook should be destroyed
*/
public alias extern(C) int function(void* data) GHookCheckFunc;
/**
* Defines the type of function used by g_hook_list_marshal_check().
*
* Params:
* hook = a #GHook
* marshalData = user data
*
* Returns: %FALSE if @hook should be destroyed
*/
public alias extern(C) int function(GHook* hook, void* marshalData) GHookCheckMarshaller;
/**
* Defines the type of function used to compare #GHook elements in
* g_hook_insert_sorted().
*
* Params:
* newHook = the #GHook being inserted
* sibling = the #GHook to compare with @new_hook
*
* Returns: a value <= 0 if @new_hook should be before @sibling
*/
public alias extern(C) int function(GHook* newHook, GHook* sibling) GHookCompareFunc;
/**
* Defines the type of function to be called when a hook in a
* list of hooks gets finalized.
*
* Params:
* hookList = a #GHookList
* hook = the hook in @hook_list that gets finalized
*/
public alias extern(C) void function(GHookList* hookList, GHook* hook) GHookFinalizeFunc;
/**
* Defines the type of the function passed to g_hook_find().
*
* Params:
* hook = a #GHook
* data = user data passed to g_hook_find_func()
*
* Returns: %TRUE if the required #GHook has been found
*/
public alias extern(C) int function(GHook* hook, void* data) GHookFindFunc;
/**
* Defines the type of a hook function that can be invoked
* by g_hook_list_invoke().
*
* Params:
* data = the data field of the #GHook is passed to the hook function here
*/
public alias extern(C) void function(void* data) GHookFunc;
/**
* Defines the type of function used by g_hook_list_marshal().
*
* Params:
* hook = a #GHook
* marshalData = user data
*/
public alias extern(C) void function(GHook* hook, void* marshalData) GHookMarshaller;
/**
* Specifies the type of function passed to g_io_add_watch() or
* g_io_add_watch_full(), which is called when the requested condition
* on a #GIOChannel is satisfied.
*
* Params:
* source = the #GIOChannel event source
* condition = the condition which has been satisfied
* data = user data set in g_io_add_watch() or g_io_add_watch_full()
*
* Returns: the function should return %FALSE if the event source
* should be removed
*/
public alias extern(C) int function(GIOChannel* source, GIOCondition condition, void* data) GIOFunc;
/**
* Specifies the prototype of log handler functions.
*
* The default log handler, g_log_default_handler(), automatically appends a
* new-line character to @message when printing it. It is advised that any
* custom log handler functions behave similarly, so that logging calls in user
* code do not need modifying to add a new-line character to the message if the
* log handler is changed.
*
* This is not used if structured logging is enabled; see
* [Using Structured Logging][using-structured-logging].
*
* Params:
* logDomain = the log domain of the message
* logLevel = the log level of the message (including the
* fatal and recursion flags)
* message = the message to process
* userData = user data, set in g_log_set_handler()
*/
public alias extern(C) void function(const(char)* logDomain, GLogLevelFlags logLevel, const(char)* message, void* userData) GLogFunc;
/**
* Writer function for log entries. A log entry is a collection of one or more
* #GLogFields, using the standard [field names from journal
* specification](https://www.freedesktop.org/software/systemd/man/systemd.journal-fields.html).
* See g_log_structured() for more information.
*
* Writer functions must ignore fields which they do not recognise, unless they
* can write arbitrary binary output, as field values may be arbitrary binary.
*
* @log_level is guaranteed to be included in @fields as the `PRIORITY` field,
* but is provided separately for convenience of deciding whether or where to
* output the log entry.
*
* Writer functions should return %G_LOG_WRITER_HANDLED if they handled the log
* message successfully or if they deliberately ignored it. If there was an
* error handling the message (for example, if the writer function is meant to
* send messages to a remote logging server and there is a network error), it
* should return %G_LOG_WRITER_UNHANDLED. This allows writer functions to be
* chained and fall back to simpler handlers in case of failure.
*
* Params:
* logLevel = log level of the message
* fields = fields forming the message
* nFields = number of @fields
* userData = user data passed to g_log_set_writer_func()
*
* Returns: %G_LOG_WRITER_HANDLED if the log entry was handled successfully;
* %G_LOG_WRITER_UNHANDLED otherwise
*
* Since: 2.50
*/
public alias extern(C) GLogWriterOutput function(GLogLevelFlags logLevel, GLogField* fields, size_t nFields, void* userData) GLogWriterFunc;
/**
* Specifies the type of function passed to g_node_children_foreach().
* The function is called with each child node, together with the user
* data passed to g_node_children_foreach().
*
* Params:
* node = a #GNode.
* data = user data passed to g_node_children_foreach().
*/
public alias extern(C) void function(GNode* node, void* data) GNodeForeachFunc;
/**
* Specifies the type of function passed to g_node_traverse(). The
* function is called with each of the nodes visited, together with the
* user data passed to g_node_traverse(). If the function returns
* %TRUE, then the traversal is stopped.
*
* Params:
* node = a #GNode.
* data = user data passed to g_node_traverse().
*
* Returns: %TRUE to stop the traversal.
*/
public alias extern(C) int function(GNode* node, void* data) GNodeTraverseFunc;
/**
* The type of function to be passed as callback for %G_OPTION_ARG_CALLBACK
* options.
*
* Params:
* optionName = The name of the option being parsed. This will be either a
* single dash followed by a single letter (for a short name) or two dashes
* followed by a long option name.
* value = The value to be parsed.
* data = User data added to the #GOptionGroup containing the option when it
* was created with g_option_group_new()
*
* Returns: %TRUE if the option was successfully parsed, %FALSE if an error
* occurred, in which case @error should be set with g_set_error()
*
* Throws: GException on failure.
*/
public alias extern(C) int function(const(char)* optionName, const(char)* value, void* data, GError** err) GOptionArgFunc;
/**
* The type of function to be used as callback when a parse error occurs.
*
* Params:
* context = The active #GOptionContext
* group = The group to which the function belongs
* data = User data added to the #GOptionGroup containing the option when it
* was created with g_option_group_new()
*
* Throws: GException on failure.
*/
public alias extern(C) void function(GOptionContext* context, GOptionGroup* group, void* data, GError** err) GOptionErrorFunc;
/**
* The type of function that can be called before and after parsing.
*
* Params:
* context = The active #GOptionContext
* group = The group to which the function belongs
* data = User data added to the #GOptionGroup containing the option when it
* was created with g_option_group_new()
*
* Returns: %TRUE if the function completed successfully, %FALSE if an error
* occurred, in which case @error should be set with g_set_error()
*
* Throws: GException on failure.
*/
public alias extern(C) int function(GOptionContext* context, GOptionGroup* group, void* data, GError** err) GOptionParseFunc;
/**
* Specifies the type of function passed to g_main_context_set_poll_func().
* The semantics of the function should match those of the poll() system call.
*
* Params:
* ufds = an array of #GPollFD elements
* nfsd = the number of elements in @ufds
* timeout = the maximum time to wait for an event of the file descriptors.
* A negative value indicates an infinite timeout.
*
* Returns: the number of #GPollFD elements which have events or errors
* reported, or -1 if an error occurred.
*/
public alias extern(C) int function(GPollFD* ufds, uint nfsd, int timeout) GPollFunc;
/**
* Specifies the type of the print handler functions.
* These are called with the complete formatted string to output.
*
* Params:
* string_ = the message to output
*/
public alias extern(C) void function(const(char)* string_) GPrintFunc;
/**
* Specifies the type of the function passed to g_regex_replace_eval().
* It is called for each occurrence of the pattern in the string passed
* to g_regex_replace_eval(), and it should append the replacement to
* @result.
*
* Params:
* matchInfo = the #GMatchInfo generated by the match.
* Use g_match_info_get_regex() and g_match_info_get_string() if you
* need the #GRegex or the matched string.
* result = a #GString containing the new string
* userData = user data passed to g_regex_replace_eval()
*
* Returns: %FALSE to continue the replacement process, %TRUE to stop it
*
* Since: 2.14
*/
public alias extern(C) int function(GMatchInfo* matchInfo, GString* result, void* userData) GRegexEvalCallback;
/**
* Specifies the type of the message handler function.
*
* Params:
* scanner = a #GScanner
* message = the message
* error = %TRUE if the message signals an error,
* %FALSE if it signals a warning.
*/
public alias extern(C) void function(GScanner* scanner, char* message, int error) GScannerMsgFunc;
/**
* A #GSequenceIterCompareFunc is a function used to compare iterators.
* It must return zero if the iterators compare equal, a negative value
* if @a comes before @b, and a positive value if @b comes before @a.
*
* Params:
* a = a #GSequenceIter
* b = a #GSequenceIter
* data = user data
*
* Returns: zero if the iterators are equal, a negative value if @a
* comes before @b, and a positive value if @b comes before @a.
*/
public alias extern(C) int function(GSequenceIter* a, GSequenceIter* b, void* data) GSequenceIterCompareFunc;
/**
* Dispose function for @source. See g_source_set_dispose_function() for
* details.
*
* Params:
* source = #GSource that is currently being disposed
*
* Since: 2.64
*/
public alias extern(C) void function(GSource* source) GSourceDisposeFunc;
/**
* This is just a placeholder for #GClosureMarshal,
* which cannot be used here for dependency reasons.
*/
public alias extern(C) void function() GSourceDummyMarshal;
/**
* Specifies the type of function passed to g_timeout_add(),
* g_timeout_add_full(), g_idle_add(), and g_idle_add_full().
*
* When calling g_source_set_callback(), you may need to cast a function of a
* different type to this type. Use G_SOURCE_FUNC() to avoid warnings about
* incompatible function types.
*
* Params:
* userData = data passed to the function, set when the source was
* created with one of the above functions
*
* Returns: %FALSE if the source should be removed. #G_SOURCE_CONTINUE and
* #G_SOURCE_REMOVE are more memorable names for the return value.
*/
public alias extern(C) int function(void* userData) GSourceFunc;
/**
* Specifies the type of the setup function passed to g_spawn_async(),
* g_spawn_sync() and g_spawn_async_with_pipes(), which can, in very
* limited ways, be used to affect the child's execution.
*
* On POSIX platforms, the function is called in the child after GLib
* has performed all the setup it plans to perform, but before calling
* exec(). Actions taken in this function will only affect the child,
* not the parent.
*
* On Windows, the function is called in the parent. Its usefulness on
* Windows is thus questionable. In many cases executing the child setup
* function in the parent can have ill effects, and you should be very
* careful when porting software to Windows that uses child setup
* functions.
*
* However, even on POSIX, you are extremely limited in what you can
* safely do from a #GSpawnChildSetupFunc, because any mutexes that were
* held by other threads in the parent process at the time of the fork()
* will still be locked in the child process, and they will never be
* unlocked (since the threads that held them don't exist in the child).
* POSIX allows only async-signal-safe functions (see signal(7)) to be
* called in the child between fork() and exec(), which drastically limits
* the usefulness of child setup functions.
*
* In particular, it is not safe to call any function which may
* call malloc(), which includes POSIX functions such as setenv().
* If you need to set up the child environment differently from
* the parent, you should use g_get_environ(), g_environ_setenv(),
* and g_environ_unsetenv(), and then pass the complete environment
* list to the `g_spawn...` function.
*
* Params:
* userData = user data to pass to the function.
*/
public alias extern(C) void function(void* userData) GSpawnChildSetupFunc;
/**
* The type used for test case functions that take an extra pointer
* argument.
*
* Params:
* userData = the data provided when registering the test
*
* Since: 2.28
*/
public alias extern(C) void function(void* userData) GTestDataFunc;
/**
* The type used for functions that operate on test fixtures. This is
* used for the fixture setup and teardown functions as well as for the
* testcases themselves.
*
* @user_data is a pointer to the data that was given when registering
* the test case.
*
* @fixture will be a pointer to the area of memory allocated by the
* test framework, of the size requested. If the requested size was
* zero then @fixture will be equal to @user_data.
*
* Params:
* fixture = the test fixture
* userData = the data provided when registering the test
*
* Since: 2.28
*/
public alias extern(C) void function(void* fixture, void* userData) GTestFixtureFunc;
/**
* The type used for test case functions.
*
* Since: 2.28
*/
public alias extern(C) void function() GTestFunc;
/**
* Specifies the prototype of fatal log handler functions.
*
* Params:
* logDomain = the log domain of the message
* logLevel = the log level of the message (including the fatal and recursion flags)
* message = the message to process
* userData = user data, set in g_test_log_set_fatal_handler()
*
* Returns: %TRUE if the program should abort, %FALSE otherwise
*
* Since: 2.22
*/
public alias extern(C) int function(const(char)* logDomain, GLogLevelFlags logLevel, const(char)* message, void* userData) GTestLogFatalFunc;
/**
* Specifies the type of the @func functions passed to g_thread_new()
* or g_thread_try_new().
*
* Params:
* data = data passed to the thread
*
* Returns: the return value of the thread
*/
public alias extern(C) void* function(void* data) GThreadFunc;
/**
* The type of functions which are used to translate user-visible
* strings, for <option>--help</option> output.
*
* Params:
* str = the untranslated string
* data = user data specified when installing the function, e.g.
* in g_option_group_set_translate_func()
*
* Returns: a translation of the string for the current locale.
* The returned string is owned by GLib and must not be freed.
*/
public alias extern(C) const(char)* function(const(char)* str, void* data) GTranslateFunc;
/**
* Specifies the type of function passed to g_tree_traverse(). It is
* passed the key and value of each node, together with the @user_data
* parameter passed to g_tree_traverse(). If the function returns
* %TRUE, the traversal is stopped.
*
* Params:
* key = a key of a #GTree node
* value = the value corresponding to the key
* data = user data passed to g_tree_traverse()
*
* Returns: %TRUE to stop the traversal
*/
public alias extern(C) int function(void* key, void* value, void* data) GTraverseFunc;
/**
* The type of functions to be called when a UNIX fd watch source
* triggers.
*
* Params:
* fd = the fd that triggered the event
* condition = the IO conditions reported on @fd
* userData = user data passed to g_unix_fd_add()
*
* Returns: %FALSE if the source should be removed
*/
public alias extern(C) int function(int fd, GIOCondition condition, void* userData) GUnixFDSourceFunc;
/**
* Declares a type of function which takes no arguments
* and has no return value. It is used to specify the type
* function passed to g_atexit().
*/
public alias extern(C) void function() GVoidFunc;
/**
* Specifies the type of the module initialization function.
* If a module contains a function named g_module_check_init() it is called
* automatically when the module is loaded. It is passed the #GModule structure
* and should return %NULL on success or a string describing the initialization
* error.
*
* Params:
* module_ = the #GModule corresponding to the module which has just been loaded
*
* Returns: %NULL on success, or a string describing the initialization error
*/
public alias extern(C) const(char)* function(GModule* module_) GModuleCheckInit;
/**
* Specifies the type of the module function called when it is unloaded.
* If a module contains a function named g_module_unload() it is called
* automatically when the module is unloaded.
* It is passed the #GModule structure.
*
* Params:
* module_ = the #GModule about to be unloaded
*/
public alias extern(C) void function(GModule* module_) GModuleUnload;
enum ANALYZER_ANALYZING = 1;
alias G_ANALYZER_ANALYZING = ANALYZER_ANALYZING;
/**
* A good size for a buffer to be passed into g_ascii_dtostr().
* It is guaranteed to be enough for all output of that function
* on systems with 64bit IEEE-compatible doubles.
*
* The typical usage would be something like:
* |[<!-- language="C" -->
* char buf[G_ASCII_DTOSTR_BUF_SIZE];
*
* fprintf (out, "value=%s\n", g_ascii_dtostr (buf, sizeof (buf), value));
* ]|
*/
enum ASCII_DTOSTR_BUF_SIZE = 39;
alias G_ASCII_DTOSTR_BUF_SIZE = ASCII_DTOSTR_BUF_SIZE;
/**
* Specifies one of the possible types of byte order.
* See #G_BYTE_ORDER.
*/
enum BIG_ENDIAN = 4321;
alias G_BIG_ENDIAN = BIG_ENDIAN;
/**
* The set of uppercase ASCII alphabet characters.
* Used for specifying valid identifier characters
* in #GScannerConfig.
*/
enum CSET_A_2_Z = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
alias G_CSET_A_2_Z = CSET_A_2_Z;
/**
* The set of ASCII digits.
* Used for specifying valid identifier characters
* in #GScannerConfig.
*/
enum CSET_DIGITS = "0123456789";
alias G_CSET_DIGITS = CSET_DIGITS;
/**
* The set of lowercase ASCII alphabet characters.
* Used for specifying valid identifier characters
* in #GScannerConfig.
*/
enum CSET_a_2_z = "abcdefghijklmnopqrstuvwxyz";
alias G_CSET_a_2_z = CSET_a_2_z;
/**
* A bitmask that restricts the possible flags passed to
* g_datalist_set_flags(). Passing a flags value where
* flags & ~G_DATALIST_FLAGS_MASK != 0 is an error.
*/
enum DATALIST_FLAGS_MASK = 3;
alias G_DATALIST_FLAGS_MASK = DATALIST_FLAGS_MASK;
/**
* Represents an invalid #GDateDay.
*/
enum DATE_BAD_DAY = 0;
alias G_DATE_BAD_DAY = DATE_BAD_DAY;
/**
* Represents an invalid Julian day number.
*/
enum DATE_BAD_JULIAN = 0;
alias G_DATE_BAD_JULIAN = DATE_BAD_JULIAN;
/**
* Represents an invalid year.
*/
enum DATE_BAD_YEAR = 0;
alias G_DATE_BAD_YEAR = DATE_BAD_YEAR;
/**
* This is the platform dependent conversion specifier for scanning and
* printing values of type #gint16. It is a string literal, but doesn't
* include the percent-sign, such that you can add precision and length
* modifiers between percent-sign and conversion specifier.
*
* |[<!-- language="C" -->
* gint16 in;
* gint32 out;
* sscanf ("42", "%" G_GINT16_FORMAT, &in)
* out = in * 1000;
* g_print ("%" G_GINT32_FORMAT, out);
* ]|
*/
enum GINT16_FORMAT = "hi";
alias G_GINT16_FORMAT = GINT16_FORMAT;
/**
* The platform dependent length modifier for conversion specifiers
* for scanning and printing values of type #gint16 or #guint16. It
* is a string literal, but doesn't include the percent-sign, such
* that you can add precision and length modifiers between percent-sign
* and conversion specifier and append a conversion specifier.
*
* The following example prints "0x7b";
* |[<!-- language="C" -->
* gint16 value = 123;
* g_print ("%#" G_GINT16_MODIFIER "x", value);
* ]|
*/
enum GINT16_MODIFIER = "h";
alias G_GINT16_MODIFIER = GINT16_MODIFIER;
/**
* This is the platform dependent conversion specifier for scanning
* and printing values of type #gint32. See also #G_GINT16_FORMAT.
*/
enum GINT32_FORMAT = "i";
alias G_GINT32_FORMAT = GINT32_FORMAT;
/**
* The platform dependent length modifier for conversion specifiers
* for scanning and printing values of type #gint32 or #guint32. It
* is a string literal. See also #G_GINT16_MODIFIER.
*/
enum GINT32_MODIFIER = "";
alias G_GINT32_MODIFIER = GINT32_MODIFIER;
/**
* This is the platform dependent conversion specifier for scanning
* and printing values of type #gint64. See also #G_GINT16_FORMAT.
*
* Some platforms do not support scanning and printing 64-bit integers,
* even though the types are supported. On such platforms %G_GINT64_FORMAT
* is not defined. Note that scanf() may not support 64-bit integers, even
* if %G_GINT64_FORMAT is defined. Due to its weak error handling, scanf()
* is not recommended for parsing anyway; consider using g_ascii_strtoull()
* instead.
*/
enum GINT64_FORMAT = "li";
alias G_GINT64_FORMAT = GINT64_FORMAT;
/**
* The platform dependent length modifier for conversion specifiers
* for scanning and printing values of type #gint64 or #guint64.
* It is a string literal.
*
* Some platforms do not support printing 64-bit integers, even
* though the types are supported. On such platforms %G_GINT64_MODIFIER
* is not defined.
*/
enum GINT64_MODIFIER = "l";
alias G_GINT64_MODIFIER = GINT64_MODIFIER;
/**
* This is the platform dependent conversion specifier for scanning
* and printing values of type #gintptr.
*/
enum GINTPTR_FORMAT = "li";
alias G_GINTPTR_FORMAT = GINTPTR_FORMAT;
/**
* The platform dependent length modifier for conversion specifiers
* for scanning and printing values of type #gintptr or #guintptr.
* It is a string literal.
*/
enum GINTPTR_MODIFIER = "l";
alias G_GINTPTR_MODIFIER = GINTPTR_MODIFIER;
/**
* Expands to "" on all modern compilers, and to __FUNCTION__ on gcc
* version 2.x. Don't use it.
*
* Deprecated: Use G_STRFUNC() instead
*/
enum GNUC_FUNCTION = "";
alias G_GNUC_FUNCTION = GNUC_FUNCTION;
/**
* Expands to "" on all modern compilers, and to __PRETTY_FUNCTION__
* on gcc version 2.x. Don't use it.
*
* Deprecated: Use G_STRFUNC() instead
*/
enum GNUC_PRETTY_FUNCTION = "";
alias G_GNUC_PRETTY_FUNCTION = GNUC_PRETTY_FUNCTION;
/**
* This is the platform dependent conversion specifier for scanning
* and printing values of type #gsize. See also #G_GINT16_FORMAT.
*/
enum GSIZE_FORMAT = "lu";
alias G_GSIZE_FORMAT = GSIZE_FORMAT;
/**
* The platform dependent length modifier for conversion specifiers
* for scanning and printing values of type #gsize. It
* is a string literal.
*/
enum GSIZE_MODIFIER = "l";
alias G_GSIZE_MODIFIER = GSIZE_MODIFIER;
/**
* This is the platform dependent conversion specifier for scanning
* and printing values of type #gssize. See also #G_GINT16_FORMAT.
*/
enum GSSIZE_FORMAT = "li";
alias G_GSSIZE_FORMAT = GSSIZE_FORMAT;
/**
* The platform dependent length modifier for conversion specifiers
* for scanning and printing values of type #gssize. It
* is a string literal.
*/
enum GSSIZE_MODIFIER = "l";
alias G_GSSIZE_MODIFIER = GSSIZE_MODIFIER;
/**
* This is the platform dependent conversion specifier for scanning
* and printing values of type #guint16. See also #G_GINT16_FORMAT
*/
enum GUINT16_FORMAT = "hu";
alias G_GUINT16_FORMAT = GUINT16_FORMAT;
/**
* This is the platform dependent conversion specifier for scanning
* and printing values of type #guint32. See also #G_GINT16_FORMAT.
*/
enum GUINT32_FORMAT = "u";
alias G_GUINT32_FORMAT = GUINT32_FORMAT;
/**
* This is the platform dependent conversion specifier for scanning
* and printing values of type #guint64. See also #G_GINT16_FORMAT.
*
* Some platforms do not support scanning and printing 64-bit integers,
* even though the types are supported. On such platforms %G_GUINT64_FORMAT
* is not defined. Note that scanf() may not support 64-bit integers, even
* if %G_GINT64_FORMAT is defined. Due to its weak error handling, scanf()
* is not recommended for parsing anyway; consider using g_ascii_strtoull()
* instead.
*/
enum GUINT64_FORMAT = "lu";
alias G_GUINT64_FORMAT = GUINT64_FORMAT;
/**
* This is the platform dependent conversion specifier
* for scanning and printing values of type #guintptr.
*/
enum GUINTPTR_FORMAT = "lu";
alias G_GUINTPTR_FORMAT = GUINTPTR_FORMAT;
enum HAVE_GINT64 = 1;
alias G_HAVE_GINT64 = HAVE_GINT64;
enum HAVE_GNUC_VARARGS = 1;
alias G_HAVE_GNUC_VARARGS = HAVE_GNUC_VARARGS;
/**
* Defined to 1 if gcc-style visibility handling is supported.
*/
enum HAVE_GNUC_VISIBILITY = 1;
alias G_HAVE_GNUC_VISIBILITY = HAVE_GNUC_VISIBILITY;
enum HAVE_GROWING_STACK = 0;
alias G_HAVE_GROWING_STACK = HAVE_GROWING_STACK;
enum HAVE_ISO_VARARGS = 1;
alias G_HAVE_ISO_VARARGS = HAVE_ISO_VARARGS;
/**
* The position of the first bit which is not reserved for internal
* use be the #GHook implementation, i.e.
* `1 << G_HOOK_FLAG_USER_SHIFT` is the first
* bit which can be used for application-defined flags.
*/
enum HOOK_FLAG_USER_SHIFT = 4;
alias G_HOOK_FLAG_USER_SHIFT = HOOK_FLAG_USER_SHIFT;
/**
* The bias by which exponents in double-precision floats are offset.
*/
enum IEEE754_DOUBLE_BIAS = 1023;
alias G_IEEE754_DOUBLE_BIAS = IEEE754_DOUBLE_BIAS;
/**
* The bias by which exponents in single-precision floats are offset.
*/
enum IEEE754_FLOAT_BIAS = 127;
alias G_IEEE754_FLOAT_BIAS = IEEE754_FLOAT_BIAS;
/**
* The name of the main group of a desktop entry file, as defined in the
* [Desktop Entry Specification](http://freedesktop.org/Standards/desktop-entry-spec).
* Consult the specification for more
* details about the meanings of the keys below.
*/
enum KEY_FILE_DESKTOP_GROUP = "Desktop Entry";
alias G_KEY_FILE_DESKTOP_GROUP = KEY_FILE_DESKTOP_GROUP;
/**
* A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a string list
* giving the available application actions.
*/
enum KEY_FILE_DESKTOP_KEY_ACTIONS = "Actions";
alias G_KEY_FILE_DESKTOP_KEY_ACTIONS = KEY_FILE_DESKTOP_KEY_ACTIONS;
/**
* A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a list
* of strings giving the categories in which the desktop entry
* should be shown in a menu.
*/
enum KEY_FILE_DESKTOP_KEY_CATEGORIES = "Categories";
alias G_KEY_FILE_DESKTOP_KEY_CATEGORIES = KEY_FILE_DESKTOP_KEY_CATEGORIES;
/**
* A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a localized
* string giving the tooltip for the desktop entry.
*/
enum KEY_FILE_DESKTOP_KEY_COMMENT = "Comment";
alias G_KEY_FILE_DESKTOP_KEY_COMMENT = KEY_FILE_DESKTOP_KEY_COMMENT;
/**
* A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a boolean set to true
* if the application is D-Bus activatable.
*/
enum KEY_FILE_DESKTOP_KEY_DBUS_ACTIVATABLE = "DBusActivatable";
alias G_KEY_FILE_DESKTOP_KEY_DBUS_ACTIVATABLE = KEY_FILE_DESKTOP_KEY_DBUS_ACTIVATABLE;
/**
* A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a string
* giving the command line to execute. It is only valid for desktop
* entries with the `Application` type.
*/
enum KEY_FILE_DESKTOP_KEY_EXEC = "Exec";
alias G_KEY_FILE_DESKTOP_KEY_EXEC = KEY_FILE_DESKTOP_KEY_EXEC;
/**
* A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a localized
* string giving the generic name of the desktop entry.
*/
enum KEY_FILE_DESKTOP_KEY_GENERIC_NAME = "GenericName";
alias G_KEY_FILE_DESKTOP_KEY_GENERIC_NAME = KEY_FILE_DESKTOP_KEY_GENERIC_NAME;
/**
* A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a boolean
* stating whether the desktop entry has been deleted by the user.
*/
enum KEY_FILE_DESKTOP_KEY_HIDDEN = "Hidden";
alias G_KEY_FILE_DESKTOP_KEY_HIDDEN = KEY_FILE_DESKTOP_KEY_HIDDEN;
/**
* A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a localized
* string giving the name of the icon to be displayed for the desktop
* entry.
*/
enum KEY_FILE_DESKTOP_KEY_ICON = "Icon";
alias G_KEY_FILE_DESKTOP_KEY_ICON = KEY_FILE_DESKTOP_KEY_ICON;
/**
* A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a list
* of strings giving the MIME types supported by this desktop entry.
*/
enum KEY_FILE_DESKTOP_KEY_MIME_TYPE = "MimeType";
alias G_KEY_FILE_DESKTOP_KEY_MIME_TYPE = KEY_FILE_DESKTOP_KEY_MIME_TYPE;
/**
* A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a localized
* string giving the specific name of the desktop entry.
*/
enum KEY_FILE_DESKTOP_KEY_NAME = "Name";
alias G_KEY_FILE_DESKTOP_KEY_NAME = KEY_FILE_DESKTOP_KEY_NAME;
/**
* A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a list of
* strings identifying the environments that should not display the
* desktop entry.
*/
enum KEY_FILE_DESKTOP_KEY_NOT_SHOW_IN = "NotShowIn";
alias G_KEY_FILE_DESKTOP_KEY_NOT_SHOW_IN = KEY_FILE_DESKTOP_KEY_NOT_SHOW_IN;
/**
* A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a boolean
* stating whether the desktop entry should be shown in menus.
*/
enum KEY_FILE_DESKTOP_KEY_NO_DISPLAY = "NoDisplay";
alias G_KEY_FILE_DESKTOP_KEY_NO_DISPLAY = KEY_FILE_DESKTOP_KEY_NO_DISPLAY;
/**
* A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a list of
* strings identifying the environments that should display the
* desktop entry.
*/
enum KEY_FILE_DESKTOP_KEY_ONLY_SHOW_IN = "OnlyShowIn";
alias G_KEY_FILE_DESKTOP_KEY_ONLY_SHOW_IN = KEY_FILE_DESKTOP_KEY_ONLY_SHOW_IN;
/**
* A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a string
* containing the working directory to run the program in. It is only
* valid for desktop entries with the `Application` type.
*/
enum KEY_FILE_DESKTOP_KEY_PATH = "Path";
alias G_KEY_FILE_DESKTOP_KEY_PATH = KEY_FILE_DESKTOP_KEY_PATH;
/**
* A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a boolean
* stating whether the application supports the
* [Startup Notification Protocol Specification](http://www.freedesktop.org/Standards/startup-notification-spec).
*/
enum KEY_FILE_DESKTOP_KEY_STARTUP_NOTIFY = "StartupNotify";
alias G_KEY_FILE_DESKTOP_KEY_STARTUP_NOTIFY = KEY_FILE_DESKTOP_KEY_STARTUP_NOTIFY;
/**
* A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is string
* identifying the WM class or name hint of a window that the application
* will create, which can be used to emulate Startup Notification with
* older applications.
*/
enum KEY_FILE_DESKTOP_KEY_STARTUP_WM_CLASS = "StartupWMClass";
alias G_KEY_FILE_DESKTOP_KEY_STARTUP_WM_CLASS = KEY_FILE_DESKTOP_KEY_STARTUP_WM_CLASS;
/**
* A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a boolean
* stating whether the program should be run in a terminal window.
* It is only valid for desktop entries with the
* `Application` type.
*/
enum KEY_FILE_DESKTOP_KEY_TERMINAL = "Terminal";
alias G_KEY_FILE_DESKTOP_KEY_TERMINAL = KEY_FILE_DESKTOP_KEY_TERMINAL;
/**
* A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a string
* giving the file name of a binary on disk used to determine if the
* program is actually installed. It is only valid for desktop entries
* with the `Application` type.
*/
enum KEY_FILE_DESKTOP_KEY_TRY_EXEC = "TryExec";
alias G_KEY_FILE_DESKTOP_KEY_TRY_EXEC = KEY_FILE_DESKTOP_KEY_TRY_EXEC;
/**
* A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a string
* giving the type of the desktop entry. Usually
* #G_KEY_FILE_DESKTOP_TYPE_APPLICATION,
* #G_KEY_FILE_DESKTOP_TYPE_LINK, or
* #G_KEY_FILE_DESKTOP_TYPE_DIRECTORY.
*/
enum KEY_FILE_DESKTOP_KEY_TYPE = "Type";
alias G_KEY_FILE_DESKTOP_KEY_TYPE = KEY_FILE_DESKTOP_KEY_TYPE;
/**
* A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a string
* giving the URL to access. It is only valid for desktop entries
* with the `Link` type.
*/
enum KEY_FILE_DESKTOP_KEY_URL = "URL";
alias G_KEY_FILE_DESKTOP_KEY_URL = KEY_FILE_DESKTOP_KEY_URL;
/**
* A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a string
* giving the version of the Desktop Entry Specification used for
* the desktop entry file.
*/
enum KEY_FILE_DESKTOP_KEY_VERSION = "Version";
alias G_KEY_FILE_DESKTOP_KEY_VERSION = KEY_FILE_DESKTOP_KEY_VERSION;
/**
* The value of the #G_KEY_FILE_DESKTOP_KEY_TYPE, key for desktop
* entries representing applications.
*/
enum KEY_FILE_DESKTOP_TYPE_APPLICATION = "Application";
alias G_KEY_FILE_DESKTOP_TYPE_APPLICATION = KEY_FILE_DESKTOP_TYPE_APPLICATION;
/**
* The value of the #G_KEY_FILE_DESKTOP_KEY_TYPE, key for desktop
* entries representing directories.
*/
enum KEY_FILE_DESKTOP_TYPE_DIRECTORY = "Directory";
alias G_KEY_FILE_DESKTOP_TYPE_DIRECTORY = KEY_FILE_DESKTOP_TYPE_DIRECTORY;
/**
* The value of the #G_KEY_FILE_DESKTOP_KEY_TYPE, key for desktop
* entries representing links to documents.
*/
enum KEY_FILE_DESKTOP_TYPE_LINK = "Link";
alias G_KEY_FILE_DESKTOP_TYPE_LINK = KEY_FILE_DESKTOP_TYPE_LINK;
/**
* Specifies one of the possible types of byte order.
* See #G_BYTE_ORDER.
*/
enum LITTLE_ENDIAN = 1234;
alias G_LITTLE_ENDIAN = LITTLE_ENDIAN;
/**
* Defines the log domain. See [Log Domains](#log-domains).
*
* Libraries should define this so that any messages
* which they log can be differentiated from messages from other
* libraries and application code. But be careful not to define
* it in any public header files.
*
* Log domains must be unique, and it is recommended that they are the
* application or library name, optionally followed by a hyphen and a sub-domain
* name. For example, `bloatpad` or `bloatpad-io`.
*
* If undefined, it defaults to the default %NULL (or `""`) log domain; this is
* not advisable, as it cannot be filtered against using the `G_MESSAGES_DEBUG`
* environment variable.
*
* For example, GTK+ uses this in its `Makefile.am`:
* |[
* AM_CPPFLAGS = -DG_LOG_DOMAIN=\"Gtk\"
* ]|
*
* Applications can choose to leave it as the default %NULL (or `""`)
* domain. However, defining the domain offers the same advantages as
* above.
*/
enum LOG_DOMAIN = 0;
alias G_LOG_DOMAIN = LOG_DOMAIN;
/**
* GLib log levels that are considered fatal by default.
*
* This is not used if structured logging is enabled; see
* [Using Structured Logging][using-structured-logging].
*/
enum LOG_FATAL_MASK = 5;
alias G_LOG_FATAL_MASK = LOG_FATAL_MASK;
/**
* Log levels below 1<<G_LOG_LEVEL_USER_SHIFT are used by GLib.
* Higher bits can be used for user-defined log levels.
*/
enum LOG_LEVEL_USER_SHIFT = 8;
alias G_LOG_LEVEL_USER_SHIFT = LOG_LEVEL_USER_SHIFT;
/**
* The major version number of the GLib library.
*
* Like #glib_major_version, but from the headers used at
* application compile time, rather than from the library
* linked against at application run time.
*/
enum MAJOR_VERSION = 2;
alias GLIB_MAJOR_VERSION = MAJOR_VERSION;
/**
* The maximum value which can be held in a #gint16.
*/
enum MAXINT16 = 32767;
alias G_MAXINT16 = MAXINT16;
/**
* The maximum value which can be held in a #gint32.
*/
enum MAXINT32 = 2147483647;
alias G_MAXINT32 = MAXINT32;
/**
* The maximum value which can be held in a #gint64.
*/
enum MAXINT64 = 9223372036854775807UL;
alias G_MAXINT64 = MAXINT64;
/**
* The maximum value which can be held in a #gint8.
*/
enum MAXINT8 = 127;
alias G_MAXINT8 = MAXINT8;
/**
* The maximum value which can be held in a #guint16.
*/
enum MAXUINT16 = 65535;
alias G_MAXUINT16 = MAXUINT16;
/**
* The maximum value which can be held in a #guint32.
*/
enum MAXUINT32 = 4294967295;
alias G_MAXUINT32 = MAXUINT32;
/**
* The maximum value which can be held in a #guint64.
*/
enum MAXUINT64 = 18446744073709551615UL;
alias G_MAXUINT64 = MAXUINT64;
/**
* The maximum value which can be held in a #guint8.
*/
enum MAXUINT8 = 255;
alias G_MAXUINT8 = MAXUINT8;
/**
* The micro version number of the GLib library.
*
* Like #gtk_micro_version, but from the headers used at
* application compile time, rather than from the library
* linked against at application run time.
*/
enum MICRO_VERSION = 0;
alias GLIB_MICRO_VERSION = MICRO_VERSION;
/**
* The minimum value which can be held in a #gint16.
*/
enum MININT16 = -32768;
alias G_MININT16 = MININT16;
/**
* The minimum value which can be held in a #gint32.
*/
enum MININT32 = -2147483648;
alias G_MININT32 = MININT32;
/**
* The minimum value which can be held in a #gint64.
*/
enum MININT64 = -9223372036854775808UL;
alias G_MININT64 = MININT64;
/**
* The minimum value which can be held in a #gint8.
*/
enum MININT8 = -128;
alias G_MININT8 = MININT8;
/**
* The minor version number of the GLib library.
*
* Like #gtk_minor_version, but from the headers used at
* application compile time, rather than from the library
* linked against at application run time.
*/
enum MINOR_VERSION = 64;
alias GLIB_MINOR_VERSION = MINOR_VERSION;
enum MODULE_SUFFIX = "so";
alias G_MODULE_SUFFIX = MODULE_SUFFIX;
/**
* If a long option in the main group has this name, it is not treated as a
* regular option. Instead it collects all non-option arguments which would
* otherwise be left in `argv`. The option must be of type
* %G_OPTION_ARG_CALLBACK, %G_OPTION_ARG_STRING_ARRAY
* or %G_OPTION_ARG_FILENAME_ARRAY.
*
*
* Using #G_OPTION_REMAINING instead of simply scanning `argv`
* for leftover arguments has the advantage that GOption takes care of
* necessary encoding conversions for strings or filenames.
*/
enum OPTION_REMAINING = "";
alias G_OPTION_REMAINING = OPTION_REMAINING;
/**
* Specifies one of the possible types of byte order
* (currently unused). See #G_BYTE_ORDER.
*/
enum PDP_ENDIAN = 3412;
alias G_PDP_ENDIAN = PDP_ENDIAN;
/**
* A format specifier that can be used in printf()-style format strings
* when printing a #GPid.
*/
enum PID_FORMAT = "i";
alias G_PID_FORMAT = PID_FORMAT;
/**
* A format specifier that can be used in printf()-style format strings
* when printing the @fd member of a #GPollFD.
*/
enum POLLFD_FORMAT = "%d";
alias G_POLLFD_FORMAT = POLLFD_FORMAT;
/**
* Use this for default priority event sources.
*
* In GLib this priority is used when adding timeout functions
* with g_timeout_add(). In GDK this priority is used for events
* from the X server.
*/
enum PRIORITY_DEFAULT = 0;
alias G_PRIORITY_DEFAULT = PRIORITY_DEFAULT;
/**
* Use this for default priority idle functions.
*
* In GLib this priority is used when adding idle functions with
* g_idle_add().
*/
enum PRIORITY_DEFAULT_IDLE = 200;
alias G_PRIORITY_DEFAULT_IDLE = PRIORITY_DEFAULT_IDLE;
/**
* Use this for high priority event sources.
*
* It is not used within GLib or GTK+.
*/
enum PRIORITY_HIGH = -100;
alias G_PRIORITY_HIGH = PRIORITY_HIGH;
/**
* Use this for high priority idle functions.
*
* GTK+ uses #G_PRIORITY_HIGH_IDLE + 10 for resizing operations,
* and #G_PRIORITY_HIGH_IDLE + 20 for redrawing operations. (This is
* done to ensure that any pending resizes are processed before any
* pending redraws, so that widgets are not redrawn twice unnecessarily.)
*/
enum PRIORITY_HIGH_IDLE = 100;
alias G_PRIORITY_HIGH_IDLE = PRIORITY_HIGH_IDLE;
/**
* Use this for very low priority background tasks.
*
* It is not used within GLib or GTK+.
*/
enum PRIORITY_LOW = 300;
alias G_PRIORITY_LOW = PRIORITY_LOW;
enum SIZEOF_LONG = 8;
alias GLIB_SIZEOF_LONG = SIZEOF_LONG;
enum SIZEOF_SIZE_T = 8;
alias GLIB_SIZEOF_SIZE_T = SIZEOF_SIZE_T;
enum SIZEOF_SSIZE_T = 8;
alias GLIB_SIZEOF_SSIZE_T = SIZEOF_SSIZE_T;
enum SIZEOF_VOID_P = 8;
alias GLIB_SIZEOF_VOID_P = SIZEOF_VOID_P;
/**
* Use this macro as the return value of a #GSourceFunc to leave
* the #GSource in the main loop.
*/
enum SOURCE_CONTINUE = true;
alias G_SOURCE_CONTINUE = SOURCE_CONTINUE;
/**
* Use this macro as the return value of a #GSourceFunc to remove
* the #GSource from the main loop.
*/
enum SOURCE_REMOVE = false;
alias G_SOURCE_REMOVE = SOURCE_REMOVE;
/**
* The standard delimiters, used in g_strdelimit().
*/
enum STR_DELIMITERS = "_-|> <.";
alias G_STR_DELIMITERS = STR_DELIMITERS;
enum SYSDEF_AF_INET = 2;
alias GLIB_SYSDEF_AF_INET = SYSDEF_AF_INET;
enum SYSDEF_AF_INET6 = 10;
alias GLIB_SYSDEF_AF_INET6 = SYSDEF_AF_INET6;
enum SYSDEF_AF_UNIX = 1;
alias GLIB_SYSDEF_AF_UNIX = SYSDEF_AF_UNIX;
enum SYSDEF_MSG_DONTROUTE = 4;
alias GLIB_SYSDEF_MSG_DONTROUTE = SYSDEF_MSG_DONTROUTE;
enum SYSDEF_MSG_OOB = 1;
alias GLIB_SYSDEF_MSG_OOB = SYSDEF_MSG_OOB;
enum SYSDEF_MSG_PEEK = 2;
alias GLIB_SYSDEF_MSG_PEEK = SYSDEF_MSG_PEEK;
/**
* Creates a unique temporary directory for each unit test and uses
* g_set_user_dirs() to set XDG directories to point into subdirectories of it
* for the duration of the unit test. The directory tree is cleaned up after the
* test finishes successfully. Note that this doesn’t take effect until
* g_test_run() is called, so calls to (for example) g_get_user_home_dir() will
* return the system-wide value when made in a test program’s main() function.
*
* The following functions will return subdirectories of the temporary directory
* when this option is used. The specific subdirectory paths in use are not
* guaranteed to be stable API — always use a getter function to retrieve them.
*
* - g_get_home_dir()
* - g_get_user_cache_dir()
* - g_get_system_config_dirs()
* - g_get_user_config_dir()
* - g_get_system_data_dirs()
* - g_get_user_data_dir()
* - g_get_user_runtime_dir()
*
* The subdirectories may not be created by the test harness; as with normal
* calls to functions like g_get_user_cache_dir(), the caller must be prepared
* to create the directory if it doesn’t exist.
*/
enum TEST_OPTION_ISOLATE_DIRS = "isolate_dirs";
alias G_TEST_OPTION_ISOLATE_DIRS = TEST_OPTION_ISOLATE_DIRS;
/**
* Evaluates to a time span of one day.
*/
enum TIME_SPAN_DAY = 86400000000UL;
alias G_TIME_SPAN_DAY = TIME_SPAN_DAY;
/**
* Evaluates to a time span of one hour.
*/
enum TIME_SPAN_HOUR = 3600000000UL;
alias G_TIME_SPAN_HOUR = TIME_SPAN_HOUR;
/**
* Evaluates to a time span of one millisecond.
*/
enum TIME_SPAN_MILLISECOND = 1000UL;
alias G_TIME_SPAN_MILLISECOND = TIME_SPAN_MILLISECOND;
/**
* Evaluates to a time span of one minute.
*/
enum TIME_SPAN_MINUTE = 60000000UL;
alias G_TIME_SPAN_MINUTE = TIME_SPAN_MINUTE;
/**
* Evaluates to a time span of one second.
*/
enum TIME_SPAN_SECOND = 1000000UL;
alias G_TIME_SPAN_SECOND = TIME_SPAN_SECOND;
/**
* The maximum length (in codepoints) of a compatibility or canonical
* decomposition of a single Unicode character.
*
* This is as defined by Unicode 6.1.
*/
enum UNICHAR_MAX_DECOMPOSITION_LENGTH = 18;
alias G_UNICHAR_MAX_DECOMPOSITION_LENGTH = UNICHAR_MAX_DECOMPOSITION_LENGTH;
/**
* Generic delimiters characters as defined in RFC 3986. Includes ":/?#[]@".
*/
enum URI_RESERVED_CHARS_GENERIC_DELIMITERS = ":/?#[]@";
alias G_URI_RESERVED_CHARS_GENERIC_DELIMITERS = URI_RESERVED_CHARS_GENERIC_DELIMITERS;
/**
* Subcomponent delimiter characters as defined in RFC 3986. Includes "!$&'()*+,;=".
*/
enum URI_RESERVED_CHARS_SUBCOMPONENT_DELIMITERS = "!$&'()*+,;=";
alias G_URI_RESERVED_CHARS_SUBCOMPONENT_DELIMITERS = URI_RESERVED_CHARS_SUBCOMPONENT_DELIMITERS;
/**
* Number of microseconds in one second (1 million).
* This macro is provided for code readability.
*/
enum USEC_PER_SEC = 1000000;
alias G_USEC_PER_SEC = USEC_PER_SEC;
enum VA_COPY_AS_ARRAY = 1;
alias G_VA_COPY_AS_ARRAY = VA_COPY_AS_ARRAY;
enum WIN32_MSG_HANDLE = 19981206;
alias G_WIN32_MSG_HANDLE = WIN32_MSG_HANDLE;
|