summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/language-bindings/python/src/wamr/wasmcapi/binding.py
blob: dd7adadf6a68183bc1d529554391d8e2e1566a84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
# -*- coding: utf-8 -*-
#!/usr/bin/env python3
#
# Copyright (C) 2019 Intel Corporation.  All rights reserved.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#
#It is a generated file. DO NOT EDIT.
#
from ctypes import *

from .ffi import dereference, libiwasm, wasm_ref_t, wasm_val_t


wasm_byte_t = c_ubyte

class wasm_byte_vec_t(Structure):
    _fields_ = [
        ("size", c_size_t),
        ("data", POINTER(wasm_byte_t)),
        ("num_elems", c_size_t),
        ("size_of_elem", c_size_t),
        ("lock", c_void_p),
    ]

    def __eq__(self, other):
        if not isinstance(other, wasm_byte_vec_t):
            return False
        return self.size == other.size and self.num_elems == other.num_elems and self.size_of_elem == other.size_of_elem

    def __repr__(self):
        ret = ""
        for i in range(self.num_elems):
                ret += str(self.data[i])
                ret += " "
        return ret



def wasm_byte_vec_new_empty(arg0):
    _wasm_byte_vec_new_empty = libiwasm.wasm_byte_vec_new_empty
    _wasm_byte_vec_new_empty.restype = None
    _wasm_byte_vec_new_empty.argtypes = [POINTER(wasm_byte_vec_t)]
    return _wasm_byte_vec_new_empty(arg0)

def wasm_byte_vec_new_uninitialized(arg0,arg1):
    _wasm_byte_vec_new_uninitialized = libiwasm.wasm_byte_vec_new_uninitialized
    _wasm_byte_vec_new_uninitialized.restype = None
    _wasm_byte_vec_new_uninitialized.argtypes = [POINTER(wasm_byte_vec_t),c_size_t]
    return _wasm_byte_vec_new_uninitialized(arg0,arg1)

def wasm_byte_vec_new(arg0,arg1,arg2):
    _wasm_byte_vec_new = libiwasm.wasm_byte_vec_new
    _wasm_byte_vec_new.restype = None
    _wasm_byte_vec_new.argtypes = [POINTER(wasm_byte_vec_t),c_size_t,POINTER(wasm_byte_t)]
    return _wasm_byte_vec_new(arg0,arg1,arg2)

def wasm_byte_vec_copy(arg0,arg1):
    _wasm_byte_vec_copy = libiwasm.wasm_byte_vec_copy
    _wasm_byte_vec_copy.restype = None
    _wasm_byte_vec_copy.argtypes = [POINTER(wasm_byte_vec_t),POINTER(wasm_byte_vec_t)]
    return _wasm_byte_vec_copy(arg0,arg1)

def wasm_byte_vec_delete(arg0):
    _wasm_byte_vec_delete = libiwasm.wasm_byte_vec_delete
    _wasm_byte_vec_delete.restype = None
    _wasm_byte_vec_delete.argtypes = [POINTER(wasm_byte_vec_t)]
    return _wasm_byte_vec_delete(arg0)

wasm_name_t = wasm_byte_vec_t

class wasm_config_t(Structure):
    pass

def wasm_config_delete(arg0):
    _wasm_config_delete = libiwasm.wasm_config_delete
    _wasm_config_delete.restype = None
    _wasm_config_delete.argtypes = [POINTER(wasm_config_t)]
    return _wasm_config_delete(arg0)

def wasm_config_new():
    _wasm_config_new = libiwasm.wasm_config_new
    _wasm_config_new.restype = POINTER(wasm_config_t)
    _wasm_config_new.argtypes = None
    return _wasm_config_new()

class wasm_engine_t(Structure):
    pass

def wasm_engine_delete(arg0):
    _wasm_engine_delete = libiwasm.wasm_engine_delete
    _wasm_engine_delete.restype = None
    _wasm_engine_delete.argtypes = [POINTER(wasm_engine_t)]
    return _wasm_engine_delete(arg0)

def wasm_engine_new():
    _wasm_engine_new = libiwasm.wasm_engine_new
    _wasm_engine_new.restype = POINTER(wasm_engine_t)
    _wasm_engine_new.argtypes = None
    return _wasm_engine_new()

def wasm_engine_new_with_config(arg0):
    _wasm_engine_new_with_config = libiwasm.wasm_engine_new_with_config
    _wasm_engine_new_with_config.restype = POINTER(wasm_engine_t)
    _wasm_engine_new_with_config.argtypes = [POINTER(wasm_config_t)]
    return _wasm_engine_new_with_config(arg0)

class wasm_store_t(Structure):
    pass

def wasm_store_delete(arg0):
    _wasm_store_delete = libiwasm.wasm_store_delete
    _wasm_store_delete.restype = None
    _wasm_store_delete.argtypes = [POINTER(wasm_store_t)]
    return _wasm_store_delete(arg0)

def wasm_store_new(arg0):
    _wasm_store_new = libiwasm.wasm_store_new
    _wasm_store_new.restype = POINTER(wasm_store_t)
    _wasm_store_new.argtypes = [POINTER(wasm_engine_t)]
    return _wasm_store_new(arg0)

wasm_mutability_t = c_uint8

WASM_CONST = 0
WASM_VAR = 1

class wasm_limits_t(Structure):
    _fields_ = [
        ("min", c_uint32),
        ("max", c_uint32),
    ]

    def __eq__(self, other):
        if not isinstance(other, wasm_limits_t):
            return False
        return self.min == other.min and self.max == other.max

    def __repr__(self):
        return f"{{min={self.min}, max={self.max}}}"


class wasm_valtype_t(Structure):
    pass

def wasm_valtype_delete(arg0):
    _wasm_valtype_delete = libiwasm.wasm_valtype_delete
    _wasm_valtype_delete.restype = None
    _wasm_valtype_delete.argtypes = [POINTER(wasm_valtype_t)]
    return _wasm_valtype_delete(arg0)

class wasm_valtype_vec_t(Structure):
    _fields_ = [
        ("size", c_size_t),
        ("data", POINTER(POINTER(wasm_valtype_t))),
        ("num_elems", c_size_t),
        ("size_of_elem", c_size_t),
        ("lock", c_void_p),
    ]

    def __eq__(self, other):
        if not isinstance(other, wasm_valtype_vec_t):
            return False
        return self.size == other.size and self.num_elems == other.num_elems and self.size_of_elem == other.size_of_elem

    def __repr__(self):
        ret = ""
        for i in range(self.num_elems):
                ret += str(dereference(self.data[i]))
                ret += " "
        return ret



def wasm_valtype_vec_new_empty(arg0):
    _wasm_valtype_vec_new_empty = libiwasm.wasm_valtype_vec_new_empty
    _wasm_valtype_vec_new_empty.restype = None
    _wasm_valtype_vec_new_empty.argtypes = [POINTER(wasm_valtype_vec_t)]
    return _wasm_valtype_vec_new_empty(arg0)

def wasm_valtype_vec_new_uninitialized(arg0,arg1):
    _wasm_valtype_vec_new_uninitialized = libiwasm.wasm_valtype_vec_new_uninitialized
    _wasm_valtype_vec_new_uninitialized.restype = None
    _wasm_valtype_vec_new_uninitialized.argtypes = [POINTER(wasm_valtype_vec_t),c_size_t]
    return _wasm_valtype_vec_new_uninitialized(arg0,arg1)

def wasm_valtype_vec_new(arg0,arg1,arg2):
    _wasm_valtype_vec_new = libiwasm.wasm_valtype_vec_new
    _wasm_valtype_vec_new.restype = None
    _wasm_valtype_vec_new.argtypes = [POINTER(wasm_valtype_vec_t),c_size_t,POINTER(POINTER(wasm_valtype_t))]
    return _wasm_valtype_vec_new(arg0,arg1,arg2)

def wasm_valtype_vec_copy(arg0,arg1):
    _wasm_valtype_vec_copy = libiwasm.wasm_valtype_vec_copy
    _wasm_valtype_vec_copy.restype = None
    _wasm_valtype_vec_copy.argtypes = [POINTER(wasm_valtype_vec_t),POINTER(wasm_valtype_vec_t)]
    return _wasm_valtype_vec_copy(arg0,arg1)

def wasm_valtype_vec_delete(arg0):
    _wasm_valtype_vec_delete = libiwasm.wasm_valtype_vec_delete
    _wasm_valtype_vec_delete.restype = None
    _wasm_valtype_vec_delete.argtypes = [POINTER(wasm_valtype_vec_t)]
    return _wasm_valtype_vec_delete(arg0)

def wasm_valtype_copy(arg0):
    _wasm_valtype_copy = libiwasm.wasm_valtype_copy
    _wasm_valtype_copy.restype = POINTER(wasm_valtype_t)
    _wasm_valtype_copy.argtypes = [POINTER(wasm_valtype_t)]
    return _wasm_valtype_copy(arg0)

wasm_valkind_t = c_uint8

WASM_I32 = 0
WASM_I64 = 1
WASM_F32 = 2
WASM_F64 = 3
WASM_ANYREF = 128
WASM_FUNCREF = 129

def wasm_valtype_new(arg0):
    _wasm_valtype_new = libiwasm.wasm_valtype_new
    _wasm_valtype_new.restype = POINTER(wasm_valtype_t)
    _wasm_valtype_new.argtypes = [wasm_valkind_t]
    return _wasm_valtype_new(arg0)

def wasm_valtype_kind(arg0):
    _wasm_valtype_kind = libiwasm.wasm_valtype_kind
    _wasm_valtype_kind.restype = wasm_valkind_t
    _wasm_valtype_kind.argtypes = [POINTER(wasm_valtype_t)]
    return _wasm_valtype_kind(arg0)

class wasm_functype_t(Structure):
    pass

def wasm_functype_delete(arg0):
    _wasm_functype_delete = libiwasm.wasm_functype_delete
    _wasm_functype_delete.restype = None
    _wasm_functype_delete.argtypes = [POINTER(wasm_functype_t)]
    return _wasm_functype_delete(arg0)

class wasm_functype_vec_t(Structure):
    _fields_ = [
        ("size", c_size_t),
        ("data", POINTER(POINTER(wasm_functype_t))),
        ("num_elems", c_size_t),
        ("size_of_elem", c_size_t),
        ("lock", c_void_p),
    ]

    def __eq__(self, other):
        if not isinstance(other, wasm_functype_vec_t):
            return False
        return self.size == other.size and self.num_elems == other.num_elems and self.size_of_elem == other.size_of_elem

    def __repr__(self):
        ret = ""
        for i in range(self.num_elems):
                ret += str(dereference(self.data[i]))
                ret += " "
        return ret



def wasm_functype_vec_new_empty(arg0):
    _wasm_functype_vec_new_empty = libiwasm.wasm_functype_vec_new_empty
    _wasm_functype_vec_new_empty.restype = None
    _wasm_functype_vec_new_empty.argtypes = [POINTER(wasm_functype_vec_t)]
    return _wasm_functype_vec_new_empty(arg0)

def wasm_functype_vec_new_uninitialized(arg0,arg1):
    _wasm_functype_vec_new_uninitialized = libiwasm.wasm_functype_vec_new_uninitialized
    _wasm_functype_vec_new_uninitialized.restype = None
    _wasm_functype_vec_new_uninitialized.argtypes = [POINTER(wasm_functype_vec_t),c_size_t]
    return _wasm_functype_vec_new_uninitialized(arg0,arg1)

def wasm_functype_vec_new(arg0,arg1,arg2):
    _wasm_functype_vec_new = libiwasm.wasm_functype_vec_new
    _wasm_functype_vec_new.restype = None
    _wasm_functype_vec_new.argtypes = [POINTER(wasm_functype_vec_t),c_size_t,POINTER(POINTER(wasm_functype_t))]
    return _wasm_functype_vec_new(arg0,arg1,arg2)

def wasm_functype_vec_copy(arg0,arg1):
    _wasm_functype_vec_copy = libiwasm.wasm_functype_vec_copy
    _wasm_functype_vec_copy.restype = None
    _wasm_functype_vec_copy.argtypes = [POINTER(wasm_functype_vec_t),POINTER(wasm_functype_vec_t)]
    return _wasm_functype_vec_copy(arg0,arg1)

def wasm_functype_vec_delete(arg0):
    _wasm_functype_vec_delete = libiwasm.wasm_functype_vec_delete
    _wasm_functype_vec_delete.restype = None
    _wasm_functype_vec_delete.argtypes = [POINTER(wasm_functype_vec_t)]
    return _wasm_functype_vec_delete(arg0)

def wasm_functype_copy(arg0):
    _wasm_functype_copy = libiwasm.wasm_functype_copy
    _wasm_functype_copy.restype = POINTER(wasm_functype_t)
    _wasm_functype_copy.argtypes = [POINTER(wasm_functype_t)]
    return _wasm_functype_copy(arg0)

def wasm_functype_new(arg0,arg1):
    _wasm_functype_new = libiwasm.wasm_functype_new
    _wasm_functype_new.restype = POINTER(wasm_functype_t)
    _wasm_functype_new.argtypes = [POINTER(wasm_valtype_vec_t),POINTER(wasm_valtype_vec_t)]
    return _wasm_functype_new(arg0,arg1)

def wasm_functype_params(arg0):
    _wasm_functype_params = libiwasm.wasm_functype_params
    _wasm_functype_params.restype = POINTER(wasm_valtype_vec_t)
    _wasm_functype_params.argtypes = [POINTER(wasm_functype_t)]
    return _wasm_functype_params(arg0)

def wasm_functype_results(arg0):
    _wasm_functype_results = libiwasm.wasm_functype_results
    _wasm_functype_results.restype = POINTER(wasm_valtype_vec_t)
    _wasm_functype_results.argtypes = [POINTER(wasm_functype_t)]
    return _wasm_functype_results(arg0)

class wasm_globaltype_t(Structure):
    pass

def wasm_globaltype_delete(arg0):
    _wasm_globaltype_delete = libiwasm.wasm_globaltype_delete
    _wasm_globaltype_delete.restype = None
    _wasm_globaltype_delete.argtypes = [POINTER(wasm_globaltype_t)]
    return _wasm_globaltype_delete(arg0)

class wasm_globaltype_vec_t(Structure):
    _fields_ = [
        ("size", c_size_t),
        ("data", POINTER(POINTER(wasm_globaltype_t))),
        ("num_elems", c_size_t),
        ("size_of_elem", c_size_t),
        ("lock", c_void_p),
    ]

    def __eq__(self, other):
        if not isinstance(other, wasm_globaltype_vec_t):
            return False
        return self.size == other.size and self.num_elems == other.num_elems and self.size_of_elem == other.size_of_elem

    def __repr__(self):
        ret = ""
        for i in range(self.num_elems):
                ret += str(dereference(self.data[i]))
                ret += " "
        return ret



def wasm_globaltype_vec_new_empty(arg0):
    _wasm_globaltype_vec_new_empty = libiwasm.wasm_globaltype_vec_new_empty
    _wasm_globaltype_vec_new_empty.restype = None
    _wasm_globaltype_vec_new_empty.argtypes = [POINTER(wasm_globaltype_vec_t)]
    return _wasm_globaltype_vec_new_empty(arg0)

def wasm_globaltype_vec_new_uninitialized(arg0,arg1):
    _wasm_globaltype_vec_new_uninitialized = libiwasm.wasm_globaltype_vec_new_uninitialized
    _wasm_globaltype_vec_new_uninitialized.restype = None
    _wasm_globaltype_vec_new_uninitialized.argtypes = [POINTER(wasm_globaltype_vec_t),c_size_t]
    return _wasm_globaltype_vec_new_uninitialized(arg0,arg1)

def wasm_globaltype_vec_new(arg0,arg1,arg2):
    _wasm_globaltype_vec_new = libiwasm.wasm_globaltype_vec_new
    _wasm_globaltype_vec_new.restype = None
    _wasm_globaltype_vec_new.argtypes = [POINTER(wasm_globaltype_vec_t),c_size_t,POINTER(POINTER(wasm_globaltype_t))]
    return _wasm_globaltype_vec_new(arg0,arg1,arg2)

def wasm_globaltype_vec_copy(arg0,arg1):
    _wasm_globaltype_vec_copy = libiwasm.wasm_globaltype_vec_copy
    _wasm_globaltype_vec_copy.restype = None
    _wasm_globaltype_vec_copy.argtypes = [POINTER(wasm_globaltype_vec_t),POINTER(wasm_globaltype_vec_t)]
    return _wasm_globaltype_vec_copy(arg0,arg1)

def wasm_globaltype_vec_delete(arg0):
    _wasm_globaltype_vec_delete = libiwasm.wasm_globaltype_vec_delete
    _wasm_globaltype_vec_delete.restype = None
    _wasm_globaltype_vec_delete.argtypes = [POINTER(wasm_globaltype_vec_t)]
    return _wasm_globaltype_vec_delete(arg0)

def wasm_globaltype_copy(arg0):
    _wasm_globaltype_copy = libiwasm.wasm_globaltype_copy
    _wasm_globaltype_copy.restype = POINTER(wasm_globaltype_t)
    _wasm_globaltype_copy.argtypes = [POINTER(wasm_globaltype_t)]
    return _wasm_globaltype_copy(arg0)

def wasm_globaltype_new(arg0,arg1):
    _wasm_globaltype_new = libiwasm.wasm_globaltype_new
    _wasm_globaltype_new.restype = POINTER(wasm_globaltype_t)
    _wasm_globaltype_new.argtypes = [POINTER(wasm_valtype_t),wasm_mutability_t]
    return _wasm_globaltype_new(arg0,arg1)

def wasm_globaltype_content(arg0):
    _wasm_globaltype_content = libiwasm.wasm_globaltype_content
    _wasm_globaltype_content.restype = POINTER(wasm_valtype_t)
    _wasm_globaltype_content.argtypes = [POINTER(wasm_globaltype_t)]
    return _wasm_globaltype_content(arg0)

def wasm_globaltype_mutability(arg0):
    _wasm_globaltype_mutability = libiwasm.wasm_globaltype_mutability
    _wasm_globaltype_mutability.restype = wasm_mutability_t
    _wasm_globaltype_mutability.argtypes = [POINTER(wasm_globaltype_t)]
    return _wasm_globaltype_mutability(arg0)

class wasm_tabletype_t(Structure):
    pass

def wasm_tabletype_delete(arg0):
    _wasm_tabletype_delete = libiwasm.wasm_tabletype_delete
    _wasm_tabletype_delete.restype = None
    _wasm_tabletype_delete.argtypes = [POINTER(wasm_tabletype_t)]
    return _wasm_tabletype_delete(arg0)

class wasm_tabletype_vec_t(Structure):
    _fields_ = [
        ("size", c_size_t),
        ("data", POINTER(POINTER(wasm_tabletype_t))),
        ("num_elems", c_size_t),
        ("size_of_elem", c_size_t),
        ("lock", c_void_p),
    ]

    def __eq__(self, other):
        if not isinstance(other, wasm_tabletype_vec_t):
            return False
        return self.size == other.size and self.num_elems == other.num_elems and self.size_of_elem == other.size_of_elem

    def __repr__(self):
        ret = ""
        for i in range(self.num_elems):
                ret += str(dereference(self.data[i]))
                ret += " "
        return ret



def wasm_tabletype_vec_new_empty(arg0):
    _wasm_tabletype_vec_new_empty = libiwasm.wasm_tabletype_vec_new_empty
    _wasm_tabletype_vec_new_empty.restype = None
    _wasm_tabletype_vec_new_empty.argtypes = [POINTER(wasm_tabletype_vec_t)]
    return _wasm_tabletype_vec_new_empty(arg0)

def wasm_tabletype_vec_new_uninitialized(arg0,arg1):
    _wasm_tabletype_vec_new_uninitialized = libiwasm.wasm_tabletype_vec_new_uninitialized
    _wasm_tabletype_vec_new_uninitialized.restype = None
    _wasm_tabletype_vec_new_uninitialized.argtypes = [POINTER(wasm_tabletype_vec_t),c_size_t]
    return _wasm_tabletype_vec_new_uninitialized(arg0,arg1)

def wasm_tabletype_vec_new(arg0,arg1,arg2):
    _wasm_tabletype_vec_new = libiwasm.wasm_tabletype_vec_new
    _wasm_tabletype_vec_new.restype = None
    _wasm_tabletype_vec_new.argtypes = [POINTER(wasm_tabletype_vec_t),c_size_t,POINTER(POINTER(wasm_tabletype_t))]
    return _wasm_tabletype_vec_new(arg0,arg1,arg2)

def wasm_tabletype_vec_copy(arg0,arg1):
    _wasm_tabletype_vec_copy = libiwasm.wasm_tabletype_vec_copy
    _wasm_tabletype_vec_copy.restype = None
    _wasm_tabletype_vec_copy.argtypes = [POINTER(wasm_tabletype_vec_t),POINTER(wasm_tabletype_vec_t)]
    return _wasm_tabletype_vec_copy(arg0,arg1)

def wasm_tabletype_vec_delete(arg0):
    _wasm_tabletype_vec_delete = libiwasm.wasm_tabletype_vec_delete
    _wasm_tabletype_vec_delete.restype = None
    _wasm_tabletype_vec_delete.argtypes = [POINTER(wasm_tabletype_vec_t)]
    return _wasm_tabletype_vec_delete(arg0)

def wasm_tabletype_copy(arg0):
    _wasm_tabletype_copy = libiwasm.wasm_tabletype_copy
    _wasm_tabletype_copy.restype = POINTER(wasm_tabletype_t)
    _wasm_tabletype_copy.argtypes = [POINTER(wasm_tabletype_t)]
    return _wasm_tabletype_copy(arg0)

def wasm_tabletype_new(arg0,arg1):
    _wasm_tabletype_new = libiwasm.wasm_tabletype_new
    _wasm_tabletype_new.restype = POINTER(wasm_tabletype_t)
    _wasm_tabletype_new.argtypes = [POINTER(wasm_valtype_t),POINTER(wasm_limits_t)]
    return _wasm_tabletype_new(arg0,arg1)

def wasm_tabletype_element(arg0):
    _wasm_tabletype_element = libiwasm.wasm_tabletype_element
    _wasm_tabletype_element.restype = POINTER(wasm_valtype_t)
    _wasm_tabletype_element.argtypes = [POINTER(wasm_tabletype_t)]
    return _wasm_tabletype_element(arg0)

def wasm_tabletype_limits(arg0):
    _wasm_tabletype_limits = libiwasm.wasm_tabletype_limits
    _wasm_tabletype_limits.restype = POINTER(wasm_limits_t)
    _wasm_tabletype_limits.argtypes = [POINTER(wasm_tabletype_t)]
    return _wasm_tabletype_limits(arg0)

class wasm_memorytype_t(Structure):
    pass

def wasm_memorytype_delete(arg0):
    _wasm_memorytype_delete = libiwasm.wasm_memorytype_delete
    _wasm_memorytype_delete.restype = None
    _wasm_memorytype_delete.argtypes = [POINTER(wasm_memorytype_t)]
    return _wasm_memorytype_delete(arg0)

class wasm_memorytype_vec_t(Structure):
    _fields_ = [
        ("size", c_size_t),
        ("data", POINTER(POINTER(wasm_memorytype_t))),
        ("num_elems", c_size_t),
        ("size_of_elem", c_size_t),
        ("lock", c_void_p),
    ]

    def __eq__(self, other):
        if not isinstance(other, wasm_memorytype_vec_t):
            return False
        return self.size == other.size and self.num_elems == other.num_elems and self.size_of_elem == other.size_of_elem

    def __repr__(self):
        ret = ""
        for i in range(self.num_elems):
                ret += str(dereference(self.data[i]))
                ret += " "
        return ret



def wasm_memorytype_vec_new_empty(arg0):
    _wasm_memorytype_vec_new_empty = libiwasm.wasm_memorytype_vec_new_empty
    _wasm_memorytype_vec_new_empty.restype = None
    _wasm_memorytype_vec_new_empty.argtypes = [POINTER(wasm_memorytype_vec_t)]
    return _wasm_memorytype_vec_new_empty(arg0)

def wasm_memorytype_vec_new_uninitialized(arg0,arg1):
    _wasm_memorytype_vec_new_uninitialized = libiwasm.wasm_memorytype_vec_new_uninitialized
    _wasm_memorytype_vec_new_uninitialized.restype = None
    _wasm_memorytype_vec_new_uninitialized.argtypes = [POINTER(wasm_memorytype_vec_t),c_size_t]
    return _wasm_memorytype_vec_new_uninitialized(arg0,arg1)

def wasm_memorytype_vec_new(arg0,arg1,arg2):
    _wasm_memorytype_vec_new = libiwasm.wasm_memorytype_vec_new
    _wasm_memorytype_vec_new.restype = None
    _wasm_memorytype_vec_new.argtypes = [POINTER(wasm_memorytype_vec_t),c_size_t,POINTER(POINTER(wasm_memorytype_t))]
    return _wasm_memorytype_vec_new(arg0,arg1,arg2)

def wasm_memorytype_vec_copy(arg0,arg1):
    _wasm_memorytype_vec_copy = libiwasm.wasm_memorytype_vec_copy
    _wasm_memorytype_vec_copy.restype = None
    _wasm_memorytype_vec_copy.argtypes = [POINTER(wasm_memorytype_vec_t),POINTER(wasm_memorytype_vec_t)]
    return _wasm_memorytype_vec_copy(arg0,arg1)

def wasm_memorytype_vec_delete(arg0):
    _wasm_memorytype_vec_delete = libiwasm.wasm_memorytype_vec_delete
    _wasm_memorytype_vec_delete.restype = None
    _wasm_memorytype_vec_delete.argtypes = [POINTER(wasm_memorytype_vec_t)]
    return _wasm_memorytype_vec_delete(arg0)

def wasm_memorytype_copy(arg0):
    _wasm_memorytype_copy = libiwasm.wasm_memorytype_copy
    _wasm_memorytype_copy.restype = POINTER(wasm_memorytype_t)
    _wasm_memorytype_copy.argtypes = [POINTER(wasm_memorytype_t)]
    return _wasm_memorytype_copy(arg0)

def wasm_memorytype_new(arg0):
    _wasm_memorytype_new = libiwasm.wasm_memorytype_new
    _wasm_memorytype_new.restype = POINTER(wasm_memorytype_t)
    _wasm_memorytype_new.argtypes = [POINTER(wasm_limits_t)]
    return _wasm_memorytype_new(arg0)

def wasm_memorytype_limits(arg0):
    _wasm_memorytype_limits = libiwasm.wasm_memorytype_limits
    _wasm_memorytype_limits.restype = POINTER(wasm_limits_t)
    _wasm_memorytype_limits.argtypes = [POINTER(wasm_memorytype_t)]
    return _wasm_memorytype_limits(arg0)

class wasm_externtype_t(Structure):
    pass

def wasm_externtype_delete(arg0):
    _wasm_externtype_delete = libiwasm.wasm_externtype_delete
    _wasm_externtype_delete.restype = None
    _wasm_externtype_delete.argtypes = [POINTER(wasm_externtype_t)]
    return _wasm_externtype_delete(arg0)

class wasm_externtype_vec_t(Structure):
    _fields_ = [
        ("size", c_size_t),
        ("data", POINTER(POINTER(wasm_externtype_t))),
        ("num_elems", c_size_t),
        ("size_of_elem", c_size_t),
        ("lock", c_void_p),
    ]

    def __eq__(self, other):
        if not isinstance(other, wasm_externtype_vec_t):
            return False
        return self.size == other.size and self.num_elems == other.num_elems and self.size_of_elem == other.size_of_elem

    def __repr__(self):
        ret = ""
        for i in range(self.num_elems):
                ret += str(dereference(self.data[i]))
                ret += " "
        return ret



def wasm_externtype_vec_new_empty(arg0):
    _wasm_externtype_vec_new_empty = libiwasm.wasm_externtype_vec_new_empty
    _wasm_externtype_vec_new_empty.restype = None
    _wasm_externtype_vec_new_empty.argtypes = [POINTER(wasm_externtype_vec_t)]
    return _wasm_externtype_vec_new_empty(arg0)

def wasm_externtype_vec_new_uninitialized(arg0,arg1):
    _wasm_externtype_vec_new_uninitialized = libiwasm.wasm_externtype_vec_new_uninitialized
    _wasm_externtype_vec_new_uninitialized.restype = None
    _wasm_externtype_vec_new_uninitialized.argtypes = [POINTER(wasm_externtype_vec_t),c_size_t]
    return _wasm_externtype_vec_new_uninitialized(arg0,arg1)

def wasm_externtype_vec_new(arg0,arg1,arg2):
    _wasm_externtype_vec_new = libiwasm.wasm_externtype_vec_new
    _wasm_externtype_vec_new.restype = None
    _wasm_externtype_vec_new.argtypes = [POINTER(wasm_externtype_vec_t),c_size_t,POINTER(POINTER(wasm_externtype_t))]
    return _wasm_externtype_vec_new(arg0,arg1,arg2)

def wasm_externtype_vec_copy(arg0,arg1):
    _wasm_externtype_vec_copy = libiwasm.wasm_externtype_vec_copy
    _wasm_externtype_vec_copy.restype = None
    _wasm_externtype_vec_copy.argtypes = [POINTER(wasm_externtype_vec_t),POINTER(wasm_externtype_vec_t)]
    return _wasm_externtype_vec_copy(arg0,arg1)

def wasm_externtype_vec_delete(arg0):
    _wasm_externtype_vec_delete = libiwasm.wasm_externtype_vec_delete
    _wasm_externtype_vec_delete.restype = None
    _wasm_externtype_vec_delete.argtypes = [POINTER(wasm_externtype_vec_t)]
    return _wasm_externtype_vec_delete(arg0)

def wasm_externtype_copy(arg0):
    _wasm_externtype_copy = libiwasm.wasm_externtype_copy
    _wasm_externtype_copy.restype = POINTER(wasm_externtype_t)
    _wasm_externtype_copy.argtypes = [POINTER(wasm_externtype_t)]
    return _wasm_externtype_copy(arg0)

wasm_externkind_t = c_uint8

WASM_EXTERN_FUNC = 0
WASM_EXTERN_GLOBAL = 1
WASM_EXTERN_TABLE = 2
WASM_EXTERN_MEMORY = 3

def wasm_externtype_kind(arg0):
    _wasm_externtype_kind = libiwasm.wasm_externtype_kind
    _wasm_externtype_kind.restype = wasm_externkind_t
    _wasm_externtype_kind.argtypes = [POINTER(wasm_externtype_t)]
    return _wasm_externtype_kind(arg0)

def wasm_functype_as_externtype(arg0):
    _wasm_functype_as_externtype = libiwasm.wasm_functype_as_externtype
    _wasm_functype_as_externtype.restype = POINTER(wasm_externtype_t)
    _wasm_functype_as_externtype.argtypes = [POINTER(wasm_functype_t)]
    return _wasm_functype_as_externtype(arg0)

def wasm_globaltype_as_externtype(arg0):
    _wasm_globaltype_as_externtype = libiwasm.wasm_globaltype_as_externtype
    _wasm_globaltype_as_externtype.restype = POINTER(wasm_externtype_t)
    _wasm_globaltype_as_externtype.argtypes = [POINTER(wasm_globaltype_t)]
    return _wasm_globaltype_as_externtype(arg0)

def wasm_tabletype_as_externtype(arg0):
    _wasm_tabletype_as_externtype = libiwasm.wasm_tabletype_as_externtype
    _wasm_tabletype_as_externtype.restype = POINTER(wasm_externtype_t)
    _wasm_tabletype_as_externtype.argtypes = [POINTER(wasm_tabletype_t)]
    return _wasm_tabletype_as_externtype(arg0)

def wasm_memorytype_as_externtype(arg0):
    _wasm_memorytype_as_externtype = libiwasm.wasm_memorytype_as_externtype
    _wasm_memorytype_as_externtype.restype = POINTER(wasm_externtype_t)
    _wasm_memorytype_as_externtype.argtypes = [POINTER(wasm_memorytype_t)]
    return _wasm_memorytype_as_externtype(arg0)

def wasm_externtype_as_functype(arg0):
    _wasm_externtype_as_functype = libiwasm.wasm_externtype_as_functype
    _wasm_externtype_as_functype.restype = POINTER(wasm_functype_t)
    _wasm_externtype_as_functype.argtypes = [POINTER(wasm_externtype_t)]
    return _wasm_externtype_as_functype(arg0)

def wasm_externtype_as_globaltype(arg0):
    _wasm_externtype_as_globaltype = libiwasm.wasm_externtype_as_globaltype
    _wasm_externtype_as_globaltype.restype = POINTER(wasm_globaltype_t)
    _wasm_externtype_as_globaltype.argtypes = [POINTER(wasm_externtype_t)]
    return _wasm_externtype_as_globaltype(arg0)

def wasm_externtype_as_tabletype(arg0):
    _wasm_externtype_as_tabletype = libiwasm.wasm_externtype_as_tabletype
    _wasm_externtype_as_tabletype.restype = POINTER(wasm_tabletype_t)
    _wasm_externtype_as_tabletype.argtypes = [POINTER(wasm_externtype_t)]
    return _wasm_externtype_as_tabletype(arg0)

def wasm_externtype_as_memorytype(arg0):
    _wasm_externtype_as_memorytype = libiwasm.wasm_externtype_as_memorytype
    _wasm_externtype_as_memorytype.restype = POINTER(wasm_memorytype_t)
    _wasm_externtype_as_memorytype.argtypes = [POINTER(wasm_externtype_t)]
    return _wasm_externtype_as_memorytype(arg0)

def wasm_functype_as_externtype_const(arg0):
    _wasm_functype_as_externtype_const = libiwasm.wasm_functype_as_externtype_const
    _wasm_functype_as_externtype_const.restype = POINTER(wasm_externtype_t)
    _wasm_functype_as_externtype_const.argtypes = [POINTER(wasm_functype_t)]
    return _wasm_functype_as_externtype_const(arg0)

def wasm_globaltype_as_externtype_const(arg0):
    _wasm_globaltype_as_externtype_const = libiwasm.wasm_globaltype_as_externtype_const
    _wasm_globaltype_as_externtype_const.restype = POINTER(wasm_externtype_t)
    _wasm_globaltype_as_externtype_const.argtypes = [POINTER(wasm_globaltype_t)]
    return _wasm_globaltype_as_externtype_const(arg0)

def wasm_tabletype_as_externtype_const(arg0):
    _wasm_tabletype_as_externtype_const = libiwasm.wasm_tabletype_as_externtype_const
    _wasm_tabletype_as_externtype_const.restype = POINTER(wasm_externtype_t)
    _wasm_tabletype_as_externtype_const.argtypes = [POINTER(wasm_tabletype_t)]
    return _wasm_tabletype_as_externtype_const(arg0)

def wasm_memorytype_as_externtype_const(arg0):
    _wasm_memorytype_as_externtype_const = libiwasm.wasm_memorytype_as_externtype_const
    _wasm_memorytype_as_externtype_const.restype = POINTER(wasm_externtype_t)
    _wasm_memorytype_as_externtype_const.argtypes = [POINTER(wasm_memorytype_t)]
    return _wasm_memorytype_as_externtype_const(arg0)

def wasm_externtype_as_functype_const(arg0):
    _wasm_externtype_as_functype_const = libiwasm.wasm_externtype_as_functype_const
    _wasm_externtype_as_functype_const.restype = POINTER(wasm_functype_t)
    _wasm_externtype_as_functype_const.argtypes = [POINTER(wasm_externtype_t)]
    return _wasm_externtype_as_functype_const(arg0)

def wasm_externtype_as_globaltype_const(arg0):
    _wasm_externtype_as_globaltype_const = libiwasm.wasm_externtype_as_globaltype_const
    _wasm_externtype_as_globaltype_const.restype = POINTER(wasm_globaltype_t)
    _wasm_externtype_as_globaltype_const.argtypes = [POINTER(wasm_externtype_t)]
    return _wasm_externtype_as_globaltype_const(arg0)

def wasm_externtype_as_tabletype_const(arg0):
    _wasm_externtype_as_tabletype_const = libiwasm.wasm_externtype_as_tabletype_const
    _wasm_externtype_as_tabletype_const.restype = POINTER(wasm_tabletype_t)
    _wasm_externtype_as_tabletype_const.argtypes = [POINTER(wasm_externtype_t)]
    return _wasm_externtype_as_tabletype_const(arg0)

def wasm_externtype_as_memorytype_const(arg0):
    _wasm_externtype_as_memorytype_const = libiwasm.wasm_externtype_as_memorytype_const
    _wasm_externtype_as_memorytype_const.restype = POINTER(wasm_memorytype_t)
    _wasm_externtype_as_memorytype_const.argtypes = [POINTER(wasm_externtype_t)]
    return _wasm_externtype_as_memorytype_const(arg0)

class wasm_importtype_t(Structure):
    pass

def wasm_importtype_delete(arg0):
    _wasm_importtype_delete = libiwasm.wasm_importtype_delete
    _wasm_importtype_delete.restype = None
    _wasm_importtype_delete.argtypes = [POINTER(wasm_importtype_t)]
    return _wasm_importtype_delete(arg0)

class wasm_importtype_vec_t(Structure):
    _fields_ = [
        ("size", c_size_t),
        ("data", POINTER(POINTER(wasm_importtype_t))),
        ("num_elems", c_size_t),
        ("size_of_elem", c_size_t),
        ("lock", c_void_p),
    ]

    def __eq__(self, other):
        if not isinstance(other, wasm_importtype_vec_t):
            return False
        return self.size == other.size and self.num_elems == other.num_elems and self.size_of_elem == other.size_of_elem

    def __repr__(self):
        ret = ""
        for i in range(self.num_elems):
                ret += str(dereference(self.data[i]))
                ret += " "
        return ret



def wasm_importtype_vec_new_empty(arg0):
    _wasm_importtype_vec_new_empty = libiwasm.wasm_importtype_vec_new_empty
    _wasm_importtype_vec_new_empty.restype = None
    _wasm_importtype_vec_new_empty.argtypes = [POINTER(wasm_importtype_vec_t)]
    return _wasm_importtype_vec_new_empty(arg0)

def wasm_importtype_vec_new_uninitialized(arg0,arg1):
    _wasm_importtype_vec_new_uninitialized = libiwasm.wasm_importtype_vec_new_uninitialized
    _wasm_importtype_vec_new_uninitialized.restype = None
    _wasm_importtype_vec_new_uninitialized.argtypes = [POINTER(wasm_importtype_vec_t),c_size_t]
    return _wasm_importtype_vec_new_uninitialized(arg0,arg1)

def wasm_importtype_vec_new(arg0,arg1,arg2):
    _wasm_importtype_vec_new = libiwasm.wasm_importtype_vec_new
    _wasm_importtype_vec_new.restype = None
    _wasm_importtype_vec_new.argtypes = [POINTER(wasm_importtype_vec_t),c_size_t,POINTER(POINTER(wasm_importtype_t))]
    return _wasm_importtype_vec_new(arg0,arg1,arg2)

def wasm_importtype_vec_copy(arg0,arg1):
    _wasm_importtype_vec_copy = libiwasm.wasm_importtype_vec_copy
    _wasm_importtype_vec_copy.restype = None
    _wasm_importtype_vec_copy.argtypes = [POINTER(wasm_importtype_vec_t),POINTER(wasm_importtype_vec_t)]
    return _wasm_importtype_vec_copy(arg0,arg1)

def wasm_importtype_vec_delete(arg0):
    _wasm_importtype_vec_delete = libiwasm.wasm_importtype_vec_delete
    _wasm_importtype_vec_delete.restype = None
    _wasm_importtype_vec_delete.argtypes = [POINTER(wasm_importtype_vec_t)]
    return _wasm_importtype_vec_delete(arg0)

def wasm_importtype_copy(arg0):
    _wasm_importtype_copy = libiwasm.wasm_importtype_copy
    _wasm_importtype_copy.restype = POINTER(wasm_importtype_t)
    _wasm_importtype_copy.argtypes = [POINTER(wasm_importtype_t)]
    return _wasm_importtype_copy(arg0)

def wasm_importtype_new(arg0,arg1,arg2):
    _wasm_importtype_new = libiwasm.wasm_importtype_new
    _wasm_importtype_new.restype = POINTER(wasm_importtype_t)
    _wasm_importtype_new.argtypes = [POINTER(wasm_name_t),POINTER(wasm_name_t),POINTER(wasm_externtype_t)]
    return _wasm_importtype_new(arg0,arg1,arg2)

def wasm_importtype_module(arg0):
    _wasm_importtype_module = libiwasm.wasm_importtype_module
    _wasm_importtype_module.restype = POINTER(wasm_name_t)
    _wasm_importtype_module.argtypes = [POINTER(wasm_importtype_t)]
    return _wasm_importtype_module(arg0)

def wasm_importtype_name(arg0):
    _wasm_importtype_name = libiwasm.wasm_importtype_name
    _wasm_importtype_name.restype = POINTER(wasm_name_t)
    _wasm_importtype_name.argtypes = [POINTER(wasm_importtype_t)]
    return _wasm_importtype_name(arg0)

def wasm_importtype_type(arg0):
    _wasm_importtype_type = libiwasm.wasm_importtype_type
    _wasm_importtype_type.restype = POINTER(wasm_externtype_t)
    _wasm_importtype_type.argtypes = [POINTER(wasm_importtype_t)]
    return _wasm_importtype_type(arg0)

class wasm_exporttype_t(Structure):
    pass

def wasm_exporttype_delete(arg0):
    _wasm_exporttype_delete = libiwasm.wasm_exporttype_delete
    _wasm_exporttype_delete.restype = None
    _wasm_exporttype_delete.argtypes = [POINTER(wasm_exporttype_t)]
    return _wasm_exporttype_delete(arg0)

class wasm_exporttype_vec_t(Structure):
    _fields_ = [
        ("size", c_size_t),
        ("data", POINTER(POINTER(wasm_exporttype_t))),
        ("num_elems", c_size_t),
        ("size_of_elem", c_size_t),
        ("lock", c_void_p),
    ]

    def __eq__(self, other):
        if not isinstance(other, wasm_exporttype_vec_t):
            return False
        return self.size == other.size and self.num_elems == other.num_elems and self.size_of_elem == other.size_of_elem

    def __repr__(self):
        ret = ""
        for i in range(self.num_elems):
                ret += str(dereference(self.data[i]))
                ret += " "
        return ret



def wasm_exporttype_vec_new_empty(arg0):
    _wasm_exporttype_vec_new_empty = libiwasm.wasm_exporttype_vec_new_empty
    _wasm_exporttype_vec_new_empty.restype = None
    _wasm_exporttype_vec_new_empty.argtypes = [POINTER(wasm_exporttype_vec_t)]
    return _wasm_exporttype_vec_new_empty(arg0)

def wasm_exporttype_vec_new_uninitialized(arg0,arg1):
    _wasm_exporttype_vec_new_uninitialized = libiwasm.wasm_exporttype_vec_new_uninitialized
    _wasm_exporttype_vec_new_uninitialized.restype = None
    _wasm_exporttype_vec_new_uninitialized.argtypes = [POINTER(wasm_exporttype_vec_t),c_size_t]
    return _wasm_exporttype_vec_new_uninitialized(arg0,arg1)

def wasm_exporttype_vec_new(arg0,arg1,arg2):
    _wasm_exporttype_vec_new = libiwasm.wasm_exporttype_vec_new
    _wasm_exporttype_vec_new.restype = None
    _wasm_exporttype_vec_new.argtypes = [POINTER(wasm_exporttype_vec_t),c_size_t,POINTER(POINTER(wasm_exporttype_t))]
    return _wasm_exporttype_vec_new(arg0,arg1,arg2)

def wasm_exporttype_vec_copy(arg0,arg1):
    _wasm_exporttype_vec_copy = libiwasm.wasm_exporttype_vec_copy
    _wasm_exporttype_vec_copy.restype = None
    _wasm_exporttype_vec_copy.argtypes = [POINTER(wasm_exporttype_vec_t),POINTER(wasm_exporttype_vec_t)]
    return _wasm_exporttype_vec_copy(arg0,arg1)

def wasm_exporttype_vec_delete(arg0):
    _wasm_exporttype_vec_delete = libiwasm.wasm_exporttype_vec_delete
    _wasm_exporttype_vec_delete.restype = None
    _wasm_exporttype_vec_delete.argtypes = [POINTER(wasm_exporttype_vec_t)]
    return _wasm_exporttype_vec_delete(arg0)

def wasm_exporttype_copy(arg0):
    _wasm_exporttype_copy = libiwasm.wasm_exporttype_copy
    _wasm_exporttype_copy.restype = POINTER(wasm_exporttype_t)
    _wasm_exporttype_copy.argtypes = [POINTER(wasm_exporttype_t)]
    return _wasm_exporttype_copy(arg0)

def wasm_exporttype_new(arg0,arg1):
    _wasm_exporttype_new = libiwasm.wasm_exporttype_new
    _wasm_exporttype_new.restype = POINTER(wasm_exporttype_t)
    _wasm_exporttype_new.argtypes = [POINTER(wasm_name_t),POINTER(wasm_externtype_t)]
    return _wasm_exporttype_new(arg0,arg1)

def wasm_exporttype_name(arg0):
    _wasm_exporttype_name = libiwasm.wasm_exporttype_name
    _wasm_exporttype_name.restype = POINTER(wasm_name_t)
    _wasm_exporttype_name.argtypes = [POINTER(wasm_exporttype_t)]
    return _wasm_exporttype_name(arg0)

def wasm_exporttype_type(arg0):
    _wasm_exporttype_type = libiwasm.wasm_exporttype_type
    _wasm_exporttype_type.restype = POINTER(wasm_externtype_t)
    _wasm_exporttype_type.argtypes = [POINTER(wasm_exporttype_t)]
    return _wasm_exporttype_type(arg0)

def wasm_val_delete(arg0):
    _wasm_val_delete = libiwasm.wasm_val_delete
    _wasm_val_delete.restype = None
    _wasm_val_delete.argtypes = [POINTER(wasm_val_t)]
    return _wasm_val_delete(arg0)

def wasm_val_copy(arg0,arg1):
    _wasm_val_copy = libiwasm.wasm_val_copy
    _wasm_val_copy.restype = None
    _wasm_val_copy.argtypes = [POINTER(wasm_val_t),POINTER(wasm_val_t)]
    return _wasm_val_copy(arg0,arg1)

class wasm_val_vec_t(Structure):
    _fields_ = [
        ("size", c_size_t),
        ("data", POINTER(wasm_val_t)),
        ("num_elems", c_size_t),
        ("size_of_elem", c_size_t),
        ("lock", c_void_p),
    ]

    def __eq__(self, other):
        if not isinstance(other, wasm_val_vec_t):
            return False
        return self.size == other.size and self.num_elems == other.num_elems and self.size_of_elem == other.size_of_elem

    def __repr__(self):
        ret = ""
        for i in range(self.num_elems):
                ret += str(self.data[i])
                ret += " "
        return ret



def wasm_val_vec_new_empty(arg0):
    _wasm_val_vec_new_empty = libiwasm.wasm_val_vec_new_empty
    _wasm_val_vec_new_empty.restype = None
    _wasm_val_vec_new_empty.argtypes = [POINTER(wasm_val_vec_t)]
    return _wasm_val_vec_new_empty(arg0)

def wasm_val_vec_new_uninitialized(arg0,arg1):
    _wasm_val_vec_new_uninitialized = libiwasm.wasm_val_vec_new_uninitialized
    _wasm_val_vec_new_uninitialized.restype = None
    _wasm_val_vec_new_uninitialized.argtypes = [POINTER(wasm_val_vec_t),c_size_t]
    return _wasm_val_vec_new_uninitialized(arg0,arg1)

def wasm_val_vec_new(arg0,arg1,arg2):
    _wasm_val_vec_new = libiwasm.wasm_val_vec_new
    _wasm_val_vec_new.restype = None
    _wasm_val_vec_new.argtypes = [POINTER(wasm_val_vec_t),c_size_t,POINTER(wasm_val_t)]
    return _wasm_val_vec_new(arg0,arg1,arg2)

def wasm_val_vec_copy(arg0,arg1):
    _wasm_val_vec_copy = libiwasm.wasm_val_vec_copy
    _wasm_val_vec_copy.restype = None
    _wasm_val_vec_copy.argtypes = [POINTER(wasm_val_vec_t),POINTER(wasm_val_vec_t)]
    return _wasm_val_vec_copy(arg0,arg1)

def wasm_val_vec_delete(arg0):
    _wasm_val_vec_delete = libiwasm.wasm_val_vec_delete
    _wasm_val_vec_delete.restype = None
    _wasm_val_vec_delete.argtypes = [POINTER(wasm_val_vec_t)]
    return _wasm_val_vec_delete(arg0)

def wasm_ref_delete(arg0):
    _wasm_ref_delete = libiwasm.wasm_ref_delete
    _wasm_ref_delete.restype = None
    _wasm_ref_delete.argtypes = [POINTER(wasm_ref_t)]
    return _wasm_ref_delete(arg0)

def wasm_ref_copy(arg0):
    _wasm_ref_copy = libiwasm.wasm_ref_copy
    _wasm_ref_copy.restype = POINTER(wasm_ref_t)
    _wasm_ref_copy.argtypes = [POINTER(wasm_ref_t)]
    return _wasm_ref_copy(arg0)

def wasm_ref_same(arg0,arg1):
    _wasm_ref_same = libiwasm.wasm_ref_same
    _wasm_ref_same.restype = c_bool
    _wasm_ref_same.argtypes = [POINTER(wasm_ref_t),POINTER(wasm_ref_t)]
    return _wasm_ref_same(arg0,arg1)

def wasm_ref_get_host_info(arg0):
    _wasm_ref_get_host_info = libiwasm.wasm_ref_get_host_info
    _wasm_ref_get_host_info.restype = c_void_p
    _wasm_ref_get_host_info.argtypes = [POINTER(wasm_ref_t)]
    return _wasm_ref_get_host_info(arg0)

def wasm_ref_set_host_info(arg0,arg1):
    _wasm_ref_set_host_info = libiwasm.wasm_ref_set_host_info
    _wasm_ref_set_host_info.restype = None
    _wasm_ref_set_host_info.argtypes = [POINTER(wasm_ref_t),c_void_p]
    return _wasm_ref_set_host_info(arg0,arg1)

def wasm_ref_set_host_info_with_finalizer(arg0,arg1,arg2):
    _wasm_ref_set_host_info_with_finalizer = libiwasm.wasm_ref_set_host_info_with_finalizer
    _wasm_ref_set_host_info_with_finalizer.restype = None
    _wasm_ref_set_host_info_with_finalizer.argtypes = [POINTER(wasm_ref_t),c_void_p,CFUNCTYPE(None,c_void_p)]
    return _wasm_ref_set_host_info_with_finalizer(arg0,arg1,arg2)

class wasm_frame_t(Structure):
    pass

def wasm_frame_delete(arg0):
    _wasm_frame_delete = libiwasm.wasm_frame_delete
    _wasm_frame_delete.restype = None
    _wasm_frame_delete.argtypes = [POINTER(wasm_frame_t)]
    return _wasm_frame_delete(arg0)

class wasm_frame_vec_t(Structure):
    _fields_ = [
        ("size", c_size_t),
        ("data", POINTER(POINTER(wasm_frame_t))),
        ("num_elems", c_size_t),
        ("size_of_elem", c_size_t),
        ("lock", c_void_p),
    ]

    def __eq__(self, other):
        if not isinstance(other, wasm_frame_vec_t):
            return False
        return self.size == other.size and self.num_elems == other.num_elems and self.size_of_elem == other.size_of_elem

    def __repr__(self):
        ret = ""
        for i in range(self.num_elems):
                ret += str(dereference(self.data[i]))
                ret += " "
        return ret



def wasm_frame_vec_new_empty(arg0):
    _wasm_frame_vec_new_empty = libiwasm.wasm_frame_vec_new_empty
    _wasm_frame_vec_new_empty.restype = None
    _wasm_frame_vec_new_empty.argtypes = [POINTER(wasm_frame_vec_t)]
    return _wasm_frame_vec_new_empty(arg0)

def wasm_frame_vec_new_uninitialized(arg0,arg1):
    _wasm_frame_vec_new_uninitialized = libiwasm.wasm_frame_vec_new_uninitialized
    _wasm_frame_vec_new_uninitialized.restype = None
    _wasm_frame_vec_new_uninitialized.argtypes = [POINTER(wasm_frame_vec_t),c_size_t]
    return _wasm_frame_vec_new_uninitialized(arg0,arg1)

def wasm_frame_vec_new(arg0,arg1,arg2):
    _wasm_frame_vec_new = libiwasm.wasm_frame_vec_new
    _wasm_frame_vec_new.restype = None
    _wasm_frame_vec_new.argtypes = [POINTER(wasm_frame_vec_t),c_size_t,POINTER(POINTER(wasm_frame_t))]
    return _wasm_frame_vec_new(arg0,arg1,arg2)

def wasm_frame_vec_copy(arg0,arg1):
    _wasm_frame_vec_copy = libiwasm.wasm_frame_vec_copy
    _wasm_frame_vec_copy.restype = None
    _wasm_frame_vec_copy.argtypes = [POINTER(wasm_frame_vec_t),POINTER(wasm_frame_vec_t)]
    return _wasm_frame_vec_copy(arg0,arg1)

def wasm_frame_vec_delete(arg0):
    _wasm_frame_vec_delete = libiwasm.wasm_frame_vec_delete
    _wasm_frame_vec_delete.restype = None
    _wasm_frame_vec_delete.argtypes = [POINTER(wasm_frame_vec_t)]
    return _wasm_frame_vec_delete(arg0)

def wasm_frame_copy(arg0):
    _wasm_frame_copy = libiwasm.wasm_frame_copy
    _wasm_frame_copy.restype = POINTER(wasm_frame_t)
    _wasm_frame_copy.argtypes = [POINTER(wasm_frame_t)]
    return _wasm_frame_copy(arg0)

def wasm_frame_instance(arg0):
    _wasm_frame_instance = libiwasm.wasm_frame_instance
    _wasm_frame_instance.restype = POINTER(wasm_instance_t)
    _wasm_frame_instance.argtypes = [POINTER(wasm_frame_t)]
    return _wasm_frame_instance(arg0)

def wasm_frame_func_index(arg0):
    _wasm_frame_func_index = libiwasm.wasm_frame_func_index
    _wasm_frame_func_index.restype = c_uint32
    _wasm_frame_func_index.argtypes = [POINTER(wasm_frame_t)]
    return _wasm_frame_func_index(arg0)

def wasm_frame_func_offset(arg0):
    _wasm_frame_func_offset = libiwasm.wasm_frame_func_offset
    _wasm_frame_func_offset.restype = c_size_t
    _wasm_frame_func_offset.argtypes = [POINTER(wasm_frame_t)]
    return _wasm_frame_func_offset(arg0)

def wasm_frame_module_offset(arg0):
    _wasm_frame_module_offset = libiwasm.wasm_frame_module_offset
    _wasm_frame_module_offset.restype = c_size_t
    _wasm_frame_module_offset.argtypes = [POINTER(wasm_frame_t)]
    return _wasm_frame_module_offset(arg0)

wasm_message_t = wasm_name_t

class wasm_trap_t(Structure):
    pass

def wasm_trap_delete(arg0):
    _wasm_trap_delete = libiwasm.wasm_trap_delete
    _wasm_trap_delete.restype = None
    _wasm_trap_delete.argtypes = [POINTER(wasm_trap_t)]
    return _wasm_trap_delete(arg0)

def wasm_trap_copy(arg0):
    _wasm_trap_copy = libiwasm.wasm_trap_copy
    _wasm_trap_copy.restype = POINTER(wasm_trap_t)
    _wasm_trap_copy.argtypes = [POINTER(wasm_trap_t)]
    return _wasm_trap_copy(arg0)

def wasm_trap_same(arg0,arg1):
    _wasm_trap_same = libiwasm.wasm_trap_same
    _wasm_trap_same.restype = c_bool
    _wasm_trap_same.argtypes = [POINTER(wasm_trap_t),POINTER(wasm_trap_t)]
    return _wasm_trap_same(arg0,arg1)

def wasm_trap_get_host_info(arg0):
    _wasm_trap_get_host_info = libiwasm.wasm_trap_get_host_info
    _wasm_trap_get_host_info.restype = c_void_p
    _wasm_trap_get_host_info.argtypes = [POINTER(wasm_trap_t)]
    return _wasm_trap_get_host_info(arg0)

def wasm_trap_set_host_info(arg0,arg1):
    _wasm_trap_set_host_info = libiwasm.wasm_trap_set_host_info
    _wasm_trap_set_host_info.restype = None
    _wasm_trap_set_host_info.argtypes = [POINTER(wasm_trap_t),c_void_p]
    return _wasm_trap_set_host_info(arg0,arg1)

def wasm_trap_set_host_info_with_finalizer(arg0,arg1,arg2):
    _wasm_trap_set_host_info_with_finalizer = libiwasm.wasm_trap_set_host_info_with_finalizer
    _wasm_trap_set_host_info_with_finalizer.restype = None
    _wasm_trap_set_host_info_with_finalizer.argtypes = [POINTER(wasm_trap_t),c_void_p,CFUNCTYPE(None,c_void_p)]
    return _wasm_trap_set_host_info_with_finalizer(arg0,arg1,arg2)

def wasm_trap_as_ref(arg0):
    _wasm_trap_as_ref = libiwasm.wasm_trap_as_ref
    _wasm_trap_as_ref.restype = POINTER(wasm_ref_t)
    _wasm_trap_as_ref.argtypes = [POINTER(wasm_trap_t)]
    return _wasm_trap_as_ref(arg0)

def wasm_ref_as_trap(arg0):
    _wasm_ref_as_trap = libiwasm.wasm_ref_as_trap
    _wasm_ref_as_trap.restype = POINTER(wasm_trap_t)
    _wasm_ref_as_trap.argtypes = [POINTER(wasm_ref_t)]
    return _wasm_ref_as_trap(arg0)

def wasm_trap_as_ref_const(arg0):
    _wasm_trap_as_ref_const = libiwasm.wasm_trap_as_ref_const
    _wasm_trap_as_ref_const.restype = POINTER(wasm_ref_t)
    _wasm_trap_as_ref_const.argtypes = [POINTER(wasm_trap_t)]
    return _wasm_trap_as_ref_const(arg0)

def wasm_ref_as_trap_const(arg0):
    _wasm_ref_as_trap_const = libiwasm.wasm_ref_as_trap_const
    _wasm_ref_as_trap_const.restype = POINTER(wasm_trap_t)
    _wasm_ref_as_trap_const.argtypes = [POINTER(wasm_ref_t)]
    return _wasm_ref_as_trap_const(arg0)

def wasm_trap_new(arg0,arg1):
    _wasm_trap_new = libiwasm.wasm_trap_new
    _wasm_trap_new.restype = POINTER(wasm_trap_t)
    _wasm_trap_new.argtypes = [POINTER(wasm_store_t),POINTER(wasm_message_t)]
    return _wasm_trap_new(arg0,arg1)

def wasm_trap_message(arg0,arg1):
    _wasm_trap_message = libiwasm.wasm_trap_message
    _wasm_trap_message.restype = None
    _wasm_trap_message.argtypes = [POINTER(wasm_trap_t),POINTER(wasm_message_t)]
    return _wasm_trap_message(arg0,arg1)

def wasm_trap_origin(arg0):
    _wasm_trap_origin = libiwasm.wasm_trap_origin
    _wasm_trap_origin.restype = POINTER(wasm_frame_t)
    _wasm_trap_origin.argtypes = [POINTER(wasm_trap_t)]
    return _wasm_trap_origin(arg0)

def wasm_trap_trace(arg0,arg1):
    _wasm_trap_trace = libiwasm.wasm_trap_trace
    _wasm_trap_trace.restype = None
    _wasm_trap_trace.argtypes = [POINTER(wasm_trap_t),POINTER(wasm_frame_vec_t)]
    return _wasm_trap_trace(arg0,arg1)

class wasm_foreign_t(Structure):
    pass

def wasm_foreign_delete(arg0):
    _wasm_foreign_delete = libiwasm.wasm_foreign_delete
    _wasm_foreign_delete.restype = None
    _wasm_foreign_delete.argtypes = [POINTER(wasm_foreign_t)]
    return _wasm_foreign_delete(arg0)

def wasm_foreign_copy(arg0):
    _wasm_foreign_copy = libiwasm.wasm_foreign_copy
    _wasm_foreign_copy.restype = POINTER(wasm_foreign_t)
    _wasm_foreign_copy.argtypes = [POINTER(wasm_foreign_t)]
    return _wasm_foreign_copy(arg0)

def wasm_foreign_same(arg0,arg1):
    _wasm_foreign_same = libiwasm.wasm_foreign_same
    _wasm_foreign_same.restype = c_bool
    _wasm_foreign_same.argtypes = [POINTER(wasm_foreign_t),POINTER(wasm_foreign_t)]
    return _wasm_foreign_same(arg0,arg1)

def wasm_foreign_get_host_info(arg0):
    _wasm_foreign_get_host_info = libiwasm.wasm_foreign_get_host_info
    _wasm_foreign_get_host_info.restype = c_void_p
    _wasm_foreign_get_host_info.argtypes = [POINTER(wasm_foreign_t)]
    return _wasm_foreign_get_host_info(arg0)

def wasm_foreign_set_host_info(arg0,arg1):
    _wasm_foreign_set_host_info = libiwasm.wasm_foreign_set_host_info
    _wasm_foreign_set_host_info.restype = None
    _wasm_foreign_set_host_info.argtypes = [POINTER(wasm_foreign_t),c_void_p]
    return _wasm_foreign_set_host_info(arg0,arg1)

def wasm_foreign_set_host_info_with_finalizer(arg0,arg1,arg2):
    _wasm_foreign_set_host_info_with_finalizer = libiwasm.wasm_foreign_set_host_info_with_finalizer
    _wasm_foreign_set_host_info_with_finalizer.restype = None
    _wasm_foreign_set_host_info_with_finalizer.argtypes = [POINTER(wasm_foreign_t),c_void_p,CFUNCTYPE(None,c_void_p)]
    return _wasm_foreign_set_host_info_with_finalizer(arg0,arg1,arg2)

def wasm_foreign_as_ref(arg0):
    _wasm_foreign_as_ref = libiwasm.wasm_foreign_as_ref
    _wasm_foreign_as_ref.restype = POINTER(wasm_ref_t)
    _wasm_foreign_as_ref.argtypes = [POINTER(wasm_foreign_t)]
    return _wasm_foreign_as_ref(arg0)

def wasm_ref_as_foreign(arg0):
    _wasm_ref_as_foreign = libiwasm.wasm_ref_as_foreign
    _wasm_ref_as_foreign.restype = POINTER(wasm_foreign_t)
    _wasm_ref_as_foreign.argtypes = [POINTER(wasm_ref_t)]
    return _wasm_ref_as_foreign(arg0)

def wasm_foreign_as_ref_const(arg0):
    _wasm_foreign_as_ref_const = libiwasm.wasm_foreign_as_ref_const
    _wasm_foreign_as_ref_const.restype = POINTER(wasm_ref_t)
    _wasm_foreign_as_ref_const.argtypes = [POINTER(wasm_foreign_t)]
    return _wasm_foreign_as_ref_const(arg0)

def wasm_ref_as_foreign_const(arg0):
    _wasm_ref_as_foreign_const = libiwasm.wasm_ref_as_foreign_const
    _wasm_ref_as_foreign_const.restype = POINTER(wasm_foreign_t)
    _wasm_ref_as_foreign_const.argtypes = [POINTER(wasm_ref_t)]
    return _wasm_ref_as_foreign_const(arg0)

def wasm_foreign_new(arg0):
    _wasm_foreign_new = libiwasm.wasm_foreign_new
    _wasm_foreign_new.restype = POINTER(wasm_foreign_t)
    _wasm_foreign_new.argtypes = [POINTER(wasm_store_t)]
    return _wasm_foreign_new(arg0)

class WASMModuleCommon(Structure):
    pass

class WASMModuleCommon(Structure):
    pass

wasm_module_t = POINTER(WASMModuleCommon)

def wasm_module_new(arg0,arg1):
    _wasm_module_new = libiwasm.wasm_module_new
    _wasm_module_new.restype = POINTER(wasm_module_t)
    _wasm_module_new.argtypes = [POINTER(wasm_store_t),POINTER(wasm_byte_vec_t)]
    return _wasm_module_new(arg0,arg1)

def wasm_module_delete(arg0):
    _wasm_module_delete = libiwasm.wasm_module_delete
    _wasm_module_delete.restype = None
    _wasm_module_delete.argtypes = [POINTER(wasm_module_t)]
    return _wasm_module_delete(arg0)

def wasm_module_validate(arg0,arg1):
    _wasm_module_validate = libiwasm.wasm_module_validate
    _wasm_module_validate.restype = c_bool
    _wasm_module_validate.argtypes = [POINTER(wasm_store_t),POINTER(wasm_byte_vec_t)]
    return _wasm_module_validate(arg0,arg1)

def wasm_module_imports(arg0,arg1):
    _wasm_module_imports = libiwasm.wasm_module_imports
    _wasm_module_imports.restype = None
    _wasm_module_imports.argtypes = [POINTER(wasm_module_t),POINTER(wasm_importtype_vec_t)]
    return _wasm_module_imports(arg0,arg1)

def wasm_module_exports(arg0,arg1):
    _wasm_module_exports = libiwasm.wasm_module_exports
    _wasm_module_exports.restype = None
    _wasm_module_exports.argtypes = [POINTER(wasm_module_t),POINTER(wasm_exporttype_vec_t)]
    return _wasm_module_exports(arg0,arg1)

def wasm_module_serialize(arg0,arg1):
    _wasm_module_serialize = libiwasm.wasm_module_serialize
    _wasm_module_serialize.restype = None
    _wasm_module_serialize.argtypes = [POINTER(wasm_module_t),POINTER(wasm_byte_vec_t)]
    return _wasm_module_serialize(arg0,arg1)

def wasm_module_deserialize(arg0,arg1):
    _wasm_module_deserialize = libiwasm.wasm_module_deserialize
    _wasm_module_deserialize.restype = POINTER(wasm_module_t)
    _wasm_module_deserialize.argtypes = [POINTER(wasm_store_t),POINTER(wasm_byte_vec_t)]
    return _wasm_module_deserialize(arg0,arg1)

class wasm_func_t(Structure):
    pass

def wasm_func_delete(arg0):
    _wasm_func_delete = libiwasm.wasm_func_delete
    _wasm_func_delete.restype = None
    _wasm_func_delete.argtypes = [POINTER(wasm_func_t)]
    return _wasm_func_delete(arg0)

def wasm_func_copy(arg0):
    _wasm_func_copy = libiwasm.wasm_func_copy
    _wasm_func_copy.restype = POINTER(wasm_func_t)
    _wasm_func_copy.argtypes = [POINTER(wasm_func_t)]
    return _wasm_func_copy(arg0)

def wasm_func_same(arg0,arg1):
    _wasm_func_same = libiwasm.wasm_func_same
    _wasm_func_same.restype = c_bool
    _wasm_func_same.argtypes = [POINTER(wasm_func_t),POINTER(wasm_func_t)]
    return _wasm_func_same(arg0,arg1)

def wasm_func_get_host_info(arg0):
    _wasm_func_get_host_info = libiwasm.wasm_func_get_host_info
    _wasm_func_get_host_info.restype = c_void_p
    _wasm_func_get_host_info.argtypes = [POINTER(wasm_func_t)]
    return _wasm_func_get_host_info(arg0)

def wasm_func_set_host_info(arg0,arg1):
    _wasm_func_set_host_info = libiwasm.wasm_func_set_host_info
    _wasm_func_set_host_info.restype = None
    _wasm_func_set_host_info.argtypes = [POINTER(wasm_func_t),c_void_p]
    return _wasm_func_set_host_info(arg0,arg1)

def wasm_func_set_host_info_with_finalizer(arg0,arg1,arg2):
    _wasm_func_set_host_info_with_finalizer = libiwasm.wasm_func_set_host_info_with_finalizer
    _wasm_func_set_host_info_with_finalizer.restype = None
    _wasm_func_set_host_info_with_finalizer.argtypes = [POINTER(wasm_func_t),c_void_p,CFUNCTYPE(None,c_void_p)]
    return _wasm_func_set_host_info_with_finalizer(arg0,arg1,arg2)

def wasm_func_as_ref(arg0):
    _wasm_func_as_ref = libiwasm.wasm_func_as_ref
    _wasm_func_as_ref.restype = POINTER(wasm_ref_t)
    _wasm_func_as_ref.argtypes = [POINTER(wasm_func_t)]
    return _wasm_func_as_ref(arg0)

def wasm_ref_as_func(arg0):
    _wasm_ref_as_func = libiwasm.wasm_ref_as_func
    _wasm_ref_as_func.restype = POINTER(wasm_func_t)
    _wasm_ref_as_func.argtypes = [POINTER(wasm_ref_t)]
    return _wasm_ref_as_func(arg0)

def wasm_func_as_ref_const(arg0):
    _wasm_func_as_ref_const = libiwasm.wasm_func_as_ref_const
    _wasm_func_as_ref_const.restype = POINTER(wasm_ref_t)
    _wasm_func_as_ref_const.argtypes = [POINTER(wasm_func_t)]
    return _wasm_func_as_ref_const(arg0)

def wasm_ref_as_func_const(arg0):
    _wasm_ref_as_func_const = libiwasm.wasm_ref_as_func_const
    _wasm_ref_as_func_const.restype = POINTER(wasm_func_t)
    _wasm_ref_as_func_const.argtypes = [POINTER(wasm_ref_t)]
    return _wasm_ref_as_func_const(arg0)

wasm_func_callback_t = CFUNCTYPE(c_void_p,POINTER(wasm_val_vec_t),POINTER(wasm_val_vec_t))

wasm_func_callback_with_env_t = CFUNCTYPE(c_void_p,c_void_p,POINTER(wasm_val_vec_t),POINTER(wasm_val_vec_t))

def wasm_func_new(arg0,arg1,arg2):
    _wasm_func_new = libiwasm.wasm_func_new
    _wasm_func_new.restype = POINTER(wasm_func_t)
    _wasm_func_new.argtypes = [POINTER(wasm_store_t),POINTER(wasm_functype_t),wasm_func_callback_t]
    return _wasm_func_new(arg0,arg1,arg2)

def wasm_func_new_with_env(arg0,arg1,arg2,arg3,arg4):
    _wasm_func_new_with_env = libiwasm.wasm_func_new_with_env
    _wasm_func_new_with_env.restype = POINTER(wasm_func_t)
    _wasm_func_new_with_env.argtypes = [POINTER(wasm_store_t),POINTER(wasm_functype_t),wasm_func_callback_with_env_t,c_void_p,CFUNCTYPE(None,c_void_p)]
    return _wasm_func_new_with_env(arg0,arg1,arg2,arg3,arg4)

def wasm_func_type(arg0):
    _wasm_func_type = libiwasm.wasm_func_type
    _wasm_func_type.restype = POINTER(wasm_functype_t)
    _wasm_func_type.argtypes = [POINTER(wasm_func_t)]
    return _wasm_func_type(arg0)

def wasm_func_param_arity(arg0):
    _wasm_func_param_arity = libiwasm.wasm_func_param_arity
    _wasm_func_param_arity.restype = c_size_t
    _wasm_func_param_arity.argtypes = [POINTER(wasm_func_t)]
    return _wasm_func_param_arity(arg0)

def wasm_func_result_arity(arg0):
    _wasm_func_result_arity = libiwasm.wasm_func_result_arity
    _wasm_func_result_arity.restype = c_size_t
    _wasm_func_result_arity.argtypes = [POINTER(wasm_func_t)]
    return _wasm_func_result_arity(arg0)

def wasm_func_call(arg0,arg1,arg2):
    _wasm_func_call = libiwasm.wasm_func_call
    _wasm_func_call.restype = POINTER(wasm_trap_t)
    _wasm_func_call.argtypes = [POINTER(wasm_func_t),POINTER(wasm_val_vec_t),POINTER(wasm_val_vec_t)]
    return _wasm_func_call(arg0,arg1,arg2)

class wasm_global_t(Structure):
    pass

def wasm_global_delete(arg0):
    _wasm_global_delete = libiwasm.wasm_global_delete
    _wasm_global_delete.restype = None
    _wasm_global_delete.argtypes = [POINTER(wasm_global_t)]
    return _wasm_global_delete(arg0)

def wasm_global_copy(arg0):
    _wasm_global_copy = libiwasm.wasm_global_copy
    _wasm_global_copy.restype = POINTER(wasm_global_t)
    _wasm_global_copy.argtypes = [POINTER(wasm_global_t)]
    return _wasm_global_copy(arg0)

def wasm_global_same(arg0,arg1):
    _wasm_global_same = libiwasm.wasm_global_same
    _wasm_global_same.restype = c_bool
    _wasm_global_same.argtypes = [POINTER(wasm_global_t),POINTER(wasm_global_t)]
    return _wasm_global_same(arg0,arg1)

def wasm_global_get_host_info(arg0):
    _wasm_global_get_host_info = libiwasm.wasm_global_get_host_info
    _wasm_global_get_host_info.restype = c_void_p
    _wasm_global_get_host_info.argtypes = [POINTER(wasm_global_t)]
    return _wasm_global_get_host_info(arg0)

def wasm_global_set_host_info(arg0,arg1):
    _wasm_global_set_host_info = libiwasm.wasm_global_set_host_info
    _wasm_global_set_host_info.restype = None
    _wasm_global_set_host_info.argtypes = [POINTER(wasm_global_t),c_void_p]
    return _wasm_global_set_host_info(arg0,arg1)

def wasm_global_set_host_info_with_finalizer(arg0,arg1,arg2):
    _wasm_global_set_host_info_with_finalizer = libiwasm.wasm_global_set_host_info_with_finalizer
    _wasm_global_set_host_info_with_finalizer.restype = None
    _wasm_global_set_host_info_with_finalizer.argtypes = [POINTER(wasm_global_t),c_void_p,CFUNCTYPE(None,c_void_p)]
    return _wasm_global_set_host_info_with_finalizer(arg0,arg1,arg2)

def wasm_global_as_ref(arg0):
    _wasm_global_as_ref = libiwasm.wasm_global_as_ref
    _wasm_global_as_ref.restype = POINTER(wasm_ref_t)
    _wasm_global_as_ref.argtypes = [POINTER(wasm_global_t)]
    return _wasm_global_as_ref(arg0)

def wasm_ref_as_global(arg0):
    _wasm_ref_as_global = libiwasm.wasm_ref_as_global
    _wasm_ref_as_global.restype = POINTER(wasm_global_t)
    _wasm_ref_as_global.argtypes = [POINTER(wasm_ref_t)]
    return _wasm_ref_as_global(arg0)

def wasm_global_as_ref_const(arg0):
    _wasm_global_as_ref_const = libiwasm.wasm_global_as_ref_const
    _wasm_global_as_ref_const.restype = POINTER(wasm_ref_t)
    _wasm_global_as_ref_const.argtypes = [POINTER(wasm_global_t)]
    return _wasm_global_as_ref_const(arg0)

def wasm_ref_as_global_const(arg0):
    _wasm_ref_as_global_const = libiwasm.wasm_ref_as_global_const
    _wasm_ref_as_global_const.restype = POINTER(wasm_global_t)
    _wasm_ref_as_global_const.argtypes = [POINTER(wasm_ref_t)]
    return _wasm_ref_as_global_const(arg0)

def wasm_global_new(arg0,arg1,arg2):
    _wasm_global_new = libiwasm.wasm_global_new
    _wasm_global_new.restype = POINTER(wasm_global_t)
    _wasm_global_new.argtypes = [POINTER(wasm_store_t),POINTER(wasm_globaltype_t),POINTER(wasm_val_t)]
    return _wasm_global_new(arg0,arg1,arg2)

def wasm_global_type(arg0):
    _wasm_global_type = libiwasm.wasm_global_type
    _wasm_global_type.restype = POINTER(wasm_globaltype_t)
    _wasm_global_type.argtypes = [POINTER(wasm_global_t)]
    return _wasm_global_type(arg0)

def wasm_global_get(arg0,arg1):
    _wasm_global_get = libiwasm.wasm_global_get
    _wasm_global_get.restype = None
    _wasm_global_get.argtypes = [POINTER(wasm_global_t),POINTER(wasm_val_t)]
    return _wasm_global_get(arg0,arg1)

def wasm_global_set(arg0,arg1):
    _wasm_global_set = libiwasm.wasm_global_set
    _wasm_global_set.restype = None
    _wasm_global_set.argtypes = [POINTER(wasm_global_t),POINTER(wasm_val_t)]
    return _wasm_global_set(arg0,arg1)

class wasm_table_t(Structure):
    pass

def wasm_table_delete(arg0):
    _wasm_table_delete = libiwasm.wasm_table_delete
    _wasm_table_delete.restype = None
    _wasm_table_delete.argtypes = [POINTER(wasm_table_t)]
    return _wasm_table_delete(arg0)

def wasm_table_copy(arg0):
    _wasm_table_copy = libiwasm.wasm_table_copy
    _wasm_table_copy.restype = POINTER(wasm_table_t)
    _wasm_table_copy.argtypes = [POINTER(wasm_table_t)]
    return _wasm_table_copy(arg0)

def wasm_table_same(arg0,arg1):
    _wasm_table_same = libiwasm.wasm_table_same
    _wasm_table_same.restype = c_bool
    _wasm_table_same.argtypes = [POINTER(wasm_table_t),POINTER(wasm_table_t)]
    return _wasm_table_same(arg0,arg1)

def wasm_table_get_host_info(arg0):
    _wasm_table_get_host_info = libiwasm.wasm_table_get_host_info
    _wasm_table_get_host_info.restype = c_void_p
    _wasm_table_get_host_info.argtypes = [POINTER(wasm_table_t)]
    return _wasm_table_get_host_info(arg0)

def wasm_table_set_host_info(arg0,arg1):
    _wasm_table_set_host_info = libiwasm.wasm_table_set_host_info
    _wasm_table_set_host_info.restype = None
    _wasm_table_set_host_info.argtypes = [POINTER(wasm_table_t),c_void_p]
    return _wasm_table_set_host_info(arg0,arg1)

def wasm_table_set_host_info_with_finalizer(arg0,arg1,arg2):
    _wasm_table_set_host_info_with_finalizer = libiwasm.wasm_table_set_host_info_with_finalizer
    _wasm_table_set_host_info_with_finalizer.restype = None
    _wasm_table_set_host_info_with_finalizer.argtypes = [POINTER(wasm_table_t),c_void_p,CFUNCTYPE(None,c_void_p)]
    return _wasm_table_set_host_info_with_finalizer(arg0,arg1,arg2)

def wasm_table_as_ref(arg0):
    _wasm_table_as_ref = libiwasm.wasm_table_as_ref
    _wasm_table_as_ref.restype = POINTER(wasm_ref_t)
    _wasm_table_as_ref.argtypes = [POINTER(wasm_table_t)]
    return _wasm_table_as_ref(arg0)

def wasm_ref_as_table(arg0):
    _wasm_ref_as_table = libiwasm.wasm_ref_as_table
    _wasm_ref_as_table.restype = POINTER(wasm_table_t)
    _wasm_ref_as_table.argtypes = [POINTER(wasm_ref_t)]
    return _wasm_ref_as_table(arg0)

def wasm_table_as_ref_const(arg0):
    _wasm_table_as_ref_const = libiwasm.wasm_table_as_ref_const
    _wasm_table_as_ref_const.restype = POINTER(wasm_ref_t)
    _wasm_table_as_ref_const.argtypes = [POINTER(wasm_table_t)]
    return _wasm_table_as_ref_const(arg0)

def wasm_ref_as_table_const(arg0):
    _wasm_ref_as_table_const = libiwasm.wasm_ref_as_table_const
    _wasm_ref_as_table_const.restype = POINTER(wasm_table_t)
    _wasm_ref_as_table_const.argtypes = [POINTER(wasm_ref_t)]
    return _wasm_ref_as_table_const(arg0)

wasm_table_size_t = c_uint32

def wasm_table_new(arg0,arg1,arg2):
    _wasm_table_new = libiwasm.wasm_table_new
    _wasm_table_new.restype = POINTER(wasm_table_t)
    _wasm_table_new.argtypes = [POINTER(wasm_store_t),POINTER(wasm_tabletype_t),POINTER(wasm_ref_t)]
    return _wasm_table_new(arg0,arg1,arg2)

def wasm_table_type(arg0):
    _wasm_table_type = libiwasm.wasm_table_type
    _wasm_table_type.restype = POINTER(wasm_tabletype_t)
    _wasm_table_type.argtypes = [POINTER(wasm_table_t)]
    return _wasm_table_type(arg0)

def wasm_table_get(arg0,arg1):
    _wasm_table_get = libiwasm.wasm_table_get
    _wasm_table_get.restype = POINTER(wasm_ref_t)
    _wasm_table_get.argtypes = [POINTER(wasm_table_t),wasm_table_size_t]
    return _wasm_table_get(arg0,arg1)

def wasm_table_set(arg0,arg1,arg2):
    _wasm_table_set = libiwasm.wasm_table_set
    _wasm_table_set.restype = c_bool
    _wasm_table_set.argtypes = [POINTER(wasm_table_t),wasm_table_size_t,POINTER(wasm_ref_t)]
    return _wasm_table_set(arg0,arg1,arg2)

def wasm_table_size(arg0):
    _wasm_table_size = libiwasm.wasm_table_size
    _wasm_table_size.restype = wasm_table_size_t
    _wasm_table_size.argtypes = [POINTER(wasm_table_t)]
    return _wasm_table_size(arg0)

def wasm_table_grow(arg0,arg1,arg2):
    _wasm_table_grow = libiwasm.wasm_table_grow
    _wasm_table_grow.restype = c_bool
    _wasm_table_grow.argtypes = [POINTER(wasm_table_t),wasm_table_size_t,POINTER(wasm_ref_t)]
    return _wasm_table_grow(arg0,arg1,arg2)

class wasm_memory_t(Structure):
    pass

def wasm_memory_delete(arg0):
    _wasm_memory_delete = libiwasm.wasm_memory_delete
    _wasm_memory_delete.restype = None
    _wasm_memory_delete.argtypes = [POINTER(wasm_memory_t)]
    return _wasm_memory_delete(arg0)

def wasm_memory_copy(arg0):
    _wasm_memory_copy = libiwasm.wasm_memory_copy
    _wasm_memory_copy.restype = POINTER(wasm_memory_t)
    _wasm_memory_copy.argtypes = [POINTER(wasm_memory_t)]
    return _wasm_memory_copy(arg0)

def wasm_memory_same(arg0,arg1):
    _wasm_memory_same = libiwasm.wasm_memory_same
    _wasm_memory_same.restype = c_bool
    _wasm_memory_same.argtypes = [POINTER(wasm_memory_t),POINTER(wasm_memory_t)]
    return _wasm_memory_same(arg0,arg1)

def wasm_memory_get_host_info(arg0):
    _wasm_memory_get_host_info = libiwasm.wasm_memory_get_host_info
    _wasm_memory_get_host_info.restype = c_void_p
    _wasm_memory_get_host_info.argtypes = [POINTER(wasm_memory_t)]
    return _wasm_memory_get_host_info(arg0)

def wasm_memory_set_host_info(arg0,arg1):
    _wasm_memory_set_host_info = libiwasm.wasm_memory_set_host_info
    _wasm_memory_set_host_info.restype = None
    _wasm_memory_set_host_info.argtypes = [POINTER(wasm_memory_t),c_void_p]
    return _wasm_memory_set_host_info(arg0,arg1)

def wasm_memory_set_host_info_with_finalizer(arg0,arg1,arg2):
    _wasm_memory_set_host_info_with_finalizer = libiwasm.wasm_memory_set_host_info_with_finalizer
    _wasm_memory_set_host_info_with_finalizer.restype = None
    _wasm_memory_set_host_info_with_finalizer.argtypes = [POINTER(wasm_memory_t),c_void_p,CFUNCTYPE(None,c_void_p)]
    return _wasm_memory_set_host_info_with_finalizer(arg0,arg1,arg2)

def wasm_memory_as_ref(arg0):
    _wasm_memory_as_ref = libiwasm.wasm_memory_as_ref
    _wasm_memory_as_ref.restype = POINTER(wasm_ref_t)
    _wasm_memory_as_ref.argtypes = [POINTER(wasm_memory_t)]
    return _wasm_memory_as_ref(arg0)

def wasm_ref_as_memory(arg0):
    _wasm_ref_as_memory = libiwasm.wasm_ref_as_memory
    _wasm_ref_as_memory.restype = POINTER(wasm_memory_t)
    _wasm_ref_as_memory.argtypes = [POINTER(wasm_ref_t)]
    return _wasm_ref_as_memory(arg0)

def wasm_memory_as_ref_const(arg0):
    _wasm_memory_as_ref_const = libiwasm.wasm_memory_as_ref_const
    _wasm_memory_as_ref_const.restype = POINTER(wasm_ref_t)
    _wasm_memory_as_ref_const.argtypes = [POINTER(wasm_memory_t)]
    return _wasm_memory_as_ref_const(arg0)

def wasm_ref_as_memory_const(arg0):
    _wasm_ref_as_memory_const = libiwasm.wasm_ref_as_memory_const
    _wasm_ref_as_memory_const.restype = POINTER(wasm_memory_t)
    _wasm_ref_as_memory_const.argtypes = [POINTER(wasm_ref_t)]
    return _wasm_ref_as_memory_const(arg0)

wasm_memory_pages_t = c_uint32

def wasm_memory_new(arg0,arg1):
    _wasm_memory_new = libiwasm.wasm_memory_new
    _wasm_memory_new.restype = POINTER(wasm_memory_t)
    _wasm_memory_new.argtypes = [POINTER(wasm_store_t),POINTER(wasm_memorytype_t)]
    return _wasm_memory_new(arg0,arg1)

def wasm_memory_type(arg0):
    _wasm_memory_type = libiwasm.wasm_memory_type
    _wasm_memory_type.restype = POINTER(wasm_memorytype_t)
    _wasm_memory_type.argtypes = [POINTER(wasm_memory_t)]
    return _wasm_memory_type(arg0)

def wasm_memory_data(arg0):
    _wasm_memory_data = libiwasm.wasm_memory_data
    _wasm_memory_data.restype = POINTER(c_ubyte)
    _wasm_memory_data.argtypes = [POINTER(wasm_memory_t)]
    return _wasm_memory_data(arg0)

def wasm_memory_data_size(arg0):
    _wasm_memory_data_size = libiwasm.wasm_memory_data_size
    _wasm_memory_data_size.restype = c_size_t
    _wasm_memory_data_size.argtypes = [POINTER(wasm_memory_t)]
    return _wasm_memory_data_size(arg0)

def wasm_memory_size(arg0):
    _wasm_memory_size = libiwasm.wasm_memory_size
    _wasm_memory_size.restype = wasm_memory_pages_t
    _wasm_memory_size.argtypes = [POINTER(wasm_memory_t)]
    return _wasm_memory_size(arg0)

def wasm_memory_grow(arg0,arg1):
    _wasm_memory_grow = libiwasm.wasm_memory_grow
    _wasm_memory_grow.restype = c_bool
    _wasm_memory_grow.argtypes = [POINTER(wasm_memory_t),wasm_memory_pages_t]
    return _wasm_memory_grow(arg0,arg1)

class wasm_extern_t(Structure):
    pass

def wasm_extern_delete(arg0):
    _wasm_extern_delete = libiwasm.wasm_extern_delete
    _wasm_extern_delete.restype = None
    _wasm_extern_delete.argtypes = [POINTER(wasm_extern_t)]
    return _wasm_extern_delete(arg0)

def wasm_extern_copy(arg0):
    _wasm_extern_copy = libiwasm.wasm_extern_copy
    _wasm_extern_copy.restype = POINTER(wasm_extern_t)
    _wasm_extern_copy.argtypes = [POINTER(wasm_extern_t)]
    return _wasm_extern_copy(arg0)

def wasm_extern_same(arg0,arg1):
    _wasm_extern_same = libiwasm.wasm_extern_same
    _wasm_extern_same.restype = c_bool
    _wasm_extern_same.argtypes = [POINTER(wasm_extern_t),POINTER(wasm_extern_t)]
    return _wasm_extern_same(arg0,arg1)

def wasm_extern_get_host_info(arg0):
    _wasm_extern_get_host_info = libiwasm.wasm_extern_get_host_info
    _wasm_extern_get_host_info.restype = c_void_p
    _wasm_extern_get_host_info.argtypes = [POINTER(wasm_extern_t)]
    return _wasm_extern_get_host_info(arg0)

def wasm_extern_set_host_info(arg0,arg1):
    _wasm_extern_set_host_info = libiwasm.wasm_extern_set_host_info
    _wasm_extern_set_host_info.restype = None
    _wasm_extern_set_host_info.argtypes = [POINTER(wasm_extern_t),c_void_p]
    return _wasm_extern_set_host_info(arg0,arg1)

def wasm_extern_set_host_info_with_finalizer(arg0,arg1,arg2):
    _wasm_extern_set_host_info_with_finalizer = libiwasm.wasm_extern_set_host_info_with_finalizer
    _wasm_extern_set_host_info_with_finalizer.restype = None
    _wasm_extern_set_host_info_with_finalizer.argtypes = [POINTER(wasm_extern_t),c_void_p,CFUNCTYPE(None,c_void_p)]
    return _wasm_extern_set_host_info_with_finalizer(arg0,arg1,arg2)

def wasm_extern_as_ref(arg0):
    _wasm_extern_as_ref = libiwasm.wasm_extern_as_ref
    _wasm_extern_as_ref.restype = POINTER(wasm_ref_t)
    _wasm_extern_as_ref.argtypes = [POINTER(wasm_extern_t)]
    return _wasm_extern_as_ref(arg0)

def wasm_ref_as_extern(arg0):
    _wasm_ref_as_extern = libiwasm.wasm_ref_as_extern
    _wasm_ref_as_extern.restype = POINTER(wasm_extern_t)
    _wasm_ref_as_extern.argtypes = [POINTER(wasm_ref_t)]
    return _wasm_ref_as_extern(arg0)

def wasm_extern_as_ref_const(arg0):
    _wasm_extern_as_ref_const = libiwasm.wasm_extern_as_ref_const
    _wasm_extern_as_ref_const.restype = POINTER(wasm_ref_t)
    _wasm_extern_as_ref_const.argtypes = [POINTER(wasm_extern_t)]
    return _wasm_extern_as_ref_const(arg0)

def wasm_ref_as_extern_const(arg0):
    _wasm_ref_as_extern_const = libiwasm.wasm_ref_as_extern_const
    _wasm_ref_as_extern_const.restype = POINTER(wasm_extern_t)
    _wasm_ref_as_extern_const.argtypes = [POINTER(wasm_ref_t)]
    return _wasm_ref_as_extern_const(arg0)

class wasm_extern_vec_t(Structure):
    _fields_ = [
        ("size", c_size_t),
        ("data", POINTER(POINTER(wasm_extern_t))),
        ("num_elems", c_size_t),
        ("size_of_elem", c_size_t),
        ("lock", c_void_p),
    ]

    def __eq__(self, other):
        if not isinstance(other, wasm_extern_vec_t):
            return False
        return self.size == other.size and self.num_elems == other.num_elems and self.size_of_elem == other.size_of_elem

    def __repr__(self):
        ret = ""
        for i in range(self.num_elems):
                ret += str(dereference(self.data[i]))
                ret += " "
        return ret



def wasm_extern_vec_new_empty(arg0):
    _wasm_extern_vec_new_empty = libiwasm.wasm_extern_vec_new_empty
    _wasm_extern_vec_new_empty.restype = None
    _wasm_extern_vec_new_empty.argtypes = [POINTER(wasm_extern_vec_t)]
    return _wasm_extern_vec_new_empty(arg0)

def wasm_extern_vec_new_uninitialized(arg0,arg1):
    _wasm_extern_vec_new_uninitialized = libiwasm.wasm_extern_vec_new_uninitialized
    _wasm_extern_vec_new_uninitialized.restype = None
    _wasm_extern_vec_new_uninitialized.argtypes = [POINTER(wasm_extern_vec_t),c_size_t]
    return _wasm_extern_vec_new_uninitialized(arg0,arg1)

def wasm_extern_vec_new(arg0,arg1,arg2):
    _wasm_extern_vec_new = libiwasm.wasm_extern_vec_new
    _wasm_extern_vec_new.restype = None
    _wasm_extern_vec_new.argtypes = [POINTER(wasm_extern_vec_t),c_size_t,POINTER(POINTER(wasm_extern_t))]
    return _wasm_extern_vec_new(arg0,arg1,arg2)

def wasm_extern_vec_copy(arg0,arg1):
    _wasm_extern_vec_copy = libiwasm.wasm_extern_vec_copy
    _wasm_extern_vec_copy.restype = None
    _wasm_extern_vec_copy.argtypes = [POINTER(wasm_extern_vec_t),POINTER(wasm_extern_vec_t)]
    return _wasm_extern_vec_copy(arg0,arg1)

def wasm_extern_vec_delete(arg0):
    _wasm_extern_vec_delete = libiwasm.wasm_extern_vec_delete
    _wasm_extern_vec_delete.restype = None
    _wasm_extern_vec_delete.argtypes = [POINTER(wasm_extern_vec_t)]
    return _wasm_extern_vec_delete(arg0)

def wasm_extern_kind(arg0):
    _wasm_extern_kind = libiwasm.wasm_extern_kind
    _wasm_extern_kind.restype = wasm_externkind_t
    _wasm_extern_kind.argtypes = [POINTER(wasm_extern_t)]
    return _wasm_extern_kind(arg0)

def wasm_extern_type(arg0):
    _wasm_extern_type = libiwasm.wasm_extern_type
    _wasm_extern_type.restype = POINTER(wasm_externtype_t)
    _wasm_extern_type.argtypes = [POINTER(wasm_extern_t)]
    return _wasm_extern_type(arg0)

def wasm_func_as_extern(arg0):
    _wasm_func_as_extern = libiwasm.wasm_func_as_extern
    _wasm_func_as_extern.restype = POINTER(wasm_extern_t)
    _wasm_func_as_extern.argtypes = [POINTER(wasm_func_t)]
    return _wasm_func_as_extern(arg0)

def wasm_global_as_extern(arg0):
    _wasm_global_as_extern = libiwasm.wasm_global_as_extern
    _wasm_global_as_extern.restype = POINTER(wasm_extern_t)
    _wasm_global_as_extern.argtypes = [POINTER(wasm_global_t)]
    return _wasm_global_as_extern(arg0)

def wasm_table_as_extern(arg0):
    _wasm_table_as_extern = libiwasm.wasm_table_as_extern
    _wasm_table_as_extern.restype = POINTER(wasm_extern_t)
    _wasm_table_as_extern.argtypes = [POINTER(wasm_table_t)]
    return _wasm_table_as_extern(arg0)

def wasm_memory_as_extern(arg0):
    _wasm_memory_as_extern = libiwasm.wasm_memory_as_extern
    _wasm_memory_as_extern.restype = POINTER(wasm_extern_t)
    _wasm_memory_as_extern.argtypes = [POINTER(wasm_memory_t)]
    return _wasm_memory_as_extern(arg0)

def wasm_extern_as_func(arg0):
    _wasm_extern_as_func = libiwasm.wasm_extern_as_func
    _wasm_extern_as_func.restype = POINTER(wasm_func_t)
    _wasm_extern_as_func.argtypes = [POINTER(wasm_extern_t)]
    return _wasm_extern_as_func(arg0)

def wasm_extern_as_global(arg0):
    _wasm_extern_as_global = libiwasm.wasm_extern_as_global
    _wasm_extern_as_global.restype = POINTER(wasm_global_t)
    _wasm_extern_as_global.argtypes = [POINTER(wasm_extern_t)]
    return _wasm_extern_as_global(arg0)

def wasm_extern_as_table(arg0):
    _wasm_extern_as_table = libiwasm.wasm_extern_as_table
    _wasm_extern_as_table.restype = POINTER(wasm_table_t)
    _wasm_extern_as_table.argtypes = [POINTER(wasm_extern_t)]
    return _wasm_extern_as_table(arg0)

def wasm_extern_as_memory(arg0):
    _wasm_extern_as_memory = libiwasm.wasm_extern_as_memory
    _wasm_extern_as_memory.restype = POINTER(wasm_memory_t)
    _wasm_extern_as_memory.argtypes = [POINTER(wasm_extern_t)]
    return _wasm_extern_as_memory(arg0)

def wasm_func_as_extern_const(arg0):
    _wasm_func_as_extern_const = libiwasm.wasm_func_as_extern_const
    _wasm_func_as_extern_const.restype = POINTER(wasm_extern_t)
    _wasm_func_as_extern_const.argtypes = [POINTER(wasm_func_t)]
    return _wasm_func_as_extern_const(arg0)

def wasm_global_as_extern_const(arg0):
    _wasm_global_as_extern_const = libiwasm.wasm_global_as_extern_const
    _wasm_global_as_extern_const.restype = POINTER(wasm_extern_t)
    _wasm_global_as_extern_const.argtypes = [POINTER(wasm_global_t)]
    return _wasm_global_as_extern_const(arg0)

def wasm_table_as_extern_const(arg0):
    _wasm_table_as_extern_const = libiwasm.wasm_table_as_extern_const
    _wasm_table_as_extern_const.restype = POINTER(wasm_extern_t)
    _wasm_table_as_extern_const.argtypes = [POINTER(wasm_table_t)]
    return _wasm_table_as_extern_const(arg0)

def wasm_memory_as_extern_const(arg0):
    _wasm_memory_as_extern_const = libiwasm.wasm_memory_as_extern_const
    _wasm_memory_as_extern_const.restype = POINTER(wasm_extern_t)
    _wasm_memory_as_extern_const.argtypes = [POINTER(wasm_memory_t)]
    return _wasm_memory_as_extern_const(arg0)

def wasm_extern_as_func_const(arg0):
    _wasm_extern_as_func_const = libiwasm.wasm_extern_as_func_const
    _wasm_extern_as_func_const.restype = POINTER(wasm_func_t)
    _wasm_extern_as_func_const.argtypes = [POINTER(wasm_extern_t)]
    return _wasm_extern_as_func_const(arg0)

def wasm_extern_as_global_const(arg0):
    _wasm_extern_as_global_const = libiwasm.wasm_extern_as_global_const
    _wasm_extern_as_global_const.restype = POINTER(wasm_global_t)
    _wasm_extern_as_global_const.argtypes = [POINTER(wasm_extern_t)]
    return _wasm_extern_as_global_const(arg0)

def wasm_extern_as_table_const(arg0):
    _wasm_extern_as_table_const = libiwasm.wasm_extern_as_table_const
    _wasm_extern_as_table_const.restype = POINTER(wasm_table_t)
    _wasm_extern_as_table_const.argtypes = [POINTER(wasm_extern_t)]
    return _wasm_extern_as_table_const(arg0)

def wasm_extern_as_memory_const(arg0):
    _wasm_extern_as_memory_const = libiwasm.wasm_extern_as_memory_const
    _wasm_extern_as_memory_const.restype = POINTER(wasm_memory_t)
    _wasm_extern_as_memory_const.argtypes = [POINTER(wasm_extern_t)]
    return _wasm_extern_as_memory_const(arg0)

class wasm_instance_t(Structure):
    pass

def wasm_instance_delete(arg0):
    _wasm_instance_delete = libiwasm.wasm_instance_delete
    _wasm_instance_delete.restype = None
    _wasm_instance_delete.argtypes = [POINTER(wasm_instance_t)]
    return _wasm_instance_delete(arg0)

def wasm_instance_copy(arg0):
    _wasm_instance_copy = libiwasm.wasm_instance_copy
    _wasm_instance_copy.restype = POINTER(wasm_instance_t)
    _wasm_instance_copy.argtypes = [POINTER(wasm_instance_t)]
    return _wasm_instance_copy(arg0)

def wasm_instance_same(arg0,arg1):
    _wasm_instance_same = libiwasm.wasm_instance_same
    _wasm_instance_same.restype = c_bool
    _wasm_instance_same.argtypes = [POINTER(wasm_instance_t),POINTER(wasm_instance_t)]
    return _wasm_instance_same(arg0,arg1)

def wasm_instance_get_host_info(arg0):
    _wasm_instance_get_host_info = libiwasm.wasm_instance_get_host_info
    _wasm_instance_get_host_info.restype = c_void_p
    _wasm_instance_get_host_info.argtypes = [POINTER(wasm_instance_t)]
    return _wasm_instance_get_host_info(arg0)

def wasm_instance_set_host_info(arg0,arg1):
    _wasm_instance_set_host_info = libiwasm.wasm_instance_set_host_info
    _wasm_instance_set_host_info.restype = None
    _wasm_instance_set_host_info.argtypes = [POINTER(wasm_instance_t),c_void_p]
    return _wasm_instance_set_host_info(arg0,arg1)

def wasm_instance_set_host_info_with_finalizer(arg0,arg1,arg2):
    _wasm_instance_set_host_info_with_finalizer = libiwasm.wasm_instance_set_host_info_with_finalizer
    _wasm_instance_set_host_info_with_finalizer.restype = None
    _wasm_instance_set_host_info_with_finalizer.argtypes = [POINTER(wasm_instance_t),c_void_p,CFUNCTYPE(None,c_void_p)]
    return _wasm_instance_set_host_info_with_finalizer(arg0,arg1,arg2)

def wasm_instance_as_ref(arg0):
    _wasm_instance_as_ref = libiwasm.wasm_instance_as_ref
    _wasm_instance_as_ref.restype = POINTER(wasm_ref_t)
    _wasm_instance_as_ref.argtypes = [POINTER(wasm_instance_t)]
    return _wasm_instance_as_ref(arg0)

def wasm_ref_as_instance(arg0):
    _wasm_ref_as_instance = libiwasm.wasm_ref_as_instance
    _wasm_ref_as_instance.restype = POINTER(wasm_instance_t)
    _wasm_ref_as_instance.argtypes = [POINTER(wasm_ref_t)]
    return _wasm_ref_as_instance(arg0)

def wasm_instance_as_ref_const(arg0):
    _wasm_instance_as_ref_const = libiwasm.wasm_instance_as_ref_const
    _wasm_instance_as_ref_const.restype = POINTER(wasm_ref_t)
    _wasm_instance_as_ref_const.argtypes = [POINTER(wasm_instance_t)]
    return _wasm_instance_as_ref_const(arg0)

def wasm_ref_as_instance_const(arg0):
    _wasm_ref_as_instance_const = libiwasm.wasm_ref_as_instance_const
    _wasm_ref_as_instance_const.restype = POINTER(wasm_instance_t)
    _wasm_ref_as_instance_const.argtypes = [POINTER(wasm_ref_t)]
    return _wasm_ref_as_instance_const(arg0)

def wasm_instance_new(arg0,arg1,arg2,arg3):
    _wasm_instance_new = libiwasm.wasm_instance_new
    _wasm_instance_new.restype = POINTER(wasm_instance_t)
    _wasm_instance_new.argtypes = [POINTER(wasm_store_t),POINTER(wasm_module_t),POINTER(wasm_extern_vec_t),POINTER(POINTER(wasm_trap_t))]
    return _wasm_instance_new(arg0,arg1,arg2,arg3)

def wasm_instance_new_with_args(arg0,arg1,arg2,arg3,arg4,arg5):
    _wasm_instance_new_with_args = libiwasm.wasm_instance_new_with_args
    _wasm_instance_new_with_args.restype = POINTER(wasm_instance_t)
    _wasm_instance_new_with_args.argtypes = [POINTER(wasm_store_t),POINTER(wasm_module_t),POINTER(wasm_extern_vec_t),POINTER(POINTER(wasm_trap_t)),c_uint32,c_uint32]
    return _wasm_instance_new_with_args(arg0,arg1,arg2,arg3,arg4,arg5)

def wasm_instance_exports(arg0,arg1):
    _wasm_instance_exports = libiwasm.wasm_instance_exports
    _wasm_instance_exports.restype = None
    _wasm_instance_exports.argtypes = [POINTER(wasm_instance_t),POINTER(wasm_extern_vec_t)]
    return _wasm_instance_exports(arg0,arg1)