summaryrefslogtreecommitdiff
path: root/vapi/harfbuzz-gobject.vapi
blob: 06216893467c4b106006ce4b00d3acdf6ba203bb (plain)
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
/* harfbuzz-gobject.vapi generated by vapigen, do not modify. */

[CCode (cprefix = "hb_", gir_namespace = "HarfBuzz", gir_version = "0.0", lower_case_cprefix = "hb_")]
[Version (experimental = true)]
namespace HarfBuzz {
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_blob_t", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "hb_gobject_blob_get_type ()")]
	[Compact]
	[GIR (name = "blob_t")]
	public class Blob {
		[Version (since = "1.8.0")]
		public HarfBuzz.Blob copy_writable_or_fail ();
		[Version (since = "1.7.7")]
		public static HarfBuzz.Blob create_from_file (string file_name);
		[Version (since = "2.8.2")]
		public static HarfBuzz.Blob create_from_file_or_fail (string file_name);
		[Version (since = "0.9.2")]
		public HarfBuzz.Blob create_sub_blob (uint offset, uint length);
		[CCode (array_length_pos = 0.2, array_length_type = "guint")]
		[Version (since = "0.9.2")]
		public unowned string[]? get_data ();
		[CCode (array_length_pos = 0.2, array_length_type = "guint")]
		[Version (since = "0.9.2")]
		public unowned string[] get_data_writable ();
		[Version (since = "0.9.2")]
		public static HarfBuzz.Blob get_empty ();
		[Version (since = "0.9.2")]
		public uint get_length ();
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool is_immutable ();
		[Version (since = "0.9.2")]
		public void make_immutable ();
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_buffer_t", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "hb_gobject_buffer_get_type ()")]
	[Compact]
	[GIR (name = "buffer_t")]
	public class Buffer {
		[Version (since = "0.9.7")]
		public void add (HarfBuzz.Codepoint codepoint, uint cluster);
		[Version (since = "0.9.31")]
		public void add_codepoints ([CCode (array_length_cname = "text_length", array_length_pos = 1.5)] HarfBuzz.Codepoint[] text, uint item_offset, int item_length);
		[Version (since = "0.9.39")]
		public void add_latin1 ([CCode (array_length_cname = "text_length", array_length_pos = 1.5)] uint8[] text, uint item_offset, int item_length);
		[Version (since = "0.9.2")]
		public void add_utf16 ([CCode (array_length_cname = "text_length", array_length_pos = 1.5)] uint16[] text, uint item_offset, int item_length);
		[Version (since = "0.9.2")]
		public void add_utf32 ([CCode (array_length_cname = "text_length", array_length_pos = 1.5)] uint32[] text, uint item_offset, int item_length);
		[Version (since = "0.9.2")]
		public void add_utf8 ([CCode (array_length_cname = "text_length", array_length_pos = 1.5)] uint8[] text, uint item_offset, int item_length);
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool allocation_successful ();
		[Version (since = "1.5.0")]
		public void append (HarfBuzz.Buffer source, uint start, uint end);
		[Version (since = "0.9.11")]
		public void clear_contents ();
		[Version (since = "0.9.2")]
		public static HarfBuzz.Buffer create ();
		[Version (since = "3.3.0")]
		public HarfBuzz.Buffer create_similar ();
		[Version (since = "0.9.7")]
		public HarfBuzz.Bool deserialize_glyphs ([CCode (array_length_cname = "buf_len", array_length_pos = 1.5)] string[] buf, out string end_ptr, HarfBuzz.Font? font, HarfBuzz.BufferSerializeFormat format);
		[Version (since = "2.7.3")]
		public HarfBuzz.Bool deserialize_unicode ([CCode (array_length_cname = "buf_len", array_length_pos = 1.5)] string[] buf, out string end_ptr, HarfBuzz.BufferSerializeFormat format);
		[Version (since = "1.5.0")]
		public HarfBuzz.BufferDiffFlags diff (HarfBuzz.Buffer reference, HarfBuzz.Codepoint dottedcircle_glyph, uint position_fuzz);
		[Version (since = "0.9.42")]
		public HarfBuzz.BufferClusterLevel get_cluster_level ();
		[Version (since = "0.9.5")]
		public HarfBuzz.BufferContentType get_content_type ();
		[Version (since = "0.9.2")]
		public HarfBuzz.Direction get_direction ();
		[Version (since = "0.9.2")]
		public static HarfBuzz.Buffer get_empty ();
		[Version (since = "0.9.7")]
		public HarfBuzz.BufferFlags get_flags ();
		[CCode (array_length_pos = 0.2, array_length_type = "guint")]
		[Version (since = "0.9.2")]
		public unowned HarfBuzz.Glyph[] get_glyph_infos ();
		[CCode (array_length_pos = 0.2, array_length_type = "guint")]
		[Version (since = "0.9.2")]
		public unowned HarfBuzz.GlyphPosition[] get_glyph_positions ();
		[Version (since = "2.0.0")]
		public HarfBuzz.Codepoint get_invisible_glyph ();
		[Version (since = "0.9.2")]
		public unowned HarfBuzz.Language get_language ();
		[Version (since = "0.9.2")]
		public uint get_length ();
		[Version (since = "3.1.0")]
		public HarfBuzz.Codepoint get_not_found_glyph ();
		[Version (since = "0.9.31")]
		public HarfBuzz.Codepoint get_replacement_codepoint ();
		[Version (since = "0.9.2")]
		public HarfBuzz.Script get_script ();
		[Version (since = "0.9.7")]
		public void get_segment_properties (out unowned HarfBuzz.SegmentProperties props);
		[Version (since = "0.9.2")]
		public HarfBuzz.UnicodeFuncs get_unicode_funcs ();
		[Version (since = "0.9.7")]
		public void guess_segment_properties ();
		[Version (since = "2.7.3")]
		public HarfBuzz.Bool has_positions ();
		[Version (since = "0.9.2")]
		public void normalize_glyphs ();
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool pre_allocate (uint size);
		[Version (since = "0.9.2")]
		public void reset ();
		[Version (since = "0.9.2")]
		public void reverse ();
		[Version (since = "0.9.2")]
		public void reverse_clusters ();
		[Version (since = "0.9.41")]
		public void reverse_range (uint start, uint end);
		[Version (since = "2.7.3")]
		public uint serialize (uint start, uint end, [CCode (array_length_cname = "buf_size", array_length_pos = 3.5, array_length_type = "guint")] out uint8[] buf, out uint buf_consumed, HarfBuzz.Font? font, HarfBuzz.BufferSerializeFormat format, HarfBuzz.BufferSerializeFlags flags);
		[Version (since = "0.9.7")]
		public static HarfBuzz.BufferSerializeFormat serialize_format_from_string ([CCode (array_length_cname = "len", array_length_pos = 1.1)] uint8[] str);
		[Version (since = "0.9.7")]
		public static unowned string serialize_format_to_string (HarfBuzz.BufferSerializeFormat format);
		[Version (since = "0.9.7")]
		public uint serialize_glyphs (uint start, uint end, [CCode (array_length_cname = "buf_size", array_length_pos = 3.5, array_length_type = "guint")] out uint8[] buf, out uint buf_consumed, HarfBuzz.Font? font, HarfBuzz.BufferSerializeFormat format, HarfBuzz.BufferSerializeFlags flags);
		[CCode (array_length = false, array_null_terminated = true)]
		[Version (since = "0.9.7")]
		public static unowned string[] serialize_list_formats ();
		[Version (since = "2.7.3")]
		public uint serialize_unicode (uint start, uint end, [CCode (array_length_cname = "buf_size", array_length_pos = 3.5, array_length_type = "guint")] out uint8[] buf, out uint buf_consumed, HarfBuzz.BufferSerializeFormat format, HarfBuzz.BufferSerializeFlags flags);
		[Version (since = "0.9.42")]
		public void set_cluster_level (HarfBuzz.BufferClusterLevel cluster_level);
		[Version (since = "0.9.5")]
		public void set_content_type (HarfBuzz.BufferContentType content_type);
		[Version (since = "0.9.2")]
		public void set_direction (HarfBuzz.Direction direction);
		[Version (since = "0.9.7")]
		public void set_flags (HarfBuzz.BufferFlags flags);
		[Version (since = "2.0.0")]
		public void set_invisible_glyph (HarfBuzz.Codepoint invisible);
		[Version (since = "0.9.2")]
		public void set_language (HarfBuzz.Language language);
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool set_length (uint length);
		[Version (since = "1.1.3")]
		public void set_message_func (owned HarfBuzz.BufferMessageFunc func);
		[Version (since = "3.1.0")]
		public void set_not_found_glyph (HarfBuzz.Codepoint not_found);
		[Version (since = "0.9.31")]
		public void set_replacement_codepoint (HarfBuzz.Codepoint replacement);
		[Version (since = "0.9.2")]
		public void set_script (HarfBuzz.Script script);
		[Version (since = "0.9.7")]
		public void set_segment_properties (HarfBuzz.SegmentProperties props);
		[Version (since = "0.9.2")]
		public void set_unicode_funcs (HarfBuzz.UnicodeFuncs unicode_funcs);
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_color_line_t", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "hb_gobject_color_line_get_type ()")]
	[Compact]
	[GIR (name = "color_line_t")]
	public class ColorLine {
		public void* data;
		public weak HarfBuzz.ColorLineGetColorStopsFunc get_color_stops;
		public void* get_color_stops_user_data;
		public weak HarfBuzz.ColorLineGetExtendFunc get_extend;
		public void* get_extend_user_data;
		public void* reserved0;
		public void* reserved1;
		public void* reserved2;
		public void* reserved3;
		public void* reserved5;
		public void* reserved6;
		public void* reserved7;
		public void* reserved8;
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_color_stop_t", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "hb_gobject_color_stop_get_type ()")]
	[Compact]
	[GIR (name = "color_stop_t")]
	public class ColorStop {
		public HarfBuzz.Color color;
		public HarfBuzz.Bool is_foreground;
		public float offset;
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_draw_funcs_t", copy_function = "g_boxed_copy", free_function = "g_boxed_free", lower_case_cprefix = "hb_gobject_draw_funcs_", type_id = "hb_gobject_draw_funcs_get_type ()")]
	[Compact]
	[GIR (name = "draw_funcs_t")]
	[Version (since = "4.0.0")]
	public class DrawFuncs {
		[CCode (cname = "hb_draw_close_path")]
		public void close_path (void* draw_data, HarfBuzz.DrawState st);
		[CCode (cname = "hb_draw_funcs_create")]
		public static HarfBuzz.DrawFuncs create ();
		[CCode (cname = "hb_draw_cubic_to")]
		public void cubic_to (void* draw_data, HarfBuzz.DrawState st, float control1_x, float control1_y, float control2_x, float control2_y, float to_x, float to_y);
		[CCode (cname = "hb_draw_funcs_get_empty")]
		public static HarfBuzz.DrawFuncs get_empty ();
		[CCode (cname = "hb_draw_funcs_is_immutable")]
		public HarfBuzz.Bool is_immutable ();
		[CCode (cname = "hb_draw_line_to")]
		public void line_to (void* draw_data, HarfBuzz.DrawState st, float to_x, float to_y);
		[CCode (cname = "hb_draw_funcs_make_immutable")]
		public void make_immutable ();
		[CCode (cname = "hb_draw_move_to")]
		public void move_to (void* draw_data, HarfBuzz.DrawState st, float to_x, float to_y);
		[CCode (cname = "hb_draw_quadratic_to")]
		public void quadratic_to (void* draw_data, HarfBuzz.DrawState st, float control_x, float control_y, float to_x, float to_y);
		[CCode (cname = "hb_draw_funcs_set_close_path_func")]
		public void set_close_path_func (owned HarfBuzz.DrawClosePathFunc func);
		[CCode (cname = "hb_draw_funcs_set_cubic_to_func")]
		public void set_cubic_to_func (owned HarfBuzz.DrawCubicToFunc func);
		[CCode (cname = "hb_draw_funcs_set_line_to_func")]
		public void set_line_to_func (owned HarfBuzz.DrawLineToFunc func);
		[CCode (cname = "hb_draw_funcs_set_move_to_func")]
		public void set_move_to_func (owned HarfBuzz.DrawMoveToFunc func);
		[CCode (cname = "hb_draw_funcs_set_quadratic_to_func")]
		public void set_quadratic_to_func (owned HarfBuzz.DrawQuadraticToFunc func);
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_draw_state_t", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "hb_gobject_draw_state_get_type ()")]
	[Compact]
	[GIR (name = "draw_state_t")]
	[Version (since = "4.0.0")]
	public class DrawState {
		public float current_x;
		public float current_y;
		public HarfBuzz.Bool path_open;
		public float path_start_x;
		public float path_start_y;
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_face_t", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "hb_gobject_face_get_type ()")]
	[Compact]
	[GIR (name = "face_t")]
	public class Face {
		[Version (since = "1.9.0")]
		public HarfBuzz.Bool builder_add_table (HarfBuzz.Tag tag, HarfBuzz.Blob blob);
		[Version (since = "1.9.0")]
		public static HarfBuzz.Face builder_create ();
		[Version (since = "5.3.0")]
		public void builder_sort_tables ([CCode (array_length = false, array_null_terminated = true)] HarfBuzz.Tag[] tags);
		public void collect_nominal_glyph_mapping (out unowned HarfBuzz.Map mapping, out unowned HarfBuzz.Set? unicodes);
		[Version (since = "1.9.0")]
		public void collect_unicodes (out unowned HarfBuzz.Set @out);
		[Version (since = "1.9.0")]
		public void collect_variation_selectors (out unowned HarfBuzz.Set @out);
		[Version (since = "1.9.0")]
		public void collect_variation_unicodes (HarfBuzz.Codepoint variation_selector, out unowned HarfBuzz.Set @out);
		[Version (since = "1.7.7")]
		public static uint count (HarfBuzz.Blob blob);
		[Version (since = "0.9.2")]
		public static HarfBuzz.Face create (HarfBuzz.Blob blob, uint index);
		[Version (since = "0.9.2")]
		public static HarfBuzz.Face create_for_tables (owned HarfBuzz.ReferenceTableFunc reference_table_func);
		[Version (since = "0.9.2")]
		public static HarfBuzz.Face get_empty ();
		[Version (since = "0.9.7")]
		public uint get_glyph_count ();
		[Version (since = "0.9.2")]
		public uint get_index ();
		[Version (since = "1.6.0")]
		public uint get_table_tags (uint start_offset, [CCode (array_length_cname = "table_count", array_length_pos = 1.5, array_length_type = "guint")] out HarfBuzz.Tag[] table_tags);
		[Version (since = "0.9.2")]
		public uint get_upem ();
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool is_immutable ();
		[Version (since = "0.9.2")]
		public void make_immutable ();
		[Version (since = "0.9.2")]
		public HarfBuzz.Blob reference_blob ();
		[Version (since = "0.9.2")]
		public HarfBuzz.Blob reference_table (HarfBuzz.Tag tag);
		[Version (since = "0.9.7")]
		public void set_glyph_count (uint glyph_count);
		[Version (since = "0.9.2")]
		public void set_index (uint index);
		[Version (since = "0.9.2")]
		public void set_upem (uint upem);
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_feature_t", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "hb_gobject_feature_get_type ()")]
	[Compact]
	[GIR (name = "feature_t")]
	public class Feature {
		public uint end;
		public uint start;
		public HarfBuzz.Tag tag;
		public uint32 value;
		[CCode (cname = "hb_feature_to_string")]
		[Version (replacement = "feature_to_string", since = "0.9.5")]
		public void _string ([CCode (array_length_cname = "size", array_length_pos = 1.1, array_length_type = "guint")] out string[] buf);
		[Version (since = "0.9.5")]
		public static HarfBuzz.Bool from_string ([CCode (array_length_cname = "len", array_length_pos = 1.5)] uint8[] str, out unowned HarfBuzz.Feature feature);
		[Version (since = "0.9.5")]
		public void to_string ([CCode (array_length_cname = "size", array_length_pos = 1.1, array_length_type = "guint")] out string[] buf);
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_t", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "hb_gobject_font_get_type ()")]
	[Compact]
	[GIR (name = "font_t")]
	public class Font {
		[Version (since = "0.9.2")]
		public void add_glyph_origin_for_direction (HarfBuzz.Codepoint glyph, HarfBuzz.Direction direction, ref HarfBuzz.Position x, ref HarfBuzz.Position y);
		[Version (since = "4.4.0")]
		public void changed ();
		[Version (since = "0.9.2")]
		public static HarfBuzz.Font create (HarfBuzz.Face face);
		[Version (since = "0.9.2")]
		public HarfBuzz.Font create_sub_font ();
		public void draw_glyph (HarfBuzz.Codepoint glyph, HarfBuzz.DrawFuncs dfuncs, void* draw_data);
		[Version (since = "0.9.2")]
		public static HarfBuzz.Font get_empty ();
		[Version (since = "1.1.3")]
		public HarfBuzz.FontExtents get_extents_for_direction (HarfBuzz.Direction direction);
		[Version (since = "0.9.2")]
		public unowned HarfBuzz.Face get_face ();
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool get_glyph (HarfBuzz.Codepoint unicode, HarfBuzz.Codepoint variation_selector, out HarfBuzz.Codepoint glyph);
		[Version (since = "0.9.2")]
		public void get_glyph_advance_for_direction (HarfBuzz.Codepoint glyph, HarfBuzz.Direction direction, out HarfBuzz.Position x, out HarfBuzz.Position y);
		[Version (since = "1.8.6")]
		public void get_glyph_advances_for_direction (HarfBuzz.Direction direction, uint count, HarfBuzz.Codepoint first_glyph, uint glyph_stride, out HarfBuzz.Position first_advance, out uint advance_stride);
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool get_glyph_contour_point (HarfBuzz.Codepoint glyph, uint point_index, out HarfBuzz.Position x, out HarfBuzz.Position y);
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool get_glyph_contour_point_for_origin (HarfBuzz.Codepoint glyph, uint point_index, HarfBuzz.Direction direction, out HarfBuzz.Position x, out HarfBuzz.Position y);
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool get_glyph_extents (HarfBuzz.Codepoint glyph, out HarfBuzz.GlyphExtents extents);
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool get_glyph_extents_for_origin (HarfBuzz.Codepoint glyph, HarfBuzz.Direction direction, out HarfBuzz.GlyphExtents extents);
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool get_glyph_from_name ([CCode (array_length_cname = "len", array_length_pos = 1.5)] string[] name, out HarfBuzz.Codepoint glyph);
		[Version (since = "0.9.2")]
		public HarfBuzz.Position get_glyph_h_advance (HarfBuzz.Codepoint glyph);
		[Version (since = "1.8.6")]
		public void get_glyph_h_advances (uint count, HarfBuzz.Codepoint first_glyph, uint glyph_stride, out HarfBuzz.Position first_advance, uint advance_stride);
		[Version (since = "0.9.2")]
		public HarfBuzz.Position get_glyph_h_kerning (HarfBuzz.Codepoint left_glyph, HarfBuzz.Codepoint right_glyph);
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool get_glyph_h_origin (HarfBuzz.Codepoint glyph, out HarfBuzz.Position x, out HarfBuzz.Position y);
		[Version (since = "0.9.2")]
		public void get_glyph_kerning_for_direction (HarfBuzz.Codepoint first_glyph, HarfBuzz.Codepoint second_glyph, HarfBuzz.Direction direction, out HarfBuzz.Position x, out HarfBuzz.Position y);
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool get_glyph_name (HarfBuzz.Codepoint glyph, [CCode (array_length_cname = "size", array_length_pos = 2.1, array_length_type = "guint")] out string[] name);
		[Version (since = "0.9.2")]
		public void get_glyph_origin_for_direction (HarfBuzz.Codepoint glyph, HarfBuzz.Direction direction, out HarfBuzz.Position x, out HarfBuzz.Position y);
		[Version (since = "4.0.0")]
		public void get_glyph_shape (HarfBuzz.Codepoint glyph, HarfBuzz.DrawFuncs dfuncs, void* draw_data);
		[Version (since = "0.9.2")]
		public HarfBuzz.Position get_glyph_v_advance (HarfBuzz.Codepoint glyph);
		[Version (since = "1.8.6")]
		public void get_glyph_v_advances (uint count, HarfBuzz.Codepoint first_glyph, uint glyph_stride, out HarfBuzz.Position first_advance, out uint advance_stride);
		[Version (deprecated = true, deprecated_since = "2.0.0", since = "0.9.2")]
		public HarfBuzz.Position get_glyph_v_kerning (HarfBuzz.Codepoint top_glyph, HarfBuzz.Codepoint bottom_glyph);
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool get_glyph_v_origin (HarfBuzz.Codepoint glyph, out HarfBuzz.Position x, out HarfBuzz.Position y);
		[Version (since = "1.1.3")]
		public HarfBuzz.Bool get_h_extents (out HarfBuzz.FontExtents extents);
		[Version (since = "1.2.3")]
		public HarfBuzz.Bool get_nominal_glyph (HarfBuzz.Codepoint unicode, out HarfBuzz.Codepoint glyph);
		[Version (since = "2.6.3")]
		public uint get_nominal_glyphs (uint count, HarfBuzz.Codepoint first_unicode, uint unicode_stride, out HarfBuzz.Codepoint first_glyph, uint glyph_stride);
		[Version (since = "0.9.2")]
		public unowned HarfBuzz.Font get_parent ();
		[Version (since = "0.9.2")]
		public void get_ppem (out uint x_ppem, out uint y_ppem);
		[Version (since = "1.6.0")]
		public float get_ptem ();
		[Version (since = "0.9.2")]
		public void get_scale (out int x_scale, out int y_scale);
		[Version (since = "4.4.0")]
		public uint get_serial ();
		[Version (since = "3.3.0")]
		public float get_synthetic_slant ();
		[Version (since = "1.1.3")]
		public HarfBuzz.Bool get_v_extents (out HarfBuzz.FontExtents extents);
		[Version (since = "3.3.0")]
		public float get_var_coords_design (out uint length);
		[Version (since = "1.4.2")]
		public int get_var_coords_normalized (out uint length);
		public uint get_var_named_instance ();
		[Version (since = "1.2.3")]
		public HarfBuzz.Bool get_variation_glyph (HarfBuzz.Codepoint unicode, HarfBuzz.Codepoint variation_selector, out HarfBuzz.Codepoint glyph);
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool glyph_from_string ([CCode (array_length_cname = "len", array_length_pos = 1.5)] uint8[] s, out HarfBuzz.Codepoint glyph);
		[Version (since = "0.9.2")]
		public void glyph_to_string (HarfBuzz.Codepoint glyph, [CCode (array_length_cname = "size", array_length_pos = 2.1, array_length_type = "guint")] out string[] s);
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool is_immutable ();
		[Version (since = "0.9.2")]
		public void make_immutable ();
		public void paint_glyph (HarfBuzz.Codepoint glyph, HarfBuzz.PaintFuncs pfuncs, void* paint_data, uint palette_index, HarfBuzz.Color foreground);
		[Version (since = "1.4.3")]
		public void set_face (HarfBuzz.Face face);
		[Version (since = "0.9.2")]
		public void set_funcs (owned HarfBuzz.FontFuncs klass);
		[Version (since = "0.9.2")]
		public void set_funcs_data ([CCode (destroy_notify_pos = 1.1)] owned void* font_data);
		[Version (since = "1.0.5")]
		public void set_parent (HarfBuzz.Font parent);
		[Version (since = "0.9.2")]
		public void set_ppem (uint x_ppem, uint y_ppem);
		[Version (since = "1.6.0")]
		public void set_ptem (float ptem);
		[Version (since = "0.9.2")]
		public void set_scale (int x_scale, int y_scale);
		[Version (since = "3.3.0")]
		public void set_synthetic_slant (float slant);
		[Version (since = "1.4.2")]
		public void set_var_coords_design ([CCode (array_length_cname = "coords_length", array_length_pos = 1.1, array_length_type = "guint")] float[] coords);
		[Version (since = "1.4.2")]
		public void set_var_coords_normalized ([CCode (array_length_cname = "coords_length", array_length_pos = 1.1, array_length_type = "guint")] int[] coords);
		[Version (since = "2.6.0")]
		public void set_var_named_instance (uint instance_index);
		[Version (since = "1.4.2")]
		public void set_variations ([CCode (array_length_cname = "variations_length", array_length_pos = 1.1, array_length_type = "guint")] HarfBuzz.Variation[] variations);
		[Version (since = "0.9.2")]
		public void subtract_glyph_origin_for_direction (HarfBuzz.Codepoint glyph, HarfBuzz.Direction direction, ref HarfBuzz.Position x, ref HarfBuzz.Position y);
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_funcs_t", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "hb_gobject_font_funcs_get_type ()")]
	[Compact]
	[GIR (name = "font_funcs_t")]
	public class FontFuncs {
		[Version (since = "0.9.2")]
		public static HarfBuzz.FontFuncs create ();
		[Version (since = "0.9.2")]
		public static HarfBuzz.FontFuncs get_empty ();
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool is_immutable ();
		[Version (since = "0.9.2")]
		public void make_immutable ();
		public void set_draw_glyph_func (owned HarfBuzz.FontDrawGlyphFunc func);
		[Version (since = "1.1.2")]
		public void set_font_h_extents_func (owned HarfBuzz.FontGetFontHExtentsFunc func);
		[Version (since = "1.1.2")]
		public void set_font_v_extents_func (owned HarfBuzz.FontGetFontVExtentsFunc func);
		[Version (since = "0.9.2")]
		public void set_glyph_contour_point_func (owned HarfBuzz.FontGetGlyphContourFunc func);
		[Version (since = "0.9.2")]
		public void set_glyph_extents_func (owned HarfBuzz.FontGetGlyphExtentsFunc func);
		[Version (since = "0.9.2")]
		public void set_glyph_from_name_func (owned HarfBuzz.FontGetGlyphFromNameFunc func);
		[Version (deprecated = true, deprecated_since = "1.2.3", since = "0.9.2")]
		public void set_glyph_func (owned HarfBuzz.FontGetGlyphFunc func);
		[Version (since = "0.9.2")]
		public void set_glyph_h_advance_func (owned HarfBuzz.FontGetGlyphHAdvanceFunc func);
		[Version (since = "1.8.6")]
		public void set_glyph_h_advances_func (owned HarfBuzz.FontGetGlyphHAdvancesFunc func);
		[Version (since = "0.9.2")]
		public void set_glyph_h_kerning_func (owned HarfBuzz.FontGetGlyphHKerningFunc func);
		[Version (since = "0.9.2")]
		public void set_glyph_h_origin_func (owned HarfBuzz.FontGetGlyphHOriginFunc func);
		[Version (since = "0.9.2")]
		public void set_glyph_name_func (owned HarfBuzz.FontGetGlyphNameFunc func);
		[Version (deprecated = true, since = "4.0.0")]
		public void set_glyph_shape_func (owned HarfBuzz.font_get_glyph_shape_func_t func);
		[Version (since = "0.9.2")]
		public void set_glyph_v_advance_func (owned HarfBuzz.FontGetGlyphVAdvanceFunc func);
		[Version (since = "1.8.6")]
		public void set_glyph_v_advances_func (owned HarfBuzz.FontGetGlyphVAdvancesFunc func);
		[Version (deprecated = true, deprecated_since = "2.0.0", since = "0.9.2")]
		public void set_glyph_v_kerning_func (owned HarfBuzz.FontGetGlyphVKerningFunc func);
		[Version (since = "0.9.2")]
		public void set_glyph_v_origin_func (owned HarfBuzz.FontGetGlyphVOriginFunc func);
		[Version (since = "1.2.3")]
		public void set_nominal_glyph_func (owned HarfBuzz.FontGetNominalGlyphFunc func);
		[Version (since = "2.0.0")]
		public void set_nominal_glyphs_func (owned HarfBuzz.FontGetNominalGlyphsFunc func);
		public void set_paint_glyph_func (owned HarfBuzz.FontPaintGlyphFunc func);
		[Version (since = "1.2.3")]
		public void set_variation_glyph_func (owned HarfBuzz.FontGetVariantGlyphFunc func);
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_glyph_info_t", copy_function = "g_boxed_copy", free_function = "g_boxed_free", lower_case_cprefix = "hb_gobject_glyph_info_", type_id = "hb_gobject_glyph_info_get_type ()")]
	[Compact]
	[GIR (name = "glyph_info_t")]
	public class Glyph {
		public uint32 cluster;
		public HarfBuzz.Codepoint codepoint;
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_glyph_position_t", copy_function = "g_boxed_copy", free_function = "g_boxed_free", lower_case_cprefix = "hb_gobject_glyph_position_", type_id = "hb_gobject_glyph_position_get_type ()")]
	[Compact]
	[GIR (name = "glyph_position_t")]
	public class GlyphPosition {
		public HarfBuzz.Position x_advance;
		public HarfBuzz.Position x_offset;
		public HarfBuzz.Position y_advance;
		public HarfBuzz.Position y_offset;
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_language_t", has_type_id = false)]
	[Compact]
	[GIR (name = "language_t")]
	public class Language {
		[CCode (cname = "hb_language_to_string")]
		[Version (replacement = "language_to_string", since = "0.9.2")]
		public unowned string _string ();
		[Version (since = "0.9.2")]
		public static unowned HarfBuzz.Language from_string ([CCode (array_length_cname = "len", array_length_pos = 1.1)] uint8[] str);
		[Version (since = "0.9.2")]
		public static unowned HarfBuzz.Language get_default ();
		[Version (since = "5.0.0")]
		public HarfBuzz.Bool matches (HarfBuzz.Language specific);
		[Version (since = "0.9.2")]
		public unowned string to_string ();
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_map_t", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "hb_gobject_map_get_type ()")]
	[Compact]
	[GIR (name = "map_t")]
	public class Map {
		[Version (since = "1.7.7")]
		public HarfBuzz.Bool allocation_successful ();
		[Version (since = "1.7.7")]
		public void clear ();
		[Version (since = "4.4.0")]
		public HarfBuzz.Map copy ();
		[Version (since = "1.7.7")]
		public static HarfBuzz.Map create ();
		[Version (since = "1.7.7")]
		public void del (HarfBuzz.Codepoint key);
		[Version (since = "1.7.7")]
		public HarfBuzz.Codepoint @get (HarfBuzz.Codepoint key);
		[Version (since = "1.7.7")]
		public static HarfBuzz.Map get_empty ();
		[Version (since = "1.7.7")]
		public uint get_population ();
		[Version (since = "1.7.7")]
		public HarfBuzz.Bool has (HarfBuzz.Codepoint key);
		[Version (since = "4.4.0")]
		public uint hash ();
		[Version (since = "1.7.7")]
		public HarfBuzz.Bool is_empty ();
		[Version (since = "4.3.0")]
		public HarfBuzz.Bool is_equal (HarfBuzz.Map other);
		public void keys (HarfBuzz.Set keys);
		public HarfBuzz.Bool next (ref int idx, out HarfBuzz.Codepoint key, out HarfBuzz.Codepoint value);
		[Version (since = "1.7.7")]
		public void @set (HarfBuzz.Codepoint key, HarfBuzz.Codepoint value);
		public void update (HarfBuzz.Map other);
		public void values (HarfBuzz.Set values);
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_ot_math_glyph_part_t", copy_function = "g_boxed_copy", free_function = "g_boxed_free", lower_case_cprefix = "hb_gobject_ot_math_glyph_part_", type_id = "hb_gobject_ot_math_glyph_part_get_type ()")]
	[Compact]
	[GIR (name = "ot_math_glyph_part_t")]
	[Version (since = "1.3.3")]
	public class OtMathGlypthPart {
		public HarfBuzz.Position end_connector_length;
		public HarfBuzz.OtMathGlyphPartFlags flags;
		public HarfBuzz.Position full_advance;
		public HarfBuzz.Codepoint glyph;
		public HarfBuzz.Position start_connector_length;
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_ot_math_glyph_variant_t", copy_function = "g_boxed_copy", free_function = "g_boxed_free", lower_case_cprefix = "hb_gobject_ot_math_glyph_variant_", type_id = "hb_gobject_ot_math_glyph_variant_get_type ()")]
	[Compact]
	[GIR (name = "ot_math_glyph_variant_t")]
	[Version (since = "1.3.3")]
	public class OtMathGlypthVariant {
		public HarfBuzz.Position advance;
		public HarfBuzz.Codepoint glyph;
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_ot_var_axis_info_t", copy_function = "g_boxed_copy", free_function = "g_boxed_free", lower_case_cprefix = "hb_gobject_ot_var_axis_info_", type_id = "hb_gobject_ot_var_axis_info_get_type ()")]
	[Compact]
	[GIR (name = "ot_var_axis_info_t")]
	[Version (since = "2.2.0")]
	public class OtVarAxisInfo {
		public uint axis_index;
		public float default_value;
		public HarfBuzz.OtVarAxisFlags flags;
		public float max_value;
		public float min_value;
		public HarfBuzz.OtNameId name_id;
		public HarfBuzz.Tag tag;
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_paint_funcs_t", copy_function = "g_boxed_copy", free_function = "g_boxed_free", lower_case_cprefix = "hb_gobject_paint_funcs_", type_id = "hb_gobject_paint_funcs_get_type ()")]
	[Compact]
	[GIR (name = "paint_funcs_t")]
	public class PaintFuncs {
		[CCode (cname = "hb_paint_funcs_create")]
		public static HarfBuzz.PaintFuncs create ();
		[CCode (cname = "hb_paint_funcs_get_empty")]
		public static HarfBuzz.PaintFuncs get_empty ();
		[CCode (cname = "hb_paint_funcs_is_immutable")]
		public HarfBuzz.Bool is_immutable ();
		[CCode (cname = "hb_paint_funcs_make_immutable")]
		public void make_immutable ();
		[CCode (cname = "hb_paint_funcs_set_color_func")]
		public void set_color_func (owned HarfBuzz.PaintColorFunc func);
		[CCode (cname = "hb_paint_funcs_set_custom_palette_color_func")]
		public void set_custom_palette_color_func (owned HarfBuzz.PaintCustomPaletteColorFunc func);
		[CCode (cname = "hb_paint_funcs_set_image_func")]
		public void set_image_func (owned HarfBuzz.PaintImageFunc func);
		[CCode (cname = "hb_paint_funcs_set_linear_gradient_func")]
		public void set_linear_gradient_func (owned HarfBuzz.PaintLinearGradientFunc func);
		[CCode (cname = "hb_paint_funcs_set_pop_clip_func")]
		public void set_pop_clip_func (owned HarfBuzz.PaintPopClipFunc func);
		[CCode (cname = "hb_paint_funcs_set_pop_group_func")]
		public void set_pop_group_func (owned HarfBuzz.PaintPopGroupFunc func);
		[CCode (cname = "hb_paint_funcs_set_pop_transform_func")]
		public void set_pop_transform_func (owned HarfBuzz.PaintPopTransformFunc func);
		[CCode (cname = "hb_paint_funcs_set_push_clip_glyph_func")]
		public void set_push_clip_glyph_func (owned HarfBuzz.PaintPushClipGlyphFunc func);
		[CCode (cname = "hb_paint_funcs_set_push_clip_rectangle_func")]
		public void set_push_clip_rectangle_func (owned HarfBuzz.PaintPushRectangleFunc func);
		[CCode (cname = "hb_paint_funcs_set_push_group_func")]
		public void set_push_group_func (owned HarfBuzz.PaintPushGroupFunc func);
		[CCode (cname = "hb_paint_funcs_set_push_transform_func")]
		public void set_push_transform_func (owned HarfBuzz.PaintPushTransformFunc func);
		[CCode (cname = "hb_paint_funcs_set_radial_gradient_func")]
		public void set_radial_gradient_func (owned HarfBuzz.PaintRadialGradientFunc func);
		[CCode (cname = "hb_paint_funcs_set_sweep_gradient_func")]
		public void set_sweep_gradient_func (owned HarfBuzz.PaintSweepGradientFunc func);
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_segment_properties_t", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "hb_gobject_segment_properties_get_type ()")]
	[Compact]
	[GIR (name = "segment_properties_t")]
	public class SegmentProperties {
		public HarfBuzz.Direction direction;
		public weak HarfBuzz.Language language;
		public HarfBuzz.Script script;
		[Version (since = "0.9.7")]
		public HarfBuzz.Bool equal (HarfBuzz.SegmentProperties b);
		[Version (since = "0.9.7")]
		public uint hash ();
		[Version (since = "3.3.0")]
		public void overlay (HarfBuzz.SegmentProperties src);
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_set_t", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "hb_gobject_set_get_type ()")]
	[Compact]
	[GIR (name = "set_t")]
	public class Set {
		[Version (since = "0.9.2")]
		public void add (HarfBuzz.Codepoint codepoint);
		[Version (since = "0.9.7")]
		public void add_range (HarfBuzz.Codepoint first, HarfBuzz.Codepoint last);
		[Version (since = "4.1.0")]
		public void add_sorted_array ([CCode (array_length_cname = "num_codepoints", array_length_pos = 1.1, array_length_type = "guint")] HarfBuzz.Codepoint[] sorted_codepoints);
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool allocation_successful ();
		[Version (since = "0.9.2")]
		public void clear ();
		[Version (since = "2.8.2")]
		public HarfBuzz.Set copy ();
		[Version (since = "0.9.2")]
		public static HarfBuzz.Set create ();
		[Version (since = "0.9.2")]
		public void del (HarfBuzz.Codepoint codepoint);
		[Version (since = "0.9.7")]
		public void del_range (HarfBuzz.Codepoint first, HarfBuzz.Codepoint last);
		[Version (since = "0.9.2")]
		public static HarfBuzz.Set get_empty ();
		[Version (since = "0.9.7")]
		public HarfBuzz.Codepoint get_max ();
		[Version (since = "0.9.7")]
		public HarfBuzz.Codepoint get_min ();
		[Version (since = "0.9.7")]
		public uint get_population ();
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool has (HarfBuzz.Codepoint codepoint);
		[Version (since = "4.4.0")]
		public uint hash ();
		[Version (since = "0.9.2")]
		public void intersect (HarfBuzz.Set other);
		[Version (since = "3.0.0")]
		public void invert ();
		[Version (since = "0.9.7")]
		public HarfBuzz.Bool is_empty ();
		[Version (since = "0.9.7")]
		public HarfBuzz.Bool is_equal (HarfBuzz.Set other);
		public HarfBuzz.Bool is_inverted ();
		[Version (since = "1.8.1")]
		public HarfBuzz.Bool is_subset (HarfBuzz.Set larger_set);
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool next (ref HarfBuzz.Codepoint codepoint);
		[Version (since = "4.2.0")]
		public uint next_many (HarfBuzz.Codepoint codepoint, [CCode (array_length_cname = "size", array_length_pos = 2.1, array_length_type = "guint")] HarfBuzz.Codepoint[] @out);
		[Version (since = "0.9.7")]
		public HarfBuzz.Bool next_range (out HarfBuzz.Codepoint first, ref HarfBuzz.Codepoint last);
		[Version (since = "1.8.0")]
		public HarfBuzz.Bool previous (ref HarfBuzz.Codepoint codepoint);
		[Version (since = "1.8.0")]
		public HarfBuzz.Bool previous_range (ref HarfBuzz.Codepoint first, out HarfBuzz.Codepoint last);
		[Version (since = "0.9.2")]
		public void @set (HarfBuzz.Set other);
		[Version (since = "0.9.2")]
		public void subtract (HarfBuzz.Set other);
		[Version (since = "0.9.2")]
		public void symmetric_difference (HarfBuzz.Set other);
		[Version (since = "0.9.2")]
		public void union (HarfBuzz.Set other);
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_shape_plan_t", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "hb_gobject_shape_plan_get_type ()")]
	[Compact]
	[GIR (name = "shape_plan_t")]
	public class ShapePlan {
		[Version (since = "0.9.7")]
		public static HarfBuzz.ShapePlan create (HarfBuzz.Face face, HarfBuzz.SegmentProperties props, [CCode (array_length_cname = "num_user_features", array_length_pos = 3.5, array_length_type = "guint")] HarfBuzz.Feature[] user_features, [CCode (array_length = false, array_null_terminated = true)] string[] shaper_list);
		[Version (since = "1.4.0")]
		public static HarfBuzz.ShapePlan create2 (HarfBuzz.Face face, HarfBuzz.SegmentProperties props, [CCode (array_length_cname = "num_user_features", array_length_pos = 3.5, array_length_type = "guint")] HarfBuzz.Feature[] user_features, [CCode (array_length_cname = "num_coords", array_length_pos = 4.5, array_length_type = "guint")] int[] coords, [CCode (array_length = false, array_null_terminated = true)] string[] shaper_list);
		[Version (since = "0.9.7")]
		public static HarfBuzz.ShapePlan create_cached (HarfBuzz.Face face, HarfBuzz.SegmentProperties props, [CCode (array_length_cname = "num_user_features", array_length_pos = 3.5, array_length_type = "guint")] HarfBuzz.Feature[] user_features, [CCode (array_length = false, array_null_terminated = true)] string[] shaper_list);
		[Version (since = "1.4.0")]
		public static HarfBuzz.ShapePlan create_cached2 (HarfBuzz.Face face, HarfBuzz.SegmentProperties props, [CCode (array_length_cname = "num_user_features", array_length_pos = 3.5, array_length_type = "guint")] HarfBuzz.Feature[] user_features, [CCode (array_length_cname = "num_coords", array_length_pos = 4.5, array_length_type = "guint")] int[] coords, [CCode (array_length = false, array_null_terminated = true)] string[] shaper_list);
		[Version (since = "0.9.7")]
		public HarfBuzz.Bool execute (HarfBuzz.Font font, HarfBuzz.Buffer buffer, [CCode (array_length_cname = "num_features", array_length_pos = 3.1, array_length_type = "guint")] HarfBuzz.Feature[] features);
		[Version (since = "0.9.7")]
		public static HarfBuzz.ShapePlan get_empty ();
		[Version (since = "0.9.7")]
		public unowned string get_shaper ();
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_unicode_funcs_t", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "hb_gobject_unicode_funcs_get_type ()")]
	[Compact]
	[GIR (name = "unicode_funcs_t")]
	public class UnicodeFuncs {
		[CCode (cname = "hb_unicode_combining_class")]
		[Version (since = "0.9.2")]
		public HarfBuzz.UnicodeCombiningClass combining_class (HarfBuzz.Codepoint unicode);
		[CCode (cname = "hb_unicode_compose")]
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool compose (HarfBuzz.Codepoint a, HarfBuzz.Codepoint b, out HarfBuzz.Codepoint ab);
		[Version (since = "0.9.2")]
		public static HarfBuzz.UnicodeFuncs create (HarfBuzz.UnicodeFuncs? parent);
		[CCode (cname = "hb_unicode_decompose")]
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool decompose (HarfBuzz.Codepoint ab, out HarfBuzz.Codepoint a, out HarfBuzz.Codepoint b);
		[CCode (cname = "hb_unicode_decompose_compatibility")]
		[Version (deprecated = true, deprecated_since = "2.0.0", since = "0.9.2")]
		public uint decompose_compatibility (HarfBuzz.Codepoint u, out HarfBuzz.Codepoint decomposed);
		[CCode (cname = "hb_unicode_eastasian_width")]
		[Version (deprecated = true, deprecated_since = "2.0.0", since = "0.9.2")]
		public uint eastasian_width (HarfBuzz.Codepoint unicode);
		[CCode (cname = "hb_unicode_general_category")]
		[Version (since = "0.9.2")]
		public HarfBuzz.UnicodeGeneralCategory general_category (HarfBuzz.Codepoint unicode);
		[Version (since = "0.9.2")]
		public static unowned HarfBuzz.UnicodeFuncs get_default ();
		[Version (since = "0.9.2")]
		public static HarfBuzz.UnicodeFuncs get_empty ();
		[Version (since = "0.9.2")]
		public HarfBuzz.UnicodeFuncs get_parent ();
		[Version (since = "0.9.2")]
		public HarfBuzz.Bool is_immutable ();
		[Version (since = "0.9.2")]
		public void make_immutable ();
		[CCode (cname = "hb_unicode_mirroring")]
		[Version (since = "0.9.2")]
		public HarfBuzz.Codepoint mirroring (HarfBuzz.Codepoint unicode);
		[CCode (cname = "hb_unicode_script")]
		[Version (since = "0.9.2")]
		public HarfBuzz.Script script (HarfBuzz.Codepoint unicode);
		[Version (since = "0.9.2")]
		public void set_combining_class_func (owned HarfBuzz.UnicodeCombiningClassFunc func);
		[Version (since = "0.9.2")]
		public void set_compose_func (owned HarfBuzz.UnicodeComposeFunc func);
		[Version (deprecated = true, deprecated_since = "2.0.0", since = "0.9.2")]
		public void set_decompose_compatibility_func (owned HarfBuzz.UnicodedeComposeCompatibilityFunc func);
		[Version (since = "0.9.2")]
		public void set_decompose_func (owned HarfBuzz.UnicodeDecomposeFunc func);
		[Version (deprecated = true, deprecated_since = "2.0.0", since = "0.9.2")]
		public void set_eastasian_width_func (owned HarfBuzz.UnicodeEastasianWidthFunc func);
		[Version (since = "0.9.2")]
		public void set_general_category_func (owned HarfBuzz.UnicodeGeneralCategoryFunc func);
		[Version (since = "0.9.2")]
		public void set_mirroring_func (owned HarfBuzz.UnicodeMirroringFunc func);
		[Version (since = "0.9.2")]
		public void set_script_func (owned HarfBuzz.UnicodeScriptFunc func);
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_user_data_key_t", copy_function = "g_boxed_copy", free_function = "g_boxed_free", lower_case_cprefix = "hb_gobject_user_data_key_", type_id = "hb_gobject_user_data_key_get_type ()")]
	[Compact]
	[GIR (name = "user_data_key_t")]
	public class UserDataKey {
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_bool_t")]
	[GIR (name = "bool_t")]
	[SimpleType]
	public struct Bool : int {
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_codepoint_t")]
	[GIR (name = "codepoint_t")]
	[SimpleType]
	public struct Codepoint : uint32 {
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_color_t")]
	[GIR (name = "color_t")]
	[SimpleType]
	public struct Color : uint32 {
		[Version (since = "2.1.0")]
		public uint8 get_alpha ();
		[Version (since = "2.1.0")]
		public uint8 get_blue ();
		[Version (since = "2.1.0")]
		public uint8 get_green ();
		[Version (since = "2.1.0")]
		public uint8 get_red ();
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_extents_t", has_type_id = false)]
	[GIR (name = "font_extents_t")]
	public struct FontExtents {
		public HarfBuzz.Position ascender;
		public HarfBuzz.Position descender;
		public HarfBuzz.Position line_gap;
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_glyph_extents_t", has_type_id = false)]
	[GIR (name = "glyph_extents_t")]
	public struct GlyphExtents {
		public HarfBuzz.Position x_bearing;
		public HarfBuzz.Position y_bearing;
		public HarfBuzz.Position width;
		public HarfBuzz.Position height;
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_mask_t")]
	[GIR (name = "mask_t")]
	[SimpleType]
	public struct Mask : uint32 {
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_ot_color_layer_t", has_type_id = false)]
	[GIR (name = "ot_color_layer_t")]
	[Version (since = "2.1.0")]
	public struct OtColorLayer {
		public HarfBuzz.Codepoint glyph;
		public uint color_index;
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_ot_name_entry_t", has_type_id = false)]
	[GIR (name = "ot_name_entry_t")]
	[Version (since = "2.1.0")]
	public struct OtNameEntry {
		public HarfBuzz.OtNameId name_id;
		public weak HarfBuzz.Language language;
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_ot_name_id_t")]
	[GIR (name = "ot_name_id_t")]
	[SimpleType]
	public struct OtNameId : uint {
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_ot_var_axis_t", has_type_id = false)]
	[GIR (name = "ot_var_axis_t")]
	[Version (deprecated = true, deprecated_since = "2.2.0", since = "1.4.2")]
	public struct OtVarAxis {
		public HarfBuzz.Tag tag;
		public HarfBuzz.OtNameId name_id;
		public float min_value;
		public float default_value;
		public float max_value;
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_position_t")]
	[GIR (name = "position_t")]
	[SimpleType]
	public struct Position : int32 {
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_tag_t")]
	[GIR (name = "tag_t")]
	[SimpleType]
	public struct Tag : uint32 {
		[Version (since = "0.9.2")]
		public static HarfBuzz.Tag from_string ([CCode (array_length_cname = "len", array_length_pos = 1.1)] uint8[] str);
		[Version (since = "0.9.5")]
		public void to_string ([CCode (array_length = false)] out unowned uint8 buf[4]);
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_variation_t", has_type_id = false)]
	[GIR (name = "variation_t")]
	[Version (since = "1.4.2")]
	public struct Variation {
		public HarfBuzz.Tag tag;
		public float value;
		[CCode (cname = "hb_variation_to_string")]
		[Version (replacement = "variation_to_string", since = "1.4.2")]
		public void _string ([CCode (array_length_cname = "size", array_length_pos = 1.1, array_length_type = "guint")] string[] buf);
		public static HarfBuzz.Bool from_string ([CCode (array_length_cname = "len", array_length_pos = 1.5)] uint8[] str, out HarfBuzz.Variation variation);
		public void to_string ([CCode (array_length_cname = "size", array_length_pos = 1.1, array_length_type = "guint")] string[] buf);
	}
	[CCode (cheader_filename = "hb-gobject.h", has_type_id = false)]
	public struct aat_layout_feature_selector_info_t {
		public HarfBuzz.OtNameId name_id;
		public HarfBuzz.AatLayoutFeatureSelector enable;
		public HarfBuzz.AatLayoutFeatureSelector disable;
	}
	[CCode (cheader_filename = "hb-gobject.h", has_type_id = false)]
	[Version (since = "3.4.0")]
	public struct ot_math_kern_entry_t {
		public HarfBuzz.Position max_correction_height;
		public HarfBuzz.Position kern_value;
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_var_int_t")]
	[GIR (name = "var_int_t")]
	public struct var_int_t {
		public uint32 u32;
		public int32 i32;
		[CCode (array_length = false)]
		public weak uint16 u16[2];
		[CCode (array_length = false)]
		public weak int16 i16[2];
		[CCode (array_length = false)]
		public weak uint8 u8[4];
		[CCode (array_length = false)]
		public weak int8 i8[4];
	}
	[CCode (cheader_filename = "hb-gobject.h")]
	public struct var_num_t {
		public float f;
		public uint32 u32;
		public int32 i32;
		[CCode (array_length = false)]
		public weak uint16 u16[2];
		[CCode (array_length = false)]
		public weak int16 i16[2];
		[CCode (array_length = false)]
		public weak uint8 u8[4];
		[CCode (array_length = false)]
		public weak int8 i8[4];
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_aat_layout_feature_selector_t", cprefix = "HB_AAT_LAYOUT_FEATURE_SELECTOR_", type_id = "hb_gobject_aat_layout_feature_selector_get_type ()")]
	[GIR (name = "aat_layout_feature_selector_t")]
	[Version (since = "2.2.0")]
	public enum AatLayoutFeatureSelector {
		INVALID,
		ALL_TYPE_FEATURES_ON,
		ALL_TYPE_FEATURES_OFF,
		REQUIRED_LIGATURES_ON,
		REQUIRED_LIGATURES_OFF,
		COMMON_LIGATURES_ON,
		COMMON_LIGATURES_OFF,
		RARE_LIGATURES_ON,
		RARE_LIGATURES_OFF,
		LOGOS_ON,
		LOGOS_OFF,
		REBUS_PICTURES_ON,
		REBUS_PICTURES_OFF,
		DIPHTHONG_LIGATURES_ON,
		DIPHTHONG_LIGATURES_OFF,
		SQUARED_LIGATURES_ON,
		SQUARED_LIGATURES_OFF,
		ABBREV_SQUARED_LIGATURES_ON,
		ABBREV_SQUARED_LIGATURES_OFF,
		SYMBOL_LIGATURES_ON,
		SYMBOL_LIGATURES_OFF,
		CONTEXTUAL_LIGATURES_ON,
		CONTEXTUAL_LIGATURES_OFF,
		HISTORICAL_LIGATURES_ON,
		HISTORICAL_LIGATURES_OFF,
		UNCONNECTED,
		PARTIALLY_CONNECTED,
		CURSIVE,
		UPPER_AND_LOWER_CASE,
		ALL_CAPS,
		ALL_LOWER_CASE,
		SMALL_CAPS,
		INITIAL_CAPS,
		INITIAL_CAPS_AND_SMALL_CAPS,
		SUBSTITUTE_VERTICAL_FORMS_ON,
		SUBSTITUTE_VERTICAL_FORMS_OFF,
		LINGUISTIC_REARRANGEMENT_ON,
		LINGUISTIC_REARRANGEMENT_OFF,
		MONOSPACED_NUMBERS,
		PROPORTIONAL_NUMBERS,
		THIRD_WIDTH_NUMBERS,
		QUARTER_WIDTH_NUMBERS,
		WORD_INITIAL_SWASHES_ON,
		WORD_INITIAL_SWASHES_OFF,
		WORD_FINAL_SWASHES_ON,
		WORD_FINAL_SWASHES_OFF,
		LINE_INITIAL_SWASHES_ON,
		LINE_INITIAL_SWASHES_OFF,
		LINE_FINAL_SWASHES_ON,
		LINE_FINAL_SWASHES_OFF,
		NON_FINAL_SWASHES_ON,
		NON_FINAL_SWASHES_OFF,
		SHOW_DIACRITICS,
		HIDE_DIACRITICS,
		DECOMPOSE_DIACRITICS,
		NORMAL_POSITION,
		SUPERIORS,
		INFERIORS,
		ORDINALS,
		SCIENTIFIC_INFERIORS,
		NO_FRACTIONS,
		VERTICAL_FRACTIONS,
		DIAGONAL_FRACTIONS,
		PREVENT_OVERLAP_ON,
		PREVENT_OVERLAP_OFF,
		HYPHENS_TO_EM_DASH_ON,
		HYPHENS_TO_EM_DASH_OFF,
		HYPHEN_TO_EN_DASH_ON,
		HYPHEN_TO_EN_DASH_OFF,
		SLASHED_ZERO_ON,
		SLASHED_ZERO_OFF,
		FORM_INTERROBANG_ON,
		FORM_INTERROBANG_OFF,
		SMART_QUOTES_ON,
		SMART_QUOTES_OFF,
		PERIODS_TO_ELLIPSIS_ON,
		PERIODS_TO_ELLIPSIS_OFF,
		HYPHEN_TO_MINUS_ON,
		HYPHEN_TO_MINUS_OFF,
		ASTERISK_TO_MULTIPLY_ON,
		ASTERISK_TO_MULTIPLY_OFF,
		SLASH_TO_DIVIDE_ON,
		SLASH_TO_DIVIDE_OFF,
		INEQUALITY_LIGATURES_ON,
		INEQUALITY_LIGATURES_OFF,
		EXPONENTS_ON,
		EXPONENTS_OFF,
		MATHEMATICAL_GREEK_ON,
		MATHEMATICAL_GREEK_OFF,
		NO_ORNAMENTS,
		DINGBATS,
		PI_CHARACTERS,
		FLEURONS,
		DECORATIVE_BORDERS,
		INTERNATIONAL_SYMBOLS,
		MATH_SYMBOLS,
		NO_ALTERNATES,
		DESIGN_LEVEL1,
		DESIGN_LEVEL2,
		DESIGN_LEVEL3,
		DESIGN_LEVEL4,
		DESIGN_LEVEL5,
		NO_STYLE_OPTIONS,
		DISPLAY_TEXT,
		ENGRAVED_TEXT,
		ILLUMINATED_CAPS,
		TITLING_CAPS,
		TALL_CAPS,
		TRADITIONAL_CHARACTERS,
		SIMPLIFIED_CHARACTERS,
		JIS1978_CHARACTERS,
		JIS1983_CHARACTERS,
		JIS1990_CHARACTERS,
		TRADITIONAL_ALT_ONE,
		TRADITIONAL_ALT_TWO,
		TRADITIONAL_ALT_THREE,
		TRADITIONAL_ALT_FOUR,
		TRADITIONAL_ALT_FIVE,
		EXPERT_CHARACTERS,
		JIS2004_CHARACTERS,
		HOJO_CHARACTERS,
		NLCCHARACTERS,
		TRADITIONAL_NAMES_CHARACTERS,
		LOWER_CASE_NUMBERS,
		UPPER_CASE_NUMBERS,
		PROPORTIONAL_TEXT,
		MONOSPACED_TEXT,
		HALF_WIDTH_TEXT,
		THIRD_WIDTH_TEXT,
		QUARTER_WIDTH_TEXT,
		ALT_PROPORTIONAL_TEXT,
		ALT_HALF_WIDTH_TEXT,
		NO_TRANSLITERATION,
		HANJA_TO_HANGUL,
		HIRAGANA_TO_KATAKANA,
		KATAKANA_TO_HIRAGANA,
		KANA_TO_ROMANIZATION,
		ROMANIZATION_TO_HIRAGANA,
		ROMANIZATION_TO_KATAKANA,
		HANJA_TO_HANGUL_ALT_ONE,
		HANJA_TO_HANGUL_ALT_TWO,
		HANJA_TO_HANGUL_ALT_THREE,
		NO_ANNOTATION,
		BOX_ANNOTATION,
		ROUNDED_BOX_ANNOTATION,
		CIRCLE_ANNOTATION,
		INVERTED_CIRCLE_ANNOTATION,
		PARENTHESIS_ANNOTATION,
		PERIOD_ANNOTATION,
		ROMAN_NUMERAL_ANNOTATION,
		DIAMOND_ANNOTATION,
		INVERTED_BOX_ANNOTATION,
		INVERTED_ROUNDED_BOX_ANNOTATION,
		FULL_WIDTH_KANA,
		PROPORTIONAL_KANA,
		FULL_WIDTH_IDEOGRAPHS,
		PROPORTIONAL_IDEOGRAPHS,
		HALF_WIDTH_IDEOGRAPHS,
		CANONICAL_COMPOSITION_ON,
		CANONICAL_COMPOSITION_OFF,
		COMPATIBILITY_COMPOSITION_ON,
		COMPATIBILITY_COMPOSITION_OFF,
		TRANSCODING_COMPOSITION_ON,
		TRANSCODING_COMPOSITION_OFF,
		NO_RUBY_KANA,
		RUBY_KANA,
		RUBY_KANA_ON,
		RUBY_KANA_OFF,
		NO_CJK_SYMBOL_ALTERNATIVES,
		CJK_SYMBOL_ALT_ONE,
		CJK_SYMBOL_ALT_TWO,
		CJK_SYMBOL_ALT_THREE,
		CJK_SYMBOL_ALT_FOUR,
		CJK_SYMBOL_ALT_FIVE,
		NO_IDEOGRAPHIC_ALTERNATIVES,
		IDEOGRAPHIC_ALT_ONE,
		IDEOGRAPHIC_ALT_TWO,
		IDEOGRAPHIC_ALT_THREE,
		IDEOGRAPHIC_ALT_FOUR,
		IDEOGRAPHIC_ALT_FIVE,
		CJK_VERTICAL_ROMAN_CENTERED,
		CJK_VERTICAL_ROMAN_HBASELINE,
		NO_CJK_ITALIC_ROMAN,
		CJK_ITALIC_ROMAN,
		CJK_ITALIC_ROMAN_ON,
		CJK_ITALIC_ROMAN_OFF,
		CASE_SENSITIVE_LAYOUT_ON,
		CASE_SENSITIVE_LAYOUT_OFF,
		CASE_SENSITIVE_SPACING_ON,
		CASE_SENSITIVE_SPACING_OFF,
		ALTERNATE_HORIZ_KANA_ON,
		ALTERNATE_HORIZ_KANA_OFF,
		ALTERNATE_VERT_KANA_ON,
		ALTERNATE_VERT_KANA_OFF,
		NO_STYLISTIC_ALTERNATES,
		STYLISTIC_ALT_ONE_ON,
		STYLISTIC_ALT_ONE_OFF,
		STYLISTIC_ALT_TWO_ON,
		STYLISTIC_ALT_TWO_OFF,
		STYLISTIC_ALT_THREE_ON,
		STYLISTIC_ALT_THREE_OFF,
		STYLISTIC_ALT_FOUR_ON,
		STYLISTIC_ALT_FOUR_OFF,
		STYLISTIC_ALT_FIVE_ON,
		STYLISTIC_ALT_FIVE_OFF,
		STYLISTIC_ALT_SIX_ON,
		STYLISTIC_ALT_SIX_OFF,
		STYLISTIC_ALT_SEVEN_ON,
		STYLISTIC_ALT_SEVEN_OFF,
		STYLISTIC_ALT_EIGHT_ON,
		STYLISTIC_ALT_EIGHT_OFF,
		STYLISTIC_ALT_NINE_ON,
		STYLISTIC_ALT_NINE_OFF,
		STYLISTIC_ALT_TEN_ON,
		STYLISTIC_ALT_TEN_OFF,
		STYLISTIC_ALT_ELEVEN_ON,
		STYLISTIC_ALT_ELEVEN_OFF,
		STYLISTIC_ALT_TWELVE_ON,
		STYLISTIC_ALT_TWELVE_OFF,
		STYLISTIC_ALT_THIRTEEN_ON,
		STYLISTIC_ALT_THIRTEEN_OFF,
		STYLISTIC_ALT_FOURTEEN_ON,
		STYLISTIC_ALT_FOURTEEN_OFF,
		STYLISTIC_ALT_FIFTEEN_ON,
		STYLISTIC_ALT_FIFTEEN_OFF,
		STYLISTIC_ALT_SIXTEEN_ON,
		STYLISTIC_ALT_SIXTEEN_OFF,
		STYLISTIC_ALT_SEVENTEEN_ON,
		STYLISTIC_ALT_SEVENTEEN_OFF,
		STYLISTIC_ALT_EIGHTEEN_ON,
		STYLISTIC_ALT_EIGHTEEN_OFF,
		STYLISTIC_ALT_NINETEEN_ON,
		STYLISTIC_ALT_NINETEEN_OFF,
		STYLISTIC_ALT_TWENTY_ON,
		STYLISTIC_ALT_TWENTY_OFF,
		CONTEXTUAL_ALTERNATES_ON,
		CONTEXTUAL_ALTERNATES_OFF,
		SWASH_ALTERNATES_ON,
		SWASH_ALTERNATES_OFF,
		CONTEXTUAL_SWASH_ALTERNATES_ON,
		CONTEXTUAL_SWASH_ALTERNATES_OFF,
		DEFAULT_LOWER_CASE,
		LOWER_CASE_SMALL_CAPS,
		LOWER_CASE_PETITE_CAPS,
		DEFAULT_UPPER_CASE,
		UPPER_CASE_SMALL_CAPS,
		UPPER_CASE_PETITE_CAPS,
		HALF_WIDTH_CJK_ROMAN,
		PROPORTIONAL_CJK_ROMAN,
		DEFAULT_CJK_ROMAN,
		FULL_WIDTH_CJK_ROMAN
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_aat_layout_feature_type_t", cprefix = "HB_AAT_LAYOUT_FEATURE_TYPE_", type_id = "hb_gobject_aat_layout_feature_type_get_type ()")]
	[GIR (name = "aat_layout_feature_type_t")]
	[Version (since = "2.2.0")]
	public enum AatLayoutFeatureType {
		INVALID,
		ALL_TYPOGRAPHIC,
		LIGATURES,
		CURISVE_CONNECTION,
		LETTER_CASE,
		VERTICAL_SUBSTITUTION,
		LINGUISTIC_REARRANGEMENT,
		NUMBER_SPACING,
		SMART_SWASH_TYPE,
		DIACRITICS_TYPE,
		VERTICAL_POSITION,
		FRACTIONS,
		OVERLAPPING_CHARACTERS_TYPE,
		TYPOGRAPHIC_EXTRAS,
		MATHEMATICAL_EXTRAS,
		ORNAMENT_SETS_TYPE,
		CHARACTER_ALTERNATIVES,
		DESIGN_COMPLEXITY_TYPE,
		STYLE_OPTIONS,
		CHARACTER_SHAPE,
		NUMBER_CASE,
		TEXT_SPACING,
		TRANSLITERATION,
		ANNOTATION_TYPE,
		KANA_SPACING_TYPE,
		IDEOGRAPHIC_SPACING_TYPE,
		UNICODE_DECOMPOSITION_TYPE,
		RUBY_KANA,
		CJK_SYMBOL_ALTERNATIVES_TYPE,
		IDEOGRAPHIC_ALTERNATIVES_TYPE,
		CJK_VERTICAL_ROMAN_PLACEMENT_TYPE,
		ITALIC_CJK_ROMAN,
		CASE_SENSITIVE_LAYOUT,
		ALTERNATE_KANA,
		STYLISTIC_ALTERNATIVES,
		CONTEXTUAL_ALTERNATIVES,
		LOWER_CASE,
		UPPER_CASE,
		LANGUAGE_TAG_TYPE,
		CJK_ROMAN_SPACING_TYPE;
		public static HarfBuzz.OtNameId get_name_id (HarfBuzz.Face face, HarfBuzz.AatLayoutFeatureType feature_type);
		public static uint get_selector_infos (HarfBuzz.Face face, HarfBuzz.AatLayoutFeatureType feature_type, uint start_offset, [CCode (array_length_cname = "selector_count", array_length_pos = 3.5, array_length_type = "guint")] out unowned HarfBuzz.aat_layout_feature_selector_info_t[] selectors, out uint default_index);
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_buffer_cluster_level_t", cprefix = "HB_BUFFER_CLUSTER_LEVEL_", type_id = "hb_gobject_buffer_cluster_level_get_type ()")]
	[GIR (name = "buffer_cluster_level_t")]
	[Version (since = "0.9.42")]
	public enum BufferClusterLevel {
		MONOTONE_GRAPHEMES,
		MONOTONE_CHARACTERS,
		CHARACTERS,
		DEFAULT
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_buffer_content_type_t", cprefix = "HB_BUFFER_CONTENT_TYPE_", type_id = "hb_gobject_buffer_content_type_get_type ()")]
	[GIR (name = "buffer_content_type_t")]
	public enum BufferContentType {
		INVALID,
		UNICODE,
		GLYPHS
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_buffer_diff_flags_t", cprefix = "HB_BUFFER_DIFF_FLAG_", type_id = "hb_gobject_buffer_diff_flags_get_type ()")]
	[Flags]
	[GIR (name = "buffer_diff_flags_t")]
	[Version (since = "1.5.0")]
	public enum BufferDiffFlags {
		EQUAL,
		CONTENT_TYPE_MISMATCH,
		LENGTH_MISMATCH,
		NOTDEF_PRESENT,
		DOTTED_CIRCLE_PRESENT,
		CODEPOINT_MISMATCH,
		CLUSTER_MISMATCH,
		GLYPH_FLAGS_MISMATCH,
		POSITION_MISMATCH
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_buffer_flags_t", cprefix = "HB_BUFFER_FLAG_", type_id = "hb_gobject_buffer_flags_get_type ()")]
	[Flags]
	[GIR (name = "buffer_flags_t")]
	[Version (since = "0.9.20")]
	public enum BufferFlags {
		DEFAULT,
		BOT,
		EOT,
		PRESERVE_DEFAULT_IGNORABLES,
		REMOVE_DEFAULT_IGNORABLES,
		DO_NOT_INSERT_DOTTED_CIRCLE,
		VERIFY,
		PRODUCE_UNSAFE_TO_CONCAT,
		PRODUCE_SAFE_TO_INSERT_TATWEEL,
		DEFINED
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_buffer_serialize_flags_t", cprefix = "HB_BUFFER_SERIALIZE_FLAG_", type_id = "hb_gobject_buffer_serialize_flags_get_type ()")]
	[Flags]
	[GIR (name = "buffer_serialize_flags_t")]
	[Version (since = "0.9.20")]
	public enum BufferSerializeFlags {
		DEFAULT,
		NO_CLUSTERS,
		NO_POSITIONS,
		NO_GLYPH_NAMES,
		GLYPH_EXTENTS,
		GLYPH_FLAGS,
		NO_ADVANCES,
		DEFINED
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_buffer_serialize_format_t", cprefix = "HB_BUFFER_SERIALIZE_FORMAT_", type_id = "hb_gobject_buffer_serialize_format_get_type ()")]
	[GIR (name = "buffer_serialize_format_t")]
	[Version (since = "0.9.2")]
	public enum BufferSerializeFormat {
		TEXT,
		JSON,
		INVALID
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_direction_t", cprefix = "HB_DIRECTION_", type_id = "hb_gobject_direction_get_type ()")]
	[GIR (name = "direction_t")]
	public enum Direction {
		INVALID,
		LTR,
		RTL,
		TTB,
		BTT;
		[Version (since = "0.9.2")]
		public static HarfBuzz.Direction from_string ([CCode (array_length_cname = "len", array_length_pos = 1.1)] uint8[] str);
		[Version (since = "0.9.2")]
		public unowned string to_string ();
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_glyph_flags_t", cprefix = "HB_GLYPH_FLAG_", type_id = "hb_gobject_glyph_flags_get_type ()")]
	[Flags]
	[GIR (name = "glyph_flags_t")]
	[Version (since = "1.5.0")]
	public enum GlyphFlags {
		UNSAFE_TO_BREAK,
		UNSAFE_TO_CONCAT,
		SAFE_TO_INSERT_TATWEEL,
		DEFINED
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_memory_mode_t", cprefix = "HB_MEMORY_MODE_", type_id = "hb_gobject_memory_mode_get_type ()")]
	[GIR (name = "memory_mode_t")]
	public enum MemoryMode {
		DUPLICATE,
		READONLY,
		WRITABLE,
		READONLY_MAY_MAKE_WRITABLE
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_ot_color_palette_flags_t", cprefix = "HB_OT_COLOR_PALETTE_FLAG_", type_id = "hb_gobject_ot_color_palette_flags_get_type ()")]
	[Flags]
	[GIR (name = "ot_color_palette_flags_t")]
	[Version (since = "2.1.0")]
	public enum OtColorPalette {
		DEFAULT,
		USABLE_WITH_LIGHT_BACKGROUND,
		USABLE_WITH_DARK_BACKGROUND;
		public static HarfBuzz.OtNameId color_get_name_id (HarfBuzz.Face face, uint color_index);
		public static uint get_colors (HarfBuzz.Face face, uint palette_index, uint start_offset, [CCode (array_length_cname = "color_count", array_length_pos = 3.5, array_length_type = "guint")] out HarfBuzz.Color[]? colors);
		public static uint get_count (HarfBuzz.Face face);
		public static HarfBuzz.OtColorPalette get_flags (HarfBuzz.Face face, uint palette_index);
		public static HarfBuzz.OtNameId get_name_id (HarfBuzz.Face face, uint palette_index);
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_ot_layout_baseline_tag_t", cprefix = "HB_OT_LAYOUT_BASELINE_TAG_", type_id = "hb_gobject_ot_layout_baseline_tag_get_type ()")]
	[GIR (name = "ot_layout_baseline_tag_t")]
	[Version (since = "2.6.0")]
	public enum OtLayoutBaselineTag {
		ROMAN,
		HANGING,
		IDEO_FACE_BOTTOM_OR_LEFT,
		IDEO_FACE_TOP_OR_RIGHT,
		IDEO_FACE_CENTRAL,
		IDEO_EMBOX_BOTTOM_OR_LEFT,
		IDEO_EMBOX_TOP_OR_RIGHT,
		IDEO_EMBOX_CENTRAL,
		MATH
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_ot_layout_glyph_class_t", cprefix = "HB_OT_LAYOUT_GLYPH_CLASS_", type_id = "hb_gobject_ot_layout_glyph_class_get_type ()")]
	[GIR (name = "ot_layout_glyph_class_t")]
	public enum OtLayoutGlyphClass {
		UNCLASSIFIED,
		BASE_GLYPH,
		LIGATURE,
		MARK,
		COMPONENT
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_ot_math_constant_t", cprefix = "HB_OT_MATH_CONSTANT_", type_id = "hb_gobject_ot_math_constant_get_type ()")]
	[GIR (name = "ot_math_constant_t")]
	[Version (since = "1.3.3")]
	public enum OtMathContant {
		SCRIPT_PERCENT_SCALE_DOWN,
		SCRIPT_SCRIPT_PERCENT_SCALE_DOWN,
		DELIMITED_SUB_FORMULA_MIN_HEIGHT,
		DISPLAY_OPERATOR_MIN_HEIGHT,
		MATH_LEADING,
		AXIS_HEIGHT,
		ACCENT_BASE_HEIGHT,
		FLATTENED_ACCENT_BASE_HEIGHT,
		SUBSCRIPT_SHIFT_DOWN,
		SUBSCRIPT_TOP_MAX,
		SUBSCRIPT_BASELINE_DROP_MIN,
		SUPERSCRIPT_SHIFT_UP,
		SUPERSCRIPT_SHIFT_UP_CRAMPED,
		SUPERSCRIPT_BOTTOM_MIN,
		SUPERSCRIPT_BASELINE_DROP_MAX,
		SUB_SUPERSCRIPT_GAP_MIN,
		SUPERSCRIPT_BOTTOM_MAX_WITH_SUBSCRIPT,
		SPACE_AFTER_SCRIPT,
		UPPER_LIMIT_GAP_MIN,
		UPPER_LIMIT_BASELINE_RISE_MIN,
		LOWER_LIMIT_GAP_MIN,
		LOWER_LIMIT_BASELINE_DROP_MIN,
		STACK_TOP_SHIFT_UP,
		STACK_TOP_DISPLAY_STYLE_SHIFT_UP,
		STACK_BOTTOM_SHIFT_DOWN,
		STACK_BOTTOM_DISPLAY_STYLE_SHIFT_DOWN,
		STACK_GAP_MIN,
		STACK_DISPLAY_STYLE_GAP_MIN,
		STRETCH_STACK_TOP_SHIFT_UP,
		STRETCH_STACK_BOTTOM_SHIFT_DOWN,
		STRETCH_STACK_GAP_ABOVE_MIN,
		STRETCH_STACK_GAP_BELOW_MIN,
		FRACTION_NUMERATOR_SHIFT_UP,
		FRACTION_NUMERATOR_DISPLAY_STYLE_SHIFT_UP,
		FRACTION_DENOMINATOR_SHIFT_DOWN,
		FRACTION_DENOMINATOR_DISPLAY_STYLE_SHIFT_DOWN,
		FRACTION_NUMERATOR_GAP_MIN,
		FRACTION_NUM_DISPLAY_STYLE_GAP_MIN,
		FRACTION_RULE_THICKNESS,
		FRACTION_DENOMINATOR_GAP_MIN,
		FRACTION_DENOM_DISPLAY_STYLE_GAP_MIN,
		SKEWED_FRACTION_HORIZONTAL_GAP,
		SKEWED_FRACTION_VERTICAL_GAP,
		OVERBAR_VERTICAL_GAP,
		OVERBAR_RULE_THICKNESS,
		OVERBAR_EXTRA_ASCENDER,
		UNDERBAR_VERTICAL_GAP,
		UNDERBAR_RULE_THICKNESS,
		UNDERBAR_EXTRA_DESCENDER,
		RADICAL_VERTICAL_GAP,
		RADICAL_DISPLAY_STYLE_VERTICAL_GAP,
		RADICAL_RULE_THICKNESS,
		RADICAL_EXTRA_ASCENDER,
		RADICAL_KERN_BEFORE_DEGREE,
		RADICAL_KERN_AFTER_DEGREE,
		RADICAL_DEGREE_BOTTOM_RAISE_PERCENT
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_ot_math_glyph_part_flags_t", cprefix = "HB_OT_MATH_GLYPH_PART_FLAG_", type_id = "hb_gobject_ot_math_glyph_part_flags_get_type ()")]
	[Flags]
	[GIR (name = "ot_math_glyph_part_flags_t")]
	[Version (since = "1.3.3")]
	public enum OtMathGlyphPartFlags {
		EXTENDER
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_ot_math_kern_t", cprefix = "HB_OT_MATH_KERN_", type_id = "hb_gobject_ot_math_kern_get_type ()")]
	[GIR (name = "ot_math_kern_t")]
	[Version (since = "1.3.3")]
	public enum OtMathKern {
		TOP_RIGHT,
		TOP_LEFT,
		BOTTOM_RIGHT,
		BOTTOM_LEFT
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_ot_meta_tag_t", cprefix = "HB_OT_META_TAG_", type_id = "hb_gobject_ot_meta_tag_get_type ()")]
	[GIR (name = "ot_meta_tag_t")]
	[Version (since = "2.6.0")]
	public enum OtMetaTag {
		DESIGN_LANGUAGES,
		SUPPORTED_LANGUAGES
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_ot_metrics_tag_t", cprefix = "HB_OT_METRICS_TAG_", type_id = "hb_gobject_ot_metrics_tag_get_type ()")]
	[GIR (name = "ot_metrics_tag_t")]
	[Version (since = "2.6.0")]
	public enum OtMetricsTag {
		HORIZONTAL_ASCENDER,
		HORIZONTAL_DESCENDER,
		HORIZONTAL_LINE_GAP,
		HORIZONTAL_CLIPPING_ASCENT,
		HORIZONTAL_CLIPPING_DESCENT,
		VERTICAL_ASCENDER,
		VERTICAL_DESCENDER,
		VERTICAL_LINE_GAP,
		HORIZONTAL_CARET_RISE,
		HORIZONTAL_CARET_RUN,
		HORIZONTAL_CARET_OFFSET,
		VERTICAL_CARET_RISE,
		VERTICAL_CARET_RUN,
		VERTICAL_CARET_OFFSET,
		X_HEIGHT,
		CAP_HEIGHT,
		SUBSCRIPT_EM_X_SIZE,
		SUBSCRIPT_EM_Y_SIZE,
		SUBSCRIPT_EM_X_OFFSET,
		SUBSCRIPT_EM_Y_OFFSET,
		SUPERSCRIPT_EM_X_SIZE,
		SUPERSCRIPT_EM_Y_SIZE,
		SUPERSCRIPT_EM_X_OFFSET,
		SUPERSCRIPT_EM_Y_OFFSET,
		STRIKEOUT_SIZE,
		STRIKEOUT_OFFSET,
		UNDERLINE_SIZE,
		UNDERLINE_OFFSET
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_ot_name_id_predefined_t", cprefix = "HB_OT_NAME_ID_", type_id = "hb_gobject_ot_name_id_predefined_get_type ()")]
	[GIR (name = "ot_name_id_predefined_t")]
	public enum OtNameIdPredefined {
		COPYRIGHT,
		FONT_FAMILY,
		FONT_SUBFAMILY,
		UNIQUE_ID,
		FULL_NAME,
		VERSION_STRING,
		POSTSCRIPT_NAME,
		TRADEMARK,
		MANUFACTURER,
		DESIGNER,
		DESCRIPTION,
		VENDOR_URL,
		DESIGNER_URL,
		LICENSE,
		LICENSE_URL,
		TYPOGRAPHIC_FAMILY,
		TYPOGRAPHIC_SUBFAMILY,
		MAC_FULL_NAME,
		SAMPLE_TEXT,
		CID_FINDFONT_NAME,
		WWS_FAMILY,
		WWS_SUBFAMILY,
		LIGHT_BACKGROUND,
		DARK_BACKGROUND,
		VARIATIONS_PS_PREFIX,
		INVALID
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_ot_var_axis_flags_t", cprefix = "HB_OT_VAR_AXIS_FLAG_", type_id = "hb_gobject_ot_var_axis_flags_get_type ()")]
	[Flags]
	[GIR (name = "ot_var_axis_flags_t")]
	[Version (since = "2.2.0")]
	public enum OtVarAxisFlags {
		HIDDEN
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_paint_composite_mode_t", cprefix = "HB_PAINT_COMPOSITE_MODE_", type_id = "hb_gobject_paint_composite_mode_get_type ()")]
	[GIR (name = "paint_composite_mode_t")]
	public enum PaintCompositeMode {
		CLEAR,
		SRC,
		DEST,
		SRC_OVER,
		DEST_OVER,
		SRC_IN,
		DEST_IN,
		SRC_OUT,
		DEST_OUT,
		SRC_ATOP,
		DEST_ATOP,
		XOR,
		PLUS,
		SCREEN,
		OVERLAY,
		DARKEN,
		LIGHTEN,
		COLOR_DODGE,
		COLOR_BURN,
		HARD_LIGHT,
		SOFT_LIGHT,
		DIFFERENCE,
		EXCLUSION,
		MULTIPLY,
		HSL_HUE,
		HSL_SATURATION,
		HSL_COLOR,
		HSL_LUMINOSITY
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_paint_extend_t", cprefix = "HB_PAINT_EXTEND_", type_id = "hb_gobject_paint_extend_get_type ()")]
	[GIR (name = "paint_extend_t")]
	public enum PaintExtend {
		PAD,
		REPEAT,
		REFLECT
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_script_t", cprefix = "HB_SCRIPT_", type_id = "hb_gobject_script_get_type ()")]
	[GIR (name = "script_t")]
	public enum Script {
		COMMON,
		INHERITED,
		UNKNOWN,
		ARABIC,
		ARMENIAN,
		BENGALI,
		CYRILLIC,
		DEVANAGARI,
		GEORGIAN,
		GREEK,
		GUJARATI,
		GURMUKHI,
		HANGUL,
		HAN,
		HEBREW,
		HIRAGANA,
		KANNADA,
		KATAKANA,
		LAO,
		LATIN,
		MALAYALAM,
		ORIYA,
		TAMIL,
		TELUGU,
		THAI,
		TIBETAN,
		BOPOMOFO,
		BRAILLE,
		CANADIAN_SYLLABICS,
		CHEROKEE,
		ETHIOPIC,
		KHMER,
		MONGOLIAN,
		MYANMAR,
		OGHAM,
		RUNIC,
		SINHALA,
		SYRIAC,
		THAANA,
		YI,
		DESERET,
		GOTHIC,
		OLD_ITALIC,
		BUHID,
		HANUNOO,
		TAGALOG,
		TAGBANWA,
		CYPRIOT,
		LIMBU,
		LINEAR_B,
		OSMANYA,
		SHAVIAN,
		TAI_LE,
		UGARITIC,
		BUGINESE,
		COPTIC,
		GLAGOLITIC,
		KHAROSHTHI,
		NEW_TAI_LUE,
		OLD_PERSIAN,
		SYLOTI_NAGRI,
		TIFINAGH,
		BALINESE,
		CUNEIFORM,
		NKO,
		PHAGS_PA,
		PHOENICIAN,
		CARIAN,
		CHAM,
		KAYAH_LI,
		LEPCHA,
		LYCIAN,
		LYDIAN,
		OL_CHIKI,
		REJANG,
		SAURASHTRA,
		SUNDANESE,
		VAI,
		AVESTAN,
		BAMUM,
		EGYPTIAN_HIEROGLYPHS,
		IMPERIAL_ARAMAIC,
		INSCRIPTIONAL_PAHLAVI,
		INSCRIPTIONAL_PARTHIAN,
		JAVANESE,
		KAITHI,
		LISU,
		MEETEI_MAYEK,
		OLD_SOUTH_ARABIAN,
		OLD_TURKIC,
		SAMARITAN,
		TAI_THAM,
		TAI_VIET,
		BATAK,
		BRAHMI,
		MANDAIC,
		CHAKMA,
		MEROITIC_CURSIVE,
		MEROITIC_HIEROGLYPHS,
		MIAO,
		SHARADA,
		SORA_SOMPENG,
		TAKRI,
		BASSA_VAH,
		CAUCASIAN_ALBANIAN,
		DUPLOYAN,
		ELBASAN,
		GRANTHA,
		KHOJKI,
		KHUDAWADI,
		LINEAR_A,
		MAHAJANI,
		MANICHAEAN,
		MENDE_KIKAKUI,
		MODI,
		MRO,
		NABATAEAN,
		OLD_NORTH_ARABIAN,
		OLD_PERMIC,
		PAHAWH_HMONG,
		PALMYRENE,
		PAU_CIN_HAU,
		PSALTER_PAHLAVI,
		SIDDHAM,
		TIRHUTA,
		WARANG_CITI,
		AHOM,
		ANATOLIAN_HIEROGLYPHS,
		HATRAN,
		MULTANI,
		OLD_HUNGARIAN,
		SIGNWRITING,
		ADLAM,
		BHAIKSUKI,
		MARCHEN,
		OSAGE,
		TANGUT,
		NEWA,
		MASARAM_GONDI,
		NUSHU,
		SOYOMBO,
		ZANABAZAR_SQUARE,
		DOGRA,
		GUNJALA_GONDI,
		HANIFI_ROHINGYA,
		MAKASAR,
		MEDEFAIDRIN,
		OLD_SOGDIAN,
		SOGDIAN,
		ELYMAIC,
		NANDINAGARI,
		NYIAKENG_PUACHUE_HMONG,
		WANCHO,
		CHORASMIAN,
		DIVES_AKURU,
		KHITAN_SMALL_SCRIPT,
		YEZIDI,
		CYPRO_MINOAN,
		OLD_UYGHUR,
		TANGSA,
		TOTO,
		VITHKUQI,
		MATH,
		KAWI,
		NAG_MUNDARI,
		INVALID;
		[Version (since = "0.9.2")]
		public static HarfBuzz.Script from_iso15924_tag (HarfBuzz.Tag tag);
		[Version (since = "0.9.2")]
		public static HarfBuzz.Script from_string ([CCode (array_length_cname = "len", array_length_pos = 1.1)] uint8[] str);
		[Version (since = "0.9.2")]
		public HarfBuzz.Direction get_horizontal_direction ();
		[Version (since = "0.9.2")]
		public HarfBuzz.Tag to_iso15924_tag ();
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_unicode_combining_class_t", cprefix = "HB_UNICODE_COMBINING_CLASS_", type_id = "hb_gobject_unicode_combining_class_get_type ()")]
	[GIR (name = "unicode_combining_class_t")]
	public enum UnicodeCombiningClass {
		NOT_REORDERED,
		OVERLAY,
		NUKTA,
		KANA_VOICING,
		VIRAMA,
		CCC10,
		CCC11,
		CCC12,
		CCC13,
		CCC14,
		CCC15,
		CCC16,
		CCC17,
		CCC18,
		CCC19,
		CCC20,
		CCC21,
		CCC22,
		CCC23,
		CCC24,
		CCC25,
		CCC26,
		CCC27,
		CCC28,
		CCC29,
		CCC30,
		CCC31,
		CCC32,
		CCC33,
		CCC34,
		CCC35,
		CCC36,
		CCC84,
		CCC91,
		CCC103,
		CCC107,
		CCC118,
		CCC122,
		CCC129,
		CCC130,
		CCC133,
		ATTACHED_BELOW_LEFT,
		ATTACHED_BELOW,
		ATTACHED_ABOVE,
		ATTACHED_ABOVE_RIGHT,
		BELOW_LEFT,
		BELOW,
		BELOW_RIGHT,
		LEFT,
		RIGHT,
		ABOVE_LEFT,
		ABOVE,
		ABOVE_RIGHT,
		DOUBLE_BELOW,
		DOUBLE_ABOVE,
		IOTA_SUBSCRIPT,
		INVALID
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_unicode_general_category_t", cprefix = "HB_UNICODE_GENERAL_CATEGORY_", type_id = "hb_gobject_unicode_general_category_get_type ()")]
	[GIR (name = "unicode_general_category_t")]
	public enum UnicodeGeneralCategory {
		CONTROL,
		FORMAT,
		UNASSIGNED,
		PRIVATE_USE,
		SURROGATE,
		LOWERCASE_LETTER,
		MODIFIER_LETTER,
		OTHER_LETTER,
		TITLECASE_LETTER,
		UPPERCASE_LETTER,
		SPACING_MARK,
		ENCLOSING_MARK,
		NON_SPACING_MARK,
		DECIMAL_NUMBER,
		LETTER_NUMBER,
		OTHER_NUMBER,
		CONNECT_PUNCTUATION,
		DASH_PUNCTUATION,
		CLOSE_PUNCTUATION,
		FINAL_PUNCTUATION,
		INITIAL_PUNCTUATION,
		OTHER_PUNCTUATION,
		OPEN_PUNCTUATION,
		CURRENCY_SYMBOL,
		MODIFIER_SYMBOL,
		MATH_SYMBOL,
		OTHER_SYMBOL,
		LINE_SEPARATOR,
		PARAGRAPH_SEPARATOR,
		SPACE_SEPARATOR
	}
	[CCode (cheader_filename = "hb-gobject.h", cprefix = "HB_STYLE_TAG_", type_id = "hb_gobject_style_tag_get_type ()")]
	[Version (since = "3.0.0")]
	public enum style_tag_t {
		ITALIC,
		OPTICAL_SIZE,
		SLANT_ANGLE,
		SLANT_RATIO,
		WIDTH,
		WEIGHT
	}
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_buffer_message_func_t", instance_pos = 3.9)]
	[Version (since = "1.1.3")]
	public delegate HarfBuzz.Bool BufferMessageFunc (HarfBuzz.Buffer buffer, HarfBuzz.Font font, string message);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_color_line_get_color_stops_func_t", instance_pos = 4.9)]
	public delegate uint ColorLineGetColorStopsFunc (HarfBuzz.ColorLine color_line, void* color_line_data, uint start, [CCode (array_length_cname = "count", array_length_pos = 3.5, array_length_type = "guint")] out unowned HarfBuzz.ColorStop[] color_stops);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_color_line_get_extend_func_t", instance_pos = 2.9)]
	public delegate HarfBuzz.PaintExtend ColorLineGetExtendFunc (HarfBuzz.ColorLine color_line, void* color_line_data);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_destroy_func_t", instance_pos = 0.9)]
	public delegate void DestroyFunc ();
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_draw_close_path_func_t", instance_pos = 3.9)]
	[Version (since = "4.0.0")]
	public delegate void DrawClosePathFunc (HarfBuzz.DrawFuncs dfuncs, void* draw_data, HarfBuzz.DrawState st);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_draw_cubic_to_func_t", instance_pos = 9.9)]
	[Version (since = "4.0.0")]
	public delegate void DrawCubicToFunc (HarfBuzz.DrawFuncs dfuncs, void* draw_data, HarfBuzz.DrawState st, float control1_x, float control1_y, float control2_x, float control2_y, float to_x, float to_y);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_draw_line_to_func_t", instance_pos = 5.9)]
	[Version (since = "4.0.0")]
	public delegate void DrawLineToFunc (HarfBuzz.DrawFuncs dfuncs, void* draw_data, HarfBuzz.DrawState st, float to_x, float to_y);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_draw_move_to_func_t", instance_pos = 5.9)]
	[Version (since = "4.0.0")]
	public delegate void DrawMoveToFunc (HarfBuzz.DrawFuncs dfuncs, void* draw_data, HarfBuzz.DrawState st, float to_x, float to_y);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_draw_quadratic_to_func_t", instance_pos = 7.9)]
	[Version (since = "4.0.0")]
	public delegate void DrawQuadraticToFunc (HarfBuzz.DrawFuncs dfuncs, void* draw_data, HarfBuzz.DrawState st, float control_x, float control_y, float to_x, float to_y);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_draw_glyph_func_t", instance_pos = 5.9)]
	public delegate void FontDrawGlyphFunc (HarfBuzz.Font font, void* font_data, HarfBuzz.Codepoint glyph, HarfBuzz.DrawFuncs draw_funcs, void* draw_data);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_font_extents_func_t", instance_pos = 3.9)]
	public delegate HarfBuzz.Bool FontGetFontExtentsFunc (HarfBuzz.Font font, void* font_data, out HarfBuzz.FontExtents extents);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_font_extents_func_t", instance_pos = 3.9)]
	public delegate HarfBuzz.Bool FontGetFontHExtentsFunc (HarfBuzz.Font font, void* font_data, out HarfBuzz.FontExtents extents);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_font_extents_func_t", instance_pos = 3.9)]
	public delegate HarfBuzz.Bool FontGetFontVExtentsFunc (HarfBuzz.Font font, void* font_data, out HarfBuzz.FontExtents extents);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_glyph_advance_func_t", instance_pos = 3.9)]
	public delegate HarfBuzz.Position FontGetGlyphAdvanceFunc (HarfBuzz.Font font, void* font_data, HarfBuzz.Codepoint glyph);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_glyph_advances_func_t", instance_pos = 7.9)]
	public delegate void FontGetGlyphAdvancesFunc (HarfBuzz.Font font, void* font_data, uint count, HarfBuzz.Codepoint first_glyph, uint glyph_stride, out HarfBuzz.Position first_advance, uint advance_stride);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_glyph_contour_point_func_t", instance_pos = 6.9)]
	public delegate HarfBuzz.Bool FontGetGlyphContourFunc (HarfBuzz.Font font, void* font_data, HarfBuzz.Codepoint glyph, uint point_index, out HarfBuzz.Position x, out HarfBuzz.Position y);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_glyph_extents_func_t", instance_pos = 4.9)]
	public delegate HarfBuzz.Bool FontGetGlyphExtentsFunc (HarfBuzz.Font font, void* font_data, HarfBuzz.Codepoint glyph, out HarfBuzz.GlyphExtents extents);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_glyph_from_name_func_t", instance_pos = 4.9)]
	public delegate HarfBuzz.Bool FontGetGlyphFromNameFunc (HarfBuzz.Font font, void* font_data, [CCode (array_length_cname = "len", array_length_pos = 3.5)] string[] name, out HarfBuzz.Codepoint glyph);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_glyph_func_t", instance_pos = 5.9)]
	[Version (deprecated = true, deprecated_since = "1.2.3")]
	public delegate HarfBuzz.Bool FontGetGlyphFunc (HarfBuzz.Font font, void* font_data, HarfBuzz.Codepoint unicode, HarfBuzz.Codepoint variation_selector, out HarfBuzz.Codepoint glyph);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_glyph_advance_func_t", instance_pos = 3.9)]
	public delegate HarfBuzz.Position FontGetGlyphHAdvanceFunc (HarfBuzz.Font font, void* font_data, HarfBuzz.Codepoint glyph);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_glyph_advances_func_t", instance_pos = 7.9)]
	public delegate void FontGetGlyphHAdvancesFunc (HarfBuzz.Font font, void* font_data, uint count, HarfBuzz.Codepoint first_glyph, uint glyph_stride, out HarfBuzz.Position first_advance, uint advance_stride);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_glyph_kerning_func_t", instance_pos = 4.9)]
	public delegate HarfBuzz.Position FontGetGlyphHKerningFunc (HarfBuzz.Font font, void* font_data, HarfBuzz.Codepoint first_glyph, HarfBuzz.Codepoint second_glyph);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_glyph_origin_func_t", instance_pos = 5.9)]
	public delegate HarfBuzz.Bool FontGetGlyphHOriginFunc (HarfBuzz.Font font, void* font_data, HarfBuzz.Codepoint glyph, out HarfBuzz.Position x, out HarfBuzz.Position y);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_glyph_kerning_func_t", instance_pos = 4.9)]
	public delegate HarfBuzz.Position FontGetGlyphKerningFunc (HarfBuzz.Font font, void* font_data, HarfBuzz.Codepoint first_glyph, HarfBuzz.Codepoint second_glyph);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_glyph_name_func_t", instance_pos = 4.9)]
	public delegate HarfBuzz.Bool FontGetGlyphNameFunc (HarfBuzz.Font font, void* font_data, HarfBuzz.Codepoint glyph, [CCode (array_length_cname = "size", array_length_pos = 4.1, array_length_type = "guint")] out string[] name);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_glyph_origin_func_t", instance_pos = 5.9)]
	public delegate HarfBuzz.Bool FontGetGlyphOriginFunc (HarfBuzz.Font font, void* font_data, HarfBuzz.Codepoint glyph, out HarfBuzz.Position x, out HarfBuzz.Position y);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_glyph_advance_func_t", instance_pos = 3.9)]
	public delegate HarfBuzz.Position FontGetGlyphVAdvanceFunc (HarfBuzz.Font font, void* font_data, HarfBuzz.Codepoint glyph);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_glyph_advances_func_t", instance_pos = 7.9)]
	public delegate void FontGetGlyphVAdvancesFunc (HarfBuzz.Font font, void* font_data, uint count, HarfBuzz.Codepoint first_glyph, uint glyph_stride, out HarfBuzz.Position first_advance, uint advance_stride);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_glyph_kerning_func_t", instance_pos = 4.9)]
	public delegate HarfBuzz.Position FontGetGlyphVKerningFunc (HarfBuzz.Font font, void* font_data, HarfBuzz.Codepoint first_glyph, HarfBuzz.Codepoint second_glyph);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_glyph_origin_func_t", instance_pos = 5.9)]
	public delegate HarfBuzz.Bool FontGetGlyphVOriginFunc (HarfBuzz.Font font, void* font_data, HarfBuzz.Codepoint glyph, out HarfBuzz.Position x, out HarfBuzz.Position y);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_nominal_glyph_func_t", instance_pos = 4.9)]
	public delegate HarfBuzz.Bool FontGetNominalGlyphFunc (HarfBuzz.Font font, void* font_data, HarfBuzz.Codepoint unicode, out HarfBuzz.Codepoint glyph);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_nominal_glyphs_func_t", instance_pos = 7.9)]
	public delegate uint FontGetNominalGlyphsFunc (HarfBuzz.Font font, void* font_data, uint count, HarfBuzz.Codepoint first_unicode, uint unicode_stride, out HarfBuzz.Codepoint first_glyph, uint glyph_stride);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_get_variation_glyph_func_t", instance_pos = 5.9)]
	public delegate HarfBuzz.Bool FontGetVariantGlyphFunc (HarfBuzz.Font font, void* font_data, HarfBuzz.Codepoint unicode, HarfBuzz.Codepoint variation_selector, out HarfBuzz.Codepoint glyph);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_font_paint_glyph_func_t", instance_pos = 7.9)]
	public delegate void FontPaintGlyphFunc (HarfBuzz.Font font, void* font_data, HarfBuzz.Codepoint glyph, HarfBuzz.PaintFuncs paint_funcs, void* paint_data, uint palette_index, HarfBuzz.Color foreground);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_paint_color_func_t", instance_pos = 4.9)]
	public delegate void PaintColorFunc (HarfBuzz.PaintFuncs funcs, void* paint_data, HarfBuzz.Bool is_foreground, HarfBuzz.Color color);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_paint_custom_palette_color_func_t", instance_pos = 4.9)]
	public delegate HarfBuzz.Bool PaintCustomPaletteColorFunc (HarfBuzz.PaintFuncs funcs, void* paint_data, uint color_index, out HarfBuzz.Color color);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_paint_image_func_t", instance_pos = 8.9)]
	public delegate HarfBuzz.Bool PaintImageFunc (HarfBuzz.PaintFuncs funcs, void* paint_data, HarfBuzz.Blob image, uint width, uint height, HarfBuzz.Tag format, float slant, HarfBuzz.GlyphExtents? extents);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_paint_linear_gradient_func_t", instance_pos = 9.9)]
	public delegate void PaintLinearGradientFunc (HarfBuzz.PaintFuncs funcs, void* paint_data, HarfBuzz.ColorLine color_line, float x0, float y0, float x1, float y1, float x2, float y2);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_paint_pop_clip_func_t", instance_pos = 2.9)]
	public delegate void PaintPopClipFunc (HarfBuzz.PaintFuncs funcs, void* paint_data);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_paint_pop_group_func_t", instance_pos = 3.9)]
	public delegate void PaintPopGroupFunc (HarfBuzz.PaintFuncs funcs, void* paint_data, HarfBuzz.PaintCompositeMode mode);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_paint_pop_transform_func_t", instance_pos = 2.9)]
	public delegate void PaintPopTransformFunc (HarfBuzz.PaintFuncs funcs, void* paint_data);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_paint_push_clip_glyph_func_t", instance_pos = 4.9)]
	public delegate void PaintPushClipGlyphFunc (HarfBuzz.PaintFuncs funcs, void* paint_data, HarfBuzz.Codepoint glyph, HarfBuzz.Font font);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_paint_push_group_func_t", instance_pos = 2.9)]
	public delegate void PaintPushGroupFunc (HarfBuzz.PaintFuncs funcs, void* paint_data);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_paint_push_clip_rectangle_func_t", instance_pos = 6.9)]
	public delegate void PaintPushRectangleFunc (HarfBuzz.PaintFuncs funcs, void* paint_data, float xmin, float ymin, float xmax, float ymax);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_paint_push_transform_func_t", instance_pos = 8.9)]
	public delegate void PaintPushTransformFunc (HarfBuzz.PaintFuncs funcs, void* paint_data, float xx, float yx, float xy, float yy, float dx, float dy);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_paint_radial_gradient_func_t", instance_pos = 9.9)]
	public delegate void PaintRadialGradientFunc (HarfBuzz.PaintFuncs funcs, void* paint_data, HarfBuzz.ColorLine color_line, float x0, float y0, float r0, float x1, float y1, float r1);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_paint_sweep_gradient_func_t", instance_pos = 7.9)]
	public delegate void PaintSweepGradientFunc (HarfBuzz.PaintFuncs funcs, void* paint_data, HarfBuzz.ColorLine color_line, float x0, float y0, float start_angle, float end_angle);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_reference_table_func_t", instance_pos = 2.9)]
	[Version (since = "0.9.2")]
	public delegate HarfBuzz.Blob ReferenceTableFunc (HarfBuzz.Face face, HarfBuzz.Tag tag);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_unicode_combining_class_func_t", instance_pos = 2.9)]
	public delegate HarfBuzz.UnicodeCombiningClass UnicodeCombiningClassFunc (HarfBuzz.UnicodeFuncs ufuncs, HarfBuzz.Codepoint unicode);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_unicode_compose_func_t", instance_pos = 4.9)]
	public delegate HarfBuzz.Bool UnicodeComposeFunc (HarfBuzz.UnicodeFuncs ufuncs, HarfBuzz.Codepoint a, HarfBuzz.Codepoint b, out HarfBuzz.Codepoint ab);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_unicode_decompose_func_t", instance_pos = 4.9)]
	public delegate HarfBuzz.Bool UnicodeDecomposeFunc (HarfBuzz.UnicodeFuncs ufuncs, HarfBuzz.Codepoint ab, out HarfBuzz.Codepoint a, out HarfBuzz.Codepoint b);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_unicode_eastasian_width_func_t", instance_pos = 2.9)]
	[Version (deprecated = true, deprecated_since = "2.0.0")]
	public delegate uint UnicodeEastasianWidthFunc (HarfBuzz.UnicodeFuncs ufuncs, HarfBuzz.Codepoint unicode);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_unicode_general_category_func_t", instance_pos = 2.9)]
	public delegate HarfBuzz.UnicodeGeneralCategory UnicodeGeneralCategoryFunc (HarfBuzz.UnicodeFuncs ufuncs, HarfBuzz.Codepoint unicode);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_unicode_mirroring_func_t", instance_pos = 2.9)]
	public delegate HarfBuzz.Codepoint UnicodeMirroringFunc (HarfBuzz.UnicodeFuncs ufuncs, HarfBuzz.Codepoint unicode);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_unicode_script_func_t", instance_pos = 2.9)]
	public delegate HarfBuzz.Script UnicodeScriptFunc (HarfBuzz.UnicodeFuncs ufuncs, HarfBuzz.Codepoint unicode);
	[CCode (cheader_filename = "hb-gobject.h", cname = "hb_unicode_decompose_compatibility_func_t", instance_pos = 3.9)]
	[Version (deprecated = true, deprecated_since = "2.0.0")]
	public delegate uint UnicodedeComposeCompatibilityFunc (HarfBuzz.UnicodeFuncs ufuncs, HarfBuzz.Codepoint u, HarfBuzz.Codepoint decomposed);
	[CCode (cheader_filename = "hb-gobject.h", instance_pos = 5.9)]
	[Version (deprecated = true, since = "4.0.0")]
	public delegate void font_get_glyph_shape_func_t (HarfBuzz.Font font, void* font_data, HarfBuzz.Codepoint glyph, HarfBuzz.DrawFuncs draw_funcs, void* draw_data);
	[CCode (cheader_filename = "hb-gobject.h", cname = "HB_AAT_LAYOUT_NO_SELECTOR_INDEX")]
	public const int AAT_LAYOUT_NO_SELECTOR_INDEX;
	[CCode (cheader_filename = "hb-gobject.h", cname = "HB_BUFFER_REPLACEMENT_CODEPOINT_DEFAULT")]
	[Version (since = "0.9.31")]
	public const int BUFFER_REPLACEMENT_CODEPOINT_DEFAULT;
	[CCode (cheader_filename = "hb-gobject.h", cname = "HB_FEATURE_GLOBAL_START")]
	[Version (since = "2.0.0")]
	public const int FEATURE_GLOBAL_START;
	[CCode (cheader_filename = "hb-gobject.h", cname = "HB_FONT_NO_VAR_NAMED_INSTANCE")]
	public const int FONT_NO_VAR_NAMED_INSTANCE;
	[CCode (cheader_filename = "hb-gobject.h", cname = "HB_MAP_VALUE_INVALID")]
	[Version (since = "1.7.7")]
	public const HarfBuzz.Codepoint MAP_VALUE_INVALID;
	[CCode (cheader_filename = "hb-gobject.h", cname = "HB_OT_LAYOUT_DEFAULT_LANGUAGE_INDEX")]
	public const int OT_LAYOUT_DEFAULT_LANGUAGE_INDEX;
	[CCode (cheader_filename = "hb-gobject.h", cname = "HB_OT_LAYOUT_NO_FEATURE_INDEX")]
	public const int OT_LAYOUT_NO_FEATURE_INDEX;
	[CCode (cheader_filename = "hb-gobject.h", cname = "HB_OT_LAYOUT_NO_SCRIPT_INDEX")]
	public const int OT_LAYOUT_NO_SCRIPT_INDEX;
	[CCode (cheader_filename = "hb-gobject.h", cname = "HB_OT_LAYOUT_NO_VARIATIONS_INDEX")]
	public const int OT_LAYOUT_NO_VARIATIONS_INDEX;
	[CCode (cheader_filename = "hb-gobject.h", cname = "HB_OT_MAX_TAGS_PER_LANGUAGE")]
	[Version (since = "2.0.0")]
	public const int OT_MAX_TAGS_PER_LANGUAGE;
	[CCode (cheader_filename = "hb-gobject.h", cname = "HB_OT_MAX_TAGS_PER_SCRIPT")]
	[Version (since = "2.0.0")]
	public const int OT_MAX_TAGS_PER_SCRIPT;
	[CCode (cheader_filename = "hb-gobject.h", cname = "HB_OT_VAR_NO_AXIS_INDEX")]
	[Version (deprecated = true, deprecated_since = "2.2.0", since = "1.4.2")]
	public const int OT_VAR_NO_AXIS_INDEX;
	[CCode (cheader_filename = "hb-gobject.h", cname = "HB_SET_VALUE_INVALID")]
	[Version (since = "0.9.21")]
	public const HarfBuzz.Codepoint SET_VALUE_INVALID;
	[CCode (cheader_filename = "hb-gobject.h", cname = "HB_UNICODE_MAX")]
	[Version (since = "1.9.0")]
	public const int UNICODE_MAX;
	[CCode (cheader_filename = "hb-gobject.h", cname = "HB_UNICODE_MAX_DECOMPOSITION_LEN")]
	[Version (deprecated = true, deprecated_since = "2.0.0")]
	public const int UNICODE_MAX_DECOMPOSITION_LEN;
	[CCode (cheader_filename = "hb-gobject.h", cname = "HB_VERSION_MAJOR")]
	public const int VERSION_MAJOR;
	[CCode (cheader_filename = "hb-gobject.h", cname = "HB_VERSION_MICRO")]
	public const int VERSION_MICRO;
	[CCode (cheader_filename = "hb-gobject.h", cname = "HB_VERSION_MINOR")]
	public const int VERSION_MINOR;
	[CCode (cheader_filename = "hb-gobject.h", cname = "HB_VERSION_STRING")]
	public const string VERSION_STRING;
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.2.0")]
	public static uint aat_layout_get_feature_types (HarfBuzz.Face face, uint start_offset, [CCode (array_length_cname = "feature_count", array_length_pos = 2.5, array_length_type = "guint")] out unowned HarfBuzz.AatLayoutFeatureType[] features);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.3.0")]
	public static HarfBuzz.Bool aat_layout_has_positioning (HarfBuzz.Face face);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.3.0")]
	public static HarfBuzz.Bool aat_layout_has_substitution (HarfBuzz.Face face);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.3.0")]
	public static HarfBuzz.Bool aat_layout_has_tracking (HarfBuzz.Face face);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static uint color_line_get_color_stops (HarfBuzz.ColorLine color_line, uint start, [CCode (array_length_cname = "count", array_length_pos = 2.5, array_length_type = "guint")] out unowned HarfBuzz.ColorStop[] color_stops);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static HarfBuzz.PaintExtend color_line_get_extend (HarfBuzz.ColorLine color_line);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.2")]
	public static HarfBuzz.Face ft_face_create ([CCode (destroy_notify_pos = 1.1)] FT.Face ft_face);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.2")]
	public static HarfBuzz.Face ft_face_create_cached (FT.Face ft_face);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.38")]
	public static HarfBuzz.Face ft_face_create_referenced (FT.Face ft_face);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "1.0.5")]
	public static void ft_font_changed (HarfBuzz.Font font);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.2")]
	public static HarfBuzz.Font ft_font_create ([CCode (destroy_notify_pos = 1.1)] FT.Face ft_face);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.38")]
	public static HarfBuzz.Font ft_font_create_referenced (FT.Face ft_face);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "1.0.5")]
	public static int ft_font_get_load_flags (HarfBuzz.Font font);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "1.0.5")]
	public static void ft_font_set_funcs (HarfBuzz.Font font);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "1.0.5")]
	public static void ft_font_set_load_flags (HarfBuzz.Font font, int load_flags);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "4.4.0")]
	public static HarfBuzz.Bool ft_hb_font_changed (HarfBuzz.Font font);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.38")]
	public static HarfBuzz.Blob glib_blob_create (GLib.Bytes gbytes);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.38")]
	public static unowned HarfBuzz.UnicodeFuncs glib_get_unicode_funcs ();
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.38")]
	public static GLib.UnicodeScript glib_script_from_script (HarfBuzz.Script script);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.38")]
	public static HarfBuzz.Script glib_script_to_script (GLib.UnicodeScript script);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "1.5.0")]
	public static HarfBuzz.GlyphFlags glyph_info_get_glyph_flags (HarfBuzz.Glyph info);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.1.0")]
	public static uint ot_color_glyph_get_layers (HarfBuzz.Face face, HarfBuzz.Codepoint glyph, uint start_offset, [CCode (array_length_cname = "layer_count", array_length_pos = 3.5, array_length_type = "guint")] out unowned HarfBuzz.OtColorLayer[]? layers);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static HarfBuzz.Bool ot_color_glyph_has_paint (HarfBuzz.Face face, HarfBuzz.Codepoint glyph);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.1.0")]
	public static HarfBuzz.Blob ot_color_glyph_reference_png (HarfBuzz.Font font, HarfBuzz.Codepoint glyph);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.1.0")]
	public static HarfBuzz.Blob ot_color_glyph_reference_svg (HarfBuzz.Face face, HarfBuzz.Codepoint glyph);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.1.0")]
	public static HarfBuzz.Bool ot_color_has_layers (HarfBuzz.Face face);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static HarfBuzz.Bool ot_color_has_paint (HarfBuzz.Face face);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.1.0")]
	public static HarfBuzz.Bool ot_color_has_palettes (HarfBuzz.Face face);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.1.0")]
	public static HarfBuzz.Bool ot_color_has_png (HarfBuzz.Face face);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.1.0")]
	public static HarfBuzz.Bool ot_color_has_svg (HarfBuzz.Face face);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.28")]
	public static void ot_font_set_funcs (HarfBuzz.Font font);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "1.8.5")]
	public static void ot_layout_collect_features (HarfBuzz.Face face, HarfBuzz.Tag table_tag, [CCode (array_length = false, array_null_terminated = true)] HarfBuzz.Tag[]? scripts, [CCode (array_length = false, array_null_terminated = true)] HarfBuzz.Tag[]? languages, [CCode (array_length = false, array_null_terminated = true)] HarfBuzz.Tag[]? features, out unowned HarfBuzz.Set feature_indexes);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.8")]
	public static void ot_layout_collect_lookups (HarfBuzz.Face face, HarfBuzz.Tag table_tag, [CCode (array_length = false, array_null_terminated = true)] HarfBuzz.Tag[]? scripts, [CCode (array_length = false, array_null_terminated = true)] HarfBuzz.Tag[]? languages, [CCode (array_length = false, array_null_terminated = true)] HarfBuzz.Tag[]? features, out unowned HarfBuzz.Set lookup_indexes);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.0.0")]
	public static uint ot_layout_feature_get_characters (HarfBuzz.Face face, HarfBuzz.Tag table_tag, uint feature_index, uint start_offset, [CCode (array_length_cname = "char_count", array_length_pos = 4.5, array_length_type = "guint")] out unowned HarfBuzz.Codepoint[] characters);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.7")]
	public static uint ot_layout_feature_get_lookups (HarfBuzz.Face face, HarfBuzz.Tag table_tag, uint feature_index, uint start_offset, [CCode (array_length_cname = "lookup_count", array_length_pos = 4.5, array_length_type = "guint")] out uint[] lookup_indexes);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.0.0")]
	public static HarfBuzz.Bool ot_layout_feature_get_name_ids (HarfBuzz.Face face, HarfBuzz.Tag table_tag, uint feature_index, out HarfBuzz.OtNameId label_id, out HarfBuzz.OtNameId tooltip_id, out HarfBuzz.OtNameId sample_id, out uint num_named_parameters, out HarfBuzz.OtNameId first_param_id);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "1.4.0")]
	public static uint ot_layout_feature_with_variations_get_lookups (HarfBuzz.Face face, HarfBuzz.Tag table_tag, uint feature_index, uint variations_index, uint start_offset, [CCode (array_length_cname = "lookup_count", array_length_pos = 5.5, array_length_type = "guint")] out uint[] lookup_indexes);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static uint ot_layout_get_attach_points (HarfBuzz.Face face, HarfBuzz.Codepoint glyph, uint start_offset, [CCode (array_length_cname = "point_count", array_length_pos = 3.5, array_length_type = "guint")] out uint[] point_array);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.6.0")]
	public static HarfBuzz.Bool ot_layout_get_baseline (HarfBuzz.Font font, HarfBuzz.OtLayoutBaselineTag baseline_tag, HarfBuzz.Direction direction, HarfBuzz.Tag script_tag, HarfBuzz.Tag language_tag, out HarfBuzz.Position coord);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "4.0.0")]
	public static void ot_layout_get_baseline_with_fallback (HarfBuzz.Font font, HarfBuzz.OtLayoutBaselineTag baseline_tag, HarfBuzz.Direction direction, HarfBuzz.Tag script_tag, HarfBuzz.Tag language_tag, out HarfBuzz.Position coord);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.7")]
	public static HarfBuzz.OtLayoutGlyphClass ot_layout_get_glyph_class (HarfBuzz.Face face, HarfBuzz.Codepoint glyph);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.7")]
	public static void ot_layout_get_glyphs_in_class (HarfBuzz.Face face, HarfBuzz.OtLayoutGlyphClass klass, out unowned HarfBuzz.Set glyphs);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "4.0.0")]
	public static HarfBuzz.OtLayoutBaselineTag ot_layout_get_horizontal_baseline_tag_for_script (HarfBuzz.Script script);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static uint ot_layout_get_ligature_carets (HarfBuzz.Font font, HarfBuzz.Direction direction, HarfBuzz.Codepoint glyph, uint start_offset, [CCode (array_length_cname = "caret_count", array_length_pos = 4.5, array_length_type = "guint")] out HarfBuzz.Position[] caret_array);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.10")]
	public static HarfBuzz.Bool ot_layout_get_size_params (HarfBuzz.Face face, out uint design_size, out uint subfamily_id, out HarfBuzz.OtNameId subfamily_name_id, out uint range_start, out uint range_end);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static HarfBuzz.Bool ot_layout_has_glyph_classes (HarfBuzz.Face face);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static HarfBuzz.Bool ot_layout_has_positioning (HarfBuzz.Face face);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.6.0")]
	public static HarfBuzz.Bool ot_layout_has_substitution (HarfBuzz.Face face);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.6.0")]
	public static HarfBuzz.Bool ot_layout_language_find_feature (HarfBuzz.Face face, HarfBuzz.Tag table_tag, uint script_index, uint language_index, HarfBuzz.Tag feature_tag, out uint feature_index);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.6.0")]
	public static uint ot_layout_language_get_feature_indexes (HarfBuzz.Face face, HarfBuzz.Tag table_tag, uint script_index, uint language_index, uint start_offset, [CCode (array_length_cname = "feature_count", array_length_pos = 5.5, array_length_type = "guint")] out uint[] feature_indexes);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.6.0")]
	public static uint ot_layout_language_get_feature_tags (HarfBuzz.Face face, HarfBuzz.Tag table_tag, uint script_index, uint language_index, uint start_offset, [CCode (array_length_cname = "feature_count", array_length_pos = 5.5, array_length_type = "guint")] out HarfBuzz.Tag[] feature_tags);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.30")]
	public static HarfBuzz.Bool ot_layout_language_get_required_feature (HarfBuzz.Face face, HarfBuzz.Tag table_tag, uint script_index, uint language_index, out uint feature_index, out HarfBuzz.Tag feature_tag);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.6.0")]
	public static HarfBuzz.Bool ot_layout_language_get_required_feature_index (HarfBuzz.Face face, HarfBuzz.Tag table_tag, uint script_index, uint language_index, out uint feature_index);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.7")]
	public static void ot_layout_lookup_collect_glyphs (HarfBuzz.Face face, HarfBuzz.Tag table_tag, uint lookup_index, out unowned HarfBuzz.Set glyphs_before, out unowned HarfBuzz.Set glyphs_input, out unowned HarfBuzz.Set glyphs_after, out unowned HarfBuzz.Set glyphs_output);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.6.8")]
	public static uint ot_layout_lookup_get_glyph_alternates (HarfBuzz.Face face, uint lookup_index, HarfBuzz.Codepoint glyph, uint start_offset, [CCode (array_length_cname = "alternate_count", array_length_pos = 4.5, array_length_type = "guint")] out unowned HarfBuzz.Codepoint[] alternate_glyphs);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "5.3.0")]
	public static HarfBuzz.Position ot_layout_lookup_get_optical_bound (HarfBuzz.Font font, uint lookup_index, HarfBuzz.Direction direction, HarfBuzz.Codepoint glyph);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.7")]
	public static void ot_layout_lookup_substitute_closure (HarfBuzz.Face face, uint lookup_index, out unowned HarfBuzz.Set glyphs);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.7")]
	public static HarfBuzz.Bool ot_layout_lookup_would_substitute (HarfBuzz.Face face, uint lookup_index, HarfBuzz.Codepoint glyphs, uint glyphs_length, HarfBuzz.Bool zero_context);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "1.8.1")]
	public static void ot_layout_lookups_substitute_closure (HarfBuzz.Face face, HarfBuzz.Set lookups, out unowned HarfBuzz.Set glyphs);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (deprecated = true, deprecated_since = "2.0.0", since = "0.6.0")]
	public static HarfBuzz.Bool ot_layout_script_find_language (HarfBuzz.Face face, HarfBuzz.Tag table_tag, uint script_index, HarfBuzz.Tag language_tag, uint language_index);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.6.0")]
	public static uint ot_layout_script_get_language_tags (HarfBuzz.Face face, HarfBuzz.Tag table_tag, uint script_index, uint start_offset, [CCode (array_length_cname = "language_count", array_length_pos = 4.5, array_length_type = "guint")] out HarfBuzz.Tag[] language_tags);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.0.0")]
	public static HarfBuzz.Bool ot_layout_script_select_language (HarfBuzz.Face face, HarfBuzz.Tag table_tag, uint script_index, uint language_count, HarfBuzz.Tag language_tags, out uint language_index);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static HarfBuzz.Bool ot_layout_script_select_language2 (HarfBuzz.Face face, HarfBuzz.Tag table_tag, uint script_index, uint language_count, HarfBuzz.Tag language_tags, out uint language_index, out HarfBuzz.Tag chosen_language);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static HarfBuzz.Bool ot_layout_table_choose_script (HarfBuzz.Face face, HarfBuzz.Tag table_tag, HarfBuzz.Tag script_tags, out uint script_index, out HarfBuzz.Tag chosen_script);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "1.4.0")]
	public static HarfBuzz.Bool ot_layout_table_find_feature_variations (HarfBuzz.Face face, HarfBuzz.Tag table_tag, int coords, uint num_coords, out uint variations_index);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static HarfBuzz.Bool ot_layout_table_find_script (HarfBuzz.Face face, HarfBuzz.Tag table_tag, HarfBuzz.Tag script_tag, out uint script_index);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.6.0")]
	public static uint ot_layout_table_get_feature_tags (HarfBuzz.Face face, HarfBuzz.Tag table_tag, uint start_offset, [CCode (array_length_cname = "feature_count", array_length_pos = 3.5, array_length_type = "guint")] out HarfBuzz.Tag[] feature_tags);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.22")]
	public static uint ot_layout_table_get_lookup_count (HarfBuzz.Face face, HarfBuzz.Tag table_tag);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static uint ot_layout_table_get_script_tags (HarfBuzz.Face face, HarfBuzz.Tag table_tag, uint start_offset, [CCode (array_length_cname = "script_count", array_length_pos = 3.5, array_length_type = "guint")] out HarfBuzz.Tag[] script_tags);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.0.0")]
	public static HarfBuzz.Bool ot_layout_table_select_script (HarfBuzz.Face face, HarfBuzz.Tag table_tag, uint script_count, HarfBuzz.Tag script_tags, out uint script_index, out HarfBuzz.Tag chosen_script);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "1.3.3")]
	public static HarfBuzz.Position ot_math_get_constant (HarfBuzz.Font font, HarfBuzz.OtMathContant constant);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "1.3.3")]
	public static uint ot_math_get_glyph_assembly (HarfBuzz.Font font, HarfBuzz.Codepoint glyph, HarfBuzz.Direction direction, uint start_offset, [CCode (array_length_cname = "parts_count", array_length_pos = 4.5, array_length_type = "guint")] out unowned HarfBuzz.OtMathGlypthPart[] parts, out HarfBuzz.Position italics_correction);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "1.3.3")]
	public static HarfBuzz.Position ot_math_get_glyph_italics_correction (HarfBuzz.Font font, HarfBuzz.Codepoint glyph);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "1.3.3")]
	public static HarfBuzz.Position ot_math_get_glyph_kerning (HarfBuzz.Font font, HarfBuzz.Codepoint glyph, HarfBuzz.OtMathKern kern, HarfBuzz.Position correction_height);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "3.4.0")]
	public static uint ot_math_get_glyph_kernings (HarfBuzz.Font font, HarfBuzz.Codepoint glyph, HarfBuzz.OtMathKern kern, uint start_offset, [CCode (array_length_cname = "entries_count", array_length_pos = 4.5, array_length_type = "guint")] out unowned HarfBuzz.ot_math_kern_entry_t[] kern_entries);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "1.3.3")]
	public static HarfBuzz.Position ot_math_get_glyph_top_accent_attachment (HarfBuzz.Font font, HarfBuzz.Codepoint glyph);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "1.3.3")]
	public static uint ot_math_get_glyph_variants (HarfBuzz.Font font, HarfBuzz.Codepoint glyph, HarfBuzz.Direction direction, uint start_offset, [CCode (array_length_cname = "variants_count", array_length_pos = 4.5, array_length_type = "guint")] out unowned HarfBuzz.OtMathGlypthVariant[] variants);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "1.3.3")]
	public static HarfBuzz.Position ot_math_get_min_connector_overlap (HarfBuzz.Font font, HarfBuzz.Direction direction);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "1.3.3")]
	public static HarfBuzz.Bool ot_math_has_data (HarfBuzz.Face face);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "1.3.3")]
	public static HarfBuzz.Bool ot_math_is_glyph_extended_shape (HarfBuzz.Face face, HarfBuzz.Codepoint glyph);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.6.0")]
	public static uint ot_meta_get_entry_tags (HarfBuzz.Face face, uint start_offset, [CCode (array_length_cname = "entries_count", array_length_pos = 2.5, array_length_type = "guint")] out unowned HarfBuzz.OtMetaTag[] entries);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.6.0")]
	public static HarfBuzz.Blob ot_meta_reference_entry (HarfBuzz.Face face, HarfBuzz.OtMetaTag meta_tag);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.6.0")]
	public static HarfBuzz.Bool ot_metrics_get_position (HarfBuzz.Font font, HarfBuzz.OtMetricsTag metrics_tag, out HarfBuzz.Position position);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "4.0.0")]
	public static void ot_metrics_get_position_with_fallback (HarfBuzz.Font font, HarfBuzz.OtMetricsTag metrics_tag, out HarfBuzz.Position position);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.6.0")]
	public static float ot_metrics_get_variation (HarfBuzz.Font font, HarfBuzz.OtMetricsTag metrics_tag);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.6.0")]
	public static HarfBuzz.Position ot_metrics_get_x_variation (HarfBuzz.Font font, HarfBuzz.OtMetricsTag metrics_tag);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.6.0")]
	public static HarfBuzz.Position ot_metrics_get_y_variation (HarfBuzz.Font font, HarfBuzz.OtMetricsTag metrics_tag);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.1.0")]
	public static uint ot_name_get_utf16 (HarfBuzz.Face face, HarfBuzz.OtNameId name_id, HarfBuzz.Language language, [CCode (array_length_cname = "text_size", array_length_pos = 3.5, array_length_type = "guint")] out unowned uint16[] text);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.1.0")]
	public static uint ot_name_get_utf32 (HarfBuzz.Face face, HarfBuzz.OtNameId name_id, HarfBuzz.Language language, [CCode (array_length_cname = "text_size", array_length_pos = 3.5, array_length_type = "guint")] out unowned uint32[] text);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.1.0")]
	public static uint ot_name_get_utf8 (HarfBuzz.Face face, HarfBuzz.OtNameId name_id, HarfBuzz.Language language, [CCode (array_length_cname = "text_size", array_length_pos = 3.5, array_length_type = "guint")] out unowned string[] text);
	[CCode (array_length_pos = 1.1, array_length_type = "guint", cheader_filename = "hb-gobject.h")]
	[Version (since = "2.1.0")]
	public static unowned HarfBuzz.OtNameEntry[] ot_name_list_names (HarfBuzz.Face face);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.2")]
	public static void ot_shape_glyphs_closure (HarfBuzz.Font font, HarfBuzz.Buffer buffer, [CCode (array_length_cname = "num_features", array_length_pos = 3.5, array_length_type = "guint")] HarfBuzz.Feature[] features, out unowned HarfBuzz.Set glyphs);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.7")]
	public static void ot_shape_plan_collect_lookups (HarfBuzz.ShapePlan shape_plan, HarfBuzz.Tag table_tag, out unowned HarfBuzz.Set lookup_indexes);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (deprecated = true, deprecated_since = "2.0.0", since = "0.6.0")]
	public static HarfBuzz.Tag ot_tag_from_language (HarfBuzz.Language language);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.2")]
	public static unowned HarfBuzz.Language? ot_tag_to_language (HarfBuzz.Tag tag);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static HarfBuzz.Script ot_tag_to_script (HarfBuzz.Tag tag);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (deprecated = true, deprecated_since = "2.0.0", since = "0.6.0")]
	public static void ot_tags_from_script (HarfBuzz.Script script, out HarfBuzz.Tag script_tag_1, out HarfBuzz.Tag script_tag_2);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.0.0")]
	public static void ot_tags_from_script_and_language (HarfBuzz.Script script, HarfBuzz.Language language, ref uint script_count, out HarfBuzz.Tag script_tags, ref uint language_count, out HarfBuzz.Tag language_tags);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.0.0")]
	public static void ot_tags_to_script_and_language (HarfBuzz.Tag script_tag, HarfBuzz.Tag language_tag, out HarfBuzz.Script script, out unowned HarfBuzz.Language language);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (deprecated = true, deprecated_since = "2.2.0", since = "1.4.2")]
	public static HarfBuzz.Bool ot_var_find_axis (HarfBuzz.Face face, HarfBuzz.Tag axis_tag, uint axis_index, out HarfBuzz.OtVarAxis axis_info);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.2.0")]
	public static HarfBuzz.Bool ot_var_find_axis_info (HarfBuzz.Face face, HarfBuzz.Tag axis_tag, out unowned HarfBuzz.OtVarAxisInfo axis_info);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (deprecated = true, deprecated_since = "2.2.0", since = "1.4.2")]
	public static uint ot_var_get_axes (HarfBuzz.Face face, uint start_offset, [CCode (array_length_cname = "axes_count", array_length_pos = 2.5, array_length_type = "guint")] out unowned HarfBuzz.OtVarAxis[] axes_array);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "1.4.2")]
	public static uint ot_var_get_axis_count (HarfBuzz.Face face);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.2.0")]
	public static uint ot_var_get_axis_infos (HarfBuzz.Face face, uint start_offset, [CCode (array_length_cname = "axes_count", array_length_pos = 2.5, array_length_type = "guint")] out unowned HarfBuzz.OtVarAxisInfo[] axes_array);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.2.0")]
	public static uint ot_var_get_named_instance_count (HarfBuzz.Face face);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "1.4.2")]
	public static HarfBuzz.Bool ot_var_has_data (HarfBuzz.Face face);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.2.0")]
	public static uint ot_var_named_instance_get_design_coords (HarfBuzz.Face face, uint instance_index, [CCode (array_length_cname = "coords_length", array_length_pos = 2.5, array_length_type = "guint")] out float[] coords);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.2.0")]
	public static HarfBuzz.OtNameId ot_var_named_instance_get_postscript_name_id (HarfBuzz.Face face, uint instance_index);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "2.2.0")]
	public static HarfBuzz.OtNameId ot_var_named_instance_get_subfamily_name_id (HarfBuzz.Face face, uint instance_index);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "1.4.2")]
	public static void ot_var_normalize_coords (HarfBuzz.Face face, uint coords_length, float design_coords, out int normalized_coords);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "1.4.2")]
	public static void ot_var_normalize_variations (HarfBuzz.Face face, HarfBuzz.Variation variations, uint variations_length, [CCode (array_length_cname = "coords_length", array_length_pos = 4.1, array_length_type = "guint")] out int[] coords);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static void paint_color (HarfBuzz.PaintFuncs funcs, void* paint_data, HarfBuzz.Bool is_foreground, HarfBuzz.Color color);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static HarfBuzz.Bool paint_custom_palette_color (HarfBuzz.PaintFuncs funcs, void* paint_data, uint color_index, out HarfBuzz.Color color);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static void paint_image (HarfBuzz.PaintFuncs funcs, void* paint_data, HarfBuzz.Blob image, uint width, uint height, HarfBuzz.Tag format, float slant, HarfBuzz.GlyphExtents? extents);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static void paint_linear_gradient (HarfBuzz.PaintFuncs funcs, void* paint_data, HarfBuzz.ColorLine color_line, float x0, float y0, float x1, float y1, float x2, float y2);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static void paint_pop_clip (HarfBuzz.PaintFuncs funcs, void* paint_data);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static void paint_pop_group (HarfBuzz.PaintFuncs funcs, void* paint_data, HarfBuzz.PaintCompositeMode mode);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static void paint_pop_transform (HarfBuzz.PaintFuncs funcs, void* paint_data);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static void paint_push_clip_glyph (HarfBuzz.PaintFuncs funcs, void* paint_data, HarfBuzz.Codepoint glyph, HarfBuzz.Font font);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static void paint_push_clip_rectangle (HarfBuzz.PaintFuncs funcs, void* paint_data, float xmin, float ymin, float xmax, float ymax);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static void paint_push_group (HarfBuzz.PaintFuncs funcs, void* paint_data);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static void paint_push_transform (HarfBuzz.PaintFuncs funcs, void* paint_data, float xx, float yx, float xy, float yy, float dx, float dy);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static void paint_radial_gradient (HarfBuzz.PaintFuncs funcs, void* paint_data, HarfBuzz.ColorLine color_line, float x0, float y0, float r0, float x1, float y1, float r1);
	[CCode (cheader_filename = "hb-gobject.h")]
	public static void paint_sweep_gradient (HarfBuzz.PaintFuncs funcs, void* paint_data, HarfBuzz.ColorLine color_line, float x0, float y0, float start_angle, float end_angle);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.2")]
	public static void shape (HarfBuzz.Font font, HarfBuzz.Buffer buffer, [CCode (array_length_cname = "num_features", array_length_pos = 3.1, array_length_type = "guint")] HarfBuzz.Feature[]? features);
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.2")]
	public static HarfBuzz.Bool shape_full (HarfBuzz.Font font, HarfBuzz.Buffer buffer, [CCode (array_length_cname = "num_features", array_length_pos = 3.5, array_length_type = "guint")] HarfBuzz.Feature[]? features, [CCode (array_length = false, array_null_terminated = true)] string[]? shaper_list);
	[CCode (array_length = false, array_null_terminated = true, cheader_filename = "hb-gobject.h")]
	[Version (since = "0.9.2")]
	public static unowned string[] shape_list_shapers ();
	[CCode (cheader_filename = "hb-gobject.h")]
	[Version (since = "3.0.0")]
	public static float style_get_value (HarfBuzz.Font font, HarfBuzz.style_tag_t style_tag);
}