about summary refs log tree commit diff stats
path: root/src/wrapped/wrappedgio2_private.h
blob: 647da3345f2db3074ae049311170281a5d6097e4 (plain) (blame)
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
#if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA))
#error Meh...
#endif

//GO(_fini, 
GO(g_action_activate, vFpp)
GO(g_action_change_state, vFpp)
GO(g_action_get_enabled, iFp)
GO(g_action_get_name, pFp)
GO(g_action_get_parameter_type, pFp)
GO(g_action_get_state, pFp)
GO(g_action_get_state_hint, pFp)
GO(g_action_get_state_type, pFp)
GO(g_action_get_type, LFv)
GO(g_action_group_action_added, vFpp)
GO(g_action_group_action_enabled_changed, vFppi)
GO(g_action_group_action_removed, vFpp)
GO(g_action_group_action_state_changed, vFppp)
GO(g_action_group_activate_action, vFppp)
GO(g_action_group_change_action_state, vFppp)
GO(g_action_group_get_action_enabled, iFpp)
GO(g_action_group_get_action_parameter_type, pFpp)
GO(g_action_group_get_action_state, pFpp)
GO(g_action_group_get_action_state_hint, pFpp)
GO(g_action_group_get_action_state_type, pFpp)
GO(g_action_group_get_type, LFv)
GO(g_action_group_has_action, iFpp)
GO(g_action_group_list_actions, pFp)
GO(g_action_group_query_action, iFppppppp)
GO(g_action_map_add_action, vFpp)
GO(g_action_map_add_action_entries, vFppip)
GO(g_action_map_get_type, LFv)
GO(g_action_map_lookup_action, pFpp)
GO(g_action_map_remove_action, vFpp)
GO(g_action_name_is_valid, iFp)
GO(g_action_parse_detailed_name, iFpppp)
GO(g_action_print_detailed_name, pFpp)
GO(g_app_info_add_supports_type, iFppp)
GO(g_app_info_can_delete, iFp)
GO(g_app_info_can_remove_supports_type, iFp)
GO(g_app_info_create_flags_get_type, LFv)
GO(g_app_info_create_from_commandline, pFppup)
GO(g_app_info_delete, iFp)
GO(g_app_info_dup, pFp)
GO(g_app_info_equal, iFpp)
GO(g_app_info_get_all, pFv)
GO(g_app_info_get_all_for_type, pFp)
GO(g_app_info_get_commandline, pFp)
GO(g_app_info_get_default_for_type, pFpi)
GO(g_app_info_get_default_for_uri_scheme, pFp)
GO(g_app_info_get_description, pFp)
GO(g_app_info_get_display_name, pFp)
GO(g_app_info_get_executable, pFp)
GO(g_app_info_get_fallback_for_type, pFp)
GO(g_app_info_get_icon, pFp)
GO(g_app_info_get_id, pFp)
GO(g_app_info_get_name, pFp)
GO(g_app_info_get_recommended_for_type, pFp)
GO(g_app_info_get_supported_types, pFp)
GO(g_app_info_get_type, LFv)
GO(g_app_info_launch, iFpppp)
GO(g_app_info_launch_default_for_uri, iFppp)
GO(g_app_info_launch_uris, iFpppp)
GO(g_app_info_monitor_get, pFv)
GO(g_app_info_monitor_get_type, LFv)
GO(g_app_info_remove_supports_type, iFppp)
GO(g_app_info_reset_type_associations, vFp)
GO(g_app_info_set_as_default_for_extension, iFppp)
GO(g_app_info_set_as_default_for_type, iFppp)
GO(g_app_info_set_as_last_used_for_type, iFppp)
GO(g_app_info_should_show, iFp)
GO(g_app_info_supports_files, iFp)
GO(g_app_info_supports_uris, iFp)
GO(g_app_launch_context_get_display, pFppp)
GO(g_app_launch_context_get_environment, pFp)
GO(g_app_launch_context_get_startup_notify_id, pFppp)
GO(g_app_launch_context_get_type, LFv)
GO(g_app_launch_context_launch_failed, vFpp)
GO(g_app_launch_context_new, pFv)
GO(g_app_launch_context_setenv, vFppp)
GO(g_app_launch_context_unsetenv, vFpp)
GO(g_application_activate, vFp)
GO(g_application_add_main_option, vFppcuupp)
GO(g_application_add_main_option_entries, vFpp)
GO(g_application_add_option_group, vFpp)
GO(g_application_command_line_create_file_for_arg, pFpp)
GO(g_application_command_line_get_arguments, pFpp)
GO(g_application_command_line_get_cwd, pFp)
GO(g_application_command_line_getenv, pFpp)
GO(g_application_command_line_get_environ, pFp)
GO(g_application_command_line_get_exit_status, iFp)
GO(g_application_command_line_get_is_remote, iFp)
GO(g_application_command_line_get_options_dict, pFp)
GO(g_application_command_line_get_platform_data, pFp)
GO(g_application_command_line_get_stdin, pFp)
GO(g_application_command_line_get_type, LFv)
//GOM(g_application_command_line_print, vFppV)
//GOM(g_application_command_line_printerr, vFppV)
GO(g_application_command_line_set_exit_status, vFpi)
GO(g_application_flags_get_type, LFv)
GO(g_application_get_application_id, pFp)
GO(g_application_get_dbus_connection, pFp)
GO(g_application_get_dbus_object_path, pFp)
GO(g_application_get_default, pFv)
GO(g_application_get_flags, uFp)
GO(g_application_get_inactivity_timeout, uFp)
GO(g_application_get_is_registered, iFp)
GO(g_application_get_is_remote, iFp)
GO(g_application_get_resource_base_path, pFp)
GO(g_application_get_type, LFv)
GO(g_application_hold, vFp)
GO(g_application_id_is_valid, iFp)
GO(g_application_mark_busy, vFp)
GO(g_application_new, pFpu)
GO(g_application_open, vFppip)
GO(g_application_quit, vFp)
GO(g_application_register, iFppp)
GO(g_application_release, vFp)
GO(g_application_run, iFpip)
GO(g_application_send_notification, vFppp)
GO(g_application_set_action_group, vFpp)
GO(g_application_set_application_id, vFpp)
GO(g_application_set_default, vFp)
GO(g_application_set_flags, vFpu)
GO(g_application_set_inactivity_timeout, vFpu)
GO(g_application_set_resource_base_path, vFpp)
GO(g_application_unmark_busy, vFp)
GO(g_application_withdraw_notification, vFpp)
GO(g_ask_password_flags_get_type, LFv)
GO(g_async_initable_get_type, LFv)
GOM(g_async_initable_init_async, vFEpippp)
GO(g_async_initable_init_finish, iFppp)
GOM(g_async_initable_new_async, vFELippppV)
GO(g_async_initable_new_finish, pFppp)
GOM(g_async_initable_new_valist_async, vFELpAippp)
GOM(g_async_initable_newv_async, vFELupippp)
GO(g_async_result_get_source_object, pFp)
GO(g_async_result_get_type, LFv)
GO(g_async_result_get_user_data, pFp)
GO(g_async_result_is_tagged, iFpp)
GO(g_async_result_legacy_propagate_error, iFpp)
GO(g_buffered_input_stream_fill, lFplpp)
//GOM(g_buffered_input_stream_fill_async, vFplippp)
GO(g_buffered_input_stream_fill_finish, lFppp)
GO(g_buffered_input_stream_get_available, LFp)
GO(g_buffered_input_stream_get_buffer_size, LFp)
GO(g_buffered_input_stream_get_type, LFv)
GO(g_buffered_input_stream_new, pFp)
GO(g_buffered_input_stream_new_sized, pFpL)
GO(g_buffered_input_stream_peek, LFppLL)
GO(g_buffered_input_stream_peek_buffer, pFpp)
GO(g_buffered_input_stream_read_byte, iFppp)
GO(g_buffered_input_stream_set_buffer_size, vFpL)
GO(g_buffered_output_stream_get_auto_grow, iFp)
GO(g_buffered_output_stream_get_buffer_size, LFp)
GO(g_buffered_output_stream_get_type, LFv)
GO(g_buffered_output_stream_new, pFp)
GO(g_buffered_output_stream_new_sized, pFpL)
GO(g_buffered_output_stream_set_auto_grow, vFpi)
GO(g_buffered_output_stream_set_buffer_size, vFpL)
GOM(g_bus_get, vFEippp)
GO(g_bus_get_finish, pFpp)
GO(g_bus_get_sync, pFipp)
GO(g_bus_name_owner_flags_get_type, LFv)
GO(g_bus_name_watcher_flags_get_type, LFv)
GOM(g_bus_own_name, uFEipuppppp)
GOM(g_bus_own_name_on_connection, uFEppupppp)
GO(g_bus_own_name_on_connection_with_closures, uFppupp)
GO(g_bus_own_name_with_closures, uFipuppp)
GO(g_bus_type_get_type, LFv)
GO(g_bus_unown_name, vFu)
GO(g_bus_unwatch_name, vFu)
GOM(g_bus_watch_name, uFEipupppp)
GOM(g_bus_watch_name_on_connection, uFEppupppp)
GO(g_bus_watch_name_on_connection_with_closures, uFppupp)   // mmm closure, wrapped or unwrapped?
GO(g_bus_watch_name_with_closures, uFipupp)
GO(g_bytes_icon_get_bytes, pFp)
GO(g_bytes_icon_get_type, LFv)
GO(g_bytes_icon_new, pFp)
GO(g_cancellable_cancel, vFp)
GOM(g_cancellable_connect, LFEpppp)
GO(g_cancellable_disconnect, vFpL)
GO(g_cancellable_get_current, pFv)
GO(g_cancellable_get_fd, iFp)
GO(g_cancellable_get_type, LFv)
GO(g_cancellable_is_cancelled, iFp)
GO(g_cancellable_make_pollfd, iFpp)
GO(g_cancellable_new, pFv)
GO(g_cancellable_pop_current, vFp)
GO(g_cancellable_push_current, vFp)
GO(g_cancellable_release_fd, vFp)
GO(g_cancellable_reset, vFp)
GO(g_cancellable_set_error_if_cancelled, iFpp)
GO(g_cancellable_source_new, pFp)
GO(g_charset_converter_get_num_fallbacks, uFp)
GO(g_charset_converter_get_type, LFv)
GO(g_charset_converter_get_use_fallback, iFp)
GO(g_charset_converter_new, pFppp)
GO(g_charset_converter_set_use_fallback, vFpi)
GO(g_content_type_can_be_executable, iFp)
GO(g_content_type_equals, iFpp)
GO(g_content_type_from_mime_type, pFp)
GO(g_content_type_get_description, pFp)
GO(g_content_type_get_generic_icon_name, pFp)
GO(g_content_type_get_icon, pFp)
GO(g_content_type_get_mime_type, pFp)
GO(g_content_type_get_symbolic_icon, pFp)
GO(g_content_type_guess, pFppLp)
GO(g_content_type_guess_for_tree, pFp)
GO(g_content_type_is_a, iFpp)
GO(g_content_type_is_unknown, iFp)
GO(g_content_types_get_registered, pFv)
GO(g_converter_convert, uFppLpLuppp)
GO(g_converter_flags_get_type, LFv)
GO(g_converter_get_type, LFv)
GO(g_converter_input_stream_get_converter, pFp)
GO(g_converter_input_stream_get_type, LFv)
GO(g_converter_input_stream_new, pFpp)
GO(g_converter_output_stream_get_converter, pFp)
GO(g_converter_output_stream_get_type, LFv)
GO(g_converter_output_stream_new, pFpp)
GO(g_converter_reset, vFp)
GO(g_converter_result_get_type, LFv)
GO(g_credentials_get_native, pFpu)
GO(g_credentials_get_type, LFv)
GO(g_credentials_get_unix_pid, iFpp)
GO(g_credentials_get_unix_user, uFpp)
GO(g_credentials_is_same_user, iFppp)
GO(g_credentials_new, pFv)
GO(g_credentials_set_native, vFpup)
GO(g_credentials_set_unix_user, iFpup)
GO(g_credentials_to_string, pFp)
GO(g_credentials_type_get_type, LFv)
GO(g_data_input_stream_get_byte_order, uFp)
GO(g_data_input_stream_get_newline_type, uFp)
GO(g_data_input_stream_get_type, LFv)
GO(g_data_input_stream_new, pFp)
GO(g_data_input_stream_read_byte, CFppp)
GO(g_data_input_stream_read_int16, wFppp)
GO(g_data_input_stream_read_int32, iFppp)
GO(g_data_input_stream_read_int64, lFppp)
GO(g_data_input_stream_read_line, pFpppp)
//GOM(g_data_input_stream_read_line_async, vFpippp)
GO(g_data_input_stream_read_line_finish, pFpppp)
GO(g_data_input_stream_read_line_finish_utf8, pFpppp)
GO(g_data_input_stream_read_line_utf8, pFpppp)
GO(g_data_input_stream_read_uint16, WFppp)
GO(g_data_input_stream_read_uint32, uFppp)
GO(g_data_input_stream_read_uint64, LFppp)
GO(g_data_input_stream_read_until, pFppppp)
//GOM(g_data_input_stream_read_until_async, vFppippp)
GO(g_data_input_stream_read_until_finish, pFpppp)
GO(g_data_input_stream_read_upto, pFpplppp)
//GOM(g_data_input_stream_read_upto_async, vFpplippp)
GO(g_data_input_stream_read_upto_finish, pFpppp)
GO(g_data_input_stream_set_byte_order, vFpu)
GO(g_data_input_stream_set_newline_type, vFpu)
GO(g_data_output_stream_get_byte_order, uFp)
GO(g_data_output_stream_get_type, LFv)
GO(g_data_output_stream_new, pFp)
GO(g_data_output_stream_put_byte, iFpCpp)
GO(g_data_output_stream_put_int16, iFpwpp)
GO(g_data_output_stream_put_int32, iFpipp)
GO(g_data_output_stream_put_int64, iFplpp)
GO(g_data_output_stream_put_string, iFpppp)
GO(g_data_output_stream_put_uint16, iFpWpp)
GO(g_data_output_stream_put_uint32, iFpupp)
GO(g_data_output_stream_put_uint64, iFpLpp)
GO(g_data_output_stream_set_byte_order, vFpu)
GO(g_data_stream_byte_order_get_type, LFv)
GO(g_data_stream_newline_type_get_type, LFv)
GO(g_dbus_action_group_get, pFppp)
GO(g_dbus_action_group_get_type, LFv)
GO(g_dbus_address_escape_value, pFp)
GO(g_dbus_address_get_for_bus_sync, pFipp)
//GOM(g_dbus_address_get_stream, vFpppp)
GO(g_dbus_address_get_stream_finish, pFppp)
GO(g_dbus_address_get_stream_sync, pFpppp)
GO(g_dbus_annotation_info_get_type, LFv)
GO(g_dbus_annotation_info_lookup, pFpp)
GO(g_dbus_annotation_info_ref, pFp)
GO(g_dbus_annotation_info_unref, vFp)
GO(g_dbus_arg_info_get_type, LFv)
GO(g_dbus_arg_info_ref, pFp)
GO(g_dbus_arg_info_unref, vFp)
GO(g_dbus_auth_observer_allow_mechanism, iFpp)
GO(g_dbus_auth_observer_authorize_authenticated_peer, iFppp)
GO(g_dbus_auth_observer_get_type, LFv)
GO(g_dbus_auth_observer_new, pFv)
GO(g_dbus_call_flags_get_type, LFv)
GO(g_dbus_capability_flags_get_type, LFv)
GOM(g_dbus_connection_add_filter, uFEpppp)
GOM(g_dbus_connection_call, vFEpppppppuippp)
GO(g_dbus_connection_call_finish, pFppp)
GO(g_dbus_connection_call_sync, pFpppppppuipp)
//GOM(g_dbus_connection_call_with_unix_fd_list, vFpppppppuipppp)
GO(g_dbus_connection_call_with_unix_fd_list_finish, pFpppp)
GO(g_dbus_connection_call_with_unix_fd_list_sync, pFpppppppuipppp)
GOM(g_dbus_connection_close, vFEpppp)
GO(g_dbus_connection_close_finish, iFppp)
GO(g_dbus_connection_close_sync, iFppp)
GO(g_dbus_connection_emit_signal, iFppppppp)
GO(g_dbus_connection_export_action_group, uFpppp)
GO(g_dbus_connection_export_menu_model, uFpppp)
GO(g_dbus_connection_flags_get_type, LFv)
GOM(g_dbus_connection_flush, vFEpppp)
GO(g_dbus_connection_flush_finish, iFppp)
GO(g_dbus_connection_flush_sync, iFppp)
GO(g_dbus_connection_get_capabilities, uFp)
GO(g_dbus_connection_get_exit_on_close, iFp)
GO(g_dbus_connection_get_guid, pFp)
GO(g_dbus_connection_get_last_serial, uFp)
GO(g_dbus_connection_get_peer_credentials, pFp)
GO(g_dbus_connection_get_stream, pFp)
GO(g_dbus_connection_get_type, LFv)
GO(g_dbus_connection_get_unique_name, pFp)
GO(g_dbus_connection_is_closed, iFp)
GOM(g_dbus_connection_new, vFEppupppp)
GO(g_dbus_connection_new_finish, pFpp)
GOM(g_dbus_connection_new_for_address, vFEpupppp)
GO(g_dbus_connection_new_for_address_finish, pFpp)
GO(g_dbus_connection_new_for_address_sync, pFpuppp)
GO(g_dbus_connection_new_sync, pFppuppp)
GOM(g_dbus_connection_register_object, uFEppppppp)
//GOM(g_dbus_connection_register_subtree, uFEpppuppp)   // vtable need wrapping
GO(g_dbus_connection_remove_filter, vFpu)
GO(g_dbus_connection_send_message, iFppupp)
GOM(g_dbus_connection_send_message_with_reply, vFEppuipppp) //TODO: same volatile argument...
GO(g_dbus_connection_send_message_with_reply_finish, pFppp)
GO(g_dbus_connection_send_message_with_reply_sync, pFppuippp)
GO(g_dbus_connection_set_exit_on_close, vFpi)
GOM(g_dbus_connection_signal_subscribe, uFEppppppuppp)
GO(g_dbus_connection_signal_unsubscribe, vFpu)
GO(g_dbus_connection_start_message_processing, vFp)
GO(g_dbus_connection_unexport_action_group, vFpu)
GO(g_dbus_connection_unexport_menu_model, vFpu)
GO(g_dbus_connection_unregister_object, iFpu)
GO(g_dbus_connection_unregister_subtree, iFpu)
GO(g_dbus_error_encode_gerror, pFp)
GO(g_dbus_error_get_remote_error, pFp)
GO(g_dbus_error_get_type, LFv)
GO(g_dbus_error_is_remote_error, iFp)
GO(g_dbus_error_new_for_dbus_error, pFpp)
GO(g_dbus_error_quark, uFv)
GO(g_dbus_error_register_error, iFuip)
GO(g_dbus_error_register_error_domain, vFpppu)
//GOM(g_dbus_error_set_dbus_error, vFppppV)
//GOM(g_dbus_error_set_dbus_error_valist, vFppppA)
GO(g_dbus_error_strip_remote_error, iFp)
GO(g_dbus_error_unregister_error, iFuip)
GO(g_dbus_generate_guid, pFv)
GO(g_dbus_gvalue_to_gvariant, pFpp)
GO(g_dbus_gvariant_to_gvalue, vFpp)
GO(g_dbus_interface_dup_object, pFp)
GO(g_dbus_interface_get_info, pFp)
GO(g_dbus_interface_get_object, pFp)
GO(g_dbus_interface_get_type, LFv)
GO(g_dbus_interface_info_cache_build, vFp)
GO(g_dbus_interface_info_cache_release, vFp)
GO(g_dbus_interface_info_generate_xml, vFpup)
GO(g_dbus_interface_info_get_type, LFv)
GO(g_dbus_interface_info_lookup_method, pFpp)
GO(g_dbus_interface_info_lookup_property, pFpp)
GO(g_dbus_interface_info_lookup_signal, pFpp)
GO(g_dbus_interface_info_ref, pFp)
GO(g_dbus_interface_info_unref, vFp)
GO(g_dbus_interface_set_object, vFpp)
GO(g_dbus_interface_skeleton_export, iFpppp)
GO(g_dbus_interface_skeleton_flags_get_type, LFv)
GO(g_dbus_interface_skeleton_flush, vFp)
GO(g_dbus_interface_skeleton_get_connection, pFp)
GO(g_dbus_interface_skeleton_get_connections, pFp)
GO(g_dbus_interface_skeleton_get_flags, uFp)
GO(g_dbus_interface_skeleton_get_info, pFp)
GO(g_dbus_interface_skeleton_get_object_path, pFp)
GO(g_dbus_interface_skeleton_get_properties, pFp)
GO(g_dbus_interface_skeleton_get_type, LFv)
//GOM(g_dbus_interface_skeleton_get_vtable, pFp)
GO(g_dbus_interface_skeleton_has_connection, iFpp)
GO(g_dbus_interface_skeleton_set_flags, vFpu)
GO(g_dbus_interface_skeleton_unexport, vFp)
GO(g_dbus_interface_skeleton_unexport_from_connection, vFpp)
GO(g_dbus_is_address, iFp)
GO(g_dbus_is_guid, iFp)
GO(g_dbus_is_interface_name, iFp)
GO(g_dbus_is_member_name, iFp)
GO(g_dbus_is_name, iFp)
GO(g_dbus_is_supported_address, iFpp)
GO(g_dbus_is_unique_name, iFp)
GO(g_dbus_menu_model_get, pFppp)
GO(g_dbus_menu_model_get_type, LFv)
GO(g_dbus_message_byte_order_get_type, LFv)
GO(g_dbus_message_bytes_needed, lFpLp)
GO(g_dbus_message_copy, pFpp)
GO(g_dbus_message_flags_get_type, LFv)
GO(g_dbus_message_get_arg0, pFp)
GO(g_dbus_message_get_body, pFp)
GO(g_dbus_message_get_byte_order, uFp)
GO(g_dbus_message_get_destination, pFp)
GO(g_dbus_message_get_error_name, pFp)
GO(g_dbus_message_get_flags, uFp)
GO(g_dbus_message_get_header, pFpu)
GO(g_dbus_message_get_header_fields, pFp)
GO(g_dbus_message_get_interface, pFp)
GO(g_dbus_message_get_locked, iFp)
GO(g_dbus_message_get_member, pFp)
GO(g_dbus_message_get_message_type, uFp)
GO(g_dbus_message_get_num_unix_fds, uFp)
GO(g_dbus_message_get_path, pFp)
GO(g_dbus_message_get_reply_serial, uFp)
GO(g_dbus_message_get_sender, pFp)
GO(g_dbus_message_get_serial, uFp)
GO(g_dbus_message_get_signature, pFp)
GO(g_dbus_message_get_type, LFv)
GO(g_dbus_message_get_unix_fd_list, pFp)
GO(g_dbus_message_header_field_get_type, LFv)
GO(g_dbus_message_lock, vFp)
GO(g_dbus_message_new, pFv)
GO(g_dbus_message_new_from_blob, pFpLup)
GO(g_dbus_message_new_method_call, pFpppp)
//GOM(g_dbus_message_new_method_error, pFpppV)
GO(g_dbus_message_new_method_error_literal, pFppp)
//GOM(g_dbus_message_new_method_error_valist, pFpppA)
GO(g_dbus_message_new_method_reply, pFp)
GO(g_dbus_message_new_signal, pFppp)
GO(g_dbus_message_print, pFpu)
GO(g_dbus_message_set_body, vFpp)
GO(g_dbus_message_set_byte_order, vFpu)
GO(g_dbus_message_set_destination, vFpp)
GO(g_dbus_message_set_error_name, vFpp)
GO(g_dbus_message_set_flags, vFpu)
GO(g_dbus_message_set_header, vFpup)
GO(g_dbus_message_set_interface, vFpp)
GO(g_dbus_message_set_member, vFpp)
GO(g_dbus_message_set_message_type, vFpu)
GO(g_dbus_message_set_num_unix_fds, vFpu)
GO(g_dbus_message_set_path, vFpp)
GO(g_dbus_message_set_reply_serial, vFpu)
GO(g_dbus_message_set_sender, vFpp)
GO(g_dbus_message_set_serial, vFpu)
GO(g_dbus_message_set_signature, vFpp)
GO(g_dbus_message_set_unix_fd_list, vFpp)
GO(g_dbus_message_to_blob, pFppup)
GO(g_dbus_message_to_gerror, iFpp)
GO(g_dbus_message_type_get_type, LFv)
GO(g_dbus_method_info_get_type, LFv)
GO(g_dbus_method_info_ref, pFp)
GO(g_dbus_method_info_unref, vFp)
GO(g_dbus_method_invocation_get_connection, pFp)
GO(g_dbus_method_invocation_get_interface_name, pFp)
GO(g_dbus_method_invocation_get_message, pFp)
GO(g_dbus_method_invocation_get_method_info, pFp)
GO(g_dbus_method_invocation_get_method_name, pFp)
GO(g_dbus_method_invocation_get_object_path, pFp)
GO(g_dbus_method_invocation_get_parameters, pFp)
GO(g_dbus_method_invocation_get_property_info, pFp)
GO(g_dbus_method_invocation_get_sender, pFp)
GO(g_dbus_method_invocation_get_type, LFv)
GO(g_dbus_method_invocation_get_user_data, pFp)
GO(g_dbus_method_invocation_return_dbus_error, vFppp)
GOM(g_dbus_method_invocation_return_error, vFpuipV)
GO(g_dbus_method_invocation_return_error_literal, vFpuip)
GOM(g_dbus_method_invocation_return_error_valist, vFpuipA)
GO(g_dbus_method_invocation_return_gerror, vFpp)
GO(g_dbus_method_invocation_return_value, vFpp)
GO(g_dbus_method_invocation_return_value_with_unix_fd_list, vFppp)
GO(g_dbus_method_invocation_take_error, vFpp)
GO(g_dbus_node_info_generate_xml, vFpup)
GO(g_dbus_node_info_get_type, LFv)
GO(g_dbus_node_info_lookup_interface, pFpp)
GO(g_dbus_node_info_new_for_xml, pFpp)
GO(g_dbus_node_info_ref, pFp)
GO(g_dbus_node_info_unref, vFp)
GO(g_dbus_object_get_interface, pFpp)
GO(g_dbus_object_get_interfaces, pFp)
GO(g_dbus_object_get_object_path, pFp)
GO(g_dbus_object_get_type, LFv)
GO(g_dbus_object_manager_client_flags_get_type, LFv)
GO(g_dbus_object_manager_client_get_connection, pFp)
GO(g_dbus_object_manager_client_get_flags, uFp)
GO(g_dbus_object_manager_client_get_name, pFp)
GO(g_dbus_object_manager_client_get_name_owner, pFp)
GO(g_dbus_object_manager_client_get_type, LFv)
//GOM(g_dbus_object_manager_client_new, vFpupppppppp)
GO(g_dbus_object_manager_client_new_finish, pFpp)
//GOM(g_dbus_object_manager_client_new_for_bus, vFiupppppppp)
GO(g_dbus_object_manager_client_new_for_bus_finish, pFpp)
GOM(g_dbus_object_manager_client_new_for_bus_sync, pFEiuppppppp)
//GOM(g_dbus_object_manager_client_new_sync, pFpuppppppp)
//GOM(g_dbus_object_manager_get_interface, pFEppp)  //struct GDBusObjectManagerIface is full of callbacks
GO(g_dbus_object_manager_get_object, pFpp)
GO(g_dbus_object_manager_get_object_path, pFp)
GO(g_dbus_object_manager_get_objects, pFp)
GO(g_dbus_object_manager_get_type, LFv)
GO(g_dbus_object_manager_server_export, vFpp)
GO(g_dbus_object_manager_server_export_uniquely, vFpp)
GO(g_dbus_object_manager_server_get_connection, pFp)
GO(g_dbus_object_manager_server_get_type, LFv)
GO(g_dbus_object_manager_server_is_exported, iFpp)
GO(g_dbus_object_manager_server_new, pFp)
GO(g_dbus_object_manager_server_set_connection, vFpp)
GO(g_dbus_object_manager_server_unexport, iFpp)
GO(g_dbus_object_proxy_get_connection, pFp)
GO(g_dbus_object_proxy_get_type, LFv)
GO(g_dbus_object_proxy_new, pFpp)
GO(g_dbus_object_skeleton_add_interface, vFpp)
GO(g_dbus_object_skeleton_flush, vFp)
GO(g_dbus_object_skeleton_get_type, LFv)
GO(g_dbus_object_skeleton_new, pFp)
GO(g_dbus_object_skeleton_remove_interface, vFpp)
GO(g_dbus_object_skeleton_remove_interface_by_name, vFpp)
GO(g_dbus_object_skeleton_set_object_path, vFpp)
GO(g_dbus_property_info_flags_get_type, LFv)
GO(g_dbus_property_info_get_type, LFv)
GO(g_dbus_property_info_ref, pFp)
GO(g_dbus_property_info_unref, vFp)
GOM(g_dbus_proxy_call, vFEpppuippp)
GO(g_dbus_proxy_call_finish, pFppp)
GO(g_dbus_proxy_call_sync, pFpppuipp)
GOM(g_dbus_proxy_call_with_unix_fd_list, vFEpppuipppp)
GO(g_dbus_proxy_call_with_unix_fd_list_finish, pFpppp)
GO(g_dbus_proxy_call_with_unix_fd_list_sync, pFpppuipppp)
GO(g_dbus_proxy_flags_get_type, LFv)
GO(g_dbus_proxy_get_cached_property, pFpp)
GO(g_dbus_proxy_get_cached_property_names, pFp)
GO(g_dbus_proxy_get_connection, pFp)
GO(g_dbus_proxy_get_default_timeout, iFp)
GO(g_dbus_proxy_get_flags, uFp)
GO(g_dbus_proxy_get_interface_info, pFp)
GO(g_dbus_proxy_get_interface_name, pFp)
GO(g_dbus_proxy_get_name, pFp)
GO(g_dbus_proxy_get_name_owner, pFp)
GO(g_dbus_proxy_get_object_path, pFp)
GO(g_dbus_proxy_get_type, LFv)
GOM(g_dbus_proxy_new, vFEpuppppppp)
GO(g_dbus_proxy_new_finish, pFpp)
GOM(g_dbus_proxy_new_for_bus, vFEiuppppppp)
GO(g_dbus_proxy_new_for_bus_finish, pFpp)
GO(g_dbus_proxy_new_for_bus_sync, pFiupppppp)
GO(g_dbus_proxy_new_sync, pFpupppppp)
GO(g_dbus_proxy_set_cached_property, vFppp)
GO(g_dbus_proxy_set_default_timeout, vFpi)
GO(g_dbus_proxy_set_interface_info, vFpp)
GO(g_dbus_send_message_flags_get_type, LFv)
GO(g_dbus_server_flags_get_type, LFv)
GO(g_dbus_server_get_client_address, pFp)
GO(g_dbus_server_get_flags, uFp)
GO(g_dbus_server_get_guid, pFp)
GO(g_dbus_server_get_type, LFv)
GO(g_dbus_server_is_active, iFp)
GO(g_dbus_server_new_sync, pFpupppp)
GO(g_dbus_server_start, vFp)
GO(g_dbus_server_stop, vFp)
GO(g_dbus_signal_flags_get_type, LFv)
GO(g_dbus_signal_info_get_type, LFv)
GO(g_dbus_signal_info_ref, pFp)
GO(g_dbus_signal_info_unref, vFp)
GO(g_dbus_subtree_flags_get_type, LFv)
GO(g_desktop_app_info_get_action_name, pFpp)
GO(g_desktop_app_info_get_boolean, iFpp)
GO(g_desktop_app_info_get_categories, pFp)
GO(g_desktop_app_info_get_filename, pFp)
GO(g_desktop_app_info_get_generic_name, pFp)
GO(g_desktop_app_info_get_implementations, pFp)
GO(g_desktop_app_info_get_is_hidden, iFp)
GO(g_desktop_app_info_get_keywords, pFp)
GO(g_desktop_app_info_get_nodisplay, iFp)
GO(g_desktop_app_info_get_show_in, iFpp)
GO(g_desktop_app_info_get_startup_wm_class, pFp)
GO(g_desktop_app_info_get_string, pFpp)
GO(g_desktop_app_info_get_type, LFv)
GO(g_desktop_app_info_has_key, iFpp)
GO(g_desktop_app_info_launch_action, vFppp)
//GOM(g_desktop_app_info_launch_uris_as_manager, iFpppuppppp)
GO(g_desktop_app_info_list_actions, pFp)
GO(g_desktop_app_info_lookup_get_default_for_uri_scheme, pFpp)
GO(g_desktop_app_info_lookup_get_type, LFv)
GO(g_desktop_app_info_new, pFp)
GO(g_desktop_app_info_new_from_filename, pFp)
GO(g_desktop_app_info_new_from_keyfile, pFp)
GO(g_desktop_app_info_search, pFp)
GO(g_desktop_app_info_set_desktop_env, vFp)
GO(g_drive_can_eject, iFp)
GO(g_drive_can_poll_for_media, iFp)
GO(g_drive_can_start, iFp)
GO(g_drive_can_start_degraded, iFp)
GO(g_drive_can_stop, iFp)
//GOM(g_drive_eject, vFpuppp)
GO(g_drive_eject_finish, iFppp)
//GOM(g_drive_eject_with_operation, vFpupppp)
GO(g_drive_eject_with_operation_finish, iFppp)
GO(g_drive_enumerate_identifiers, pFp)
GO(g_drive_get_icon, pFp)
GO(g_drive_get_identifier, pFpp)
GO(g_drive_get_name, pFp)
GO(g_drive_get_sort_key, pFp)
GO(g_drive_get_start_stop_type, uFp)
GO(g_drive_get_symbolic_icon, pFp)
GO(g_drive_get_type, LFv)
GO(g_drive_get_volumes, pFp)
GO(g_drive_has_media, iFp)
GO(g_drive_has_volumes, iFp)
GO(g_drive_is_media_check_automatic, iFp)
GO(g_drive_is_media_removable, iFp)
//GOM(g_drive_poll_for_media, vFpppp)
GO(g_drive_poll_for_media_finish, iFppp)
//GOM(g_drive_start, vFpupppp)
GO(g_drive_start_finish, iFppp)
GO(g_drive_start_flags_get_type, LFv)
GO(g_drive_start_stop_type_get_type, LFv)
//GOM(g_drive_stop, vFpupppp)
GO(g_drive_stop_finish, iFppp)
GO(g_emblemed_icon_add_emblem, vFpp)
GO(g_emblemed_icon_clear_emblems, vFp)
GO(g_emblemed_icon_get_emblems, pFp)
GO(g_emblemed_icon_get_icon, pFp)
GO(g_emblemed_icon_get_type, LFv)
GO(g_emblemed_icon_new, pFpp)
GO(g_emblem_get_icon, pFp)
GO(g_emblem_get_origin, uFp)
GO(g_emblem_get_type, LFv)
GO(g_emblem_new, pFp)
GO(g_emblem_new_with_origin, pFpu)
GO(g_emblem_origin_get_type, LFv)
GO(g_file_append_to, pFpupp)
//GOM(g_file_append_to_async, vFEpuippp)
GO(g_file_append_to_finish, pFppp)
GO(g_file_attribute_info_flags_get_type, LFv)
GO(g_file_attribute_info_list_add, vFppuu)
GO(g_file_attribute_info_list_dup, pFp)
GO(g_file_attribute_info_list_get_type, LFv)
GO(g_file_attribute_info_list_lookup, pFpp)
GO(g_file_attribute_info_list_new, pFv)
GO(g_file_attribute_info_list_ref, pFp)
GO(g_file_attribute_info_list_unref, vFp)
GO(g_file_attribute_matcher_enumerate_namespace, iFpp)
GO(g_file_attribute_matcher_enumerate_next, pFp)
GO(g_file_attribute_matcher_get_type, LFv)
GO(g_file_attribute_matcher_matches, iFpp)
GO(g_file_attribute_matcher_matches_only, iFpp)
GO(g_file_attribute_matcher_new, pFp)
GO(g_file_attribute_matcher_ref, pFp)
GO(g_file_attribute_matcher_subtract, pFpp)
GO(g_file_attribute_matcher_to_string, pFp)
GO(g_file_attribute_matcher_unref, vFp)
GO(g_file_attribute_status_get_type, LFv)
GO(g_file_attribute_type_get_type, LFv)
//GOM(g_file_copy, iFEppupppp)
//GOM(g_file_copy_async, vFEppuippppp)
GO(g_file_copy_attributes, iFppupp)
GO(g_file_copy_finish, iFppp)
GO(g_file_copy_flags_get_type, LFv)
GO(g_file_create, pFpupp)
//GOM(g_file_create_async, vFEpuippp)
GO(g_file_create_finish, pFppp)
GO(g_file_create_flags_get_type, LFv)
GO(g_file_create_readwrite, pFpupp)
//GOM(g_file_create_readwrite_async, vFEpuippp)
GO(g_file_create_readwrite_finish, pFppp)
GO(g_file_delete, iFppp)
//GOM(g_file_delete_async, vFEpippp)
GO(g_file_delete_finish, iFppp)
GO(g_file_descriptor_based_get_fd, iFp)
GO(g_file_descriptor_based_get_type, LFv)
GO(g_file_dup, pFp)
//GOM(g_file_eject_mountable, vFEpuppp)
GO(g_file_eject_mountable_finish, iFppp)
//GOM(g_file_eject_mountable_with_operation, vFpupppp)
GO(g_file_eject_mountable_with_operation_finish, iFppp)
GO(g_file_enumerate_children, pFppupp)
//GOM(g_file_enumerate_children_async, vFppuippp)
GO(g_file_enumerate_children_finish, pFppp)
GO(g_file_enumerator_close, iFppp)
//GOM(g_file_enumerator_close_async, vFpippp)
GO(g_file_enumerator_close_finish, iFppp)
GO(g_file_enumerator_get_child, pFpp)
GO(g_file_enumerator_get_container, pFp)
GO(g_file_enumerator_get_type, LFv)
GO(g_file_enumerator_has_pending, iFp)
GO(g_file_enumerator_is_closed, iFp)
GO(g_file_enumerator_next_file, pFppp)
//GOM(g_file_enumerator_next_files_async, vFpiippp)
GO(g_file_enumerator_next_files_finish, pFppp)
GO(g_file_enumerator_set_pending, vFpi)
GO(g_file_equal, iFpp)
GO(g_file_find_enclosing_mount, pFppp)
//GOM(g_file_find_enclosing_mount_async, vFEpippp)
GO(g_file_find_enclosing_mount_finish, pFppp)
GO(g_file_get_basename, pFp)
GO(g_file_get_child, pFpp)
GO(g_file_get_child_for_display_name, pFppp)
GO(g_file_get_parent, pFp)
GO(g_file_get_parse_name, pFp)
GO(g_file_get_path, pFp)
GO(g_file_get_relative_path, pFpp)
GO(g_file_get_type, LFv)
GO(g_file_get_uri, pFp)
GO(g_file_get_uri_scheme, pFp)
GO(g_file_hash, uFp)
GO(g_file_has_parent, iFpp)
GO(g_file_has_prefix, iFpp)
GO(g_file_has_uri_scheme, iFpp)
GO(g_file_icon_get_file, pFp)
GO(g_file_icon_get_type, LFv)
GO(g_file_icon_new, pFp)
GO(g_file_info_clear_status, vFp)
GO(g_file_info_copy_into, vFpp)
GO(g_file_info_dup, pFp)
GO(g_file_info_get_attribute_as_string, pFpp)
GO(g_file_info_get_attribute_boolean, iFpp)
GO(g_file_info_get_attribute_byte_string, pFpp)
GO(g_file_info_get_attribute_data, iFppppp)
GO(g_file_info_get_attribute_int32, iFpp)
GO(g_file_info_get_attribute_int64, lFpp)
GO(g_file_info_get_attribute_object, pFpp)
GO(g_file_info_get_attribute_status, uFpp)
GO(g_file_info_get_attribute_string, pFpp)
GO(g_file_info_get_attribute_stringv, pFpp)
GO(g_file_info_get_attribute_type, uFpp)
GO(g_file_info_get_attribute_uint32, uFpp)
GO(g_file_info_get_attribute_uint64, LFpp)
GO(g_file_info_get_content_type, pFp)
GO(g_file_info_get_deletion_date, pFp)
GO(g_file_info_get_display_name, pFp)
GO(g_file_info_get_edit_name, pFp)
GO(g_file_info_get_etag, pFp)
GO(g_file_info_get_file_type, uFp)
GO(g_file_info_get_icon, pFp)
GO(g_file_info_get_is_backup, iFp)
GO(g_file_info_get_is_hidden, iFp)
GO(g_file_info_get_is_symlink, iFp)
GO(g_file_info_get_modification_time, vFpp)
GO(g_file_info_get_name, pFp)
GO(g_file_info_get_size, lFp)
GO(g_file_info_get_sort_order, iFp)
GO(g_file_info_get_symbolic_icon, pFp)
GO(g_file_info_get_symlink_target, pFp)
GO(g_file_info_get_type, LFv)
GO(g_file_info_has_attribute, iFpp)
GO(g_file_info_has_namespace, iFpp)
GO(g_file_info_list_attributes, pFpp)
GO(g_file_info_new, pFv)
GO(g_file_info_remove_attribute, vFpp)
GO(g_file_info_set_attribute, vFppup)
GO(g_file_info_set_attribute_boolean, vFppi)
GO(g_file_info_set_attribute_byte_string, vFppp)
GO(g_file_info_set_attribute_int32, vFppi)
GO(g_file_info_set_attribute_int64, vFppl)
GO(g_file_info_set_attribute_mask, vFpp)
GO(g_file_info_set_attribute_object, vFppp)
GO(g_file_info_set_attribute_status, iFppu)
GO(g_file_info_set_attribute_string, vFppp)
GO(g_file_info_set_attribute_stringv, vFppp)
GO(g_file_info_set_attribute_uint32, vFppu)
GO(g_file_info_set_attribute_uint64, vFppL)
GO(g_file_info_set_content_type, vFpp)
GO(g_file_info_set_display_name, vFpp)
GO(g_file_info_set_edit_name, vFpp)
GO(g_file_info_set_file_type, vFpu)
GO(g_file_info_set_icon, vFpp)
GO(g_file_info_set_is_hidden, vFpi)
GO(g_file_info_set_is_symlink, vFpi)
GO(g_file_info_set_modification_time, vFpp)
GO(g_file_info_set_name, vFpp)
GO(g_file_info_set_size, vFpl)
GO(g_file_info_set_sort_order, vFpi)
GO(g_file_info_set_symbolic_icon, vFpp)
GO(g_file_info_set_symlink_target, vFpp)
GO(g_file_info_unset_attribute_mask, vFp)
GO(g_file_input_stream_get_type, LFv)
GO(g_file_input_stream_query_info, pFpppp)
//GOM(g_file_input_stream_query_info_async, vFppippp)
GO(g_file_input_stream_query_info_finish, pFppp)
GO(g_file_io_stream_get_etag, pFp)
GO(g_file_io_stream_get_type, LFv)
GO(g_file_io_stream_query_info, pFpppp)
//GOM(g_file_io_stream_query_info_async, vFppippp)
GO(g_file_io_stream_query_info_finish, pFppp)
GO(g_file_is_native, iFp)
GO(g_file_load_bytes, pFpppp)   //sice 2.56+
//GOM(g_file_load_bytes_async, vFEpppp) //since 2.56+
GO(g_file_load_bytes_finish, pFpppp)    //since 2.56+
GO(g_file_load_contents, iFpppppp)
//GOM(g_file_load_contents_async, vFEpppp)
GO(g_file_load_contents_finish, iFpppppp)
//GOM(g_file_load_partial_contents_async, vFppppp)
GO(g_file_load_partial_contents_finish, iFpppppp)
GO(g_file_make_directory, iFppp)
//GOM(g_file_make_directory_async, vFEpippp)
GO(g_file_make_directory_finish, iFppp)
GO(g_file_make_directory_with_parents, iFppp)
GO(g_file_make_symbolic_link, iFpppp)
//GOM(g_file_measure_disk_usage, iFEpuppppppp)
//GOM(g_file_measure_disk_usage_async, vFEpuippppp)
GO(g_file_measure_disk_usage_finish, iFpppppp)
GO(g_file_measure_flags_get_type, LFv)
GO(g_file_monitor, pFpupp)
GO(g_file_monitor_cancel, iFp)
GO(g_file_monitor_directory, pFpupp)
GO(g_file_monitor_emit_event, vFpppu)
GO(g_file_monitor_event_get_type, LFv)
GO(g_file_monitor_file, pFpupp)
GO(g_file_monitor_flags_get_type, LFv)
GO(g_file_monitor_get_type, LFv)
GO(g_file_monitor_is_cancelled, iFp)
GO(g_file_monitor_set_rate_limit, vFpi)
//GOM(g_file_mount_enclosing_volume, vFEpupppp)
GO(g_file_mount_enclosing_volume_finish, iFppp)
//GOM(g_file_mount_mountable, vFEpupppp)
GO(g_file_mount_mountable_finish, pFppp)
//GOM(g_file_move, iFEppupppp)
GO(g_filename_completer_get_completions, pFpp)
GO(g_filename_completer_get_completion_suffix, pFpp)
GO(g_filename_completer_get_type, LFv)
GO(g_filename_completer_new, pFv)
GO(g_filename_completer_set_dirs_only, vFpi)
GO(g_file_new_build_filename, pFppppppppppp)    // vaarg, since v2.56+
GO(g_file_new_for_commandline_arg, pFp)
GO(g_file_new_for_commandline_arg_and_cwd, pFpp)
GO(g_file_new_for_path, pFp)
GO(g_file_new_for_uri, pFp)
GO(g_file_new_tmp, pFppp)
GO(g_file_open_readwrite, pFppp)
//GOM(g_file_open_readwrite_async, vFEpippp)
GO(g_file_open_readwrite_finish, pFppp)
GO(g_file_output_stream_get_etag, pFp)
GO(g_file_output_stream_get_type, LFv)
GO(g_file_output_stream_query_info, pFpppp)
//GOM(g_file_output_stream_query_info_async, vFppippp)
GO(g_file_output_stream_query_info_finish, pFppp)
GO(g_file_parse_name, pFp)
GO(g_file_peek_path, pFp)
//GOM(g_file_poll_mountable, vFEpppp)
GO(g_file_poll_mountable_finish, iFppp)
GO(g_file_query_default_handler, pFppp)
//GOM(g_file_query_default_handler_async, vFEpipBp)  //since 2.60+
GO(g_file_query_default_handler_finish, pFppp)      //since 2.60+
GO(g_file_query_exists, iFpp)
GO(g_file_query_filesystem_info, pFpppp)
//GOM(g_file_query_filesystem_info_async, vFEppippp)
GO(g_file_query_filesystem_info_finish, pFppp)
GO(g_file_query_file_type, uFpup)
GO(g_file_query_info, pFppupp)
//GOM(g_file_query_info_async, vFEppuippp)
GO(g_file_query_info_finish, pFppp)
GO(g_file_query_info_flags_get_type, LFv)
GO(g_file_query_settable_attributes, pFppp)
GO(g_file_query_writable_namespaces, pFppp)
GO(g_file_read, pFppp)
//GOM(g_file_read_async, vFEpippp)
GO(g_file_read_finish, pFppp)
GO(g_file_replace, pFppiupp)
//GOM(g_file_replace_async, vFEppiuippp)
GO(g_file_replace_contents, iFppLpiuppp)
//GOM(g_file_replace_contents_async, vFEppLpiuppp)
//GOM(g_file_replace_contents_bytes_async, vFEpppiuppp)
GO(g_file_replace_contents_finish, iFpppp)
GO(g_file_replace_finish, pFppp)
GO(g_file_replace_readwrite, pFppiupp)
//GOM(g_file_replace_readwrite_async, vFEppiuippp)
GO(g_file_replace_readwrite_finish, pFppp)
GO(g_file_resolve_relative_path, pFpp)
GO(g_file_set_attribute, iFppupupp)
GO(g_file_set_attribute_byte_string, iFpppupp)
GO(g_file_set_attribute_int32, iFppiupp)
GO(g_file_set_attribute_int64, iFpplupp)
//GOM(g_file_set_attributes_async, vFEppuippp)
GO(g_file_set_attributes_finish, iFpppp)
GO(g_file_set_attributes_from_info, iFppupp)
GO(g_file_set_attribute_string, iFpppupp)
GO(g_file_set_attribute_uint32, iFppuupp)
GO(g_file_set_attribute_uint64, iFppLupp)
GO(g_file_set_display_name, pFpppp)
//GOM(g_file_set_display_name_async, vFEppippp)
GO(g_file_set_display_name_finish, pFppp)
//GOM(g_file_start_mountable, vFEpupppp)
GO(g_file_start_mountable_finish, iFppp)
//GOM(g_file_stop_mountable, vFpupppp)
GO(g_file_stop_mountable_finish, iFppp)
GO(g_file_supports_thread_contexts, iFp)
GO(g_filesystem_preview_type_get_type, LFv)
GO(g_file_trash, iFppp)
//GOM(g_file_trash_async, vFEpippp)
GO(g_file_trash_finish, iFppp)
GO(g_file_type_get_type, LFv)
//GOM(g_file_unmount_mountable, vFEpuppp)
GO(g_file_unmount_mountable_finish, iFppp)
//GOM(g_file_unmount_mountable_with_operation, vFEpupppp)
GO(g_file_unmount_mountable_with_operation_finish, iFppp)
GO(g_filter_input_stream_get_base_stream, pFp)
GO(g_filter_input_stream_get_close_base_stream, iFp)
GO(g_filter_input_stream_get_type, LFv)
GO(g_filter_input_stream_set_close_base_stream, vFpi)
GO(g_filter_output_stream_get_base_stream, pFp)
GO(g_filter_output_stream_get_close_base_stream, iFp)
GO(g_filter_output_stream_get_type, LFv)
GO(g_filter_output_stream_set_close_base_stream, vFpi)
GO(g_icon_deserialize, pFp)
GO(g_icon_equal, iFpp)
GO(g_icon_get_type, LFv)
GO(g_icon_hash, uFp)
GO(g_icon_new_for_string, pFpp)
GO(g_icon_serialize, pFp)
GO(g_icon_to_string, pFp)
GO(g_inet_address_equal, iFpp)
GO(g_inet_address_get_family, uFp)
GO(g_inet_address_get_is_any, iFp)
GO(g_inet_address_get_is_link_local, iFp)
GO(g_inet_address_get_is_loopback, iFp)
GO(g_inet_address_get_is_mc_global, iFp)
GO(g_inet_address_get_is_mc_link_local, iFp)
GO(g_inet_address_get_is_mc_node_local, iFp)
GO(g_inet_address_get_is_mc_org_local, iFp)
GO(g_inet_address_get_is_mc_site_local, iFp)
GO(g_inet_address_get_is_multicast, iFp)
GO(g_inet_address_get_is_site_local, iFp)
GO(g_inet_address_get_native_size, LFp)
GO(g_inet_address_get_type, LFv)
GO(g_inet_address_mask_equal, iFpp)
GO(g_inet_address_mask_get_address, pFp)
GO(g_inet_address_mask_get_family, uFp)
GO(g_inet_address_mask_get_length, uFp)
GO(g_inet_address_mask_get_type, LFv)
GO(g_inet_address_mask_matches, iFpp)
GO(g_inet_address_mask_new, pFpup)
GO(g_inet_address_mask_new_from_string, pFpp)
GO(g_inet_address_mask_to_string, pFp)
GO(g_inet_address_new_any, pFu)
GO(g_inet_address_new_from_bytes, pFpu)
GO(g_inet_address_new_from_string, pFp)
GO(g_inet_address_new_loopback, pFu)
GO(g_inet_address_to_bytes, pFp)
GO(g_inet_address_to_string, pFp)
GO(g_inet_socket_address_get_address, pFp)
GO(g_inet_socket_address_get_flowinfo, uFp)
GO(g_inet_socket_address_get_port, WFp)
GO(g_inet_socket_address_get_scope_id, uFp)
GO(g_inet_socket_address_get_type, LFv)
GO(g_inet_socket_address_new, pFpW)
GO(g_inet_socket_address_new_from_string, pFpu)
GO(g_initable_get_type, LFv)
GO(g_initable_init, iFppp)
GOM(g_initable_new, pFELpppV)
GO(g_initable_newv, pFLuppp)
GOM(g_initable_new_valist, pFELpApp)
GO(g_input_stream_clear_pending, vFp)
GO(g_input_stream_close, iFppp)
//GOM(g_input_stream_close_async, vFpippp)
GO(g_input_stream_close_finish, iFppp)
GO(g_input_stream_get_type, LFv)
GO(g_input_stream_has_pending, iFp)
GO(g_input_stream_is_closed, iFp)
GO(g_input_stream_read, lFppLpp)
GO(g_input_stream_read_all, iFppLppp)
GOM(g_input_stream_read_async, vFEppLippp)
GO(g_input_stream_read_bytes, pFpLpp)
//GOM(g_input_stream_read_bytes_async, vFpLippp)
GO(g_input_stream_read_bytes_finish, pFppp)
GO(g_input_stream_read_finish, lFppp)
GO(g_input_stream_set_pending, iFpp)
GO(g_input_stream_skip, lFpLpp)
//GOM(g_input_stream_skip_async, vFpLippp)
GO(g_input_stream_skip_finish, lFppp)
GO(g_io_error_enum_get_type, LFv)
GO(g_io_error_from_errno, uFi)
GO(g_io_error_quark, uFv)
GO(g_io_extension_get_name, pFp)
GO(g_io_extension_get_priority, iFp)
GO(g_io_extension_get_type, LFp)
GO(g_io_extension_point_get_extension_by_name, pFpp)
GO(g_io_extension_point_get_extensions, pFp)
GO(g_io_extension_point_get_required_type, LFp)
GO(g_io_extension_point_implement, pFpLpi)
GO(g_io_extension_point_lookup, pFp)
GO(g_io_extension_point_register, pFp)
GO(g_io_extension_point_set_required_type, vFpL)
GO(g_io_extension_ref_class, pFp)
GO(g_io_module_get_type, LFv)
GO(g_io_module_new, pFp)
GO(g_io_module_scope_block, vFpp)
GO(g_io_module_scope_flags_get_type, LFv)
GO(g_io_module_scope_free, vFp)
GO(g_io_module_scope_new, pFu)
GO(g_io_modules_load_all_in_directory, pFp)
GO(g_io_modules_load_all_in_directory_with_scope, pFpp)
GO(g_io_modules_scan_all_in_directory, vFp)
GO(g_io_modules_scan_all_in_directory_with_scope, vFpp)
GO(g_io_scheduler_cancel_all_jobs, vFv)
//GOM(g_io_scheduler_job_send_to_mainloop, iFpppp)
//GOM(g_io_scheduler_job_send_to_mainloop_async, vFpppp)
//GOM(g_io_scheduler_push_job, vFpppip)
GO(g_io_stream_clear_pending, vFp)
GO(g_io_stream_close, iFppp)
//GOM(g_io_stream_close_async, vFpippp)
GO(g_io_stream_close_finish, iFppp)
GO(g_io_stream_get_input_stream, pFp)
GO(g_io_stream_get_output_stream, pFp)
GO(g_io_stream_get_type, LFv)
GO(g_io_stream_has_pending, iFp)
GO(g_io_stream_is_closed, iFp)
GO(g_io_stream_set_pending, iFpp)
//GOM(g_io_stream_splice_async, vFppuippp)
GO(g_io_stream_splice_finish, iFpp)
GO(g_io_stream_splice_flags_get_type, LFv)
//GO(g_keyfile_settings_backend_new, 
GO(g_list_model_get_item, pFpu)
GO(g_list_model_get_n_items, uFp)
GO(g_list_model_get_object, pFpu)
GO(g_loadable_icon_get_type, LFv)
GO(g_loadable_icon_load, pFpippp)
//GOM(g_loadable_icon_load_async, vFpippp)
GO(g_loadable_icon_load_finish, pFpppp)
//GO(g_local_directory_monitor_get_type, 
//GO(g_local_file_monitor_get_type, 
GO(g_memory_input_stream_add_bytes, vFpp)
//GOM(g_memory_input_stream_add_data, vFpplp)
GO(g_memory_input_stream_get_type, LFv)
GO(g_memory_input_stream_new, pFv)
GO(g_memory_input_stream_new_from_bytes, pFp)
//GOM(g_memory_input_stream_new_from_data, pFplp)
GO(g_memory_output_stream_get_data, pFp)
GO(g_memory_output_stream_get_data_size, LFp)
GO(g_memory_output_stream_get_size, LFp)
GO(g_memory_output_stream_get_type, LFv)
//GOM(g_memory_output_stream_new, pFpLpp)
GO(g_memory_output_stream_new_resizable, pFv)
GO(g_memory_output_stream_steal_as_bytes, pFp)
GO(g_memory_output_stream_steal_data, pFp)
//GO(g_memory_settings_backend_new, 
GO(g_menu_append, vFppp)
GO(g_menu_append_item, vFpp)
GO(g_menu_append_section, vFppp)
GO(g_menu_append_submenu, vFppp)
GO(g_menu_attribute_iter_get_name, pFp)
GO(g_menu_attribute_iter_get_next, iFppp)
GO(g_menu_attribute_iter_get_type, LFv)
GO(g_menu_attribute_iter_get_value, pFp)
GO(g_menu_attribute_iter_next, iFp)
GO(g_menu_freeze, vFp)
GO(g_menu_get_type, LFv)
GO(g_menu_insert, vFpipp)
GO(g_menu_insert_item, vFpip)
GO(g_menu_insert_section, vFpipp)
GO(g_menu_insert_submenu, vFpipp)
//GOM(g_menu_item_get_attribute, iFpppV)
GO(g_menu_item_get_attribute_value, pFppp)
GO(g_menu_item_get_link, pFpp)
GO(g_menu_item_get_type, LFv)
GO(g_menu_item_new, pFpp)
GO(g_menu_item_new_from_model, pFpi)
GO(g_menu_item_new_section, pFpp)
GO(g_menu_item_new_submenu, pFpp)
//GOM(g_menu_item_set_action_and_target, vFpppV)
GO(g_menu_item_set_action_and_target_value, vFppp)
//GOM(g_menu_item_set_attribute, vFpppV)
GO(g_menu_item_set_attribute_value, vFppp)
GO(g_menu_item_set_detailed_action, vFpp)
GO(g_menu_item_set_icon, vFpp)
GO(g_menu_item_set_label, vFpp)
GO(g_menu_item_set_link, vFppp)
GO(g_menu_item_set_section, vFpp)
GO(g_menu_item_set_submenu, vFpp)
GO(g_menu_link_iter_get_name, pFp)
GO(g_menu_link_iter_get_next, iFppp)
GO(g_menu_link_iter_get_type, LFv)
GO(g_menu_link_iter_get_value, pFp)
GO(g_menu_link_iter_next, iFp)
//GOM(g_menu_model_get_item_attribute, iFpippV)
GO(g_menu_model_get_item_attribute_value, pFpipp)
GO(g_menu_model_get_item_link, pFpip)
GO(g_menu_model_get_n_items, iFp)
GO(g_menu_model_get_type, LFv)
GO(g_menu_model_is_mutable, iFp)
GO(g_menu_model_items_changed, vFpiii)
GO(g_menu_model_iterate_item_attributes, pFpi)
GO(g_menu_model_iterate_item_links, pFpi)
GO(g_menu_new, pFv)
GO(g_menu_prepend, vFppp)
GO(g_menu_prepend_item, vFpp)
GO(g_menu_prepend_section, vFppp)
GO(g_menu_prepend_submenu, vFppp)
GO(g_menu_remove, vFpi)
GO(g_menu_remove_all, vFp)
GO(g_mount_can_eject, iFp)
GO(g_mount_can_unmount, iFp)
//GOM(g_mount_eject, vFpuppp)
GO(g_mount_eject_finish, iFppp)
//GOM(g_mount_eject_with_operation, vFpupppp)
GO(g_mount_eject_with_operation_finish, iFppp)
GO(g_mount_get_default_location, pFp)
GO(g_mount_get_drive, pFp)
GO(g_mount_get_icon, pFp)
GO(g_mount_get_name, pFp)
GO(g_mount_get_root, pFp)
GO(g_mount_get_sort_key, pFp)
GO(g_mount_get_symbolic_icon, pFp)
GO(g_mount_get_type, LFv)
GO(g_mount_get_uuid, pFp)
GO(g_mount_get_volume, pFp)
//GOM(g_mount_guess_content_type, vFpippp)
GO(g_mount_guess_content_type_finish, pFppp)
GO(g_mount_guess_content_type_sync, pFpipp)
GO(g_mount_is_shadowed, iFp)
GO(g_mount_mount_flags_get_type, LFv)
GO(g_mount_operation_get_anonymous, iFp)
GO(g_mount_operation_get_choice, iFp)
GO(g_mount_operation_get_domain, pFp)
GO(g_mount_operation_get_password, pFp)
GO(g_mount_operation_get_password_save, uFp)
GO(g_mount_operation_get_type, LFv)
GO(g_mount_operation_get_username, pFp)
GO(g_mount_operation_new, pFv)
GO(g_mount_operation_reply, vFpu)
GO(g_mount_operation_result_get_type, LFv)
GO(g_mount_operation_set_anonymous, vFpi)
GO(g_mount_operation_set_choice, vFpi)
GO(g_mount_operation_set_domain, vFpp)
GO(g_mount_operation_set_password, vFpp)
GO(g_mount_operation_set_password_save, vFpu)
GO(g_mount_operation_set_username, vFpp)
//GOM(g_mount_remount, vFpupppp)
GO(g_mount_remount_finish, iFppp)
GO(g_mount_shadow, vFp)
//GOM(g_mount_unmount, vFpuppp)
GO(g_mount_unmount_finish, iFppp)
GO(g_mount_unmount_flags_get_type, LFv)
//GOM(g_mount_unmount_with_operation, vFpupppp)
GO(g_mount_unmount_with_operation_finish, iFppp)
GO(g_mount_unshadow, vFp)
GO(g_native_volume_monitor_get_type, LFv)
GO(g_network_address_get_hostname, pFp)
GO(g_network_address_get_port, WFp)
GO(g_network_address_get_scheme, pFp)
GO(g_network_address_get_type, LFv)
GO(g_network_address_new, pFpW)
GO(g_network_address_parse, pFpWp)
GO(g_network_address_parse_uri, pFpWp)
//GO(g_networking_init, 
//GO(g_network_monitor_base_add_network, 
//GO(g_network_monitor_base_get_type, 
//GO(g_network_monitor_base_remove_network, 
//GO(g_network_monitor_base_set_networks, 
GO(g_network_monitor_can_reach, iFpppp)
//GOM(g_network_monitor_can_reach_async, vFppppp)
GO(g_network_monitor_can_reach_finish, iFppp)
GO(g_network_monitor_get_connectivity, iFp)
GO(g_network_monitor_get_default, pFv)
GO(g_network_monitor_get_network_available, iFp)
GO(g_network_monitor_get_network_metered, iFp)
GO(g_network_monitor_get_type, LFv)
GO(g_network_service_get_domain, pFp)
GO(g_network_service_get_protocol, pFp)
GO(g_network_service_get_scheme, pFp)
GO(g_network_service_get_service, pFp)
GO(g_network_service_get_type, LFv)
GO(g_network_service_new, pFppp)
GO(g_network_service_set_scheme, vFpp)
GO(g_notification_add_button, vFppp)
//GOM(g_notification_add_button_with_target, vFppppV)
GO(g_notification_add_button_with_target_value, vFpppp)
GO(g_notification_get_type, LFv)
GO(g_notification_new, pFp)
GO(g_notification_priority_get_type, LFv)
GO(g_notification_set_body, vFpp)
GO(g_notification_set_default_action, vFpp)
//GOM(g_notification_set_default_action_and_target, vFpppV)
GO(g_notification_set_default_action_and_target_value, vFppp)
GO(g_notification_set_icon, vFpp)
GO(g_notification_set_priority, vFpu)
GO(g_notification_set_title, vFpp)
GO(g_notification_set_urgent, vFpi)
//GO(g_null_settings_backend_new, 
GO(g_output_stream_clear_pending, vFp)
GO(g_output_stream_close, iFppp)
//GOM(g_output_stream_close_async, vFpippp)
GO(g_output_stream_close_finish, iFppp)
GO(g_output_stream_flush, iFppp)
//GOM(g_output_stream_flush_async, vFpippp)
GO(g_output_stream_flush_finish, iFppp)
GO(g_output_stream_get_type, LFv)
GO(g_output_stream_has_pending, iFp)
GO(g_output_stream_is_closed, iFp)
GO(g_output_stream_is_closing, iFp)
//GOM(g_output_stream_printf, iFpppppV)
GO(g_output_stream_set_pending, iFpp)
GO(g_output_stream_splice, lFppupp)
//GOM(g_output_stream_splice_async, vFppuippp)
GO(g_output_stream_splice_finish, lFppp)
GO(g_output_stream_splice_flags_get_type, LFv)
//GOM(g_output_stream_vprintf, iFpppppA)
GO(g_output_stream_write, lFppLpp)
GO(g_output_stream_write_all, iFppLppp)
//GOM(g_output_stream_write_async, vFppLippp)
GO(g_output_stream_write_bytes, lFpppp)
//GOM(g_output_stream_write_bytes_async, vFppippp)
GO(g_output_stream_write_bytes_finish, lFppp)
GO(g_output_stream_write_finish, lFppp)
GO(g_password_save_get_type, LFv)
GO(g_permission_acquire, iFppp)
//GOM(g_permission_acquire_async, vFpppp)
GO(g_permission_acquire_finish, iFppp)
GO(g_permission_get_allowed, iFp)
GO(g_permission_get_can_acquire, iFp)
GO(g_permission_get_can_release, iFp)
GO(g_permission_get_type, LFv)
GO(g_permission_impl_update, vFpiii)
GO(g_permission_release, iFppp)
//GOM(g_permission_release_async, vFpppp)
GO(g_permission_release_finish, iFppp)
GO(g_pollable_input_stream_can_poll, iFp)
//GOM(g_pollable_input_stream_create_source, pFpp)
GO(g_pollable_input_stream_get_type, LFv)
GO(g_pollable_input_stream_is_readable, iFp)
GO(g_pollable_input_stream_read_nonblocking, lFppLpp)
GO(g_pollable_output_stream_can_poll, iFp)
//GOM(g_pollable_output_stream_create_source, pFpp)
GO(g_pollable_output_stream_get_type, LFv)
GO(g_pollable_output_stream_is_writable, iFp)
GO(g_pollable_output_stream_write_nonblocking, lFppLpp)
//GOM(g_pollable_source_new, pFp)
//GOM(g_pollable_source_new_full, pFppp)
GO(g_pollable_stream_read, lFppLipp)
GO(g_pollable_stream_write, lFppLipp)
GO(g_pollable_stream_write_all, iFppLippp)
GO(g_property_action_get_type, LFv)
GO(g_property_action_new, pFppp)
GO(g_proxy_address_enumerator_get_type, LFv)
GO(g_proxy_address_get_destination_hostname, pFp)
GO(g_proxy_address_get_destination_port, WFp)
GO(g_proxy_address_get_destination_protocol, pFp)
GO(g_proxy_address_get_password, pFp)
GO(g_proxy_address_get_protocol, pFp)
GO(g_proxy_address_get_type, LFv)
GO(g_proxy_address_get_uri, pFp)
GO(g_proxy_address_get_username, pFp)
GO(g_proxy_address_new, pFpWppWpp)
GO(g_proxy_connect, pFppppp)
//GOM(g_proxy_connect_async, vFpppppp)
GO(g_proxy_connect_finish, pFppp)
GO(g_proxy_get_default_for_protocol, pFp)
GO(g_proxy_get_type, LFv)
GO(g_proxy_resolver_get_default, pFv)
GO(g_proxy_resolver_get_type, LFv)
GO(g_proxy_resolver_is_supported, iFp)
GO(g_proxy_resolver_lookup, pFpppp)
//GOM(g_proxy_resolver_lookup_async, vFppppp)
GO(g_proxy_resolver_lookup_finish, pFppp)
GO(g_proxy_supports_hostname, iFp)
GO(g_remote_action_group_activate_action_full, vFpppp)
GO(g_remote_action_group_change_action_state_full, vFpppp)
GO(g_remote_action_group_get_type, LFv)
GO(g_resolver_error_get_type, LFv)
GO(g_resolver_error_quark, uFv)
GO(g_resolver_free_addresses, vFp)
GO(g_resolver_free_targets, vFp)
GO(g_resolver_get_default, pFv)
GO(g_resolver_get_type, LFv)
GO(g_resolver_lookup_by_address, pFpppp)
//GOM(g_resolver_lookup_by_address_async, vFppppp)
GO(g_resolver_lookup_by_address_finish, pFppp)
GO(g_resolver_lookup_by_name, pFpppp)
//GOM(g_resolver_lookup_by_name_async, vFppppp)
GO(g_resolver_lookup_by_name_finish, pFppp)
GO(g_resolver_lookup_records, pFppupp)
//GOM(g_resolver_lookup_records_async, vFppuppp)
GO(g_resolver_lookup_records_finish, pFppp)
GO(g_resolver_lookup_service, pFpppppp)
//GOM(g_resolver_lookup_service_async, vFppppppp)
GO(g_resolver_lookup_service_finish, pFppp)
GO(g_resolver_record_type_get_type, LFv)
GO(g_resolver_set_default, vFp)
GO(g_resource_enumerate_children, pFppup)
GO(g_resource_error_get_type, LFv)
GO(g_resource_error_quark, uFv)
GO(g_resource_flags_get_type, LFv)
GO(g_resource_get_info, iFppuppp)
GO(g_resource_get_type, LFv)
GO(g_resource_load, pFpp)
GO(g_resource_lookup_data, pFppup)
GO(g_resource_lookup_flags_get_type, LFv)
GO(g_resource_new_from_data, pFpp)
GO(g_resource_open_stream, pFppup)
GO(g_resource_ref, pFp)
GO(g_resources_enumerate_children, pFpup)
GO(g_resources_get_info, iFpuppp)
GO(g_resources_lookup_data, pFpup)
GO(g_resources_open_stream, pFpup)
GO(g_resources_register, vFp)
GO(g_resources_unregister, vFp)
GO(g_resource_unref, vFp)
GO(g_seekable_can_seek, iFp)
GO(g_seekable_can_truncate, iFp)
GO(g_seekable_get_type, LFv)
GO(g_seekable_seek, iFplupp)
GO(g_seekable_tell, lFp)
GO(g_seekable_truncate, iFplpp)
GO(g_settings_apply, vFp)
//GO(g_settings_backend_changed, 
//GO(g_settings_backend_changed_tree, 
//GO(g_settings_backend_flatten_tree, 
//GO(g_settings_backend_get_default, 
//GO(g_settings_backend_get_type, 
//GO(g_settings_backend_keys_changed, 
//GO(g_settings_backend_path_changed, 
//GO(g_settings_backend_path_writable_changed, 
//GO(g_settings_backend_writable_changed, 
GO(g_settings_bind, vFppppu)
GO(g_settings_bind_flags_get_type, LFv)
//GOM(g_settings_bind_with_mapping, vFppppupppp)
GO(g_settings_bind_writable, vFppppi)
GO(g_settings_create_action, pFpp)
GO(g_settings_delay, vFp)
//GOM(g_settings_get, vFpppV)
GO(g_settings_get_boolean, iFpp)
GO(g_settings_get_child, pFpp)
GO(g_settings_get_default_value, pFpp)
GO(g_settings_get_double, dFpp)
GO(g_settings_get_enum, iFpp)
GO(g_settings_get_flags, uFpp)
GO(g_settings_get_has_unapplied, iFp)
GO(g_settings_get_int, iFpp)
//GOM(g_settings_get_mapped, pFpppp)
GO(g_settings_get_range, pFpp)
GO(g_settings_get_string, pFpp)
GO(g_settings_get_strv, pFpp)
GO(g_settings_get_type, LFv)
GO(g_settings_get_uint, uFpp)
GO(g_settings_get_user_value, pFpp)
GO(g_settings_get_value, pFpp)
GO(g_settings_is_writable, iFpp)
GO(g_settings_list_children, pFp)
GO(g_settings_list_keys, pFp)
GO(g_settings_list_relocatable_schemas, pFv)
GO(g_settings_list_schemas, pFv)
GO(g_settings_new, pFp)
GO(g_settings_new_full, pFppp)
GO(g_settings_new_with_backend, pFpp)
GO(g_settings_new_with_backend_and_path, pFppp)
GO(g_settings_new_with_path, pFpp)
GO(g_settings_range_check, iFppp)
GO(g_settings_reset, vFpp)
GO(g_settings_revert, vFp)
GO(g_settings_schema_get_id, pFp)
GO(g_settings_schema_get_key, pFpp)
GO(g_settings_schema_get_path, pFp)
GO(g_settings_schema_get_type, LFv)
GO(g_settings_schema_has_key, iFpp)
GO(g_settings_schema_key_get_default_value, pFp)
GO(g_settings_schema_key_get_description, pFp)
GO(g_settings_schema_key_get_range, pFp)
GO(g_settings_schema_key_get_summary, pFp)
GO(g_settings_schema_key_get_type, LFv)
GO(g_settings_schema_key_get_value_type, pFp)
GO(g_settings_schema_key_range_check, iFpp)
GO(g_settings_schema_key_ref, pFp)
GO(g_settings_schema_key_unref, vFp)
GO(g_settings_schema_ref, pFp)
GO(g_settings_schema_source_get_default, pFv)
GO(g_settings_schema_source_get_type, LFv)
GO(g_settings_schema_source_list_schemas, vFpipp)
GO(g_settings_schema_source_lookup, pFppi)
GO(g_settings_schema_source_new_from_directory, pFppip)
GO(g_settings_schema_source_ref, pFp)
GO(g_settings_schema_source_unref, vFp)
GO(g_settings_schema_unref, vFp)
//GOM(g_settings_set, iFpppV)
GO(g_settings_set_boolean, iFppi)
GO(g_settings_set_double, iFppd)
GO(g_settings_set_enum, iFppi)
GO(g_settings_set_flags, iFppu)
GO(g_settings_set_int, iFppi)
GO(g_settings_set_string, iFppp)
GO(g_settings_set_strv, iFppp)
GO(g_settings_set_uint, iFppu)
GO(g_settings_set_value, iFppp)
GO(g_settings_sync, vFv)
GO(g_settings_unbind, vFpp)
GO(g_simple_action_get_type, LFv)
//GOM(g_simple_action_group_add_entries, vFppip)
GO(g_simple_action_group_get_type, LFv)
GO(g_simple_action_group_insert, vFpp)
GO(g_simple_action_group_lookup, pFpp)
GO(g_simple_action_group_new, pFv)
GO(g_simple_action_group_remove, vFpp)
GO(g_simple_action_new, pFpp)
GO(g_simple_action_new_stateful, pFppp)
GO(g_simple_action_set_enabled, vFpi)
GO(g_simple_action_set_state, vFpp)
GOM(g_simple_async_report_error_in_idle, vFEpppuipV)
GOM(g_simple_async_report_gerror_in_idle, vFEpppp)
GOM(g_simple_async_report_take_gerror_in_idle, vFEpppp)
GO(g_simple_async_result_complete, vFp)
GO(g_simple_async_result_complete_in_idle, vFp)
GO(g_simple_async_result_get_op_res_gboolean, iFp)
GO(g_simple_async_result_get_op_res_gpointer, pFp)
GO(g_simple_async_result_get_op_res_gssize, lFp)
GO(g_simple_async_result_get_source_tag, pFp)
GO(g_simple_async_result_get_type, LFv)
GO(g_simple_async_result_is_valid, iFppp)
GOM(g_simple_async_result_new, pFEpppp)
GOM(g_simple_async_result_new_error, pFEpppuipV)
GOM(g_simple_async_result_new_from_error, pFEpppp)
GOM(g_simple_async_result_new_take_error, pFEpppp)
GO(g_simple_async_result_propagate_error, iFpp)
GOM(g_simple_async_result_run_in_thread, vFEppip)
GO(g_simple_async_result_set_check_cancellable, vFpp)
GOM(g_simple_async_result_set_error, vFEpuipV)
GOM(g_simple_async_result_set_error_va, vFEpuipA)
GO(g_simple_async_result_set_from_error, vFpp)
GO(g_simple_async_result_set_handle_cancellation, vFpi)
GO(g_simple_async_result_set_op_res_gboolean, vFpi)
GOM(g_simple_async_result_set_op_res_gpointer, vFEppp)
GO(g_simple_async_result_set_op_res_gssize, vFpl)
GO(g_simple_async_result_take_error, vFpp)
GO(g_simple_permission_get_type, LFv)
GO(g_simple_permission_new, pFi)
GO(g_simple_proxy_resolver_get_type, LFv)
GO(g_simple_proxy_resolver_new, pFpp)
GO(g_simple_proxy_resolver_set_default_proxy, vFpp)
GO(g_simple_proxy_resolver_set_ignore_hosts, vFpp)
GO(g_simple_proxy_resolver_set_uri_proxy, vFppp)
GO(g_socket_accept, pFppp)
GO(g_socket_address_enumerator_get_type, LFv)
GO(g_socket_address_enumerator_next, pFppp)
//GOM(g_socket_address_enumerator_next_async, vFpppp)
GO(g_socket_address_enumerator_next_finish, pFppp)
GO(g_socket_address_get_family, uFp)
GO(g_socket_address_get_native_size, lFp)
GO(g_socket_address_get_type, LFv)
GO(g_socket_address_new_from_native, pFpL)
GO(g_socket_address_to_native, iFppLp)
GO(g_socket_bind, iFppip)
GO(g_socket_check_connect_result, iFpp)
GO(g_socket_client_add_application_proxy, vFpp)
GO(g_socket_client_connect, pFpppp)
//GOM(g_socket_client_connect_async, vFppppp)
GO(g_socket_client_connect_finish, pFppp)
GO(g_socket_client_connect_to_host, pFppWpp)
//GOM(g_socket_client_connect_to_host_async, vFppWppp)
GO(g_socket_client_connect_to_host_finish, pFppp)
GO(g_socket_client_connect_to_service, pFppppp)
//GOM(g_socket_client_connect_to_service_async, vFpppppp)
GO(g_socket_client_connect_to_service_finish, pFppp)
GO(g_socket_client_connect_to_uri, pFppWpp)
//GOM(g_socket_client_connect_to_uri_async, vFppWppp)
GO(g_socket_client_connect_to_uri_finish, pFppp)
GO(g_socket_client_event_get_type, LFv)
GO(g_socket_client_get_enable_proxy, iFp)
GO(g_socket_client_get_family, uFp)
GO(g_socket_client_get_local_address, pFp)
GO(g_socket_client_get_protocol, iFp)
GO(g_socket_client_get_proxy_resolver, pFp)
GO(g_socket_client_get_socket_type, uFp)
GO(g_socket_client_get_timeout, uFp)
GO(g_socket_client_get_tls, iFp)
GO(g_socket_client_get_tls_validation_flags, uFp)
GO(g_socket_client_get_type, LFv)
GO(g_socket_client_new, pFv)
GO(g_socket_client_set_enable_proxy, vFpi)
GO(g_socket_client_set_family, vFpu)
GO(g_socket_client_set_local_address, vFpp)
GO(g_socket_client_set_protocol, vFpi)
GO(g_socket_client_set_proxy_resolver, vFpp)
GO(g_socket_client_set_socket_type, vFpu)
GO(g_socket_client_set_timeout, vFpu)
GO(g_socket_client_set_tls, vFpi)
GO(g_socket_client_set_tls_validation_flags, vFpu)
GO(g_socket_close, iFpp)
GO(g_socket_condition_check, uFpu)
GO(g_socket_condition_timed_wait, iFpulpp)
GO(g_socket_condition_wait, iFpupp)
GO(g_socket_connect, iFpppp)
GO(g_socket_connectable_enumerate, pFp)
GO(g_socket_connectable_get_type, LFv)
GO(g_socket_connectable_proxy_enumerate, pFp)
GO(g_socket_connection_connect, iFpppp)
//GOM(g_socket_connection_connect_async, vFppppp)
GO(g_socket_connection_connect_finish, iFppp)
GO(g_socket_connection_factory_create_connection, pFp)
GO(g_socket_connection_factory_lookup_type, LFuui)
GO(g_socket_connection_factory_register_type, vFLuui)
GO(g_socket_connection_get_local_address, pFpp)
GO(g_socket_connection_get_remote_address, pFpp)
GO(g_socket_connection_get_socket, pFp)
GO(g_socket_connection_get_type, LFv)
GO(g_socket_connection_is_connected, iFp)
GO(g_socket_control_message_deserialize, pFiiLp)
GO(g_socket_control_message_get_level, iFp)
GO(g_socket_control_message_get_msg_type, iFp)
GO(g_socket_control_message_get_size, LFp)
GO(g_socket_control_message_get_type, LFv)
GO(g_socket_control_message_serialize, vFpp)
//GOM(g_socket_create_source, pFpup)
GO(g_socket_family_get_type, LFv)
GO(g_socket_get_available_bytes, lFp)
GO(g_socket_get_blocking, iFp)
GO(g_socket_get_broadcast, iFp)
GO(g_socket_get_credentials, pFpp)
GO(g_socket_get_family, uFp)
GO(g_socket_get_fd, iFp)
GO(g_socket_get_keepalive, iFp)
GO(g_socket_get_listen_backlog, iFp)
GO(g_socket_get_local_address, pFpp)
GO(g_socket_get_multicast_loopback, iFp)
GO(g_socket_get_multicast_ttl, uFp)
GO(g_socket_get_option, iFpiipp)
GO(g_socket_get_protocol, iFp)
GO(g_socket_get_remote_address, pFpp)
GO(g_socket_get_socket_type, uFp)
GO(g_socket_get_timeout, uFp)
GO(g_socket_get_ttl, uFp)
GO(g_socket_get_type, LFv)
GO(g_socket_is_closed, iFp)
GO(g_socket_is_connected, iFp)
GO(g_socket_join_multicast_group, iFppipp)
GO(g_socket_leave_multicast_group, iFppipp)
GO(g_socket_listen, iFpp)
GO(g_socket_listener_accept, pFpppp)
//GOM(g_socket_listener_accept_async, vFpppp)
GO(g_socket_listener_accept_finish, pFpppp)
GO(g_socket_listener_accept_socket, pFpppp)
//GOM(g_socket_listener_accept_socket_async, vFpppp)
GO(g_socket_listener_accept_socket_finish, pFpppp)
GO(g_socket_listener_add_address, iFppuippp)
GO(g_socket_listener_add_any_inet_port, WFppp)
GO(g_socket_listener_add_inet_port, iFpWpp)
GO(g_socket_listener_add_socket, iFpppp)
GO(g_socket_listener_close, vFp)
GO(g_socket_listener_get_type, LFv)
GO(g_socket_listener_new, pFv)
GO(g_socket_listener_set_backlog, vFpi)
GO(g_socket_msg_flags_get_type, LFv)
GO(g_socket_new, pFuuip)
GO(g_socket_new_from_fd, pFip)
GO(g_socket_protocol_get_type, LFv)
GO(g_socket_receive, lFppLpp)
GO(g_socket_receive_from, lFpppLpp)
GO(g_socket_receive_message, lFpppippppp)
GO(g_socket_receive_with_blocking, lFppLipp)
GO(g_socket_send, lFppLpp)
GO(g_socket_send_message, lFpppipiipp)
GO(g_socket_send_to, lFpppLpp)
GO(g_socket_send_with_blocking, lFppLipp)
GO(g_socket_service_get_type, LFv)
GO(g_socket_service_is_active, iFp)
GO(g_socket_service_new, pFv)
GO(g_socket_service_start, vFp)
GO(g_socket_service_stop, vFp)
GO(g_socket_set_blocking, vFpi)
GO(g_socket_set_broadcast, vFpi)
GO(g_socket_set_keepalive, vFpi)
GO(g_socket_set_listen_backlog, vFpi)
GO(g_socket_set_multicast_loopback, vFpi)
GO(g_socket_set_multicast_ttl, vFpu)
GO(g_socket_set_option, iFpiiip)
GO(g_socket_set_timeout, vFpu)
GO(g_socket_set_ttl, vFpu)
GO(g_socket_shutdown, iFpiip)
GO(g_socket_speaks_ipv4, iFp)
GO(g_socket_type_get_type, LFv)
GO(g_srv_target_copy, pFp)
GO(g_srv_target_free, vFp)
GO(g_srv_target_get_hostname, pFp)
GO(g_srv_target_get_port, WFp)
GO(g_srv_target_get_priority, WFp)
GO(g_srv_target_get_type, LFv)
GO(g_srv_target_get_weight, WFp)
GO(g_srv_target_list_sort, pFp)
GO(g_srv_target_new, pFpWWW)
GO(g_static_resource_fini, vFp)
GO(g_static_resource_get_resource, pFp)
GO(g_static_resource_init, vFp)
GO(g_subprocess_communicate, iFpppppp)
//GOM(g_subprocess_communicate_async, vFppppp)
GO(g_subprocess_communicate_finish, iFppppp)
GO(g_subprocess_communicate_utf8, iFpppppp)
//GOM(g_subprocess_communicate_utf8_async, vFppppp)
GO(g_subprocess_communicate_utf8_finish, iFppppp)
GO(g_subprocess_flags_get_type, LFv)
GO(g_subprocess_force_exit, vFp)
GO(g_subprocess_get_exit_status, iFp)
GO(g_subprocess_get_identifier, pFp)
GO(g_subprocess_get_if_exited, iFp)
GO(g_subprocess_get_if_signaled, iFp)
GO(g_subprocess_get_status, iFp)
GO(g_subprocess_get_stderr_pipe, pFp)
GO(g_subprocess_get_stdin_pipe, pFp)
GO(g_subprocess_get_stdout_pipe, pFp)
GO(g_subprocess_get_successful, iFp)
GO(g_subprocess_get_term_sig, iFp)
GO(g_subprocess_get_type, LFv)
GO(g_subprocess_launcher_getenv, pFpp)
GO(g_subprocess_launcher_get_type, LFv)
GO(g_subprocess_launcher_new, pFu)
//GOM(g_subprocess_launcher_set_child_setup, vFpppp)
GO(g_subprocess_launcher_set_cwd, vFpp)
GO(g_subprocess_launcher_setenv, vFpppi)
GO(g_subprocess_launcher_set_environ, vFpp)
GO(g_subprocess_launcher_set_flags, vFpu)
GO(g_subprocess_launcher_set_stderr_file_path, vFpp)
GO(g_subprocess_launcher_set_stdin_file_path, vFpp)
GO(g_subprocess_launcher_set_stdout_file_path, vFpp)
//GOM(g_subprocess_launcher_spawn, pFpppV)
GO(g_subprocess_launcher_spawnv, pFppp)
GO(g_subprocess_launcher_take_fd, vFpii)
GO(g_subprocess_launcher_take_stderr_fd, vFpi)
GO(g_subprocess_launcher_take_stdin_fd, vFpi)
GO(g_subprocess_launcher_take_stdout_fd, vFpi)
GO(g_subprocess_launcher_unsetenv, vFpp)
//GOM(g_subprocess_new, pFuppV)
GO(g_subprocess_newv, pFpup)
GO(g_subprocess_send_signal, vFpi)
GO(g_subprocess_wait, iFppp)
//GOM(g_subprocess_wait_async, vFpppp)
GO(g_subprocess_wait_check, iFppp)
//GOM(g_subprocess_wait_check_async, vFpppp)
GO(g_subprocess_wait_check_finish, iFppp)
GO(g_subprocess_wait_finish, iFppp)
//GOM(g_task_attach_source, vFppp)
GO(g_task_get_cancellable, pFp)
GO(g_task_get_check_cancellable, iFp)
GO(g_task_get_context, pFp)
GO(g_task_get_priority, iFp)
GO(g_task_get_return_on_cancel, iFp)
GO(g_task_get_source_object, pFp)
GO(g_task_get_source_tag, pFp)
GO(g_task_get_task_data, pFp)
GO(g_task_get_type, LFv)
GO(g_task_had_error, iFp)
GO(g_task_is_valid, iFpp)
GOM(g_task_new, pFEpppp)
GO(g_task_propagate_boolean, iFpp)
GO(g_task_propagate_int, lFpp)
GO(g_task_propagate_pointer, pFpp)
//GOM(g_task_report_error, vFppppp)
//GOM(g_task_report_new_error, vFppppuipV)
GO(g_task_return_boolean, vFpi)
GO(g_task_return_error, vFpp)
GO(g_task_return_error_if_cancelled, iFp)
GO(g_task_return_int, vFpl)
GOM(g_task_return_new_error, vFEpuipV)
GOM(g_task_return_pointer, vFEppp)
//GOM(g_task_run_in_thread, vFpp)
//GOM(g_task_run_in_thread_sync, vFpp)
GO(g_task_set_check_cancellable, vFpi)
GO(g_task_set_priority, vFpi)
GO(g_task_set_return_on_cancel, iFpi)
GO(g_task_set_source_tag, vFpp)
//GOM(g_task_set_task_data, vFppp)
GO(g_tcp_connection_get_graceful_disconnect, iFp)
GO(g_tcp_connection_get_type, LFv)
GO(g_tcp_connection_set_graceful_disconnect, vFpi)
GO(g_tcp_wrapper_connection_get_base_io_stream, pFp)
GO(g_tcp_wrapper_connection_get_type, LFv)
GO(g_tcp_wrapper_connection_new, pFpp)
GO(g_test_dbus_add_service_dir, vFpp)
GO(g_test_dbus_down, vFp)
GO(g_test_dbus_flags_get_type, LFv)
GO(g_test_dbus_get_bus_address, pFp)
GO(g_test_dbus_get_flags, uFp)
GO(g_test_dbus_get_type, LFv)
GO(g_test_dbus_new, pFu)
GO(g_test_dbus_stop, vFp)
GO(g_test_dbus_unset, vFv)
GO(g_test_dbus_up, vFp)
GO(g_themed_icon_append_name, vFpp)
GO(g_themed_icon_get_names, pFp)
GO(g_themed_icon_get_type, LFv)
GO(g_themed_icon_new, pFp)
GO(g_themed_icon_new_from_names, pFpi)
GO(g_themed_icon_new_with_default_fallbacks, pFp)
GO(g_themed_icon_prepend_name, vFpp)
//GO(g_threaded_resolver_get_type, 
GO(g_threaded_socket_service_get_type, LFv)
GO(g_threaded_socket_service_new, pFi)
GO(g_tls_authentication_mode_get_type, LFv)
GO(g_tls_backend_get_certificate_type, LFp)
GO(g_tls_backend_get_client_connection_type, LFp)
GO(g_tls_backend_get_default, pFv)
GO(g_tls_backend_get_default_database, pFp)
GO(g_tls_backend_get_file_database_type, LFp)
GO(g_tls_backend_get_server_connection_type, LFp)
GO(g_tls_backend_get_type, LFv)
GO(g_tls_backend_supports_tls, iFp)
GO(g_tls_certificate_flags_get_type, LFv)
GO(g_tls_certificate_get_issuer, pFp)
GO(g_tls_certificate_get_type, LFv)
GO(g_tls_certificate_is_same, iFpp)
GO(g_tls_certificate_list_new_from_file, pFpp)
GO(g_tls_certificate_new_from_file, pFpp)
GO(g_tls_certificate_new_from_files, pFppp)
GO(g_tls_certificate_new_from_pem, pFplp)
GO(g_tls_certificate_request_flags_get_type, LFv)
GO(g_tls_certificate_verify, uFppp)
GO(g_tls_client_connection_get_accepted_cas, pFp)
GO(g_tls_client_connection_get_server_identity, pFp)
GO(g_tls_client_connection_get_type, LFv)
GO(g_tls_client_connection_get_use_ssl3, iFp)
GO(g_tls_client_connection_get_validation_flags, uFp)
GO(g_tls_client_connection_new, pFppp)
GO(g_tls_client_connection_set_server_identity, vFpp)
GO(g_tls_client_connection_set_use_ssl3, vFpi)
GO(g_tls_client_connection_set_validation_flags, vFpu)
GO(g_tls_connection_emit_accept_certificate, iFppu)
GO(g_tls_connection_get_certificate, pFp)
GO(g_tls_connection_get_database, pFp)
GO(g_tls_connection_get_interaction, pFp)
GO(g_tls_connection_get_peer_certificate, pFp)
GO(g_tls_connection_get_peer_certificate_errors, uFp)
GO(g_tls_connection_get_rehandshake_mode, uFp)
GO(g_tls_connection_get_require_close_notify, iFp)
GO(g_tls_connection_get_type, LFv)
GO(g_tls_connection_get_use_system_certdb, iFp)
GO(g_tls_connection_handshake, iFppp)
//GOM(g_tls_connection_handshake_async, vFpippp)
GO(g_tls_connection_handshake_finish, iFppp)
GO(g_tls_connection_set_certificate, vFpp)
GO(g_tls_connection_set_database, vFpp)
GO(g_tls_connection_set_interaction, vFpp)
GO(g_tls_connection_set_rehandshake_mode, vFpu)
GO(g_tls_connection_set_require_close_notify, vFpi)
GO(g_tls_connection_set_use_system_certdb, vFpi)
GO(g_tls_database_create_certificate_handle, pFpp)
GO(g_tls_database_get_type, LFv)
GO(g_tls_database_lookup_certificate_for_handle, pFpppupp)
//GOM(g_tls_database_lookup_certificate_for_handle_async, vFpppuppp)
GO(g_tls_database_lookup_certificate_for_handle_finish, pFppp)
GO(g_tls_database_lookup_certificate_issuer, pFpppupp)
//GOM(g_tls_database_lookup_certificate_issuer_async, vFpppuppp)
GO(g_tls_database_lookup_certificate_issuer_finish, pFppp)
GO(g_tls_database_lookup_certificates_issued_by, pFpppupp)
//GOM(g_tls_database_lookup_certificates_issued_by_async, vFpppuppp)
GO(g_tls_database_lookup_certificates_issued_by_finish, pFppp)
GO(g_tls_database_lookup_flags_get_type, LFv)
GO(g_tls_database_verify_chain, uFpppppupp)
//GOM(g_tls_database_verify_chain_async, vFpppppuppp)
GO(g_tls_database_verify_chain_finish, uFppp)
GO(g_tls_database_verify_flags_get_type, LFv)
GO(g_tls_error_get_type, LFv)
GO(g_tls_error_quark, uFv)
GO(g_tls_file_database_get_type, LFv)
GO(g_tls_file_database_new, pFpp)
GO(g_tls_interaction_ask_password, uFpppp)
//GOM(g_tls_interaction_ask_password_async, vFppppp)
GO(g_tls_interaction_ask_password_finish, uFppp)
GO(g_tls_interaction_get_type, LFv)
GO(g_tls_interaction_invoke_ask_password, uFpppp)
GO(g_tls_interaction_invoke_request_certificate, uFppupp)
GO(g_tls_interaction_request_certificate, uFppupp)
//GOM(g_tls_interaction_request_certificate_async, vFppuppp)
GO(g_tls_interaction_request_certificate_finish, uFppp)
GO(g_tls_interaction_result_get_type, LFv)
GO(g_tls_password_flags_get_type, LFv)
GO(g_tls_password_get_description, pFp)
GO(g_tls_password_get_flags, uFp)
GO(g_tls_password_get_type, LFv)
GO(g_tls_password_get_value, pFpp)
GO(g_tls_password_get_warning, pFp)
GO(g_tls_password_new, pFup)
GO(g_tls_password_set_description, vFpp)
GO(g_tls_password_set_flags, vFpu)
GO(g_tls_password_set_value, vFppl)
//GOM(g_tls_password_set_value_full, vFpplp)
GO(g_tls_password_set_warning, vFpp)
GO(g_tls_rehandshake_mode_get_type, LFv)
GO(g_tls_server_connection_get_type, LFv)
GO(g_tls_server_connection_new, pFppp)
GO(g_unix_connection_get_type, LFv)
GO(g_unix_connection_receive_credentials, pFppp)
//GOM(g_unix_connection_receive_credentials_async, vFpppp)
GO(g_unix_connection_receive_credentials_finish, pFppp)
GO(g_unix_connection_receive_fd, iFppp)
GO(g_unix_connection_send_credentials, iFppp)
//GOM(g_unix_connection_send_credentials_async, vFpppp)
GO(g_unix_connection_send_credentials_finish, iFppp)
GO(g_unix_connection_send_fd, iFpipp)
GO(g_unix_credentials_message_get_credentials, pFp)
GO(g_unix_credentials_message_get_type, LFv)
GO(g_unix_credentials_message_is_supported, iFv)
GO(g_unix_credentials_message_new, pFv)
GO(g_unix_credentials_message_new_with_credentials, pFp)
GO(g_unix_fd_list_append, iFpip)
GO(g_unix_fd_list_get, iFpip)
GO(g_unix_fd_list_get_length, iFp)
GO(g_unix_fd_list_get_type, LFv)
GO(g_unix_fd_list_new, pFv)
GO(g_unix_fd_list_new_from_array, pFpi)
GO(g_unix_fd_list_peek_fds, pFpp)
GO(g_unix_fd_list_steal_fds, pFpp)
GO(g_unix_fd_message_append_fd, iFpip)
GO(g_unix_fd_message_get_fd_list, pFp)
GO(g_unix_fd_message_get_type, LFv)
GO(g_unix_fd_message_new, pFv)
GO(g_unix_fd_message_new_with_fd_list, pFp)
GO(g_unix_fd_message_steal_fds, pFpp)
GO(g_unix_input_stream_get_close_fd, iFp)
GO(g_unix_input_stream_get_fd, iFp)
GO(g_unix_input_stream_get_type, LFv)
GO(g_unix_input_stream_new, pFii)
GO(g_unix_input_stream_set_close_fd, vFpi)
GO(g_unix_is_mount_path_system_internal, iFp)
GO(g_unix_mount_at, pFpp)
GO(g_unix_mount_compare, iFpp)
GO(g_unix_mount_free, vFp)
GO(g_unix_mount_get_device_path, pFp)
GO(g_unix_mount_get_fs_type, pFp)
GO(g_unix_mount_get_mount_path, pFp)
GO(g_unix_mount_guess_can_eject, iFp)
GO(g_unix_mount_guess_icon, pFp)
GO(g_unix_mount_guess_name, pFp)
GO(g_unix_mount_guess_should_display, iFp)
GO(g_unix_mount_guess_symbolic_icon, pFp)
GO(g_unix_mount_is_readonly, iFp)
GO(g_unix_mount_is_system_internal, iFp)
GO(g_unix_mount_monitor_get_type, LFv)
GO(g_unix_mount_monitor_new, pFv)
GO(g_unix_mount_monitor_set_rate_limit, vFpi)
GO(g_unix_mount_point_compare, iFpp)
GO(g_unix_mount_point_free, vFp)
GO(g_unix_mount_point_get_device_path, pFp)
GO(g_unix_mount_point_get_fs_type, pFp)
GO(g_unix_mount_point_get_mount_path, pFp)
GO(g_unix_mount_point_get_options, pFp)
GO(g_unix_mount_point_guess_can_eject, iFp)
GO(g_unix_mount_point_guess_icon, pFp)
GO(g_unix_mount_point_guess_name, pFp)
GO(g_unix_mount_point_guess_symbolic_icon, pFp)
GO(g_unix_mount_point_is_loopback, iFp)
GO(g_unix_mount_point_is_readonly, iFp)
GO(g_unix_mount_point_is_user_mountable, iFp)
GO(g_unix_mount_points_changed_since, iFL)
GO(g_unix_mount_points_get, pFp)
GO(g_unix_mounts_changed_since, iFL)
GO(g_unix_mounts_get, pFp)
GO(g_unix_output_stream_get_close_fd, iFp)
GO(g_unix_output_stream_get_fd, iFp)
GO(g_unix_output_stream_get_type, LFv)
GO(g_unix_output_stream_new, pFii)
GO(g_unix_output_stream_set_close_fd, vFpi)
GO(g_unix_socket_address_abstract_names_supported, iFv)
GO(g_unix_socket_address_get_address_type, uFp)
GO(g_unix_socket_address_get_is_abstract, iFp)
GO(g_unix_socket_address_get_path, pFp)
GO(g_unix_socket_address_get_path_len, LFp)
GO(g_unix_socket_address_get_type, LFv)
GO(g_unix_socket_address_new, pFp)
GO(g_unix_socket_address_new_abstract, pFpi)
GO(g_unix_socket_address_new_with_type, pFpiu)
GO(g_unix_socket_address_type_get_type, LFv)
GO(g_vfs_get_default, pFv)
GO(g_vfs_get_file_for_path, pFpp)
GO(g_vfs_get_file_for_uri, pFpp)
GO(g_vfs_get_local, pFv)
GO(g_vfs_get_supported_uri_schemes, pFp)
GO(g_vfs_get_type, LFv)
GO(g_vfs_is_active, iFp)
GO(g_vfs_parse_name, pFpp)
GO(g_volume_can_eject, iFp)
GO(g_volume_can_mount, iFp)
//GOM(g_volume_eject, vFpuppp)
GO(g_volume_eject_finish, iFppp)
//GOM(g_volume_eject_with_operation, vFpupppp)
GO(g_volume_eject_with_operation_finish, iFppp)
GO(g_volume_enumerate_identifiers, pFp)
GO(g_volume_get_activation_root, pFp)
GO(g_volume_get_drive, pFp)
GO(g_volume_get_icon, pFp)
GO(g_volume_get_identifier, pFpp)
GO(g_volume_get_mount, pFp)
GO(g_volume_get_name, pFp)
GO(g_volume_get_sort_key, pFp)
GO(g_volume_get_symbolic_icon, pFp)
GO(g_volume_get_type, LFv)
GO(g_volume_get_uuid, pFp)
GO(g_volume_monitor_adopt_orphan_mount, pFp)
GO(g_volume_monitor_get, pFv)
GO(g_volume_monitor_get_connected_drives, pFp)
GO(g_volume_monitor_get_mount_for_uuid, pFpp)
GO(g_volume_monitor_get_mounts, pFp)
GO(g_volume_monitor_get_type, LFv)
GO(g_volume_monitor_get_volume_for_uuid, pFpp)
GO(g_volume_monitor_get_volumes, pFp)
//GOM(g_volume_mount, vFpupppp)
GO(g_volume_mount_finish, iFppp)
GO(g_volume_should_automount, iFp)
GO(g_zlib_compressor_format_get_type, LFv)
GO(g_zlib_compressor_get_file_info, pFp)
GO(g_zlib_compressor_get_type, LFv)
GO(g_zlib_compressor_new, pFui)
GO(g_zlib_compressor_set_file_info, vFpp)
GO(g_zlib_decompressor_get_file_info, pFp)
GO(g_zlib_decompressor_get_type, LFv)
GO(g_zlib_decompressor_new, pFu)
//GO(_init,