summaryrefslogtreecommitdiffstats
path: root/vapi/gmime-3.0.vapi
blob: 243c6057b8518eedcceec75058add0434a6ce0a9 (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
/* gmime-3.0.vapi generated by vapigen-0.42, do not modify. */

[CCode (cprefix = "GMime", gir_namespace = "GMime", gir_version = "3.0", lower_case_cprefix = "gmime__")]
namespace GMime {
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_application_pkcs7_mime_get_type ()")]
	public class ApplicationPkcs7Mime : GMime.Part {
		public GMime.SecureMimeType smime_type;
		[CCode (cname = "g_mime_application_pkcs7_mime_new", has_construct_function = false)]
		public ApplicationPkcs7Mime (GMime.SecureMimeType type);
		[CCode (cname = "g_mime_application_pkcs7_mime_decrypt")]
		public GMime.Object? decrypt (GMime.DecryptFlags flags, string session_key, GMime.DecryptResult result) throws GLib.Error;
		[CCode (cname = "g_mime_application_pkcs7_mime_encrypt")]
		public static GMime.ApplicationPkcs7Mime? encrypt (GMime.Object entity, GMime.EncryptFlags flags, GLib.GenericArray<string> recipients) throws GLib.Error;
		[CCode (cname = "g_mime_application_pkcs7_mime_get_smime_type")]
		public GMime.SecureMimeType get_smime_type ();
		[CCode (cname = "g_mime_application_pkcs7_mime_sign")]
		public static GMime.ApplicationPkcs7Mime? sign (GMime.Object entity, string userid) throws GLib.Error;
		[CCode (cname = "g_mime_application_pkcs7_mime_verify")]
		public GMime.SignatureList? verify (GMime.VerifyFlags flags, out GMime.Object entity) throws GLib.Error;
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_autocrypt_header_get_type ()")]
	public class AutocryptHeader : GLib.Object {
		public weak GMime.InternetAddressMailbox address;
		public weak GLib.DateTime effective_date;
		public weak GLib.Bytes keydata;
		public GMime.AutocryptPreferEncrypt prefer_encrypt;
		[CCode (cname = "g_mime_autocrypt_header_new", has_construct_function = false)]
		public AutocryptHeader ();
		[CCode (cname = "g_mime_autocrypt_header_clone")]
		public void clone (GMime.AutocryptHeader src);
		[CCode (cname = "g_mime_autocrypt_header_compare")]
		public int compare (GMime.AutocryptHeader ah2);
		[CCode (cname = "g_mime_autocrypt_header_new_from_string", has_construct_function = false)]
		public AutocryptHeader.from_string (string string);
		[CCode (cname = "g_mime_autocrypt_header_get_address")]
		public unowned GMime.InternetAddressMailbox get_address ();
		[CCode (cname = "g_mime_autocrypt_header_get_address_as_string")]
		public unowned string get_address_as_string ();
		[CCode (cname = "g_mime_autocrypt_header_get_effective_date")]
		public unowned GLib.DateTime get_effective_date ();
		[CCode (cname = "g_mime_autocrypt_header_get_keydata")]
		public unowned GLib.Bytes get_keydata ();
		[CCode (cname = "g_mime_autocrypt_header_get_prefer_encrypt")]
		public GMime.AutocryptPreferEncrypt get_prefer_encrypt ();
		[CCode (cname = "g_mime_autocrypt_header_is_complete")]
		public bool is_complete ();
		[CCode (cname = "g_mime_autocrypt_header_set_address")]
		public void set_address (GMime.InternetAddressMailbox address);
		[CCode (cname = "g_mime_autocrypt_header_set_address_from_string")]
		public void set_address_from_string (string address);
		[CCode (cname = "g_mime_autocrypt_header_set_effective_date")]
		public void set_effective_date (GLib.DateTime effective_date);
		[CCode (cname = "g_mime_autocrypt_header_set_keydata")]
		public void set_keydata (GLib.Bytes data);
		[CCode (cname = "g_mime_autocrypt_header_set_prefer_encrypt")]
		public void set_prefer_encrypt (GMime.AutocryptPreferEncrypt pref);
		[CCode (cname = "g_mime_autocrypt_header_to_string")]
		public string to_string (bool gossip);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_autocrypt_header_list_get_type ()")]
	public class AutocryptHeaderList : GLib.Object {
		[CCode (cname = "g_mime_autocrypt_header_list_new", has_construct_function = false)]
		public AutocryptHeaderList ();
		[CCode (cname = "g_mime_autocrypt_header_list_add")]
		public void add (GMime.AutocryptHeader header);
		[CCode (cname = "g_mime_autocrypt_header_list_add_missing_addresses")]
		public uint add_missing_addresses (GMime.InternetAddressList addresses);
		[CCode (cname = "g_mime_autocrypt_header_list_get_count")]
		public uint get_count ();
		[CCode (cname = "g_mime_autocrypt_header_list_get_header_at")]
		public unowned GMime.AutocryptHeader get_header_at (uint index);
		[CCode (cname = "g_mime_autocrypt_header_list_get_header_for_address")]
		public unowned GMime.AutocryptHeader get_header_for_address (GMime.InternetAddressMailbox mailbox);
		[CCode (cname = "g_mime_autocrypt_header_list_remove_incomplete")]
		public void remove_incomplete ();
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_certificate_get_type ()")]
	public class Certificate : GLib.Object {
		public long created;
		public GMime.DigestAlgo digest_algo;
		public weak string email;
		public long expires;
		public weak string fingerprint;
		public GMime.Validity id_validity;
		public weak string issuer_name;
		public weak string issuer_serial;
		public weak string keyid;
		public weak string name;
		public GMime.PubKeyAlgo pubkey_algo;
		public GMime.Trust trust;
		public weak string user_id;
		[CCode (cname = "g_mime_certificate_new", has_construct_function = false)]
		public Certificate ();
		[CCode (cname = "g_mime_certificate_get_created")]
		public long get_created ();
		[CCode (cname = "g_mime_certificate_get_digest_algo")]
		public GMime.DigestAlgo get_digest_algo ();
		[CCode (cname = "g_mime_certificate_get_email")]
		public unowned string get_email ();
		[CCode (cname = "g_mime_certificate_get_expires")]
		public long get_expires ();
		[CCode (cname = "g_mime_certificate_get_fingerprint")]
		public unowned string get_fingerprint ();
		[CCode (cname = "g_mime_certificate_get_id_validity")]
		public GMime.Validity get_id_validity ();
		[CCode (cname = "g_mime_certificate_get_issuer_name")]
		public unowned string get_issuer_name ();
		[CCode (cname = "g_mime_certificate_get_issuer_serial")]
		public unowned string get_issuer_serial ();
		[CCode (cname = "g_mime_certificate_get_key_id")]
		public unowned string get_key_id ();
		[CCode (cname = "g_mime_certificate_get_name")]
		public unowned string get_name ();
		[CCode (cname = "g_mime_certificate_get_pubkey_algo")]
		public GMime.PubKeyAlgo get_pubkey_algo ();
		[CCode (cname = "g_mime_certificate_get_trust")]
		public GMime.Trust get_trust ();
		[CCode (cname = "g_mime_certificate_get_user_id")]
		public unowned string get_user_id ();
		[CCode (cname = "g_mime_certificate_set_created")]
		public void set_created (long created);
		[CCode (cname = "g_mime_certificate_set_digest_algo")]
		public void set_digest_algo (GMime.DigestAlgo algo);
		[CCode (cname = "g_mime_certificate_set_email")]
		public void set_email (string email);
		[CCode (cname = "g_mime_certificate_set_expires")]
		public void set_expires (long expires);
		[CCode (cname = "g_mime_certificate_set_fingerprint")]
		public void set_fingerprint (string fingerprint);
		[CCode (cname = "g_mime_certificate_set_id_validity")]
		public void set_id_validity (GMime.Validity validity);
		[CCode (cname = "g_mime_certificate_set_issuer_name")]
		public void set_issuer_name (string issuer_name);
		[CCode (cname = "g_mime_certificate_set_issuer_serial")]
		public void set_issuer_serial (string issuer_serial);
		[CCode (cname = "g_mime_certificate_set_key_id")]
		public void set_key_id (string key_id);
		[CCode (cname = "g_mime_certificate_set_name")]
		public void set_name (string name);
		[CCode (cname = "g_mime_certificate_set_pubkey_algo")]
		public void set_pubkey_algo (GMime.PubKeyAlgo algo);
		[CCode (cname = "g_mime_certificate_set_trust")]
		public void set_trust (GMime.Trust trust);
		[CCode (cname = "g_mime_certificate_set_user_id")]
		public void set_user_id (string user_id);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_certificate_list_get_type ()")]
	public class CertificateList : GLib.Object {
		public weak GLib.GenericArray<void*> array;
		[CCode (cname = "g_mime_certificate_list_new", has_construct_function = false)]
		public CertificateList ();
		[CCode (cname = "g_mime_certificate_list_add")]
		public int add (GMime.Certificate cert);
		[CCode (cname = "g_mime_certificate_list_clear")]
		public void clear ();
		[CCode (cname = "g_mime_certificate_list_contains")]
		public bool contains (GMime.Certificate cert);
		[CCode (cname = "g_mime_certificate_list_get_certificate")]
		public GMime.Certificate get_certificate (int index);
		[CCode (cname = "g_mime_certificate_list_index_of")]
		public int index_of (GMime.Certificate cert);
		[CCode (cname = "g_mime_certificate_list_insert")]
		public void insert (int index, GMime.Certificate cert);
		[CCode (cname = "g_mime_certificate_list_length")]
		public int length ();
		[CCode (cname = "g_mime_certificate_list_remove")]
		public bool remove (GMime.Certificate cert);
		[CCode (cname = "g_mime_certificate_list_remove_at")]
		public bool remove_at (int index);
		[CCode (cname = "g_mime_certificate_list_set_certificate")]
		public void set_certificate (int index, GMime.Certificate cert);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_content_disposition_get_type ()")]
	public class ContentDisposition : GLib.Object {
		public weak string disposition;
		public weak GMime.ParamList @params;
		[CCode (cname = "g_mime_content_disposition_new", has_construct_function = false)]
		public ContentDisposition ();
		[CCode (cname = "g_mime_content_disposition_encode")]
		public string encode (GMime.FormatOptions? options);
		[CCode (cname = "g_mime_content_disposition_get_disposition")]
		public unowned string get_disposition ();
		[CCode (cname = "g_mime_content_disposition_get_parameter")]
		public unowned string get_parameter (string name);
		[CCode (cname = "g_mime_content_disposition_get_parameters")]
		public unowned GMime.ParamList get_parameters ();
		[CCode (cname = "g_mime_content_disposition_is_attachment")]
		public bool is_attachment ();
		[CCode (cname = "g_mime_content_disposition_parse")]
		public static GMime.ContentDisposition parse (GMime.ParserOptions? options, string str);
		[CCode (cname = "g_mime_content_disposition_set_disposition")]
		public void set_disposition (string value);
		[CCode (cname = "g_mime_content_disposition_set_parameter")]
		public void set_parameter (string name, string value);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_content_type_get_type ()")]
	public class ContentType : GLib.Object {
		public weak GMime.ParamList @params;
		public weak string subtype;
		public weak string type;
		[CCode (cname = "g_mime_content_type_new", has_construct_function = false)]
		public ContentType (string type, string subtype);
		[CCode (cname = "g_mime_content_type_encode")]
		public string encode (GMime.FormatOptions? options);
		[CCode (cname = "g_mime_content_type_get_media_subtype")]
		public unowned string get_media_subtype ();
		[CCode (cname = "g_mime_content_type_get_media_type")]
		public unowned string get_media_type ();
		[CCode (cname = "g_mime_content_type_get_mime_type")]
		public string get_mime_type ();
		[CCode (cname = "g_mime_content_type_get_parameter")]
		public unowned string get_parameter (string name);
		[CCode (cname = "g_mime_content_type_get_parameters")]
		public unowned GMime.ParamList get_parameters ();
		[CCode (cname = "g_mime_content_type_is_type")]
		public bool is_type (string type, string subtype);
		[CCode (cname = "g_mime_content_type_parse")]
		public static GMime.ContentType parse (GMime.ParserOptions? options, string str);
		[CCode (cname = "g_mime_content_type_set_media_subtype")]
		public void set_media_subtype (string subtype);
		[CCode (cname = "g_mime_content_type_set_media_type")]
		public void set_media_type (string type);
		[CCode (cname = "g_mime_content_type_set_parameter")]
		public void set_parameter (string name, string value);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_crypto_context_get_type ()")]
	public class CryptoContext : GLib.Object {
		public weak GMime.PasswordRequestFunc request_passwd;
		[CCode (cname = "g_mime_crypto_context_new", has_construct_function = false)]
		public CryptoContext (string protocol);
		public virtual GMime.DecryptResult decrypt (GMime.DecryptFlags flags, string? session_key, GMime.Stream istream, GMime.Stream ostream) throws GLib.Error;
		public virtual GMime.DigestAlgo digest_id (string name);
		public virtual unowned string? digest_name (GMime.DigestAlgo digest);
		public virtual int encrypt (bool sign, string? userid, GMime.EncryptFlags flags, GLib.GenericArray<string> recipients, GMime.Stream istream, GMime.Stream ostream) throws GLib.Error;
		public virtual int export_keys (string keys, GMime.Stream ostream) throws GLib.Error;
		public virtual unowned string? get_encryption_protocol ();
		public virtual unowned string? get_key_exchange_protocol ();
		public virtual unowned string? get_signature_protocol ();
		public virtual int import_keys (GMime.Stream istream) throws GLib.Error;
		public virtual int sign (bool detach, string userid, GMime.Stream istream, GMime.Stream ostream) throws GLib.Error;
		public virtual GMime.SignatureList? verify (GMime.VerifyFlags flags, GMime.Stream istream, GMime.Stream? sigstream, GMime.Stream? ostream) throws GLib.Error;
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_data_wrapper_get_type ()")]
	public class DataWrapper : GLib.Object {
		public GMime.ContentEncoding encoding;
		public weak GMime.Stream stream;
		[CCode (cname = "g_mime_data_wrapper_new", has_construct_function = false)]
		public DataWrapper ();
		[CCode (cname = "g_mime_data_wrapper_get_encoding")]
		public GMime.ContentEncoding get_encoding ();
		[CCode (cname = "g_mime_data_wrapper_get_stream")]
		public unowned GMime.Stream get_stream ();
		[CCode (cname = "g_mime_data_wrapper_set_encoding")]
		public void set_encoding (GMime.ContentEncoding encoding);
		[CCode (cname = "g_mime_data_wrapper_set_stream")]
		public void set_stream (GMime.Stream stream);
		[CCode (cname = "g_mime_data_wrapper_new_with_stream", has_construct_function = false)]
		public DataWrapper.with_stream (GMime.Stream stream, GMime.ContentEncoding encoding);
		public virtual ssize_t write_to_stream (GMime.Stream stream);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_decrypt_result_get_type ()")]
	public class DecryptResult : GLib.Object {
		public GMime.CipherAlgo cipher;
		public GMime.DigestAlgo mdc;
		public weak GMime.CertificateList recipients;
		public weak string session_key;
		public weak GMime.SignatureList signatures;
		[CCode (cname = "g_mime_decrypt_result_new", has_construct_function = false)]
		public DecryptResult ();
		[CCode (cname = "g_mime_decrypt_result_get_cipher")]
		public GMime.CipherAlgo get_cipher ();
		[CCode (cname = "g_mime_decrypt_result_get_mdc")]
		public GMime.DigestAlgo get_mdc ();
		[CCode (cname = "g_mime_decrypt_result_get_recipients")]
		public unowned GMime.CertificateList get_recipients ();
		[CCode (cname = "g_mime_decrypt_result_get_session_key")]
		public unowned string? get_session_key ();
		[CCode (cname = "g_mime_decrypt_result_get_signatures")]
		public unowned GMime.SignatureList? get_signatures ();
		[CCode (cname = "g_mime_decrypt_result_set_cipher")]
		public void set_cipher (GMime.CipherAlgo cipher);
		[CCode (cname = "g_mime_decrypt_result_set_mdc")]
		public void set_mdc (GMime.DigestAlgo mdc);
		[CCode (cname = "g_mime_decrypt_result_set_recipients")]
		public void set_recipients (GMime.CertificateList recipients);
		[CCode (cname = "g_mime_decrypt_result_set_session_key")]
		public void set_session_key (string? session_key);
		[CCode (cname = "g_mime_decrypt_result_set_signatures")]
		public void set_signatures (GMime.SignatureList signatures);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_filter_get_type ()")]
	public abstract class Filter : GLib.Object {
		[CCode (array_length_cname = "backsize", array_length_type = "gsize")]
		public uint8[] backbuf;
		public size_t backlen;
		public size_t backsize;
		[CCode (array_length_cname = "outsize", array_length_type = "gsize")]
		public weak uint8[] outbuf;
		public size_t outpre;
		[CCode (array_length = false)]
		public weak uint8[] outptr;
		[CCode (array_length = false)]
		public uint8[] outreal;
		public size_t outsize;
		[CCode (has_construct_function = false)]
		protected Filter ();
		[CCode (cname = "g_mime_filter_backup")]
		public void backup ([CCode (array_length_cname = "length", array_length_pos = 1.1, array_length_type = "gsize")] uint8[] data);
		public virtual void complete ([CCode (array_length_cname = "inlen", array_length_pos = 1.5, array_length_type = "gsize")] uint8[] inbuf, size_t prespace, [CCode (array_length_cname = "outlen", array_length_pos = 3.5, array_length_type = "gsize")] out unowned uint8[] outbuf, out size_t outprespace);
		public virtual GMime.Filter copy ();
		[CCode (cname = "g_mime_filter_filter")]
		public virtual void filter ([CCode (array_length_cname = "inlen", array_length_pos = 1.5, array_length_type = "gsize")] uint8[] inbuf, size_t prespace, [CCode (array_length_cname = "outlen", array_length_pos = 3.5, array_length_type = "gsize")] out unowned uint8[] outbuf, out size_t outprespace);
		public virtual void reset ();
		[CCode (cname = "g_mime_filter_set_size")]
		public void set_size (size_t size, bool keep);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_filter_basic_get_type ()")]
	public class FilterBasic : GMime.Filter {
		public GMime.Encoding encoder;
		[CCode (cname = "g_mime_filter_basic_new", has_construct_function = false, type = "GMimeFilter*")]
		public FilterBasic (GMime.ContentEncoding encoding, bool encode);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_filter_best_get_type ()")]
	public class FilterBest : GMime.Filter {
		public uint count0;
		public uint count8;
		public GMime.FilterBestFlags flags;
		[CCode (array_length = false)]
		public weak uint frombuf[6];
		public uint fromlen;
		public uint hadfrom;
		public uint linelen;
		public uint maxline;
		public uint midline;
		public uint startline;
		public uint total;
		[CCode (cname = "g_mime_filter_best_new", has_construct_function = false, type = "GMimeFilter*")]
		public FilterBest (GMime.FilterBestFlags flags);
		[CCode (cname = "g_mime_filter_best_encoding")]
		public GMime.ContentEncoding encoding (GMime.EncodingConstraint constraint);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_filter_charset_get_type ()")]
	public class FilterCharset : GMime.Filter {
		public weak string from_charset;
		public weak string to_charset;
		[CCode (cname = "g_mime_filter_charset_new", has_construct_function = false, type = "GMimeFilter*")]
		public FilterCharset (string from_charset, string to_charset);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_filter_checksum_get_type ()")]
	public class FilterChecksum : GMime.Filter {
		public weak GLib.Checksum checksum;
		[CCode (cname = "g_mime_filter_checksum_new", has_construct_function = false, type = "GMimeFilter*")]
		public FilterChecksum (GLib.ChecksumType type);
		[CCode (cname = "g_mime_filter_checksum_get_digest")]
		public size_t get_digest (uint8 digest, size_t len);
		[CCode (cname = "g_mime_filter_checksum_get_string")]
		public string get_string ();
	}
	[CCode (cheader_filename = "gmime/gmime.h", lower_case_csuffix = "filter_dos2unix", type_id = "g_mime_filter_dos2unix_get_type ()")]
	public class FilterDos2Unix : GMime.Filter {
		public bool ensure_newline;
		public char pc;
		[CCode (cname = "g_mime_filter_dos2unix_new", has_construct_function = false, type = "GMimeFilter*")]
		public FilterDos2Unix (bool ensure_newline);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_filter_enriched_get_type ()")]
	public class FilterEnriched : GMime.Filter {
		public uint32 flags;
		public int nofill;
		[CCode (cname = "g_mime_filter_enriched_new", has_construct_function = false, type = "GMimeFilter*")]
		public FilterEnriched (uint32 flags);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_filter_from_get_type ()")]
	public class FilterFrom : GMime.Filter {
		public bool midline;
		public GMime.FilterFromMode mode;
		[CCode (cname = "g_mime_filter_from_new", has_construct_function = false, type = "GMimeFilter*")]
		public FilterFrom (GMime.FilterFromMode mode);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_filter_gzip_get_type ()")]
	public class FilterGZip : GMime.Filter {
		public int level;
		public GMime.FilterGZipMode mode;
		[CCode (cname = "g_mime_filter_gzip_new", has_construct_function = false, type = "GMimeFilter*")]
		public FilterGZip (GMime.FilterGZipMode mode, int level);
		[CCode (cname = "g_mime_filter_gzip_get_comment")]
		[Version (since = "3.2")]
		public unowned string get_comment ();
		[CCode (cname = "g_mime_filter_gzip_get_filename")]
		[Version (since = "3.2")]
		public unowned string get_filename ();
		[CCode (cname = "g_mime_filter_gzip_set_comment")]
		[Version (since = "3.2")]
		public void set_comment (string comment);
		[CCode (cname = "g_mime_filter_gzip_set_filename")]
		[Version (since = "3.2")]
		public void set_filename (string filename);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_filter_html_get_type ()")]
	public class FilterHTML : GMime.Filter {
		public uint32 citation_depth;
		public uint32 colour;
		public uint32 column;
		public uint32 flags;
		public uint32 pre_open;
		public void* scanner;
		[CCode (cname = "g_mime_filter_html_new", has_construct_function = false, type = "GMimeFilter*")]
		public FilterHTML (uint32 flags, uint32 colour);
	}
	[CCode (cheader_filename = "gmime/gmime.h", lower_case_csuffix = "filter_openpgp", type_id = "g_mime_filter_openpgp_get_type ()")]
	[Version (since = "3.2")]
	public class FilterOpenPGP : GMime.Filter {
		[CCode (cname = "g_mime_filter_openpgp_new", has_construct_function = false, type = "GMimeFilter*")]
		public FilterOpenPGP ();
		[CCode (cname = "g_mime_filter_openpgp_get_begin_offset")]
		public int64 get_begin_offset ();
		[CCode (cname = "g_mime_filter_openpgp_get_data_type")]
		public GMime.OpenPGPData get_data_type ();
		[CCode (cname = "g_mime_filter_openpgp_get_end_offset")]
		public int64 get_end_offset ();
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_filter_smtp_data_get_type ()")]
	public class FilterSmtpData : GMime.Filter {
		public bool bol;
		[CCode (cname = "g_mime_filter_smtp_data_new", has_construct_function = false, type = "GMimeFilter*")]
		public FilterSmtpData ();
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_filter_strip_get_type ()")]
	public class FilterStrip : GMime.Filter {
		[CCode (cname = "g_mime_filter_strip_new", has_construct_function = false, type = "GMimeFilter*")]
		public FilterStrip ();
	}
	[CCode (cheader_filename = "gmime/gmime.h", lower_case_csuffix = "filter_unix2dos", type_id = "g_mime_filter_unix2dos_get_type ()")]
	public class FilterUnix2Dos : GMime.Filter {
		public bool ensure_newline;
		public char pc;
		[CCode (cname = "g_mime_filter_unix2dos_new", has_construct_function = false, type = "GMimeFilter*")]
		public FilterUnix2Dos (bool ensure_newline);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_filter_windows_get_type ()")]
	public class FilterWindows : GMime.Filter {
		public weak string claimed_charset;
		public bool is_windows;
		[CCode (cname = "g_mime_filter_windows_new", has_construct_function = false, type = "GMimeFilter*")]
		public FilterWindows (string claimed_charset);
		[CCode (cname = "g_mime_filter_windows_is_windows_charset")]
		public bool is_windows_charset ();
		[CCode (cname = "g_mime_filter_windows_real_charset")]
		public unowned string real_charset ();
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_filter_yenc_get_type ()")]
	public class FilterYenc : GMime.Filter {
		public uint32 crc;
		public bool encode;
		public int part;
		public uint32 pcrc;
		public int state;
		[CCode (cname = "g_mime_filter_yenc_new", has_construct_function = false, type = "GMimeFilter*")]
		public FilterYenc (bool encode);
		[CCode (cname = "g_mime_filter_yenc_get_crc")]
		public uint32 get_crc ();
		[CCode (cname = "g_mime_filter_yenc_get_pcrc")]
		public uint32 get_pcrc ();
		[CCode (cname = "g_mime_filter_yenc_set_crc")]
		public void set_crc (uint32 crc);
		[CCode (cname = "g_mime_filter_yenc_set_state")]
		public void set_state (int state);
	}
	[CCode (cheader_filename = "gmime/gmime.h", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "g_mime_format_options_get_type ()")]
	[Compact]
	public class FormatOptions {
		[CCode (cname = "g_mime_format_options_new", has_construct_function = false)]
		public FormatOptions ();
		[CCode (cname = "g_mime_format_options_add_hidden_header")]
		public void add_hidden_header (string header);
		[CCode (cname = "g_mime_format_options_clear_hidden_headers")]
		public void clear_hidden_headers ();
		[CCode (cname = "g_mime_format_options_clone")]
		public GMime.FormatOptions clone ();
		[CCode (cname = "g_mime_format_options_create_newline_filter")]
		public GMime.Filter create_newline_filter (bool ensure_newline);
		[CCode (cname = "g_mime_format_options_free")]
		public void free ();
		[CCode (cname = "g_mime_format_options_get_newline")]
		public unowned string get_newline ();
		[CCode (cname = "g_mime_format_options_get_newline_format")]
		public GMime.NewLineFormat get_newline_format ();
		[CCode (cname = "g_mime_format_options_get_param_encoding_method")]
		public GMime.ParamEncodingMethod get_param_encoding_method ();
		[CCode (cname = "g_mime_format_options_is_hidden_header")]
		public bool is_hidden_header (string header);
		[CCode (cname = "g_mime_format_options_remove_hidden_header")]
		public void remove_hidden_header (string header);
		[CCode (cname = "g_mime_format_options_set_newline_format")]
		public void set_newline_format (GMime.NewLineFormat newline);
		[CCode (cname = "g_mime_format_options_set_param_encoding_method")]
		public void set_param_encoding_method (GMime.ParamEncodingMethod method);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_gpg_context_get_type ()")]
	public class GpgContext : GMime.CryptoContext {
		[CCode (cname = "g_mime_gpg_context_new", has_construct_function = false, type = "GMimeCryptoContext*")]
		public GpgContext ();
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_header_get_type ()")]
	public class Header : GLib.Object {
		[CCode (has_construct_function = false)]
		protected Header ();
		[CCode (cname = "g_mime_header_format_addrlist")]
		public string format_addrlist (GMime.FormatOptions? options, string value, string charset);
		[CCode (cname = "g_mime_header_format_content_disposition")]
		public string format_content_disposition (GMime.FormatOptions? options, string value, string charset);
		[CCode (cname = "g_mime_header_format_content_type")]
		public string format_content_type (GMime.FormatOptions? options, string value, string charset);
		[CCode (cname = "g_mime_header_format_default")]
		public string format_default (GMime.FormatOptions? options, string value, string charset);
		[CCode (cname = "g_mime_header_format_message_id")]
		public string format_message_id (GMime.FormatOptions? options, string value, string charset);
		[CCode (cname = "g_mime_header_format_received")]
		public string format_received (GMime.FormatOptions? options, string value, string charset);
		[CCode (cname = "g_mime_header_format_references")]
		public string format_references (GMime.FormatOptions? options, string value, string charset);
		[CCode (cname = "g_mime_header_get_name")]
		public unowned string get_name ();
		[CCode (cname = "g_mime_header_get_offset")]
		public int64 get_offset ();
		[CCode (cname = "g_mime_header_get_raw_name")]
		public unowned string get_raw_name ();
		[CCode (cname = "g_mime_header_get_raw_value")]
		public unowned string get_raw_value ();
		[CCode (cname = "g_mime_header_get_value")]
		public unowned string get_value ();
		[CCode (cname = "g_mime_header_set_raw_value")]
		public void set_raw_value (string raw_value);
		[CCode (cname = "g_mime_header_set_value")]
		public void set_value (GMime.FormatOptions? options, string value, string charset);
		[CCode (cname = "g_mime_header_write_to_stream")]
		public ssize_t write_to_stream (GMime.FormatOptions? options, GMime.Stream stream);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_header_list_get_type ()")]
	public class HeaderList : GLib.Object {
		[CCode (cname = "g_mime_header_list_new", has_construct_function = false)]
		public HeaderList (GMime.ParserOptions? options);
		[CCode (cname = "g_mime_header_list_append")]
		public void append (string name, string value, string charset);
		[CCode (cname = "g_mime_header_list_clear")]
		public void clear ();
		[CCode (cname = "g_mime_header_list_contains")]
		public bool contains (string name);
		[CCode (cname = "g_mime_header_list_get_count")]
		public int get_count ();
		[CCode (cname = "g_mime_header_list_get_header")]
		public unowned GMime.Header get_header (string name);
		[CCode (cname = "g_mime_header_list_get_header_at")]
		public unowned GMime.Header get_header_at (int index);
		[CCode (cname = "g_mime_header_list_prepend")]
		public void prepend (string name, string value, string charset);
		[CCode (cname = "g_mime_header_list_remove")]
		public bool remove (string name);
		[CCode (cname = "g_mime_header_list_remove_at")]
		public void remove_at (int index);
		[CCode (cname = "g_mime_header_list_set")]
		public void @set (string name, string value, string charset);
		[CCode (cname = "g_mime_header_list_to_string")]
		public string to_string (GMime.FormatOptions? options);
		[CCode (cname = "g_mime_header_list_write_to_stream")]
		public ssize_t write_to_stream (GMime.FormatOptions? options, GMime.Stream stream);
	}
	[CCode (cheader_filename = "gmime/gmime.h", cname = "InternetAddress", type_id = "internet_address_get_type ()")]
	public abstract class InternetAddress : GLib.Object {
		public weak string charset;
		public weak string name;
		[CCode (has_construct_function = false)]
		protected InternetAddress ();
		[CCode (cname = "internet_address_get_charset")]
		public unowned string? get_charset ();
		[CCode (cname = "internet_address_get_name")]
		public unowned string? get_name ();
		[CCode (cname = "internet_address_set_charset")]
		public void set_charset (string? charset);
		[CCode (cname = "internet_address_set_name")]
		public void set_name (string name);
		[CCode (cname = "internet_address_to_string")]
		public string to_new_string (GMime.FormatOptions? options, bool encode);
		[NoWrapper]
		public virtual void to_string (GMime.FormatOptions options, uint32 flags, size_t linelen, GLib.StringBuilder str);
	}
	[CCode (cheader_filename = "gmime/gmime.h", cname = "InternetAddressGroup", type_id = "internet_address_group_get_type ()")]
	public class InternetAddressGroup : GMime.InternetAddress {
		public weak GMime.InternetAddressList members;
		[CCode (cname = "internet_address_group_new", has_construct_function = false, type = "InternetAddress*")]
		public InternetAddressGroup (string name);
		[CCode (cname = "internet_address_group_add_member")]
		public int add_member (GMime.InternetAddress member);
		[CCode (cname = "internet_address_group_get_members")]
		public unowned GMime.InternetAddressList get_members ();
		[CCode (cname = "internet_address_group_set_members")]
		public void set_members (GMime.InternetAddressList members);
	}
	[CCode (cheader_filename = "gmime/gmime.h", cname = "InternetAddressList", type_id = "internet_address_list_get_type ()")]
	public class InternetAddressList : GLib.Object {
		public weak GLib.GenericArray<void*> array;
		[CCode (cname = "internet_address_list_new", has_construct_function = false)]
		public InternetAddressList ();
		[CCode (cname = "internet_address_list_add")]
		public int add (GMime.InternetAddress ia);
		[CCode (cname = "internet_address_list_append")]
		public void append (GMime.InternetAddressList append);
		[CCode (cname = "internet_address_list_clear")]
		public void clear ();
		[CCode (cname = "internet_address_list_contains")]
		public bool contains (GMime.InternetAddress ia);
		[CCode (cname = "internet_address_list_encode")]
		public void encode (GMime.FormatOptions? options, GLib.StringBuilder str);
		[CCode (cname = "internet_address_list_get_address")]
		public unowned GMime.InternetAddress get_address (int index);
		[CCode (cname = "internet_address_list_index_of")]
		public int index_of (GMime.InternetAddress ia);
		[CCode (cname = "internet_address_list_insert")]
		public void insert (int index, GMime.InternetAddress ia);
		[CCode (cname = "internet_address_list_length")]
		public int length ();
		[CCode (cname = "internet_address_list_parse")]
		public static GMime.InternetAddressList? parse (GMime.ParserOptions? options, string str);
		[CCode (cname = "internet_address_list_prepend")]
		public void prepend (GMime.InternetAddressList prepend);
		[CCode (cname = "internet_address_list_remove")]
		public bool remove (GMime.InternetAddress ia);
		[CCode (cname = "internet_address_list_remove_at")]
		public bool remove_at (int index);
		[CCode (cname = "internet_address_list_set_address")]
		public void set_address (int index, GMime.InternetAddress ia);
		[CCode (cname = "internet_address_list_to_string")]
		public string? to_string (GMime.FormatOptions? options, bool encode);
	}
	[CCode (cheader_filename = "gmime/gmime.h", cname = "InternetAddressMailbox", type_id = "internet_address_mailbox_get_type ()")]
	public class InternetAddressMailbox : GMime.InternetAddress {
		public weak string addr;
		public int at;
		public weak string idn_addr;
		[CCode (cname = "internet_address_mailbox_new", has_construct_function = false, type = "InternetAddress*")]
		public InternetAddressMailbox (string name, string addr);
		[CCode (cname = "internet_address_mailbox_get_addr")]
		public unowned string get_addr ();
		[CCode (cname = "internet_address_mailbox_get_idn_addr")]
		public unowned string get_idn_addr ();
		[CCode (cname = "internet_address_mailbox_set_addr")]
		public void set_addr (string addr);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_message_get_type ()")]
	public class Message : GMime.Object {
		public weak GMime.InternetAddressList addrlists;
		public weak GLib.DateTime date;
		public weak string message_id;
		public weak GMime.Object mime_part;
		public weak string subject;
		[CCode (cname = "g_mime_message_new", has_construct_function = false)]
		public Message (bool pretty_headers);
		[CCode (cname = "g_mime_message_add_mailbox")]
		public void add_mailbox (GMime.AddressType type, string name, string addr);
		[CCode (cname = "g_mime_message_foreach")]
		public void @foreach (GMime.ObjectForeachFunc callback);
		[CCode (cname = "g_mime_message_get_addresses")]
		public unowned GMime.InternetAddressList get_addresses (GMime.AddressType type);
		[CCode (cname = "g_mime_message_get_all_recipients")]
		public GMime.InternetAddressList get_all_recipients ();
		[CCode (cname = "g_mime_message_get_autocrypt_gossip_headers")]
		public GMime.AutocryptHeaderList get_autocrypt_gossip_headers (GLib.DateTime now, GMime.DecryptFlags flags, string session_key) throws GLib.Error;
		[CCode (cname = "g_mime_message_get_autocrypt_gossip_headers_from_inner_part")]
		public GMime.AutocryptHeaderList get_autocrypt_gossip_headers_from_inner_part (GLib.DateTime now, GMime.Object inner_part);
		[CCode (cname = "g_mime_message_get_autocrypt_header")]
		public GMime.AutocryptHeader get_autocrypt_header (GLib.DateTime now);
		[CCode (cname = "g_mime_message_get_bcc")]
		public unowned GMime.InternetAddressList get_bcc ();
		[CCode (cname = "g_mime_message_get_body")]
		public unowned GMime.Object get_body ();
		[CCode (cname = "g_mime_message_get_cc")]
		public unowned GMime.InternetAddressList get_cc ();
		[CCode (cname = "g_mime_message_get_date")]
		public GLib.DateTime get_date ();
		[CCode (cname = "g_mime_message_get_from")]
		public unowned GMime.InternetAddressList get_from ();
		[CCode (cname = "g_mime_message_get_message_id")]
		public unowned string get_message_id ();
		[CCode (cname = "g_mime_message_get_mime_part")]
		public unowned GMime.Object? get_mime_part ();
		[CCode (cname = "g_mime_message_get_reply_to")]
		public unowned GMime.InternetAddressList get_reply_to ();
		[CCode (cname = "g_mime_message_get_sender")]
		public unowned GMime.InternetAddressList get_sender ();
		[CCode (cname = "g_mime_message_get_subject")]
		public unowned string get_subject ();
		[CCode (cname = "g_mime_message_get_to")]
		public unowned GMime.InternetAddressList get_to ();
		[CCode (cname = "g_mime_message_partial_split_message")]
		public GMime.Message? partial_split_message (size_t max_size, out size_t nparts);
		[CCode (cname = "g_mime_message_set_date")]
		public void set_date (GLib.DateTime date);
		[CCode (cname = "g_mime_message_set_message_id")]
		public void set_message_id (string message_id);
		[CCode (cname = "g_mime_message_set_mime_part")]
		public void set_mime_part (GMime.Object mime_part);
		[CCode (cname = "g_mime_message_set_subject")]
		public void set_subject (string subject, string charset);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_message_part_get_type ()")]
	public class MessagePart : GMime.Object {
		public weak GMime.Message message;
		[CCode (cname = "g_mime_message_part_new", has_construct_function = false)]
		public MessagePart (string subtype);
		[CCode (cname = "g_mime_message_part_get_message")]
		public unowned GMime.Message get_message ();
		[CCode (cname = "g_mime_message_part_set_message")]
		public void set_message (GMime.Message message);
		[CCode (cname = "g_mime_message_part_new_with_message", has_construct_function = false)]
		public MessagePart.with_message (string subtype, GMime.Message message);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_message_partial_get_type ()")]
	public class MessagePartial : GMime.Part {
		public weak string id;
		public int number;
		public int total;
		[CCode (cname = "g_mime_message_partial_new", has_construct_function = false)]
		public MessagePartial (string id, int number, int total);
		[CCode (cname = "g_mime_message_partial_get_id")]
		public unowned string get_id ();
		[CCode (cname = "g_mime_message_partial_get_number")]
		public int get_number ();
		[CCode (cname = "g_mime_message_partial_get_total")]
		public int get_total ();
		[CCode (cname = "g_mime_message_partial_reconstruct_message")]
		public static GMime.Message reconstruct_message (GMime.MessagePartial partials, size_t num);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_multipart_get_type ()")]
	public class Multipart : GMime.Object {
		public weak string boundary;
		public weak GLib.GenericArray<void*> children;
		public weak string epilogue;
		public weak string prologue;
		[CCode (cname = "g_mime_multipart_new", has_construct_function = false)]
		public Multipart ();
		[CCode (cname = "g_mime_multipart_add")]
		public virtual void add (GMime.Object part);
		public virtual void clear ();
		public virtual bool contains (GMime.Object part);
		[CCode (cname = "g_mime_multipart_foreach")]
		public void @foreach (GMime.ObjectForeachFunc callback);
		public virtual unowned string get_boundary ();
		public virtual int get_count ();
		[CCode (cname = "g_mime_multipart_get_epilogue")]
		public unowned string get_epilogue ();
		public virtual unowned GMime.Object get_part (int index);
		[CCode (cname = "g_mime_multipart_get_prologue")]
		public unowned string get_prologue ();
		[CCode (cname = "g_mime_multipart_get_subpart_from_content_id")]
		public unowned GMime.Object get_subpart_from_content_id (string content_id);
		public virtual int index_of (GMime.Object part);
		public virtual void insert (int index, GMime.Object part);
		public virtual bool remove (GMime.Object part);
		public virtual GMime.Object remove_at (int index);
		[CCode (cname = "g_mime_multipart_replace")]
		public GMime.Object replace (int index, GMime.Object replacement);
		public virtual void set_boundary (string boundary);
		[CCode (cname = "g_mime_multipart_set_epilogue")]
		public void set_epilogue (string epilogue);
		[CCode (cname = "g_mime_multipart_set_prologue")]
		public void set_prologue (string prologue);
		[CCode (cname = "g_mime_multipart_new_with_subtype", has_construct_function = false)]
		public Multipart.with_subtype (string subtype);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_multipart_encrypted_get_type ()")]
	public class MultipartEncrypted : GMime.Multipart {
		[CCode (cname = "g_mime_multipart_encrypted_new", has_construct_function = false)]
		public MultipartEncrypted ();
		[CCode (cname = "g_mime_multipart_encrypted_decrypt")]
		public GMime.Object? decrypt (GMime.DecryptFlags flags, string session_key, out GMime.DecryptResult result) throws GLib.Error;
		[CCode (cname = "g_mime_multipart_encrypted_encrypt")]
		public static GMime.MultipartEncrypted? encrypt (GMime.CryptoContext ctx, GMime.Object entity, bool sign, string? userid, GMime.EncryptFlags flags, GLib.GenericArray<string> recipients) throws GLib.Error;
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_multipart_signed_get_type ()")]
	public class MultipartSigned : GMime.Multipart {
		[CCode (cname = "g_mime_multipart_signed_new", has_construct_function = false)]
		public MultipartSigned ();
		[CCode (cname = "g_mime_multipart_signed_sign")]
		public static GMime.MultipartSigned? sign (GMime.CryptoContext ctx, GMime.Object entity, string userid) throws GLib.Error;
		[CCode (cname = "g_mime_multipart_signed_verify")]
		public GMime.SignatureList? verify (GMime.VerifyFlags flags) throws GLib.Error;
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_object_get_type ()")]
	public abstract class Object : GLib.Object {
		public weak string content_id;
		public weak GMime.ContentType content_type;
		public weak GMime.ContentDisposition disposition;
		public weak GMime.HeaderList headers;
		[CCode (cname = "g_mime_object_new", has_construct_function = false)]
		public Object (GMime.ParserOptions? options, GMime.ContentType content_type);
		[CCode (cname = "g_mime_object_append_header")]
		public void append_header (string header, string value, string charset);
		public virtual void encode (GMime.EncodingConstraint constraint);
		[CCode (cname = "g_mime_object_get_content_disposition")]
		public unowned GMime.ContentDisposition get_content_disposition ();
		[CCode (cname = "g_mime_object_get_content_disposition_parameter")]
		public unowned string get_content_disposition_parameter (string name);
		[CCode (cname = "g_mime_object_get_content_id")]
		public unowned string get_content_id ();
		[CCode (cname = "g_mime_object_get_content_type")]
		public unowned GMime.ContentType get_content_type ();
		[CCode (cname = "g_mime_object_get_content_type_parameter")]
		public unowned string? get_content_type_parameter (string name);
		[CCode (cname = "g_mime_object_get_disposition")]
		public unowned string get_disposition ();
		[CCode (cname = "g_mime_object_get_header")]
		public unowned string get_header (string header);
		[CCode (cname = "g_mime_object_get_header_list")]
		public unowned GMime.HeaderList get_header_list ();
		public virtual string get_headers (GMime.FormatOptions? options);
		[NoWrapper]
		public virtual void header_added (GMime.Header header);
		[NoWrapper]
		public virtual void header_changed (GMime.Header header);
		[NoWrapper]
		public virtual void header_removed (GMime.Header header);
		[NoWrapper]
		public virtual void headers_cleared ();
		[CCode (cname = "g_mime_object_prepend_header")]
		public void prepend_header (string header, string value, string charset);
		[CCode (cname = "g_mime_object_register_type")]
		public static void register_type (string type, string subtype, GLib.Type object_type);
		[CCode (cname = "g_mime_object_remove_header")]
		public bool remove_header (string header);
		[CCode (cname = "g_mime_object_set_content_disposition")]
		public void set_content_disposition (GMime.ContentDisposition disposition);
		[CCode (cname = "g_mime_object_set_content_disposition_parameter")]
		public void set_content_disposition_parameter (string name, string value);
		[CCode (cname = "g_mime_object_set_content_id")]
		public void set_content_id (string content_id);
		[CCode (cname = "g_mime_object_set_content_type")]
		public virtual void set_content_type (GMime.ContentType content_type);
		[CCode (cname = "g_mime_object_set_content_type_parameter")]
		public void set_content_type_parameter (string name, string value);
		[CCode (cname = "g_mime_object_set_disposition")]
		public void set_disposition (string disposition);
		[CCode (cname = "g_mime_object_set_header")]
		public void set_header (string header, string value, string charset);
		[CCode (cname = "g_mime_object_to_string")]
		public string to_string (GMime.FormatOptions? options);
		[CCode (cname = "g_mime_object_new_type", has_construct_function = false)]
		public Object.type (GMime.ParserOptions? options, string type, string subtype);
		[CCode (cname = "g_mime_object_type_registry_init")]
		public static void type_registry_init ();
		[CCode (cname = "g_mime_object_type_registry_shutdown")]
		public static void type_registry_shutdown ();
		[NoWrapper]
		public virtual ssize_t write_to_stream (GMime.FormatOptions options, bool content_only, GMime.Stream stream);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_param_get_type ()")]
	public class Param : GLib.Object {
		public weak string charset;
		public weak string lang;
		public GMime.ParamEncodingMethod method;
		public weak string name;
		public weak string value;
		[CCode (has_construct_function = false)]
		protected Param ();
		[CCode (cname = "g_mime_param_get_charset")]
		public unowned string get_charset ();
		[CCode (cname = "g_mime_param_get_encoding_method")]
		public GMime.ParamEncodingMethod get_encoding_method ();
		[CCode (cname = "g_mime_param_get_lang")]
		public unowned string get_lang ();
		[CCode (cname = "g_mime_param_get_name")]
		public unowned string get_name ();
		[CCode (cname = "g_mime_param_get_value")]
		public unowned string get_value ();
		[CCode (cname = "g_mime_param_set_charset")]
		public void set_charset (string charset);
		[CCode (cname = "g_mime_param_set_encoding_method")]
		public void set_encoding_method (GMime.ParamEncodingMethod method);
		[CCode (cname = "g_mime_param_set_lang")]
		public void set_lang (string lang);
		[CCode (cname = "g_mime_param_set_value")]
		public void set_value (string value);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_param_list_get_type ()")]
	public class ParamList : GLib.Object {
		[CCode (cname = "g_mime_param_list_new", has_construct_function = false)]
		public ParamList ();
		[CCode (cname = "g_mime_param_list_clear")]
		public void clear ();
		[CCode (cname = "g_mime_param_list_encode")]
		public void encode (GMime.FormatOptions options, bool fold, GLib.StringBuilder str);
		[CCode (cname = "g_mime_param_list_get_parameter")]
		public unowned GMime.Param get_parameter (string name);
		[CCode (cname = "g_mime_param_list_get_parameter_at")]
		public unowned GMime.Param get_parameter_at (int index);
		[CCode (cname = "g_mime_param_list_length")]
		public int length ();
		[CCode (cname = "g_mime_param_list_parse")]
		public static GMime.ParamList parse (GMime.ParserOptions options, string str);
		[CCode (cname = "g_mime_param_list_remove")]
		public bool remove (string name);
		[CCode (cname = "g_mime_param_list_remove_at")]
		public bool remove_at (int index);
		[CCode (cname = "g_mime_param_list_set_parameter")]
		public void set_parameter (string name, string value);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_parser_get_type ()")]
	public class Parser : GLib.Object {
		[CCode (cname = "g_mime_parser_new", has_construct_function = false)]
		public Parser ();
		[CCode (cname = "g_mime_parser_construct_message")]
		public GMime.Message? construct_message (GMime.ParserOptions? options);
		[CCode (cname = "g_mime_parser_construct_part")]
		public GMime.Object? construct_part (GMime.ParserOptions? options);
		[CCode (cname = "g_mime_parser_eos")]
		public bool eos ();
		[CCode (cname = "g_mime_parser_get_format")]
		public GMime.Format get_format ();
		[CCode (cname = "g_mime_parser_get_headers_begin")]
		public int64 get_headers_begin ();
		[CCode (cname = "g_mime_parser_get_headers_end")]
		public int64 get_headers_end ();
		[CCode (cname = "g_mime_parser_get_mbox_marker")]
		public string? get_mbox_marker ();
		[CCode (cname = "g_mime_parser_get_mbox_marker_offset")]
		public int64 get_mbox_marker_offset ();
		[CCode (cname = "g_mime_parser_get_persist_stream")]
		public bool get_persist_stream ();
		[CCode (cname = "g_mime_parser_get_respect_content_length")]
		public bool get_respect_content_length ();
		[CCode (cname = "g_mime_parser_init_with_stream")]
		public void init_with_stream (GMime.Stream stream);
		[CCode (cname = "g_mime_parser_set_format")]
		public void set_format (GMime.Format format);
		[CCode (cname = "g_mime_parser_set_persist_stream")]
		public void set_persist_stream (bool persist);
		[CCode (cname = "g_mime_parser_set_respect_content_length")]
		public void set_respect_content_length (bool respect_content_length);
		[CCode (cname = "g_mime_parser_tell")]
		public int64 tell ();
		[CCode (cname = "g_mime_parser_new_with_stream", has_construct_function = false)]
		public Parser.with_stream (GMime.Stream stream);
	}
	[CCode (cheader_filename = "gmime/gmime.h", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "g_mime_parser_options_get_type ()")]
	[Compact]
	public class ParserOptions {
		[CCode (cname = "g_mime_parser_options_new", has_construct_function = false)]
		public ParserOptions ();
		[CCode (cname = "g_mime_parser_options_clone")]
		public GMime.ParserOptions clone ();
		[CCode (cname = "g_mime_parser_options_free")]
		public void free ();
		[CCode (cname = "g_mime_parser_options_get_address_compliance_mode")]
		public GMime.RfcComplianceMode get_address_compliance_mode ();
		[CCode (cname = "g_mime_parser_options_get_allow_addresses_without_domain")]
		public bool get_allow_addresses_without_domain ();
		[CCode (array_length = false, array_null_terminated = true, cname = "g_mime_parser_options_get_fallback_charsets")]
		public unowned string[] get_fallback_charsets ();
		[CCode (cname = "g_mime_parser_options_get_parameter_compliance_mode")]
		public GMime.RfcComplianceMode get_parameter_compliance_mode ();
		[CCode (cname = "g_mime_parser_options_get_rfc2047_compliance_mode")]
		public GMime.RfcComplianceMode get_rfc2047_compliance_mode ();
		[CCode (cname = "g_mime_parser_options_set_address_compliance_mode")]
		public void set_address_compliance_mode (GMime.RfcComplianceMode mode);
		[CCode (cname = "g_mime_parser_options_set_allow_addresses_without_domain")]
		public void set_allow_addresses_without_domain (bool allow);
		[CCode (cname = "g_mime_parser_options_set_fallback_charsets")]
		public void set_fallback_charsets (string charsets);
		[CCode (cname = "g_mime_parser_options_set_parameter_compliance_mode")]
		public void set_parameter_compliance_mode (GMime.RfcComplianceMode mode);
		[CCode (cname = "g_mime_parser_options_set_rfc2047_compliance_mode")]
		public void set_rfc2047_compliance_mode (GMime.RfcComplianceMode mode);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_part_get_type ()")]
	public class Part : GMime.Object {
		public weak GMime.DataWrapper content;
		public weak string content_description;
		public weak string content_location;
		public weak string content_md5;
		public GMime.ContentEncoding encoding;
		public GMime.OpenPGPData openpgp;
		[CCode (cname = "g_mime_part_new", has_construct_function = false)]
		public Part ();
		[CCode (cname = "g_mime_part_get_best_content_encoding")]
		public GMime.ContentEncoding get_best_content_encoding (GMime.EncodingConstraint constraint);
		[CCode (cname = "g_mime_part_get_content")]
		public unowned GMime.DataWrapper get_content ();
		[CCode (cname = "g_mime_part_get_content_description")]
		public unowned string get_content_description ();
		[CCode (cname = "g_mime_part_get_content_encoding")]
		public GMime.ContentEncoding get_content_encoding ();
		[CCode (cname = "g_mime_part_get_content_id")]
		public unowned string get_content_id ();
		[CCode (cname = "g_mime_part_get_content_location")]
		public unowned string get_content_location ();
		[CCode (cname = "g_mime_part_get_content_md5")]
		public unowned string get_content_md5 ();
		[CCode (cname = "g_mime_part_get_filename")]
		public unowned string get_filename ();
		[CCode (cname = "g_mime_part_get_openpgp_data")]
		public GMime.OpenPGPData get_openpgp_data ();
		[CCode (cname = "g_mime_part_is_attachment")]
		public bool is_attachment ();
		[CCode (cname = "g_mime_part_openpgp_decrypt")]
		public GMime.DecryptResult? openpgp_decrypt (GMime.DecryptFlags flags, string? session_key) throws GLib.Error;
		[CCode (cname = "g_mime_part_openpgp_encrypt")]
		public bool openpgp_encrypt (bool sign, string? userid, GMime.EncryptFlags flags, GLib.GenericArray<string> recipients) throws GLib.Error;
		[CCode (cname = "g_mime_part_openpgp_sign")]
		public bool openpgp_sign (string userid) throws GLib.Error;
		[CCode (cname = "g_mime_part_openpgp_verify")]
		public GMime.SignatureList? openpgp_verify (GMime.VerifyFlags flags) throws GLib.Error;
		[CCode (cname = "g_mime_part_set_content")]
		public virtual void set_content (GMime.DataWrapper content);
		[CCode (cname = "g_mime_part_set_content_description")]
		public void set_content_description (string description);
		[CCode (cname = "g_mime_part_set_content_encoding")]
		public void set_content_encoding (GMime.ContentEncoding encoding);
		[CCode (cname = "g_mime_part_set_content_id")]
		public void set_content_id (string content_id);
		[CCode (cname = "g_mime_part_set_content_location")]
		public void set_content_location (string content_location);
		[CCode (cname = "g_mime_part_set_content_md5")]
		public void set_content_md5 (string content_md5);
		[CCode (cname = "g_mime_part_set_filename")]
		public void set_filename (string filename);
		[CCode (cname = "g_mime_part_set_openpgp_data")]
		public void set_openpgp_data (GMime.OpenPGPData data);
		[CCode (cname = "g_mime_part_verify_content_md5")]
		public bool verify_content_md5 ();
		[CCode (cname = "g_mime_part_new_with_type", has_construct_function = false)]
		public Part.with_type (string type, string subtype);
	}
	[CCode (cheader_filename = "gmime/gmime.h", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "g_mime_part_iter_get_type ()")]
	[Compact]
	public class PartIter {
		[CCode (cname = "g_mime_part_iter_new", has_construct_function = false)]
		public PartIter (GMime.Object toplevel);
		[CCode (cname = "g_mime_part_iter_clone")]
		public GMime.PartIter clone ();
		[CCode (cname = "g_mime_part_iter_free")]
		public void free ();
		[CCode (cname = "g_mime_part_iter_get_current")]
		public unowned GMime.Object get_current ();
		[CCode (cname = "g_mime_part_iter_get_parent")]
		public unowned GMime.Object get_parent ();
		[CCode (cname = "g_mime_part_iter_get_path")]
		public string get_path ();
		[CCode (cname = "g_mime_part_iter_get_toplevel")]
		public unowned GMime.Object get_toplevel ();
		[CCode (cname = "g_mime_part_iter_is_valid")]
		public bool is_valid ();
		[CCode (cname = "g_mime_part_iter_jump_to")]
		public bool jump_to (string path);
		[CCode (cname = "g_mime_part_iter_next")]
		public bool next ();
		[CCode (cname = "g_mime_part_iter_prev")]
		public bool prev ();
		[CCode (cname = "g_mime_part_iter_remove")]
		public bool remove ();
		[CCode (cname = "g_mime_part_iter_replace")]
		public bool replace (GMime.Object replacement);
		[CCode (cname = "g_mime_part_iter_reset")]
		public void reset ();
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_pkcs7_context_get_type ()")]
	public class Pkcs7Context : GMime.CryptoContext {
		[CCode (cname = "g_mime_pkcs7_context_new", has_construct_function = false, type = "GMimeCryptoContext*")]
		public Pkcs7Context ();
	}
	[CCode (cheader_filename = "gmime/gmime.h", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "g_mime_references_get_type ()")]
	[Compact]
	public class References {
		public weak GLib.GenericArray<void*> array;
		[CCode (cname = "g_mime_references_new", has_construct_function = false)]
		public References ();
		[CCode (cname = "g_mime_references_append")]
		public void append (string msgid);
		[CCode (cname = "g_mime_references_clear")]
		public void clear ();
		[CCode (cname = "g_mime_references_copy")]
		public GMime.References copy ();
		[CCode (cname = "g_mime_references_free")]
		public void free ();
		[CCode (cname = "g_mime_references_get_message_id")]
		public unowned string get_message_id (int index);
		[CCode (cname = "g_mime_references_length")]
		public int length ();
		[CCode (cname = "g_mime_references_set_message_id")]
		public void set_message_id (int index, string msgid);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_signature_get_type ()")]
	public class Signature : GLib.Object {
		public weak GMime.Certificate cert;
		public long created;
		public long expires;
		public GMime.SignatureStatus status;
		[CCode (cname = "g_mime_signature_new", has_construct_function = false)]
		public Signature ();
		[CCode (cname = "g_mime_signature_get_certificate")]
		public unowned GMime.Certificate get_certificate ();
		[CCode (cname = "g_mime_signature_get_created")]
		public long get_created ();
		[CCode (cname = "g_mime_signature_get_expires")]
		public long get_expires ();
		[CCode (cname = "g_mime_signature_get_status")]
		public GMime.SignatureStatus get_status ();
		[CCode (cname = "g_mime_signature_set_certificate")]
		public void set_certificate (GMime.Certificate cert);
		[CCode (cname = "g_mime_signature_set_created")]
		public void set_created (long created);
		[CCode (cname = "g_mime_signature_set_expires")]
		public void set_expires (long expires);
		[CCode (cname = "g_mime_signature_set_status")]
		public void set_status (GMime.SignatureStatus status);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_signature_list_get_type ()")]
	public class SignatureList : GLib.Object {
		[CCode (cname = "g_mime_signature_list_new", has_construct_function = false)]
		public SignatureList ();
		[CCode (cname = "g_mime_signature_list_add")]
		public int add (GMime.Signature sig);
		[CCode (cname = "g_mime_signature_list_clear")]
		public void clear ();
		[CCode (cname = "g_mime_signature_list_contains")]
		public bool contains (GMime.Signature sig);
		[CCode (cname = "g_mime_signature_list_get_signature")]
		public unowned GMime.Signature get_signature (int index);
		[CCode (cname = "g_mime_signature_list_index_of")]
		public int index_of (GMime.Signature sig);
		[CCode (cname = "g_mime_signature_list_insert")]
		public void insert (int index, GMime.Signature sig);
		[CCode (cname = "g_mime_signature_list_length")]
		public int length ();
		[CCode (cname = "g_mime_signature_list_remove")]
		public bool remove (GMime.Signature sig);
		[CCode (cname = "g_mime_signature_list_remove_at")]
		public bool remove_at (int index);
		[CCode (cname = "g_mime_signature_list_set_signature")]
		public void set_signature (int index, GMime.Signature sig);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_stream_get_type ()")]
	public abstract class Stream : GLib.Object {
		[CCode (has_construct_function = false)]
		protected Stream ();
		[CCode (cname = "g_mime_stream_buffer_gets")]
		public ssize_t buffer_gets (string buf, size_t max);
		[CCode (cname = "g_mime_stream_buffer_readln")]
		public void buffer_readln (GLib.ByteArray buffer);
		public virtual int close ();
		[CCode (cname = "g_mime_stream_construct")]
		public void @construct (int64 start, int64 end);
		public virtual bool eos ();
		public virtual int flush ();
		public virtual int64 length ();
		public virtual ssize_t read ([CCode (array_length_cname = "len", array_length_pos = 1.1, array_length_type = "gsize")] uint8[] buf);
		public virtual int reset ();
		public virtual int64 seek (int64 offset, GMime.SeekWhence whence);
		[CCode (cname = "g_mime_stream_set_bounds")]
		public void set_bounds (int64 start, int64 end);
		public virtual GMime.Stream substream (int64 start, int64 end);
		public virtual int64 tell ();
		public virtual ssize_t write (string buf, size_t len);
		[CCode (cname = "g_mime_stream_write_string")]
		public ssize_t write_string (string str);
		[CCode (cname = "g_mime_stream_write_to_stream")]
		public int64 write_to_stream (GMime.Stream dest);
		[CCode (cname = "g_mime_stream_writev")]
		public int64 writev (GMime.StreamIOVector vector, size_t count);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_stream_buffer_get_type ()")]
	public class StreamBuffer : GMime.Stream {
		public weak string bufend;
		public weak string buffer;
		public size_t buflen;
		public weak string bufptr;
		public GMime.StreamBufferMode mode;
		public weak GMime.Stream source;
		[CCode (cname = "g_mime_stream_buffer_new", has_construct_function = false, type = "GMimeStream*")]
		public StreamBuffer (GMime.Stream source, GMime.StreamBufferMode mode);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_stream_cat_get_type ()")]
	public class StreamCat : GMime.Stream {
		public void* current;
		public void* sources;
		[CCode (cname = "g_mime_stream_cat_new", has_construct_function = false, type = "GMimeStream*")]
		public StreamCat ();
		[CCode (cname = "g_mime_stream_cat_add_source")]
		public int add_source (GMime.Stream source);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_stream_file_get_type ()")]
	public class StreamFile : GMime.Stream {
		public void* fp;
		public bool owner;
		[CCode (cname = "g_mime_stream_file_new", has_construct_function = false, type = "GMimeStream*")]
		public StreamFile (void* fp);
		[CCode (cname = "g_mime_stream_file_get_owner")]
		public bool get_owner ();
		[CCode (cname = "g_mime_stream_file_open")]
		public static GMime.Stream open (string path, string mode) throws GLib.Error;
		[CCode (cname = "g_mime_stream_file_set_owner")]
		public void set_owner (bool owner);
		[CCode (cname = "g_mime_stream_file_new_with_bounds", has_construct_function = false, type = "GMimeStream*")]
		public StreamFile.with_bounds (void* fp, int64 start, int64 end);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_stream_filter_get_type ()")]
	public class StreamFilter : GMime.Stream {
		public bool owner;
		public weak GMime.Stream source;
		[CCode (cname = "g_mime_stream_filter_new", has_construct_function = false, type = "GMimeStream*")]
		public StreamFilter (GMime.Stream stream);
		[CCode (cname = "g_mime_stream_filter_add")]
		public int add (GMime.Filter filter);
		[CCode (cname = "g_mime_stream_filter_get_owner")]
		public bool get_owner ();
		[CCode (cname = "g_mime_stream_filter_remove")]
		public void remove (int id);
		[CCode (cname = "g_mime_stream_filter_set_owner")]
		public void set_owner (bool owner);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_stream_fs_get_type ()")]
	public class StreamFs : GMime.Stream {
		public bool eos;
		public int fd;
		public bool owner;
		[CCode (cname = "g_mime_stream_fs_new", has_construct_function = false, type = "GMimeStream*")]
		public StreamFs (int fd);
		[CCode (cname = "g_mime_stream_fs_get_owner")]
		public bool get_owner ();
		[CCode (cname = "g_mime_stream_fs_open")]
		public static GMime.Stream open (string path, int flags, int mode) throws GLib.Error;
		[CCode (cname = "g_mime_stream_fs_set_owner")]
		public void set_owner (bool owner);
		[CCode (cname = "g_mime_stream_fs_new_with_bounds", has_construct_function = false, type = "GMimeStream*")]
		public StreamFs.with_bounds (int fd, int64 start, int64 end);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_stream_gio_get_type ()")]
	public class StreamGIO : GMime.Stream {
		public bool eos;
		public weak GLib.File file;
		public weak GLib.InputStream istream;
		public weak GLib.OutputStream ostream;
		public bool owner;
		[CCode (cname = "g_mime_stream_gio_new", has_construct_function = false, type = "GMimeStream*")]
		public StreamGIO (GLib.File file);
		[CCode (cname = "g_mime_stream_gio_get_owner")]
		public bool get_owner ();
		[CCode (cname = "g_mime_stream_gio_set_owner")]
		public void set_owner (bool owner);
		[CCode (cname = "g_mime_stream_gio_new_with_bounds", has_construct_function = false, type = "GMimeStream*")]
		public StreamGIO.with_bounds (GLib.File file, int64 start, int64 end);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_stream_mem_get_type ()")]
	public class StreamMem : GMime.Stream {
		public weak GLib.ByteArray buffer;
		public bool owner;
		[CCode (cname = "g_mime_stream_mem_new", has_construct_function = false, type = "GMimeStream*")]
		public StreamMem ();
		[CCode (cname = "g_mime_stream_mem_get_byte_array")]
		public unowned GLib.ByteArray get_byte_array ();
		[CCode (cname = "g_mime_stream_mem_get_owner")]
		public bool get_owner ();
		[CCode (cname = "g_mime_stream_mem_set_byte_array")]
		public void set_byte_array (GLib.ByteArray array);
		[CCode (cname = "g_mime_stream_mem_set_owner")]
		public void set_owner (bool owner);
		[CCode (cname = "g_mime_stream_mem_new_with_buffer", has_construct_function = false, type = "GMimeStream*")]
		public StreamMem.with_buffer ([CCode (array_length_cname = "len", array_length_pos = 1.1, array_length_type = "gsize")] uint8[] buffer);
		[CCode (cname = "g_mime_stream_mem_new_with_byte_array", has_construct_function = false, type = "GMimeStream*")]
		public StreamMem.with_byte_array (GLib.ByteArray array);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_stream_mmap_get_type ()")]
	public class StreamMmap : GMime.Stream {
		public bool eos;
		public int fd;
		public weak string map;
		public size_t maplen;
		public bool owner;
		[CCode (cname = "g_mime_stream_mmap_new", has_construct_function = false, type = "GMimeStream*")]
		public StreamMmap (int fd, int prot, int flags);
		[CCode (cname = "g_mime_stream_mmap_get_owner")]
		[Version (since = "3.2")]
		public bool get_owner ();
		[CCode (cname = "g_mime_stream_mmap_set_owner")]
		[Version (since = "3.2")]
		public void set_owner (bool owner);
		[CCode (cname = "g_mime_stream_mmap_new_with_bounds", has_construct_function = false, type = "GMimeStream*")]
		public StreamMmap.with_bounds (int fd, int prot, int flags, int64 start, int64 end);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_stream_null_get_type ()")]
	public class StreamNull : GMime.Stream {
		public bool count_newlines;
		public size_t newlines;
		public size_t written;
		[CCode (cname = "g_mime_stream_null_new", has_construct_function = false, type = "GMimeStream*")]
		public StreamNull ();
		[CCode (cname = "g_mime_stream_null_get_count_newlines")]
		public bool get_count_newlines ();
		[CCode (cname = "g_mime_stream_null_set_count_newlines")]
		public void set_count_newlines (bool count);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_stream_pipe_get_type ()")]
	public class StreamPipe : GMime.Stream {
		public bool eos;
		public int fd;
		public bool owner;
		[CCode (cname = "g_mime_stream_pipe_new", has_construct_function = false, type = "GMimeStream*")]
		public StreamPipe (int fd);
		[CCode (cname = "g_mime_stream_pipe_get_owner")]
		public bool get_owner ();
		[CCode (cname = "g_mime_stream_pipe_set_owner")]
		public void set_owner (bool owner);
	}
	[CCode (cheader_filename = "gmime/gmime.h", type_id = "g_mime_text_part_get_type ()")]
	public class TextPart : GMime.Part {
		[CCode (cname = "g_mime_text_part_new", has_construct_function = false)]
		public TextPart ();
		[CCode (cname = "g_mime_text_part_get_charset")]
		public unowned string get_charset ();
		[CCode (cname = "g_mime_text_part_get_text")]
		public string get_text ();
		[CCode (cname = "g_mime_text_part_set_charset")]
		public void set_charset (string charset);
		[CCode (cname = "g_mime_text_part_set_text")]
		public void set_text (string text);
		[CCode (cname = "g_mime_text_part_new_with_subtype", has_construct_function = false)]
		public TextPart.with_subtype (string subtype);
	}
	[CCode (cheader_filename = "gmime/gmime.h", has_type_id = false)]
	public struct Charset {
		public uint mask;
		public uint level;
		[CCode (cname = "g_mime_charset_best_name")]
		public unowned string? best_name ();
		[CCode (cname = "g_mime_charset_can_encode")]
		public bool can_encode (string charset, string text, size_t len);
		[CCode (cname = "g_mime_charset_init")]
		public void init ();
		[CCode (cname = "g_mime_charset_step")]
		public void step (string inbuf, size_t inlen);
	}
	[CCode (cheader_filename = "gmime/gmime.h", has_type_id = false)]
	public struct Encoding {
		public GMime.ContentEncoding encoding;
		[CCode (array_length = false)]
		public weak uint uubuf[60];
		public bool encode;
		public uint32 save;
		public int state;
		[CCode (cname = "g_mime_encoding_flush")]
		public size_t flush (string inbuf, size_t inlen, string outbuf);
		[CCode (cname = "g_mime_encoding_init_decode")]
		public void init_decode (GMime.ContentEncoding encoding);
		[CCode (cname = "g_mime_encoding_init_encode")]
		public void init_encode (GMime.ContentEncoding encoding);
		[CCode (cname = "g_mime_encoding_outlen")]
		public size_t outlen (size_t inlen);
		[CCode (cname = "g_mime_encoding_reset")]
		public void reset ();
		[CCode (cname = "g_mime_encoding_step")]
		public size_t step (string inbuf, size_t inlen, string outbuf);
	}
	[CCode (cheader_filename = "gmime/gmime.h", has_type_id = false)]
	[Version (since = "3.2")]
	public struct OpenPGPMarker {
		public weak string marker;
		public size_t len;
		public GMime.OpenPGPState before;
		public GMime.OpenPGPState after;
		public bool is_end_marker;
	}
	[CCode (cheader_filename = "gmime/gmime.h", has_type_id = false)]
	public struct StreamIOVector {
		public void* data;
		public size_t len;
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_ADDRESS_TYPE_", has_type_id = false)]
	public enum AddressType {
		SENDER,
		FROM,
		REPLY_TO,
		TO,
		CC,
		BCC
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_AUTOCRYPT_PREFER_ENCRYPT_", has_type_id = false)]
	public enum AutocryptPreferEncrypt {
		NONE,
		MUTUAL
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_CIPHER_ALGO_", has_type_id = false)]
	public enum CipherAlgo {
		DEFAULT,
		IDEA,
		@3DES,
		CAST5,
		BLOWFISH,
		AES,
		AES192,
		AES256,
		TWOFISH,
		CAMELLIA128,
		CAMELLIA192,
		CAMELLIA256
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_CONTENT_ENCODING_", has_type_id = false)]
	public enum ContentEncoding {
		DEFAULT,
		@7BIT,
		@8BIT,
		BINARY,
		BASE64,
		QUOTEDPRINTABLE,
		UUENCODE
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_DECRYPT_", has_type_id = false)]
	[Flags]
	public enum DecryptFlags {
		NONE,
		EXPORT_SESSION_KEY
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_DIGEST_ALGO_", has_type_id = false)]
	public enum DigestAlgo {
		DEFAULT,
		MD5,
		SHA1,
		RIPEMD160,
		MD2,
		TIGER192,
		HAVAL5160,
		SHA256,
		SHA384,
		SHA512,
		SHA224,
		MD4,
		CRC32,
		CRC32_RFC1510,
		CRC32_RFC2440
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_ENCODING_CONSTRAINT_", has_type_id = false)]
	public enum EncodingConstraint {
		@7BIT,
		@8BIT,
		BINARY
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_ENCRYPT_", has_type_id = false)]
	public enum EncryptFlags {
		NONE,
		ALWAYS_TRUST,
		NO_COMPRESS,
		SYMMETRIC,
		THROW_KEYIDS
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_FILTER_BEST_", has_type_id = false)]
	[Flags]
	public enum FilterBestFlags {
		CHARSET,
		ENCODING
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_FILTER_FROM_MODE_", has_type_id = false)]
	public enum FilterFromMode {
		DEFAULT,
		ESCAPE,
		ARMOR
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_FILTER_GZIP_MODE_", has_type_id = false)]
	public enum FilterGZipMode {
		ZIP,
		UNZIP
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_FORMAT_", has_type_id = false)]
	public enum Format {
		MESSAGE,
		MBOX,
		MMDF
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_NEWLINE_FORMAT_", has_type_id = false)]
	public enum NewLineFormat {
		UNIX,
		DOS
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_OPENPGP_DATA_", has_type_id = false)]
	public enum OpenPGPData {
		NONE,
		ENCRYPTED,
		SIGNED,
		PUBLIC_KEY,
		PRIVATE_KEY
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_OPENPGP_", has_type_id = false)]
	[Flags]
	[Version (since = "3.2")]
	public enum OpenPGPState {
		NONE,
		BEGIN_PGP_MESSAGE,
		END_PGP_MESSAGE,
		BEGIN_PGP_SIGNED_MESSAGE,
		BEGIN_PGP_SIGNATURE,
		END_PGP_SIGNATURE,
		BEGIN_PGP_PUBLIC_KEY_BLOCK,
		END_PGP_PUBLIC_KEY_BLOCK,
		BEGIN_PGP_PRIVATE_KEY_BLOCK,
		END_PGP_PRIVATE_KEY_BLOCK
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_PARAM_ENCODING_METHOD_", has_type_id = false)]
	public enum ParamEncodingMethod {
		DEFAULT,
		RFC2231,
		RFC2047
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_", has_type_id = false)]
	public enum ParserWarning {
		WARN_DUPLICATED_HEADER,
		WARN_DUPLICATED_PARAMETER,
		WARN_UNENCODED_8BIT_HEADER,
		WARN_INVALID_CONTENT_TYPE,
		WARN_INVALID_RFC2047_HEADER_VALUE,
		WARN_INVALID_PARAMETER,
		WARN_MALFORMED_MULTIPART,
		WARN_TRUNCATED_MESSAGE,
		WARN_MALFORMED_MESSAGE,
		CRIT_INVALID_HEADER_NAME,
		CRIT_CONFLICTING_HEADER,
		CRIT_CONFLICTING_PARAMETER,
		CRIT_MULTIPART_WITHOUT_BOUNDARY
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_PUBKEY_ALGO_", has_type_id = false)]
	public enum PubKeyAlgo {
		DEFAULT,
		RSA,
		RSA_E,
		RSA_S,
		ELG_E,
		DSA,
		ECC,
		ELG,
		ECDSA,
		ECDH,
		EDDSA
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_RFC_COMPLIANCE_", has_type_id = false)]
	public enum RfcComplianceMode {
		LOOSE,
		STRICT
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_SECURE_MIME_TYPE_", has_type_id = false)]
	public enum SecureMimeType {
		COMPRESSED_DATA,
		ENVELOPED_DATA,
		SIGNED_DATA,
		CERTS_ONLY,
		UNKNOWN
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_STREAM_SEEK_", has_type_id = false)]
	public enum SeekWhence {
		SET,
		CUR,
		END
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_SIGNATURE_STATUS_", has_type_id = false)]
	public enum SignatureStatus {
		VALID,
		GREEN,
		RED,
		KEY_REVOKED,
		KEY_EXPIRED,
		SIG_EXPIRED,
		KEY_MISSING,
		CRL_MISSING,
		CRL_TOO_OLD,
		BAD_POLICY,
		SYS_ERROR,
		TOFU_CONFLICT
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_STREAM_BUFFER_BLOCK_", has_type_id = false)]
	public enum StreamBufferMode {
		READ,
		WRITE
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_TRUST_", has_type_id = false)]
	public enum Trust {
		UNKNOWN,
		UNDEFINED,
		NEVER,
		MARGINAL,
		FULL,
		ULTIMATE
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_VALIDITY_", has_type_id = false)]
	public enum Validity {
		UNKNOWN,
		UNDEFINED,
		NEVER,
		MARGINAL,
		FULL,
		ULTIMATE
	}
	[CCode (cheader_filename = "gmime/gmime.h", cprefix = "GMIME_VERIFY_", has_type_id = false)]
	public enum VerifyFlags {
		[CCode (cname = "GMIME_VERIFY_NONE")]
		VERIFY_NONE
	}
	[CCode (cheader_filename = "gmime/gmime.h", has_target = false)]
	public delegate string HeaderRawValueFormatter (GMime.Header header, GMime.FormatOptions options, string value, string charset);
	[CCode (cheader_filename = "gmime/gmime.h", instance_pos = 2.9)]
	public delegate void ObjectForeachFunc (GMime.Object parent, GMime.Object part);
	[CCode (cheader_filename = "gmime/gmime.h", instance_pos = 4.9)]
	public delegate void ParserHeaderRegexFunc (GMime.Parser parser, string header, string value, int64 offset);
	[CCode (cheader_filename = "gmime/gmime.h", instance_pos = 3.9)]
	public delegate void ParserWarningFunc (int64 offset, GMime.ParserWarning errcode, string item);
	[CCode (cheader_filename = "gmime/gmime.h", has_target = false)]
	public delegate bool PasswordRequestFunc (GMime.CryptoContext ctx, string user_id, string prompt, bool reprompt, GMime.Stream response) throws GLib.Error;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_BINARY_AGE")]
	public const int BINARY_AGE;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_DISPOSITION_ATTACHMENT")]
	public const string DISPOSITION_ATTACHMENT;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_DISPOSITION_INLINE")]
	public const string DISPOSITION_INLINE;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_FILTER_ENRICHED_IS_RICHTEXT")]
	public const int FILTER_ENRICHED_IS_RICHTEXT;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_FILTER_HTML_BLOCKQUOTE_CITATION")]
	public const int FILTER_HTML_BLOCKQUOTE_CITATION;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_FILTER_HTML_CITE")]
	public const int FILTER_HTML_CITE;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_FILTER_HTML_CONVERT_ADDRESSES")]
	public const int FILTER_HTML_CONVERT_ADDRESSES;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_FILTER_HTML_CONVERT_NL")]
	public const int FILTER_HTML_CONVERT_NL;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_FILTER_HTML_CONVERT_SPACES")]
	public const int FILTER_HTML_CONVERT_SPACES;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_FILTER_HTML_CONVERT_URLS")]
	public const int FILTER_HTML_CONVERT_URLS;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_FILTER_HTML_ESCAPE_8BIT")]
	public const int FILTER_HTML_ESCAPE_8BIT;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_FILTER_HTML_MARK_CITATION")]
	public const int FILTER_HTML_MARK_CITATION;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_FILTER_HTML_PRE")]
	public const int FILTER_HTML_PRE;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_INTERFACE_AGE")]
	public const int INTERFACE_AGE;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_MAJOR_VERSION")]
	public const int MAJOR_VERSION;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_MICRO_VERSION")]
	public const int MICRO_VERSION;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_MINOR_VERSION")]
	public const int MINOR_VERSION;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_SIGNATURE_STATUS_ERROR_MASK")]
	public const int SIGNATURE_STATUS_ERROR_MASK;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_UUDECODE_STATE_BEGIN")]
	public const int UUDECODE_STATE_BEGIN;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_UUDECODE_STATE_END")]
	public const int UUDECODE_STATE_END;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_UUDECODE_STATE_INIT")]
	public const int UUDECODE_STATE_INIT;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_UUDECODE_STATE_MASK")]
	public const int UUDECODE_STATE_MASK;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_YDECODE_STATE_BEGIN")]
	public const int YDECODE_STATE_BEGIN;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_YDECODE_STATE_DECODE")]
	public const int YDECODE_STATE_DECODE;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_YDECODE_STATE_END")]
	public const int YDECODE_STATE_END;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_YDECODE_STATE_EOLN")]
	public const int YDECODE_STATE_EOLN;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_YDECODE_STATE_ESCAPE")]
	public const int YDECODE_STATE_ESCAPE;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_YDECODE_STATE_INIT")]
	public const int YDECODE_STATE_INIT;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_YDECODE_STATE_PART")]
	public const int YDECODE_STATE_PART;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_YENCODE_CRC_INIT")]
	public const int YENCODE_CRC_INIT;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "GMIME_YENCODE_STATE_INIT")]
	public const int YENCODE_STATE_INIT;
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_charset_best")]
	public static unowned string? charset_best (string inbuf, size_t inlen);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_charset_canon_name")]
	public static unowned string charset_canon_name (string charset);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_charset_iconv_name")]
	public static unowned string charset_iconv_name (string charset);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_charset_iso_to_windows")]
	public static unowned string charset_iso_to_windows (string isocharset);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_charset_language")]
	public static unowned string? charset_language (string charset);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_charset_locale_name")]
	public static unowned string charset_locale_name ();
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_charset_map_init")]
	public static void charset_map_init ();
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_charset_map_shutdown")]
	public static void charset_map_shutdown ();
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_charset_name")]
	public static unowned string charset_name (string charset);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_check_version")]
	public static bool check_version (uint major, uint minor, uint micro);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_content_encoding_from_string")]
	public static GMime.ContentEncoding content_encoding_from_string (string str);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_content_encoding_to_string")]
	public static unowned string content_encoding_to_string (GMime.ContentEncoding encoding);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_encoding_base64_decode_step")]
	public static size_t encoding_base64_decode_step (uint8 inbuf, size_t inlen, uint8 outbuf, int state, uint32 save);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_encoding_base64_encode_close")]
	public static size_t encoding_base64_encode_close (uint8 inbuf, size_t inlen, uint8 outbuf, int state, uint32 save);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_encoding_base64_encode_step")]
	public static size_t encoding_base64_encode_step (uint8 inbuf, size_t inlen, uint8 outbuf, int state, uint32 save);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_encoding_quoted_decode_step")]
	public static size_t encoding_quoted_decode_step (uint8 inbuf, size_t inlen, uint8 outbuf, int state, uint32 save);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_encoding_quoted_encode_close")]
	public static size_t encoding_quoted_encode_close (uint8 inbuf, size_t inlen, uint8 outbuf, int state, uint32 save);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_encoding_quoted_encode_step")]
	public static size_t encoding_quoted_encode_step (uint8 inbuf, size_t inlen, uint8 outbuf, int state, uint32 save);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_encoding_uudecode_step")]
	public static size_t encoding_uudecode_step (uint8 inbuf, size_t inlen, uint8 outbuf, int state, uint32 save);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_encoding_uuencode_close")]
	public static size_t encoding_uuencode_close (uint8 inbuf, size_t inlen, uint8 outbuf, uint8 uubuf, int state, uint32 save);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_encoding_uuencode_step")]
	public static size_t encoding_uuencode_step (uint8 inbuf, size_t inlen, uint8 outbuf, uint8 uubuf, int state, uint32 save);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_format_options_get_default")]
	public static GMime.FormatOptions format_options_get_default ();
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_iconv_locale_to_utf8")]
	public static string iconv_locale_to_utf8 (string str);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_iconv_locale_to_utf8_length")]
	public static string iconv_locale_to_utf8_length (string str, size_t n);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_iconv_utf8_to_locale")]
	public static string iconv_utf8_to_locale (string str);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_iconv_utf8_to_locale_length")]
	public static string iconv_utf8_to_locale_length (string str, size_t n);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_init")]
	public static void init ();
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_locale_charset")]
	public static unowned string locale_charset ();
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_locale_language")]
	public static unowned string? locale_language ();
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_parser_options_get_default")]
	public static GMime.ParserOptions parser_options_get_default ();
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_references_parse")]
	public static GMime.References references_parse (GMime.ParserOptions? options, string text);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_shutdown")]
	public static void shutdown ();
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_utils_best_encoding")]
	public static GMime.ContentEncoding utils_best_encoding ([CCode (array_length_cname = "len", array_length_pos = 1.1, array_length_type = "gsize")] uint8[] text);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_utils_decode_8bit")]
	public static string utils_decode_8bit (GMime.ParserOptions? options, [CCode (array_length_cname = "len", array_length_pos = 2.1, array_length_type = "gsize")] uint8[] text);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_utils_decode_message_id")]
	public static string utils_decode_message_id (string message_id);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_utils_generate_message_id")]
	public static string utils_generate_message_id (string fqdn);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_utils_header_decode_date")]
	public static GLib.DateTime? utils_header_decode_date (string str);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_utils_header_decode_phrase")]
	public static string utils_header_decode_phrase (GMime.ParserOptions? options, string phrase);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_utils_header_decode_text")]
	public static string utils_header_decode_text (GMime.ParserOptions? options, string text);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_utils_header_encode_phrase")]
	public static string utils_header_encode_phrase (GMime.FormatOptions? options, string phrase, string? charset);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_utils_header_encode_text")]
	public static string utils_header_encode_text (GMime.FormatOptions? options, string text, string? charset);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_utils_header_format_date")]
	public static string utils_header_format_date (GLib.DateTime date);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_utils_header_unfold")]
	public static string utils_header_unfold (string value);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_utils_quote_string")]
	public static string utils_quote_string (string str);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_utils_structured_header_fold")]
	public static string utils_structured_header_fold (GMime.ParserOptions? options, GMime.FormatOptions? format, string header);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_utils_text_is_8bit")]
	public static bool utils_text_is_8bit ([CCode (array_length_cname = "len", array_length_pos = 1.1, array_length_type = "gsize")] uint8[] text);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_utils_unquote_string")]
	public static void utils_unquote_string (string str);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_utils_unstructured_header_fold")]
	public static string utils_unstructured_header_fold (GMime.ParserOptions? options, GMime.FormatOptions? format, string header);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_ydecode_step")]
	public static size_t ydecode_step (uint8 inbuf, size_t inlen, uint8 outbuf, int state, uint32 pcrc, uint32 crc);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_yencode_close")]
	public static size_t yencode_close (uint8 inbuf, size_t inlen, uint8 outbuf, int state, uint32 pcrc, uint32 crc);
	[CCode (cheader_filename = "gmime/gmime.h", cname = "g_mime_yencode_step")]
	public static size_t yencode_step (uint8 inbuf, size_t inlen, uint8 outbuf, int state, uint32 pcrc, uint32 crc);
}