ohos-sys 0.8.6

Bindings to the native API of OpenHarmony OS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
// automatically generated by rust-bindgen 0.71.1

#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
pub use ohos_sys_opaque_types::{napi_env, napi_value};

pub const NAPI_VERSION: u32 = 8;
pub const NAPI_VERSION_EXPERIMENTAL: u32 = 2147483647;
pub const NAPI_AUTO_LENGTH: i32 = -1;
pub const NAPI_MODULE_VERSION: u32 = 1;
impl napi_qos_t {
    pub const napi_qos_background: napi_qos_t = napi_qos_t(0);
    pub const napi_qos_utility: napi_qos_t = napi_qos_t(1);
    pub const napi_qos_default: napi_qos_t = napi_qos_t(2);
    pub const napi_qos_user_initiated: napi_qos_t = napi_qos_t(3);
}
#[repr(transparent)]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub struct napi_qos_t(pub ::core::ffi::c_uint);
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl napi_event_mode {
    /// In this mode, the current asynchronous thread will be blocked and events of native event loop will
    /// be processed.
    pub const napi_event_mode_default: napi_event_mode = napi_event_mode(0);
    /// In this mode, the current asynchronous thread will not be blocked. If there are events in the event loop,
    /// only one event will be processed and then the event loop will stop. If there are no events in the loop,
    /// the event loop will stop immediately.
    pub const napi_event_mode_nowait: napi_event_mode = napi_event_mode(1);
}
#[repr(transparent)]
/// Indicates the running mode of the native event loop in an asynchronous native thread.
///
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub struct napi_event_mode(pub ::core::ffi::c_uint);
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl napi_task_priority {
    /// The immediate priority tasks should be promptly processed whenever feasible.
    pub const napi_priority_immediate: napi_task_priority = napi_task_priority(0);
    /// The high priority tasks, as sorted by their handle time, should be prioritized over tasks with low priority.
    pub const napi_priority_high: napi_task_priority = napi_task_priority(1);
    /// The low priority tasks, as sorted by their handle time, should be processed before idle priority tasks.
    pub const napi_priority_low: napi_task_priority = napi_task_priority(2);
    /// The idle priority tasks should be processed immediately only if there are no other priority tasks.
    pub const napi_priority_idle: napi_task_priority = napi_task_priority(3);
}
#[repr(transparent)]
/// Indicates the priority of a task dispatched from native thread to ArkTS thread.
///
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub struct napi_task_priority(pub ::core::ffi::c_uint);
pub type char16_t = u16;
#[repr(C)]
pub struct napi_ref__ {
    _unused: [u8; 0],
}
pub type napi_ref = *mut napi_ref__;
#[repr(C)]
pub struct napi_handle_scope__ {
    _unused: [u8; 0],
}
pub type napi_handle_scope = *mut napi_handle_scope__;
#[repr(C)]
pub struct napi_escapable_handle_scope__ {
    _unused: [u8; 0],
}
pub type napi_escapable_handle_scope = *mut napi_escapable_handle_scope__;
#[repr(C)]
pub struct napi_callback_info__ {
    _unused: [u8; 0],
}
pub type napi_callback_info = *mut napi_callback_info__;
#[repr(C)]
pub struct napi_deferred__ {
    _unused: [u8; 0],
}
pub type napi_deferred = *mut napi_deferred__;
impl napi_property_attributes {
    pub const napi_default: napi_property_attributes = napi_property_attributes(0);
    pub const napi_writable: napi_property_attributes = napi_property_attributes(1);
    pub const napi_enumerable: napi_property_attributes = napi_property_attributes(2);
    pub const napi_configurable: napi_property_attributes = napi_property_attributes(4);
    pub const napi_static: napi_property_attributes = napi_property_attributes(1024);
    pub const napi_default_method: napi_property_attributes = napi_property_attributes(5);
    pub const napi_default_jsproperty: napi_property_attributes = napi_property_attributes(7);
}
#[repr(transparent)]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub struct napi_property_attributes(pub ::core::ffi::c_uint);
impl napi_valuetype {
    pub const napi_undefined: napi_valuetype = napi_valuetype(0);
    pub const napi_null: napi_valuetype = napi_valuetype(1);
    pub const napi_boolean: napi_valuetype = napi_valuetype(2);
    pub const napi_number: napi_valuetype = napi_valuetype(3);
    pub const napi_string: napi_valuetype = napi_valuetype(4);
    pub const napi_symbol: napi_valuetype = napi_valuetype(5);
    pub const napi_object: napi_valuetype = napi_valuetype(6);
    pub const napi_function: napi_valuetype = napi_valuetype(7);
    pub const napi_external: napi_valuetype = napi_valuetype(8);
    pub const napi_bigint: napi_valuetype = napi_valuetype(9);
}
#[repr(transparent)]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub struct napi_valuetype(pub ::core::ffi::c_uint);
impl napi_typedarray_type {
    pub const napi_int8_array: napi_typedarray_type = napi_typedarray_type(0);
    pub const napi_uint8_array: napi_typedarray_type = napi_typedarray_type(1);
    pub const napi_uint8_clamped_array: napi_typedarray_type = napi_typedarray_type(2);
    pub const napi_int16_array: napi_typedarray_type = napi_typedarray_type(3);
    pub const napi_uint16_array: napi_typedarray_type = napi_typedarray_type(4);
    pub const napi_int32_array: napi_typedarray_type = napi_typedarray_type(5);
    pub const napi_uint32_array: napi_typedarray_type = napi_typedarray_type(6);
    pub const napi_float32_array: napi_typedarray_type = napi_typedarray_type(7);
    pub const napi_float64_array: napi_typedarray_type = napi_typedarray_type(8);
    pub const napi_bigint64_array: napi_typedarray_type = napi_typedarray_type(9);
    pub const napi_biguint64_array: napi_typedarray_type = napi_typedarray_type(10);
}
#[repr(transparent)]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub struct napi_typedarray_type(pub ::core::ffi::c_uint);
impl napi_status {
    pub const napi_ok: napi_status = napi_status(0);
    pub const napi_invalid_arg: napi_status = napi_status(1);
    pub const napi_object_expected: napi_status = napi_status(2);
    pub const napi_string_expected: napi_status = napi_status(3);
    pub const napi_name_expected: napi_status = napi_status(4);
    pub const napi_function_expected: napi_status = napi_status(5);
    pub const napi_number_expected: napi_status = napi_status(6);
    pub const napi_boolean_expected: napi_status = napi_status(7);
    pub const napi_array_expected: napi_status = napi_status(8);
    pub const napi_generic_failure: napi_status = napi_status(9);
    pub const napi_pending_exception: napi_status = napi_status(10);
    pub const napi_cancelled: napi_status = napi_status(11);
    pub const napi_escape_called_twice: napi_status = napi_status(12);
    pub const napi_handle_scope_mismatch: napi_status = napi_status(13);
    pub const napi_callback_scope_mismatch: napi_status = napi_status(14);
    pub const napi_queue_full: napi_status = napi_status(15);
    pub const napi_closing: napi_status = napi_status(16);
    pub const napi_bigint_expected: napi_status = napi_status(17);
    pub const napi_date_expected: napi_status = napi_status(18);
    pub const napi_arraybuffer_expected: napi_status = napi_status(19);
    pub const napi_detachable_arraybuffer_expected: napi_status = napi_status(20);
    pub const napi_would_deadlock: napi_status = napi_status(21);
    pub const napi_create_ark_runtime_too_many_envs: napi_status = napi_status(22);
    pub const napi_create_ark_runtime_only_one_env_per_thread: napi_status = napi_status(23);
    pub const napi_destroy_ark_runtime_env_not_exist: napi_status = napi_status(24);
}
#[repr(transparent)]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub struct napi_status(pub ::core::ffi::c_uint);
pub type napi_callback = ::core::option::Option<
    unsafe extern "C" fn(env: napi_env, info: napi_callback_info) -> napi_value,
>;
pub type napi_finalize = ::core::option::Option<
    unsafe extern "C" fn(
        env: napi_env,
        finalize_data: *mut ::core::ffi::c_void,
        finalize_hint: *mut ::core::ffi::c_void,
    ),
>;
#[repr(C)]
pub struct napi_property_descriptor {
    pub utf8name: *const ::core::ffi::c_char,
    pub name: napi_value,
    pub method: napi_callback,
    pub getter: napi_callback,
    pub setter: napi_callback,
    pub value: napi_value,
    pub attributes: napi_property_attributes,
    pub data: *mut ::core::ffi::c_void,
}
#[repr(C)]
#[derive(Debug)]
pub struct napi_extended_error_info {
    pub error_message: *const ::core::ffi::c_char,
    pub engine_reserved: *mut ::core::ffi::c_void,
    pub engine_error_code: u32,
    pub error_code: napi_status,
}
impl napi_key_collection_mode {
    pub const napi_key_include_prototypes: napi_key_collection_mode = napi_key_collection_mode(0);
    pub const napi_key_own_only: napi_key_collection_mode = napi_key_collection_mode(1);
}
#[repr(transparent)]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub struct napi_key_collection_mode(pub ::core::ffi::c_uint);
impl napi_key_filter {
    pub const napi_key_all_properties: napi_key_filter = napi_key_filter(0);
    pub const napi_key_writable: napi_key_filter = napi_key_filter(1);
    pub const napi_key_enumerable: napi_key_filter = napi_key_filter(2);
    pub const napi_key_configurable: napi_key_filter = napi_key_filter(4);
    pub const napi_key_skip_strings: napi_key_filter = napi_key_filter(8);
    pub const napi_key_skip_symbols: napi_key_filter = napi_key_filter(16);
}
#[repr(transparent)]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub struct napi_key_filter(pub ::core::ffi::c_uint);
impl napi_key_conversion {
    pub const napi_key_keep_numbers: napi_key_conversion = napi_key_conversion(0);
    pub const napi_key_numbers_to_strings: napi_key_conversion = napi_key_conversion(1);
}
#[repr(transparent)]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub struct napi_key_conversion(pub ::core::ffi::c_uint);
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct napi_type_tag {
    pub lower: u64,
    pub upper: u64,
}
#[repr(C)]
pub struct napi_callback_scope__ {
    _unused: [u8; 0],
}
pub type napi_callback_scope = *mut napi_callback_scope__;
#[repr(C)]
pub struct napi_async_context__ {
    _unused: [u8; 0],
}
pub type napi_async_context = *mut napi_async_context__;
#[repr(C)]
pub struct napi_async_work__ {
    _unused: [u8; 0],
}
pub type napi_async_work = *mut napi_async_work__;
#[repr(C)]
pub struct napi_threadsafe_function__ {
    _unused: [u8; 0],
}
pub type napi_threadsafe_function = *mut napi_threadsafe_function__;
impl napi_threadsafe_function_release_mode {
    pub const napi_tsfn_release: napi_threadsafe_function_release_mode =
        napi_threadsafe_function_release_mode(0);
    pub const napi_tsfn_abort: napi_threadsafe_function_release_mode =
        napi_threadsafe_function_release_mode(1);
}
#[repr(transparent)]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub struct napi_threadsafe_function_release_mode(pub ::core::ffi::c_uint);
impl napi_threadsafe_function_call_mode {
    pub const napi_tsfn_nonblocking: napi_threadsafe_function_call_mode =
        napi_threadsafe_function_call_mode(0);
    pub const napi_tsfn_blocking: napi_threadsafe_function_call_mode =
        napi_threadsafe_function_call_mode(1);
}
#[repr(transparent)]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub struct napi_threadsafe_function_call_mode(pub ::core::ffi::c_uint);
pub type napi_async_execute_callback =
    ::core::option::Option<unsafe extern "C" fn(env: napi_env, data: *mut ::core::ffi::c_void)>;
pub type napi_async_complete_callback = ::core::option::Option<
    unsafe extern "C" fn(env: napi_env, status: napi_status, data: *mut ::core::ffi::c_void),
>;
pub type napi_threadsafe_function_call_js = ::core::option::Option<
    unsafe extern "C" fn(
        env: napi_env,
        js_callback: napi_value,
        context: *mut ::core::ffi::c_void,
        data: *mut ::core::ffi::c_void,
    ),
>;
#[repr(C)]
#[derive(Debug)]
pub struct napi_node_version {
    pub major: u32,
    pub minor: u32,
    pub patch: u32,
    pub release: *const ::core::ffi::c_char,
}
#[repr(C)]
pub struct napi_async_cleanup_hook_handle__ {
    _unused: [u8; 0],
}
pub type napi_async_cleanup_hook_handle = *mut napi_async_cleanup_hook_handle__;
pub type napi_async_cleanup_hook = ::core::option::Option<
    unsafe extern "C" fn(handle: napi_async_cleanup_hook_handle, data: *mut ::core::ffi::c_void),
>;
#[repr(C)]
pub struct uv_loop_s {
    _unused: [u8; 0],
}
pub type napi_addon_register_func =
    ::core::option::Option<unsafe extern "C" fn(env: napi_env, exports: napi_value) -> napi_value>;
#[repr(C)]
#[derive(Debug)]
pub struct napi_module {
    pub nm_version: ::core::ffi::c_int,
    pub nm_flags: ::core::ffi::c_uint,
    pub nm_filename: *const ::core::ffi::c_char,
    pub nm_register_func: napi_addon_register_func,
    pub nm_modname: *const ::core::ffi::c_char,
    pub nm_priv: *mut ::core::ffi::c_void,
    pub reserved: [*mut ::core::ffi::c_void; 4usize],
}
/// Native detach callback of napi_coerce_to_native_binding_object that can be used to
/// detach the ArkTS object and the native object.
///
///
/// Available since API-level: 11
#[cfg(feature = "api-11")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-11")))]
pub type napi_native_binding_detach_callback = ::core::option::Option<
    unsafe extern "C" fn(
        env: napi_env,
        native_object: *mut ::core::ffi::c_void,
        hint: *mut ::core::ffi::c_void,
    ) -> *mut ::core::ffi::c_void,
>;
/// Native attach callback of napi_coerce_to_native_binding_object that can be used to
/// bind the ArkTS object and the native object.
///
///
/// Available since API-level: 11
#[cfg(feature = "api-11")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-11")))]
pub type napi_native_binding_attach_callback = ::core::option::Option<
    unsafe extern "C" fn(
        env: napi_env,
        native_object: *mut ::core::ffi::c_void,
        hint: *mut ::core::ffi::c_void,
    ) -> napi_value,
>;
#[repr(C)]
pub struct napi_critical_scope__ {
    _unused: [u8; 0],
}
/// Native critical scope provides a scope within that an ArkTS string buffer cache can be obtained.
///
/// Available since API-level: 21
#[cfg(feature = "api-21")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-21")))]
pub type napi_critical_scope = *mut napi_critical_scope__;
#[repr(C)]
pub struct napi_strong_ref__ {
    _unused: [u8; 0],
}
/// Native strong reference of an ArkTS object.
///
/// Available since API-level: 21
#[cfg(feature = "api-21")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-21")))]
pub type napi_strong_ref = *mut napi_strong_ref__;
extern "C" {
    /// Obtains the napi_extended_error_info struct, which contains the latest error information.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `result` - The error info about the error.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_last_error_info(
        env: napi_env,
        result: *mut *const napi_extended_error_info,
    ) -> napi_status;
    /// Obtains the ArkTS undefined value.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `result` - The ArkTS undefined value.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the parameter env and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_undefined(env: napi_env, result: *mut napi_value) -> napi_status;
    /// Obtains the ArkTS null value.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `result` - The ArkTS null value.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_null(env: napi_env, result: *mut napi_value) -> napi_status;
    /// Obtains the ArkTS global object.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `result` - The ArkTS global Object.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_global(env: napi_env, result: *mut napi_value) -> napi_status;
    /// Obtains the ArkTS singleton value corresponding to given C primitive boolean value.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - C primitive boolean value.
    ///
    /// * `result` - The ArkTS singleton value equivalent of C primitive boolean value.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_boolean(env: napi_env, value: bool, result: *mut napi_value) -> napi_status;
    /// Creates a default ArkTS object.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `result` - napi_value representing an ArkTS object.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_object(env: napi_env, result: *mut napi_value) -> napi_status;
    /// Creates an ArkTS array.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `result` - napi_value representing an ArkTS Array.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_array(env: napi_env, result: *mut napi_value) -> napi_status;
    /// Creates an ArkTS array of the specified length.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `length` - The length of the Array.
    ///
    /// * `result` - napi_value representing an ArkTS Array.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_array_with_length(
        env: napi_env,
        length: usize,
        result: *mut napi_value,
    ) -> napi_status;
    /// Creates an ArkTS number from C double data.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - The double value to be represented in ArkTS.
    ///
    /// * `result` - A napi_value representing an ArkTS number.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_double(env: napi_env, value: f64, result: *mut napi_value) -> napi_status;
    /// Creates an ArkTS number from C int32_t data.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - The int32 value to be represented in ArkTS.
    ///
    /// * `result` - A napi_value representing an ArkTS number.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_int32(env: napi_env, value: i32, result: *mut napi_value) -> napi_status;
    /// Creates an ArkTS number from C uint32_t data.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - The uint32 value to be represented in ArkTS.
    ///
    /// * `result` - A napi_value representing an ArkTS number.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_uint32(env: napi_env, value: u32, result: *mut napi_value) -> napi_status;
    /// Creates an ArkTS number from C int64_t data.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - The int64 value to be represented in ArkTS.
    ///
    /// * `result` - A napi_value representing an ArkTS number.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_int64(env: napi_env, value: i64, result: *mut napi_value) -> napi_status;
    /// Creates an ArkTS string from an ISO-8859-1-encoded C string.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `str` - C string encoded in ISO-8859-1-encoded format.
    ///
    /// * `length` - The length of the C string 'str'.
    ///
    /// * `result` - Result of the ArkTS string from the ISO-8859-1-encoded C string.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, str and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_string_latin1(
        env: napi_env,
        str_: *const ::core::ffi::c_char,
        length: usize,
        result: *mut napi_value,
    ) -> napi_status;
    /// Creates an ArkTS string from a UTF8-encoded C string.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `str` - C string encoded in UTF8 format.
    ///
    /// * `length` - The length of the C string 'str'.
    ///
    /// * `result` - Result of the ArkTS string from the UTF8-encoded C string.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, str and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_string_utf8(
        env: napi_env,
        str_: *const ::core::ffi::c_char,
        length: usize,
        result: *mut napi_value,
    ) -> napi_status;
    pub fn napi_create_string_utf16(
        env: napi_env,
        str_: *const char16_t,
        length: usize,
        result: *mut napi_value,
    ) -> napi_status;
    /// Creates an ArkTS symbol.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `description` - Optional napi_value representing an ArkTS string to describe the symbol.
    ///
    /// * `result` - A napi_value representing an ArkTS symbol.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env and(or) result is nullptr;
    ///
    /// If the param description is not nullptr and is not an ArkTS String.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_symbol(
        env: napi_env,
        description: napi_value,
        result: *mut napi_value,
    ) -> napi_status;
    /// Create an ArkTS function. This is the primary mechanism to call back into native code from ArkTS.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `utf8name` - The visible within ArkTS as the new function's name property.
    ///
    /// * `length` - The length oh the utf8name, or NAPI_AUTO_LENGTH if it is null-terminated.
    ///
    /// * `cb` - The native function which should be called when this function object is called.
    ///
    /// * `data` - User-provided data context. This will be passed back into the function when invoked.
    ///
    /// * `result` - The newly created ArkTS function.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, cb and(or) result is nullptr.
    ///
    /// [`napi_pending_exception`] There is an uncaught exception occurred before(in) execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_function(
        env: napi_env,
        utf8name: *const ::core::ffi::c_char,
        length: usize,
        cb: napi_callback,
        data: *mut ::core::ffi::c_void,
        result: *mut napi_value,
    ) -> napi_status;
    /// Creates an ArkTS Error with text information.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `code` - Optional error code to set on the error.
    ///
    /// * `msg` - napi_value representing the EcmaScript string to be associated with the error.
    ///
    /// * `result` - napi_value representing the error created.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, msg or result is nullptr, code is not string and number type or msg is
    ///
    /// not a string type.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_error(
        env: napi_env,
        code: napi_value,
        msg: napi_value,
        result: *mut napi_value,
    ) -> napi_status;
    /// Creates an ArkTS TypeError with text information.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `code` - Optional error code to set on the error.
    ///
    /// * `msg` - napi_value representing the EcmaScript string to be associated with the error.
    ///
    /// * `result` - napi_value representing the error created.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, msg or result is nullptr, code is not string and number type or msg is
    ///
    /// not a string type.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_type_error(
        env: napi_env,
        code: napi_value,
        msg: napi_value,
        result: *mut napi_value,
    ) -> napi_status;
    /// Creates an ArkTS RangeError with text information.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `code` - Optional error code to set on the error.
    ///
    /// * `msg` - napi_value representing the EcmaScript string to be associated with the error.
    ///
    /// * `result` - napi_value representing the error created.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, msg or result is nullptr, code is not string and number type or msg is
    ///
    /// not a string type.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_range_error(
        env: napi_env,
        code: napi_value,
        msg: napi_value,
        result: *mut napi_value,
    ) -> napi_status;
    /// Similar to typeof operation, support external value, detects null as a separate type.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - The ArkTS value whose type expects to query.
    ///
    /// * `result` - The type of ArkTS value.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, value and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_typeof(
        env: napi_env,
        value: napi_value,
        result: *mut napi_valuetype,
    ) -> napi_status;
    /// Obtains the double value corresponding to the given ArkTS value.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - ArkTS number.
    ///
    /// * `result` - The C primitive equivalent of ArkTS value as double.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, value and(or) result is nullptr.
    ///
    /// [`napi_number_expected`] If a non-number ArkTS value passed in it.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_value_double(env: napi_env, value: napi_value, result: *mut f64)
        -> napi_status;
    /// Obtains the int32_t value corresponding to the given ArkTS value.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - ArkTS number.
    ///
    /// * `result` - The C primitive equivalent of ArkTS value as int32_t.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, value and(or) result is nullptr.
    ///
    /// [`napi_number_expected`] If a non-number ArkTS value passed in it.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_value_int32(env: napi_env, value: napi_value, result: *mut i32) -> napi_status;
    /// Obtains the uint32_t value corresponding to the given ArkTS value.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - ArkTS number.
    ///
    /// * `result` - The C primitive equivalent of ArkTS value as uint32_t.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, value and(or) result is nullptr.
    ///
    /// [`napi_number_expected`] If a non-number ArkTS value passed in it.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_value_uint32(env: napi_env, value: napi_value, result: *mut u32)
        -> napi_status;
    /// Obtains the int64_t value corresponding to the given ArkTS value.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - ArkTS number.
    ///
    /// * `result` - The C primitive equivalent of ArkTS value as int64_t.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, value and(or) result is nullptr.
    ///
    /// [`napi_number_expected`] If a non-number ArkTS value passed in it.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_value_int64(env: napi_env, value: napi_value, result: *mut i64) -> napi_status;
    /// Obtains the C Boolean equivalent of an ArkTS Boolean value.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - A napi_value representing ArkTS Boolean.
    ///
    /// * `result` - The C boolean equivalent of the ArkTS Boolean.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, value and(or) result is nullptr.
    ///
    /// [`napi_boolean_expected`] If a non-boolean ArkTS value passed in it.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_value_bool(env: napi_env, value: napi_value, result: *mut bool) -> napi_status;
    /// Obtains the ISO-8859-1-encoded string corresponding to the given ArkTS value.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - ArkTS string.
    ///
    /// * `buf` - Destination buffer that will be filled with the provided ISO-8859-1-encoded string.
    ///
    /// * `bufsize` - The size of the buffer 'buf'.
    ///
    /// * `result` - The length of the string in ISO-8859-1-encoded format.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env and(or) value is nullptr;
    ///
    /// If the param buf and result both are nullptr.
    ///
    /// [`napi_string_expected`] If a non-string ArkTS value passed in it.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_value_string_latin1(
        env: napi_env,
        value: napi_value,
        buf: *mut ::core::ffi::c_char,
        bufsize: usize,
        result: *mut usize,
    ) -> napi_status;
    /// Obtains the UTF8-encoded string corresponding to the given ArkTS value.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - ArkTS string.
    ///
    /// * `buf` - Destination buffer that will be filled with the provided UTF8-encoded string.
    ///
    /// * `bufsize` - The size of the buffer 'buf'.
    ///
    /// * `result` - The length of the string in UTF8-encoded format.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env and(or) value is nullptr;
    ///
    /// If the param buf and result both are nullptr.
    ///
    /// [`napi_string_expected`] If a non-string ArkTS value passed in it.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_value_string_utf8(
        env: napi_env,
        value: napi_value,
        buf: *mut ::core::ffi::c_char,
        bufsize: usize,
        result: *mut usize,
    ) -> napi_status;
    pub fn napi_get_value_string_utf16(
        env: napi_env,
        value: napi_value,
        buf: *mut char16_t,
        bufsize: usize,
        result: *mut usize,
    ) -> napi_status;
    /// Coerce the given ArkTS value to an ArkTS boolean value.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - The ArkTS value to coerce.
    ///
    /// * `result` - The coerced ArkTS boolean value.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, value and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_coerce_to_bool(
        env: napi_env,
        value: napi_value,
        result: *mut napi_value,
    ) -> napi_status;
    /// Coerce the given ArkTS value to an ArkTS number value.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - The ArkTS value to coerce.
    ///
    /// * `result` - The coerced ArkTS number value.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, value and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_coerce_to_number(
        env: napi_env,
        value: napi_value,
        result: *mut napi_value,
    ) -> napi_status;
    /// Coerce the given ArkTS value to an ArkTS object value.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - The ArkTS value to coerce.
    ///
    /// * `result` - The coerced ArkTS object value.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, value and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_coerce_to_object(
        env: napi_env,
        value: napi_value,
        result: *mut napi_value,
    ) -> napi_status;
    /// Coerce the given ArkTS value to an ArkTS string value.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - The ArkTS value to coerce.
    ///
    /// * `result` - The coerced ArkTS string value.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, value and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_coerce_to_string(
        env: napi_env,
        value: napi_value,
        result: *mut napi_value,
    ) -> napi_status;
    /// Obtains the prototype of an ArkTS object.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `object` - The napi_value representing an ArkTS Object whose prototype to return.
    ///
    /// * `result` - A napi_value representing prototype of the object.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, object or result is nullptr;
    ///
    /// [`napi_pending_exception`] There is an uncaught exception occurred before(in) execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_prototype(
        env: napi_env,
        object: napi_value,
        result: *mut napi_value,
    ) -> napi_status;
    /// Obtains the names of the enumerable properties of object as an Array of Strings. The keys that are symbols
    /// will not be included.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `object` - The ArkTS object from which the property is retrieved.
    ///
    /// * `result` - An ArkTS Array that contains the attribute names of the object.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, value and(or) result is nullptr.
    ///
    /// [`napi_object_expected`] If the param object is not an ArkTS Object.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_property_names(
        env: napi_env,
        object: napi_value,
        result: *mut napi_value,
    ) -> napi_status;
    /// Set a property on the given ArkTS Object.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `object` - The ArkTS object.
    ///
    /// * `key` - The name of the property to set.
    ///
    /// * `value` - The property value.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, object, key and(or) value is nullptr.
    ///
    /// [`napi_object_expected`] If the param object is not an ArkTS Object.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurred in execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_set_property(
        env: napi_env,
        object: napi_value,
        key: napi_value,
        value: napi_value,
    ) -> napi_status;
    /// Check if the given ArkTS Object has the named property or not.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `object` - The ArkTS object.
    ///
    /// * `key` - The name of the property to check.
    ///
    /// * `result` - Whether the property exists on the object or not.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, object, key and(or) result is nullptr.
    ///
    /// [`napi_object_expected`] If the param object is not an ArkTS Object.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurred in execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_has_property(
        env: napi_env,
        object: napi_value,
        key: napi_value,
        result: *mut bool,
    ) -> napi_status;
    /// Get the requests property of the given ArkTS Object.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `object` - The ArkTS object.
    ///
    /// * `key` - The name of the property to get.
    ///
    /// * `result` - The value of the property.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, object, key and(or) result is nullptr.
    ///
    /// [`napi_object_expected`] If the param object is not an ArkTS Object.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurred in execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_property(
        env: napi_env,
        object: napi_value,
        key: napi_value,
        result: *mut napi_value,
    ) -> napi_status;
    /// Delete the named property of the given ArkTS Object.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `object` - The ArkTS object.
    ///
    /// * `key` - The name of the property to delete.
    ///
    /// * `result` - Whether the execution is succeed or not. Can optionally be ignored by passing nullptr.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, object and(or) key is nullptr.
    ///
    /// [`napi_object_expected`] If the param object is not an ArkTS Object.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurred in execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_delete_property(
        env: napi_env,
        object: napi_value,
        key: napi_value,
        result: *mut bool,
    ) -> napi_status;
    /// Check if the given ArkTS Object has the named own property or not.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `object` - The ArkTS object.
    ///
    /// * `key` - The name of the property to check.
    ///
    /// * `result` - Whether the own property exists on the object or not.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, object, key and(or) result is nullptr.
    ///
    /// [`napi_object_expected`] If the param object is not an ArkTS Object.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurs in execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_has_own_property(
        env: napi_env,
        object: napi_value,
        key: napi_value,
        result: *mut bool,
    ) -> napi_status;
    /// Set a property on the given ArkTS Object.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `object` - The ArkTS object.
    ///
    /// * `utf8name` - The name of the property to set.
    ///
    /// * `value` - The property value.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, object, utf8name and(or) value is nullptr.
    ///
    /// [`napi_object_expected`] If the param object is not an ArkTS Object.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurred in execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_set_named_property(
        env: napi_env,
        object: napi_value,
        utf8name: *const ::core::ffi::c_char,
        value: napi_value,
    ) -> napi_status;
    /// Check if the given ArkTS Object has the named property or not.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `object` - The ArkTS object.
    ///
    /// * `utf8name` - The name of the property to check.
    ///
    /// * `result` - Whether the property exists on the object or not.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, object, utf8name and(or) result is nullptr.
    ///
    /// [`napi_object_expected`] If the param object is not an ArkTS Object.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurred in execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_has_named_property(
        env: napi_env,
        object: napi_value,
        utf8name: *const ::core::ffi::c_char,
        result: *mut bool,
    ) -> napi_status;
    /// Get the requests property of the given ArkTS Object.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `object` - The ArkTS object.
    ///
    /// * `utf8name` - The name of the property to get.
    ///
    /// * `result` - The value of the property.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, object, utf8name and(or) result is nullptr.
    ///
    /// [`napi_object_expected`] If the param object is not an ArkTS Object.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurred in execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_named_property(
        env: napi_env,
        object: napi_value,
        utf8name: *const ::core::ffi::c_char,
        result: *mut napi_value,
    ) -> napi_status;
    /// Set a element on the given ArkTS Array.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `object` - The ArkTS Array.
    ///
    /// * `index` - The index of the element to set.
    ///
    /// * `value` - The element value.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, object and(or) value is nullptr.
    ///
    /// [`napi_object_expected`] If the param object is not an ArkTS Object.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurred in execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_set_element(
        env: napi_env,
        object: napi_value,
        index: u32,
        value: napi_value,
    ) -> napi_status;
    /// Check if the given ArkTS Array has an element at the requested index.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `object` - The ArkTS Array.
    ///
    /// * `index` - The name of the property to check.
    ///
    /// * `result` - Whether the property exists on the Array or not.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, object and(or) result is nullptr.
    ///
    /// [`napi_object_expected`] If the param object is not an ArkTS Object.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurred in execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_has_element(
        env: napi_env,
        object: napi_value,
        index: u32,
        result: *mut bool,
    ) -> napi_status;
    /// Get the requests element of the given ArkTS Array.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `object` - The ArkTS Array.
    ///
    /// * `index` - The index of the element to get.
    ///
    /// * `result` - The value of the element.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, object and(or) result is nullptr.
    ///
    /// [`napi_object_expected`] If the param object is not an ArkTS Object.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurred in execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_element(
        env: napi_env,
        object: napi_value,
        index: u32,
        result: *mut napi_value,
    ) -> napi_status;
    /// Delete the special index from the given ArkTS Array.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `object` - The ArkTS Array.
    ///
    /// * `index` - The index of the element to delete.
    ///
    /// * `result` - Whether the execution is succeed or not. Can optionally be ignored by passing nullptr.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, object and(or) key is nullptr.
    ///
    /// [`napi_object_expected`] If the param object is not an ArkTS Object.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurred in execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_delete_element(
        env: napi_env,
        object: napi_value,
        index: u32,
        result: *mut bool,
    ) -> napi_status;
    /// Efficient define multiple properties on the given ArkTS Object by napi_property_descriptor.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `object` - The ArkTS Object.
    ///
    /// * `property_count` - The count of elements in the properties array.
    ///
    /// * `properties` - The properties array.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, object and(or) properties is nullptr.
    ///
    /// [`napi_object_expected`] If the param object is not an ArkTS Object.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurred in execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_define_properties(
        env: napi_env,
        object: napi_value,
        property_count: usize,
        properties: *const napi_property_descriptor,
    ) -> napi_status;
    /// Checks if the ArkTS value is an ArkTS Array.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - The ArkTS value to check.
    ///
    /// * `result` - Whether the given ArkTS value is an ArkTS Array.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, value and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_is_array(env: napi_env, value: napi_value, result: *mut bool) -> napi_status;
    /// Obtains the array length.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - The napi_value representing the ArkTS Array being queried.
    ///
    /// * `result` - The length of the array.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, value and(or) result is nullptr;
    ///
    /// [`napi_pending_exception`] There is an uncaught exception occurred before(in) execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_array_length(env: napi_env, value: napi_value, result: *mut u32)
        -> napi_status;
    /// Checks if the two ArkTS values are equal.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `lhs` - The ArkTS value to check.
    ///
    /// * `rhs` - The ArkTS value to check against.
    ///
    /// * `result` - Whether the two given ArkTS values are equal.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, value and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_strict_equals(
        env: napi_env,
        lhs: napi_value,
        rhs: napi_value,
        result: *mut bool,
    ) -> napi_status;
    /// Invoke an ArkTS function. This is the primary mechanism to call back into JavaScript.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `recv` - The this value passed to the called function
    ///
    /// * `func` - The ArkTS function to be invoked.
    ///
    /// * `argc` - The count of elements in the argv array.
    ///
    /// * `argv` - ArkTS values passed in as arguments to the function.
    ///
    /// * `result` - Whether the provided 'type_tag' is matched with the tag on the ArkTS object 'value'.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env and(or) func is nullptr. If argv is nullptr but argc greater
    ///
    /// than 0.
    ///
    /// [`napi_function_expected`] If the param func is not an ArkTS Function.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurred in execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_call_function(
        env: napi_env,
        recv: napi_value,
        func: napi_value,
        argc: usize,
        argv: *const napi_value,
        result: *mut napi_value,
    ) -> napi_status;
    /// Instantiate a new ArkTS value using a given napi_value that represents the constructor for the object.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `constructor` - The ArkTS function to be invoked as a constructor.
    ///
    /// * `argc` - The count of elements in the argv array.
    ///
    /// * `argv` - Array of ArkTS values representing the arguments to the constructor. If argc is 0 this parameter may
    /// be omitted by passing in nullptr.
    ///
    /// * `result` - The ArkTS object returned, which in this case is the constructed object.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env and(or) func is nullptr. If argv is nullptr but argc greater
    ///
    /// than 0.
    ///
    /// [`napi_function_expected`] If the param func is not an ArkTS Function.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurred in execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_new_instance(
        env: napi_env,
        constructor: napi_value,
        argc: usize,
        argv: *const napi_value,
        result: *mut napi_value,
    ) -> napi_status;
    /// Invoke instanceof operation on the object.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `object` - The ArkTS object to check.
    ///
    /// * `constructor` - The ArkTS constructor function to check against.
    ///
    /// * `result` - Set to true if the given ArkTS object instanceof constructor.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, object, constructor and(or) result is nullptr.
    ///
    /// [`napi_object_expected`] If the param object is not an ArkTS object value.
    ///
    /// [`napi_function_expected`] If the param constructor is not an ArkTS function value.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurred in execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_instanceof(
        env: napi_env,
        object: napi_value,
        constructor: napi_value,
        result: *mut bool,
    ) -> napi_status;
    /// Obtains callback details about the call like arguments, this from given callback info.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `cbinfo` - The callback info.
    ///
    /// * `argc` - Size of the argv array.
    ///
    /// * `argv` - The Array which arguments will be copied to. If there are more arguments than the provided count, only
    /// the requested number of arguments are copied. If there are fewer arguments provided, the rest argv is
    /// filled with undefined. Can optionally be ignored by passing nullptr.
    ///
    /// * `this_arg` - Receives the ArkTS this argument for the call. Can optionally be ignored by passing nullptr.
    ///
    /// * `data` - Receives the data pointer for the callback. Can optionally be ignored by passing nullptr.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env and(or) cbinfo is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_cb_info(
        env: napi_env,
        cbinfo: napi_callback_info,
        argc: *mut usize,
        argv: *mut napi_value,
        this_arg: *mut napi_value,
        data: *mut *mut ::core::ffi::c_void,
    ) -> napi_status;
    /// Obtains callback details about the call like arguments, this from given callback info.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `cbinfo` - The callback info.
    ///
    /// * `result` - The new.target of the constructor call.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, cbinfo and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_new_target(
        env: napi_env,
        cbinfo: napi_callback_info,
        result: *mut napi_value,
    ) -> napi_status;
    /// Defines an ArkTS class, including constructor function and properties.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `utf8name` - Name of the ArkTS constructor function.
    ///
    /// * `length` - The length of the utf8name in bytes, or NAPI_AUTO_LENGTH if it is null-terminated.
    ///
    /// * `constructor` - Callback function that handles constructing instances of the class.
    ///
    /// * `data` - Optional data to be passed to the constructor callback as the data property of the callback info.
    ///
    /// * `property_count` - Number of items in the properties array argument.
    ///
    /// * `properties` - Array of property descriptors.
    ///
    /// * `result` - A napi_value representing the constructor function for the class.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    /// execution.
    ///
    /// [`napi_invalid_arg`] If the param env, utf8name and(or) result is nullptr. If napi_property_descriptor
    /// is nullptr but property_count greater than 0.
    ///
    /// [`napi_function_expected`] If the param func is not an ArkTS Function.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurs in execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_define_class(
        env: napi_env,
        utf8name: *const ::core::ffi::c_char,
        length: usize,
        constructor: napi_callback,
        data: *mut ::core::ffi::c_void,
        property_count: usize,
        properties: *const napi_property_descriptor,
        result: *mut napi_value,
    ) -> napi_status;
    /// Wraps a native instance in a ArkTS object. The native instance can be retrieved later using napi_unwrap.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `js_object` - The ArkTS object that will be the wrapper for the native object.
    ///
    /// * `native_object` - The native instance that will be wrapped in the ArkTS object.
    ///
    /// * `finalize_cb` - Native callback that can be used to free the native instance when the JavaScript object has
    /// been garbage-collected.
    ///
    /// * `finalize_hint` - Optional contextual hint that is passed to the finalize callback.
    ///
    /// * `result` - Optional reference to the wrapped object.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, js_object, native_object and(or) finalize_cb is nullptr.
    ///
    /// [`napi_object_expected`] If the param js_object is not an ArkTS Object.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurred in execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_wrap(
        env: napi_env,
        js_object: napi_value,
        native_object: *mut ::core::ffi::c_void,
        finalize_cb: napi_finalize,
        finalize_hint: *mut ::core::ffi::c_void,
        result: *mut napi_ref,
    ) -> napi_status;
    /// Retrieves a native instance that was previously wrapped in an ArkTS object using napi_wrap.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `js_object` - The ArkTS object.
    ///
    /// * `result` - Pointer to the wrapped native instance.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, js_object and(or) result is nullptr.
    ///
    /// [`napi_object_expected`] If the param js_object is not an ArkTS Object.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurred in execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_unwrap(
        env: napi_env,
        js_object: napi_value,
        result: *mut *mut ::core::ffi::c_void,
    ) -> napi_status;
    /// Retrieves a native instance that was previously wrapped in the ArkTS object js_object using napi_wrap
    /// and removes the wrapping.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `js_object` - The ArkTS object.
    ///
    /// * `result` - Pointer to the wrapped native instance.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, js_object and(or) result is nullptr.
    ///
    /// [`napi_object_expected`] If the param js_object is not an ArkTS Object.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurred in execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_remove_wrap(
        env: napi_env,
        js_object: napi_value,
        result: *mut *mut ::core::ffi::c_void,
    ) -> napi_status;
    /// Allocates a JS value with external data.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `data` - Allocates a JS value that references external data.
    ///
    /// * `finalize_cb` - Optional callback to call when the external value is being collected.
    ///
    /// * `finalize_hint` - Optional hint that can be passed to the finalize callback function during the garbage
    /// collection process.
    ///
    /// * `result` - A napi_value representing an external value.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env or result is nullptr.
    ///
    /// [`napi_pending_exception`] There is an uncaught exception occurred before(in) execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_external(
        env: napi_env,
        data: *mut ::core::ffi::c_void,
        finalize_cb: napi_finalize,
        finalize_hint: *mut ::core::ffi::c_void,
        result: *mut napi_value,
    ) -> napi_status;
    /// Obtains the external data pointer previously passed through napi_create_external().
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - JavaScript external value.
    ///
    /// * `result` - The data wrapped by the JavaScript external value.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, value or result is nullptr;
    ///
    /// [`napi_pending_exception`] There is an uncaught exception occurred before(in) execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_value_external(
        env: napi_env,
        value: napi_value,
        result: *mut *mut ::core::ffi::c_void,
    ) -> napi_status;
    /// Creates a reference for an object to extend its lifespan. The caller needs to manage the reference lifespan.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - The napi_value that is being referenced.
    ///
    /// * `initial_refcount` - The initial count for the new reference.
    ///
    /// * `result` - napi_ref pointing to the new reference.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, value or result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_reference(
        env: napi_env,
        value: napi_value,
        initial_refcount: u32,
        result: *mut napi_ref,
    ) -> napi_status;
    /// Deletes the reference passed in.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `ref` - The napi_ref to be deleted.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or ref is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_delete_reference(env: napi_env, ref_: napi_ref) -> napi_status;
    /// Increments the reference count for the reference passed in and returns the count.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `ref` - The napi_ref whose reference count will be incremented.
    ///
    /// * `result` - The new reference count.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or ref is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_reference_ref(env: napi_env, ref_: napi_ref, result: *mut u32) -> napi_status;
    /// Decrements the reference count for the reference passed in and returns the count.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `ref` - The napi_ref whose reference count will be decremented.
    ///
    /// * `result` - The new reference count.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or ref is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_reference_unref(env: napi_env, ref_: napi_ref, result: *mut u32) -> napi_status;
    /// Obtains the ArkTS Object associated with the reference.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `ref` - The napi_ref of the value being requested.
    ///
    /// * `result` - The napi_value referenced by the napi_ref.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, ref or result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_reference_value(
        env: napi_env,
        ref_: napi_ref,
        result: *mut napi_value,
    ) -> napi_status;
    /// Opens a scope.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `result` - napi_value representing the new scope.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_open_handle_scope(env: napi_env, result: *mut napi_handle_scope) -> napi_status;
    /// Closes the scope passed in. After the scope is closed, all references declared in it are closed.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `scope` - The scope to close.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or scope is nullptr.
    ///
    /// [`napi_handle_scope_mismatch`] If there is no scope still existed.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_close_handle_scope(env: napi_env, scope: napi_handle_scope) -> napi_status;
    /// Opens an escapable handle scope from which the declared values can be returned to the outer scope.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `result` - The new scope.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_open_escapable_handle_scope(
        env: napi_env,
        result: *mut napi_escapable_handle_scope,
    ) -> napi_status;
    /// Closes the escapable handle scope passed in.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `scope` - The scope to close.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or scope is nullptr.
    ///
    /// [`napi_handle_scope_mismatch`] If there is no scope still existed.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_close_escapable_handle_scope(
        env: napi_env,
        scope: napi_escapable_handle_scope,
    ) -> napi_status;
    /// Promotes the handle to the input ArkTS object so that it is valid for the lifespan of its outer scope.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `scope` - Current scope.
    ///
    /// * `escapee` - The ArkTS object to be escaped.
    ///
    /// * `result` - The handle to the escaped object in the outer scope.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, scope, escapee or result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_escape_handle(
        env: napi_env,
        scope: napi_escapable_handle_scope,
        escapee: napi_value,
        result: *mut napi_value,
    ) -> napi_status;
    /// Throws an ArkTS error.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `error` - The ArkTS error to be thrown.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or error is nullptr, or error is not an error object.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_throw(env: napi_env, error: napi_value) -> napi_status;
    /// Throws an ArkTS Error with text information.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `code` - Optional error code to set on the error.
    ///
    /// * `msg` - C string representing the text to be associated with the error.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or msg is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_throw_error(
        env: napi_env,
        code: *const ::core::ffi::c_char,
        msg: *const ::core::ffi::c_char,
    ) -> napi_status;
    /// Throws an ArkTS TypeError with text information.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `code` - Optional error code to set on the error.
    ///
    /// * `msg` - C string representing the text to be associated with the error.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or msg is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_throw_type_error(
        env: napi_env,
        code: *const ::core::ffi::c_char,
        msg: *const ::core::ffi::c_char,
    ) -> napi_status;
    /// Throws an ArkTS RangeError with text information.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `code` - Optional error code to set on the error.
    ///
    /// * `msg` - C string representing the text to be associated with the error.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or msg is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_throw_range_error(
        env: napi_env,
        code: *const ::core::ffi::c_char,
        msg: *const ::core::ffi::c_char,
    ) -> napi_status;
    /// Checks whether a 'napi_value' is an error object.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - The value to check
    ///
    /// * `result` - Boolean value that is set to true if the value represents an error object, false otherwise.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, value or result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_is_error(env: napi_env, value: napi_value, result: *mut bool) -> napi_status;
    /// Checks whether an exception occurs.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `result` - Boolean value that is true if there is a pending exception.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_is_exception_pending(env: napi_env, result: *mut bool) -> napi_status;
    /// Obtains and clears the latest exception.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `result` - The exception if there is a pending exception; otherwise return a null value.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_and_clear_last_exception(env: napi_env, result: *mut napi_value)
        -> napi_status;
    /// Checks if the ArkTS value is an ArkTS ArrayBuffer.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - The ArkTS value to check.
    ///
    /// * `result` - Whether the given ArkTS value is an ArkTS ArrayBuffer.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, value and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_is_arraybuffer(env: napi_env, value: napi_value, result: *mut bool) -> napi_status;
    /// Creates an ArkTS ArrayBuffer of the specified size.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `byte_length` - The length in bytes of the array buffer.
    ///
    /// * `data` - The byte buffer of the ArrayBuffer.
    ///
    /// * `result` - A napi_value representing an ArkTS ArrayBuffer.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, data and(or) result is nullptr.
    ///
    /// [`napi_pending_exception`] There is an uncaught exception occurred before(in) execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_arraybuffer(
        env: napi_env,
        byte_length: usize,
        data: *mut *mut ::core::ffi::c_void,
        result: *mut napi_value,
    ) -> napi_status;
    /// The underlying data that ArrayBuffer point to.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `external_data` - Allocates an ArkTS value that references external data.
    ///
    /// * `byte_length` - The length in bytes of the underlying buffer.
    ///
    /// * `finalize_cb` - Optional callback to call when the ArrayBuffer is being collected.
    ///
    /// * `finalize_hint` - Optional hint that can be passed to the finalize callback function during the garbage
    /// collection process.
    ///
    /// * `result` - A napi_value representing an ArkTS ArrayBuffer.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, external_data, finalize_cb and(or) result is nullptr.
    ///
    /// [`napi_pending_exception`] There is an uncaught exception occurred before(in) execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_external_arraybuffer(
        env: napi_env,
        external_data: *mut ::core::ffi::c_void,
        byte_length: usize,
        finalize_cb: napi_finalize,
        finalize_hint: *mut ::core::ffi::c_void,
        result: *mut napi_value,
    ) -> napi_status;
    /// Obtains the underlying data buffer of ArrayBuffer and its length.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `arraybuffer` - The napi_value representing the ArrayBuffer being queried.
    ///
    /// * `data` - The underlying data buffer of the ArrayBuffer.
    ///
    /// * `byte_length` - Length in bytes of the underlying data buffer.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, arraybuffer and(or) byte_length is nullptr.
    ///
    /// [`napi_arraybuffer_expected`] If the param is neither ArkTS TypedArray nor SendableArrayBuffer.
    ///
    /// [`napi_pending_exception`] There is an uncaught exception occurred before(in) execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_arraybuffer_info(
        env: napi_env,
        arraybuffer: napi_value,
        data: *mut *mut ::core::ffi::c_void,
        byte_length: *mut usize,
    ) -> napi_status;
    /// Checks if the ArkTS value is an ArkTS TypedArray.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - The ArkTS value to check.
    ///
    /// * `result` - Whether the given ArkTS value is an ArkTS TypedArray.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, value and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_is_typedarray(env: napi_env, value: napi_value, result: *mut bool) -> napi_status;
    /// Creates an ArkTS TypeArray from an existing ArrayBuffer.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `type` - The element datatype of the TypedArray.
    ///
    /// * `length` - Number of elements in the TypedArray.
    ///
    /// * `arraybuffer` - The underlying ArrayBuffer that supports the TypedArray.
    ///
    /// * `byte_offset` - The byte offset within the ArrayBuffer from which to start projecting the TypedArray.
    ///
    /// * `result` - A napi_value representing an ArkTS TypedArray.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, arraybuffer and(or) result is nullptr;
    ///
    /// If param type is not a valid napi_typedarray_type.
    ///
    /// [`napi_arraybuffer_expected`] If a non-arraybuffer ArkTS value passed in it.
    ///
    /// [`napi_pending_exception`] There is an uncaught exception occurred before(in) execution.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_typedarray(
        env: napi_env,
        type_: napi_typedarray_type,
        length: usize,
        arraybuffer: napi_value,
        byte_offset: usize,
        result: *mut napi_value,
    ) -> napi_status;
    /// Obtains properties of a TypedArray.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `typedarray` - The napi_value for the TypedArray whose properties are being checked.
    ///
    /// * `type` - The datatype of elements in the TypedArray.
    ///
    /// * `length` - The number of elements in the TypedArray.
    ///
    /// * `data` - The data buffer underlying the TypedArray adjusted by the byte_offset.
    ///
    /// * `arraybuffer` - The ArrayBuffer underlying the TypedArray.
    ///
    /// * `byte_offset` - The byte offset within the underlying arraybuffer
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env and(or) typedarray is nullptr;
    ///
    /// If the param typedarray is neither ArkTS TypedArray nor SendableTypedArray.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_typedarray_info(
        env: napi_env,
        typedarray: napi_value,
        type_: *mut napi_typedarray_type,
        length: *mut usize,
        data: *mut *mut ::core::ffi::c_void,
        arraybuffer: *mut napi_value,
        byte_offset: *mut usize,
    ) -> napi_status;
    /// Creates an ArkTS DataView from an existing ArrayBuffer.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `length` - Number of elements in the DataView.
    ///
    /// * `arraybuffer` - The underlying ArrayBuffer that supports the DataView.
    ///
    /// * `byte_offset` - The byte offset within the ArrayBuffer from which to start projecting the DataView.
    ///
    /// * `result` - A napi_value representing an ArkTS DataView.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, arraybuffer and(or) result is nullptr.
    ///
    /// [`napi_arraybuffer_expected`] If a non-arraybuffer ArkTS value passed in it.
    ///
    /// [`napi_pending_exception`] There is an uncaught exception occurred before(in) execution.
    ///
    /// If the sum of byte_length and length is greater than the byte length of
    ///
    /// the arraybuffer.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_dataview(
        env: napi_env,
        length: usize,
        arraybuffer: napi_value,
        byte_offset: usize,
        result: *mut napi_value,
    ) -> napi_status;
    /// Checks if the ArkTS value is an ArkTS DataView.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - The ArkTS value to check.
    ///
    /// * `result` - Whether the given ArkTS value is an ArkTS DataView.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, value and(or) result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_is_dataview(env: napi_env, value: napi_value, result: *mut bool) -> napi_status;
    /// Obtains properties of a DataView.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `dataview` - The napi_value for the DataView whose properties are being checked.
    ///
    /// * `bytelength` - The number of elements in the DataView.
    ///
    /// * `data` - The data buffer underlying the DataView.
    ///
    /// * `arraybuffer` - The ArrayBuffer underlying the DataView.
    ///
    /// * `byte_offset` - The byte offset within the underlying arraybuffer
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env and(or) dataview is nullptr;
    ///
    /// If non-dataview ArkTS value passed in.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_dataview_info(
        env: napi_env,
        dataview: napi_value,
        bytelength: *mut usize,
        data: *mut *mut ::core::ffi::c_void,
        arraybuffer: *mut napi_value,
        byte_offset: *mut usize,
    ) -> napi_status;
    pub fn napi_get_version(env: napi_env, result: *mut u32) -> napi_status;
    /// Creates a deferred object and an ArkTS promise.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `deferred` - The created deferred object which will be passed to 'napi_resolve_deferred()' or
    /// 'napi_reject_deferred()' to resolve or reject the promise.
    ///
    /// * `promise` - The ArkTS promise which is associated with the deferred object.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, deferred or resolution is nullptr.
    ///
    /// [`napi_pending_exception`] If an ArkTS exception existed when the function was called.
    ///
    /// [`napi_generic_failure`] If create promise failed.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_promise(
        env: napi_env,
        deferred: *mut napi_deferred,
        promise: *mut napi_value,
    ) -> napi_status;
    /// Resolves a promise by way of the deferred object associated.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `deferred` - The deferred object which is utilized to resolve the promise.
    ///
    /// * `resolution` - The resolution value used to resolve the promise.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, deferred or resolution is nullptr.
    ///
    /// [`napi_pending_exception`] If an ArkTS exception existed when the function was called.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_resolve_deferred(
        env: napi_env,
        deferred: napi_deferred,
        resolution: napi_value,
    ) -> napi_status;
    /// Rejects a promise by way of the deferred object associated.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `deferred` - The deferred object which is utilized to reject the promise.
    ///
    /// * `rejection` - The rejection value used to reject the promise.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, deferred or rejection is nullptr.
    ///
    /// [`napi_pending_exception`] If an ArkTS exception existed when the function was called.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_reject_deferred(
        env: napi_env,
        deferred: napi_deferred,
        rejection: napi_value,
    ) -> napi_status;
    /// Checks whether the given 'napi_value' is a promise object.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - The 'napi_value' to be checked.
    ///
    /// * `is_promise` - Boolean value that is set to true if the 'value' is a promise object, false otherwise.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, value or is_promise is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_is_promise(env: napi_env, value: napi_value, is_promise: *mut bool) -> napi_status;
    pub fn napi_run_script(
        env: napi_env,
        script: napi_value,
        result: *mut napi_value,
    ) -> napi_status;
    pub fn napi_adjust_external_memory(
        env: napi_env,
        change_in_bytes: i64,
        adjusted_value: *mut i64,
    ) -> napi_status;
    /// Creates an ArkTS 'Date' object from C double data
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `time` - ArkTS time value in milliseconds format since 01 January, 1970 UTC.
    ///
    /// * `result` - Created ArkTS data object.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or result is nullptr.
    ///
    /// [`napi_pending_exception`] If an ArkTS exception existed when the function was called.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_date(env: napi_env, time: f64, result: *mut napi_value) -> napi_status;
    /// Checks whether the given ArkTS value is a 'Date' object. You can use this API to check the type
    /// of the parameter passed from ArkTS.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - ArkTS data object.
    ///
    /// * `is_date` - Boolean value that is set to true if the 'value' is a 'Date' object, false otherwise.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, value or is_date is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_is_date(env: napi_env, value: napi_value, is_date: *mut bool) -> napi_status;
    /// Obtains the C equivalent of the given ArkTS 'Date' object.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - ArkTS data object.
    ///
    /// * `result` - C time value in milliseconds format since 01 January, 1970 UTC.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, value or result is nullptr.
    ///
    /// [`napi_pending_exception`] If an ArkTS exception existed when the function was called.
    ///
    /// [`napi_date_expected`] If the 'value' is not a 'Date' object.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_date_value(env: napi_env, value: napi_value, result: *mut f64) -> napi_status;
    /// Adds a 'napi_finalize' callback, which will be called when the ArkTS object is garbage-collected.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `js_object` - The ArkTS object value.
    ///
    /// * `native_object` - Native object to bind with the ArkTS object.
    ///
    /// * `finalize_cb` - Native callback that can be used to free the native object
    /// when the ArkTS object is garbage-collected.
    ///
    /// * `finalize_hint` - Optional contextual hint that is passed to the finalize callback.
    ///
    /// * `result` - Optional reference of the ArkTS object.
    ///
    ///
    /// # Returns
    ///
    /// * Return the function execution status.
    ///
    /// Available since API-level: 11
    #[cfg(feature = "api-11")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-11")))]
    pub fn napi_add_finalizer(
        env: napi_env,
        js_object: napi_value,
        native_object: *mut ::core::ffi::c_void,
        finalize_cb: napi_finalize,
        finalize_hint: *mut ::core::ffi::c_void,
        result: *mut napi_ref,
    ) -> napi_status;
    /// Creates an ArkTS BigInt from C int64 data.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - C int64 data.
    ///
    /// * `result` - Created ArkTS BigInt object from C int64 data.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_bigint_int64(
        env: napi_env,
        value: i64,
        result: *mut napi_value,
    ) -> napi_status;
    /// Creates an ArkTS BigInt from C int64 data.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - C int64 data.
    ///
    /// * `result` - Created ArkTS BigInt object from C int64 data.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_bigint_uint64(
        env: napi_env,
        value: u64,
        result: *mut napi_value,
    ) -> napi_status;
    /// Creates a single ArkTS BigInt from a C uint64 array.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `sign_bit` - Sign bit of the BigInt. If sign_bit is 0, the BigInt is positive, otherwise it is negative.
    ///
    /// * `word_count` - The size of the words array.
    ///
    /// * `words` - C uint64 array in little-endian 64-bit format.
    ///
    /// * `result` - Created ArkTS BigInt object from C int64 array.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, words or result is nullptr or word_count is larger than 2147483647.
    ///
    /// [`napi_pending_exception`] If an ArkTS exception existed when the function was called.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_bigint_words(
        env: napi_env,
        sign_bit: ::core::ffi::c_int,
        word_count: usize,
        words: *const u64,
        result: *mut napi_value,
    ) -> napi_status;
    /// Obtains a signed 64-bit integer from an ArkTS BigInt object.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - ArkTS BigInt object.
    ///
    /// * `result` - Pointer points to the location where store the C signed 64-bit integer value.
    ///
    /// * `lossless` - Indicates whether the conversion is lossless. If lossless is true, the conversion is lossless,
    /// false otherwise.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, value, result or lossless is nullptr or word_count is larger than
    ///
    /// 2147483647.
    ///
    /// [`napi_bigint_expected`] If the 'value' is not an ArkTS bigint object.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_value_bigint_int64(
        env: napi_env,
        value: napi_value,
        result: *mut i64,
        lossless: *mut bool,
    ) -> napi_status;
    /// Obtains an unsigned 64-bit integer from an ArkTS BigInt object.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - ArkTS BigInt object.
    ///
    /// * `result` - Pointer points to the location where store the C unsigned 64-bit integer value.
    ///
    /// * `lossless` - Indicates whether the conversion is lossless. If lossless is true, the conversion is lossless,
    /// false otherwise.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, value, result or lossless is nullptr or word_count is larger than
    ///
    /// 2147483647.
    ///
    /// [`napi_bigint_expected`] If the 'value' is not an ArkTS bigint object.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_value_bigint_uint64(
        env: napi_env,
        value: napi_value,
        result: *mut u64,
        lossless: *mut bool,
    ) -> napi_status;
    /// Obtains the underlying 64-bit unsigned (uint64) byte data from an ArkTS BigInt object.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - ArkTS BigInt object.
    ///
    /// * `sign_bit` - Sign bit of the BigInt. If sign_bit is 0, the BigInt is positive, otherwise it is negative.
    ///
    /// * `word_count` - The size of the words array.
    ///
    /// * `words` - C uint64 array in little-endian 64-bit format.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, value or word_count is nullptr or word_count is larger than 2147483647.
    ///
    /// [`napi_bigint_expected`] If the 'value' is not an ArkTS bigint object.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_value_bigint_words(
        env: napi_env,
        value: napi_value,
        sign_bit: *mut ::core::ffi::c_int,
        word_count: *mut usize,
        words: *mut u64,
    ) -> napi_status;
    /// Obtains the names of all properties of an ArkTS object.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `object` - ArkTS object.
    ///
    /// * `key_mode` - Key collection mode. If key_mode is napi_key_include_prototypes, the result includes properties on
    /// prototypes. If key_mode is napi_key_own_only, the result includes only properties directly on own
    /// object.
    ///
    /// * `key_filter` - Which properties to be collected.
    ///
    /// * `key_conversion` - Key conversion mode. If key_conversion is napi_key_keep_numbers, the numbered property keys
    /// will keep number type. If key_conversion is napi_key_numbers_to_strings, the numbered property
    /// keys will be convert to string type.
    ///
    /// * `result` - An array of ArkTS object that represent the property names of the object.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, object or result is nullptr;
    ///
    /// key_mode is not enumeration value of napi_key_collection_mode;
    ///
    /// key_conversion is not enumeration value of napi_key_conversion.
    ///
    /// [`napi_pending_exception`] If an ArkTS exception existed when the function was called.
    ///
    /// [`napi_object_expected`] If object is not object type and function type.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_all_property_names(
        env: napi_env,
        object: napi_value,
        key_mode: napi_key_collection_mode,
        key_filter: napi_key_filter,
        key_conversion: napi_key_conversion,
        result: *mut napi_value,
    ) -> napi_status;
    /// Associates data with the currently running environment.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `data` - Data item to bind with the 'env'.
    ///
    /// * `finalize_cb` - Optional native callback that will be triggered when 'env' is destroyed or this interface
    /// repeatedly calls.
    ///
    /// * `finalize_hint` - Optional contextual hint that is passed to the finalize callback.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    ///
    /// Available since API-level: 11
    #[cfg(feature = "api-11")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-11")))]
    pub fn napi_set_instance_data(
        env: napi_env,
        data: *mut ::core::ffi::c_void,
        finalize_cb: napi_finalize,
        finalize_hint: *mut ::core::ffi::c_void,
    ) -> napi_status;
    /// Retrieves the data that was previously associated with the currently running environment.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `data` - Data item is bound with the 'env'.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    ///
    /// Available since API-level: 11
    #[cfg(feature = "api-11")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-11")))]
    pub fn napi_get_instance_data(
        env: napi_env,
        data: *mut *mut ::core::ffi::c_void,
    ) -> napi_status;
    /// Detaches the underlying data from an 'ArrayBuffer' object. After the data is detached, you
    /// can operate the data in C/C++.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `arraybuffer` - ArkTS ArrayBuffer object.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or arraybuffer is nullptr, if 'arraybuffer' is not an ArrayBuffer object.
    ///
    /// [`napi_object_expected`] If the 'arraybuffer' is not an ArkTS object.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_detach_arraybuffer(env: napi_env, arraybuffer: napi_value) -> napi_status;
    /// Checks whether the given 'ArrayBuffer' has been detached.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - ArkTS ArrayBuffer object.
    ///
    /// * `result` - Boolean value that is set to true if the 'value' has been detached, false otherwise.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, value or result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_is_detached_arraybuffer(
        env: napi_env,
        value: napi_value,
        result: *mut bool,
    ) -> napi_status;
    pub fn napi_type_tag_object(
        env: napi_env,
        value: napi_value,
        type_tag: *const napi_type_tag,
    ) -> napi_status;
    pub fn napi_check_object_type_tag(
        env: napi_env,
        value: napi_value,
        type_tag: *const napi_type_tag,
        result: *mut bool,
    ) -> napi_status;
    /// Freezes an ArkTS object. Once an object is frozen, its properties are immutable.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `object` - The given ArkTS object.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or object is nullptr.
    ///
    /// [`napi_pending_exception`] If an ArkTS exception existed when the function was called.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_object_freeze(env: napi_env, object: napi_value) -> napi_status;
    /// Seals an ArkTS object. Once an object is sealed, its properties cannot be added or deleted, but property
    /// values can be modified.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `object` - The given ArkTS object.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or object is nullptr.
    ///
    /// [`napi_pending_exception`] If an ArkTS exception existed when the function was called.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_object_seal(env: napi_env, object: napi_value) -> napi_status;
    /// Registers a native module.
    ///
    /// # Arguments
    ///
    /// * `mod` - Native module of type 'napi_module' to be registered.
    ///
    /// Available since API-level: 10
    pub fn napi_module_register(mod_: *mut napi_module);
    /// Raises a fatal error to terminate the process immediately.
    /// # Arguments
    ///
    /// * `location` - Optional location for the error occurrence.
    ///
    /// * `location_len` - The byte length of the location, or NAPI_AUTO_LENGTH if it is terminated by a null character.
    ///
    /// * `message` - The message associated with the error.
    ///
    /// * `message_len` - The byte length of the message, or NAPI_AUTO_LENGTH if it is terminated by a null character.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_fatal_error(
        location: *const ::core::ffi::c_char,
        location_len: usize,
        message: *const ::core::ffi::c_char,
        message_len: usize,
    ) -> !;
    /// Creates an asynchronous context. The capabilities related to 'async_hook' are not supported currently.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `async_resource` - Object associated with the async work that will be passed to possible 'async_hook'.
    ///
    /// * `async_resource_name` - Identifier for the kind of resource that is being provided for diagnostic information
    /// exposed by the async_hooks API.
    ///
    /// * `result` - The initialized async context.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    ///
    /// Available since API-level: 11
    #[cfg(feature = "api-11")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-11")))]
    pub fn napi_async_init(
        env: napi_env,
        async_resource: napi_value,
        async_resource_name: napi_value,
        result: *mut napi_async_context,
    ) -> napi_status;
    /// Destroys the previously created asynchronous context. The capabilities related to 'async_hook' are not
    /// supported currently.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `async_context` - The async context to be destroyed.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    ///
    /// Available since API-level: 11
    #[cfg(feature = "api-11")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-11")))]
    pub fn napi_async_destroy(env: napi_env, async_context: napi_async_context) -> napi_status;
    /// Allows an ArkTS function to be called in the asynchronous context. The capabilities related to 'async_hook'
    /// are not supported currently.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `async_context` - The context environment for the async operation.
    ///
    /// * `recv` - The 'this' pointer of the function.
    ///
    /// * `func` - ArkTS function to be called.
    ///
    /// * `argc` - Size of the argument array which is passed to 'func'.
    ///
    /// * `argv` - Argument array.
    ///
    /// * `result` - Result returned by the ArkTS function.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, func and(or) recv is nullptr;
    ///
    /// If the param argc is greater than 0 but argv is nullptr.
    ///
    /// [`napi_object_expected`] If the param recv is not an ArkTS Object.
    ///
    /// [`napi_function_expected`] If the param func is not an ArkTS Function.
    ///
    /// [`napi_pending_exception`] There is an uncaught exception occurred before(in) execution.
    ///
    ///
    /// Available since API-level: 11
    #[cfg(feature = "api-11")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-11")))]
    pub fn napi_make_callback(
        env: napi_env,
        async_context: napi_async_context,
        recv: napi_value,
        func: napi_value,
        argc: usize,
        argv: *const napi_value,
        result: *mut napi_value,
    ) -> napi_status;
    /// Creates an ArkTS ArrayBuffer object of the specified size.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `length` - Bytes size of the underlying arraybuffer.
    ///
    /// * `data` - Raw pointer to the underlying arraybuffer.
    ///
    /// * `result` - Created ArkTS ArrayBuffer object.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, data or result is nullptr, or length is larger than 2097152,
    /// or length is less than zero.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_buffer(
        env: napi_env,
        length: usize,
        data: *mut *mut ::core::ffi::c_void,
        result: *mut napi_value,
    ) -> napi_status;
    /// Creates an ArkTS ArrayBuffer object of the specified size and initializes it with the given data.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.n
    ///
    /// * `length` - Bytes size of the given data.
    ///
    /// * `data` - Given data.
    ///
    /// * `finalize_cb` - Optional native callback that can be used to free the given data when the ArkTS ArrayBuffer
    /// object has been garbage-collected.
    ///
    /// * `finalize_hint` - Optional contextual hint that is passed to the finalize callback.
    ///
    /// * `result` - Created ArkTS ArrayBuffer object.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, data or result is nullptr, or length is larger than 2097152,
    /// or length is less than or equal to zero.
    ///
    /// [`napi_pending_exception`] If an ArkTS exception existed when the function was called.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_external_buffer(
        env: napi_env,
        length: usize,
        data: *mut ::core::ffi::c_void,
        finalize_cb: napi_finalize,
        finalize_hint: *mut ::core::ffi::c_void,
        result: *mut napi_value,
    ) -> napi_status;
    /// Creates an ArkTS ArrayBuffer object of the specified size and initializes it with the given data.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `length` - Bytes size of the given data.
    ///
    /// * `data` - Given data.
    ///
    /// * `result_data` - Raw pointer to the underlying arraybuffer.
    ///
    /// * `result` - Created ArkTS ArrayBuffer object.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, data or result is nullptr, or length is larger than 2097152,
    /// or length is less than or equal to zero.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_buffer_copy(
        env: napi_env,
        length: usize,
        data: *const ::core::ffi::c_void,
        result_data: *mut *mut ::core::ffi::c_void,
        result: *mut napi_value,
    ) -> napi_status;
    /// Checks whether the given ArkTS value is a 'ArrayBuffer' object.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - ArkTS ArrayBuffer object.
    ///
    /// * `result` - Boolean value that is set to true if the 'value' is a 'ArrayBuffer' object, false otherwise.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, value or result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_is_buffer(env: napi_env, value: napi_value, result: *mut bool) -> napi_status;
    /// Obtains the underlying data of 'ArrayBuffer' and its length.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - ArkTS ArrayBuffer object.
    ///
    /// * `data` - Raw pointer to the underlying arraybuffer.
    ///
    /// * `length` - Bytes size of the underlying arraybuffer.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, value or result is nullptr.
    ///
    /// [`napi_arraybuffer_expected`] If the 'value' is not an ArkTS array buffer object.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_buffer_info(
        env: napi_env,
        value: napi_value,
        data: *mut *mut ::core::ffi::c_void,
        length: *mut usize,
    ) -> napi_status;
    /// Allocate a work object that is used to execute logic asynchronously.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `async_resource` - Not supported, can be ignored by passing nullptr.
    ///
    /// * `async_resource_name` - Identifier for the kind of resource that is being provided for diagnostic information
    /// exposed by the HiTrace.
    ///
    /// * `execute` - The native function which should be called to execute the logic asynchronously. The given function
    /// is called from a worker pool thread and can execute in parallel with the main event loop thread.
    ///
    /// * `complete` - The native function which will be called when the asynchronous logic is completed or is cancelled.
    /// The given function is called from the main event loop thread.
    ///
    /// * `data` - User-provided data context. This will be passed back into the execute and complete functions.
    ///
    /// * `result` - The handle to the newly created async work.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, async_resource_name, execute, complete and(or) result is
    ///
    /// nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_async_work(
        env: napi_env,
        async_resource: napi_value,
        async_resource_name: napi_value,
        execute: napi_async_execute_callback,
        complete: napi_async_complete_callback,
        data: *mut ::core::ffi::c_void,
        result: *mut napi_async_work,
    ) -> napi_status;
    /// Free a previously allocated work object.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `work` - The handle returned by the call to napi_create_async_work.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env and(or) work is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_delete_async_work(env: napi_env, work: napi_async_work) -> napi_status;
    /// Requests that the previously allocated work be scheduled for execution. Once it returns successfully,
    /// this API must not be called again with the same napi_async_work item or the result will be undefined.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `work` - The handle returned by the call to napi_create_async_work.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env and(or) work is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_queue_async_work(env: napi_env, work: napi_async_work) -> napi_status;
    /// Cancels queued work if it has not yet been started. If it has already started executing, it cannot be
    /// cancelled. If successful, the complete callback will be invoked with a status value of napi_cancelled.
    /// The work should not be deleted before the complete callback invocation, even if it has been successfully
    /// cancelled.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `work` - The handle returned by the call to napi_create_async_work.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env and(or) work is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_cancel_async_work(env: napi_env, work: napi_async_work) -> napi_status;
    pub fn napi_get_node_version(
        env: napi_env,
        version: *mut *const napi_node_version,
    ) -> napi_status;
    /// Obtains the current libuv loop instance.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `loop` - Libuv event loop.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or loop is nullptr.
    ///
    /// [`napi_generic_failure`] If env is invalid.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_uv_event_loop(env: napi_env, loop_: *mut *mut uv_loop_s) -> napi_status;
    /// Throws UncaughtException to ArkTS.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `err` - Error object which is passed to 'UncaughtException'.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env and(or) err is nullptr;
    ///
    /// If the param err is not an ArkTS Error value.
    ///
    /// [`napi_pending_exception`] There is an uncaught exception occurred before execution.
    ///
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn napi_fatal_exception(env: napi_env, err: napi_value) -> napi_status;
    /// Registers a clean-up hook for releasing resources when the environment exits.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `fun` - Function pointer which will be triggered when environment is destroy.
    ///
    /// * `arg` - The argument is passed to the function pointer 'fun'.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    ///
    /// Available since API-level: 11
    #[cfg(feature = "api-11")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-11")))]
    pub fn napi_add_env_cleanup_hook(
        env: napi_env,
        fun: ::core::option::Option<unsafe extern "C" fn(arg: *mut ::core::ffi::c_void)>,
        arg: *mut ::core::ffi::c_void,
    ) -> napi_status;
    /// Unregisters the clean-up hook.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `fun` - Function pointer which will be triggered when environment is destroy.
    ///
    /// * `arg` - The argument is passed to the function pointer 'fun'.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    ///
    /// Available since API-level: 11
    #[cfg(feature = "api-11")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-11")))]
    pub fn napi_remove_env_cleanup_hook(
        env: napi_env,
        fun: ::core::option::Option<unsafe extern "C" fn(arg: *mut ::core::ffi::c_void)>,
        arg: *mut ::core::ffi::c_void,
    ) -> napi_status;
    /// Opens a callback scope. The capabilities related to 'async_hook' are not supported currently.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `resource_object` - The resource object to be passed to possible 'async_hook'.
    ///
    /// * `context` - The context environment for the async operation.
    ///
    /// * `result` - The generated callback scope.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    ///
    /// Available since API-level: 11
    #[cfg(feature = "api-11")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-11")))]
    pub fn napi_open_callback_scope(
        env: napi_env,
        resource_object: napi_value,
        context: napi_async_context,
        result: *mut napi_callback_scope,
    ) -> napi_status;
    /// Closes the callback scope. The capabilities related to 'async_hook' are not supported currently.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `scope` - The callback scope to be closed.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    ///
    /// Available since API-level: 11
    #[cfg(feature = "api-11")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-11")))]
    pub fn napi_close_callback_scope(env: napi_env, scope: napi_callback_scope) -> napi_status;
    /// Creates a thread-safe function.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `func` - ArkTS function to be called.
    ///
    /// * `async_resource` - An optional Object associated with the async work that will be passed to possible
    /// 'async_hooks'.
    ///
    /// * `async_resource_name` - An ArkTS string to provide an identifier for the kind of resource that is being
    /// provided for diagnostic information exposed by the `async_hooks` interface.
    ///
    /// * `max_queue_size` - Maximum size of the event queue in the thread-safe function.
    ///
    /// * `initial_thread_count` - Initial thread count of the thread-safe function.
    ///
    /// * `thread_finalize_data` - Data passed to the finalize callback.
    ///
    /// * `thread_finalize_cb` - Finalize callback function which will be triggered when the thread-safe function is
    /// released.
    ///
    /// * `context` - Optional data is passed to 'call_js_cb'.
    ///
    /// * `call_js_cb` - Callback function which will be triggered after 'napi_call_threadsafe_function()' is called.
    ///
    /// * `result` - The created thread-safe function.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, async_resource_name or result is nullptr; max_queue_size is less than 0;
    ///
    /// initial_thread_count is greater than 128 or less than 0; func and call_js_cb are
    ///
    /// nullptr at same time.
    ///
    /// [`napi_generic_failure`] If create thread-safe function failed.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_create_threadsafe_function(
        env: napi_env,
        func: napi_value,
        async_resource: napi_value,
        async_resource_name: napi_value,
        max_queue_size: usize,
        initial_thread_count: usize,
        thread_finalize_data: *mut ::core::ffi::c_void,
        thread_finalize_cb: napi_finalize,
        context: *mut ::core::ffi::c_void,
        call_js_cb: napi_threadsafe_function_call_js,
        result: *mut napi_threadsafe_function,
    ) -> napi_status;
    /// Obtains the context of a thread-safe function.
    /// # Arguments
    ///
    /// * `func` - The created thread-safe function.
    ///
    /// * `result` - Pointer pointer to the context of the thread-safe function.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If func or result is nullptr.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_get_threadsafe_function_context(
        func: napi_threadsafe_function,
        result: *mut *mut ::core::ffi::c_void,
    ) -> napi_status;
    /// Calls a thread-safe function.
    /// # Arguments
    ///
    /// * `func` - The created thread-safe function.
    ///
    /// * `data` - Data passed to the callback function 'call_js_cb' which is registered by calling
    /// 'napi_create_threadsafe_function()'.
    ///
    /// * `is_blocking` - If true, this function blocks until the event queue is not full. If false, return directly.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If func is nullptr.
    ///
    /// [`napi_queue_full`] If event queue is full.
    ///
    /// [`napi_closing`] If the thread-safe function is closing.
    ///
    /// [`napi_generic_failure`] If call thread-safe function failed.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_call_threadsafe_function(
        func: napi_threadsafe_function,
        data: *mut ::core::ffi::c_void,
        is_blocking: napi_threadsafe_function_call_mode,
    ) -> napi_status;
    /// Acquires a thread-safe function.
    /// # Arguments
    ///
    /// * `func` - The created thread-safe function.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If func is nullptr.
    ///
    /// [`napi_generic_failure`] If acquire thread-safe function failed.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_acquire_threadsafe_function(func: napi_threadsafe_function) -> napi_status;
    /// Releases a thread-safe function.
    /// # Arguments
    ///
    /// * `func` - The created thread-safe function.
    ///
    /// * `mode` - Value of mode can be either 'napi_tsfn_release' to indicate that no more calls should be made
    /// to the thread-safe function from current thread or 'napi_tsfn_abort' to indicate that the queue
    /// of the thread-safe function will be closed and 'napi_closing' will be return when calling
    /// 'napi_call_threadsafe_function()' under the circumstance.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If func is nullptr.
    ///
    /// [`napi_generic_failure`] If release thread-safe function failed.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_release_threadsafe_function(
        func: napi_threadsafe_function,
        mode: napi_threadsafe_function_release_mode,
    ) -> napi_status;
    /// Indicates that the event loop running on the main thread may exit before the thread-safe function
    /// is destroyed.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `func` - The created thread-safe function.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or func is nullptr.
    ///
    /// [`napi_generic_failure`] If unref thread-safe function failed.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_unref_threadsafe_function(
        env: napi_env,
        func: napi_threadsafe_function,
    ) -> napi_status;
    /// Indicates that the event loop running on the main thread should not exit until the thread-safe
    /// function is destroyed.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `func` - The created thread-safe function.
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or func is nullptr.
    ///
    /// [`napi_generic_failure`] If ref thread-safe function failed.
    ///
    ///
    /// Available since API-level: 10
    pub fn napi_ref_threadsafe_function(
        env: napi_env,
        func: napi_threadsafe_function,
    ) -> napi_status;
    /// Registers an asynchronous clean-up hook for releasing resources when the environment exits.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `hook` - The function pointer to call at environment teardown.
    ///
    /// * `arg` - The pointer to pass to `hook` when it gets called.
    ///
    /// * `remove_handle` - Optional handle that refers to the asynchronous cleanup.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    ///
    /// Available since API-level: 11
    #[cfg(feature = "api-11")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-11")))]
    pub fn napi_add_async_cleanup_hook(
        env: napi_env,
        hook: napi_async_cleanup_hook,
        arg: *mut ::core::ffi::c_void,
        remove_handle: *mut napi_async_cleanup_hook_handle,
    ) -> napi_status;
    /// Unregisters the asynchronous clean-up hook.
    ///
    /// # Arguments
    ///
    /// * `remove_handle` - Optional handle that refers to the asynchronous cleanup.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    ///
    /// Available since API-level: 11
    #[cfg(feature = "api-11")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-11")))]
    pub fn napi_remove_async_cleanup_hook(
        remove_handle: napi_async_cleanup_hook_handle,
    ) -> napi_status;
    /// Obtains the absolute path of the location, from which the addon is loaded.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `result` - The absolute path of the location of the loaded addon.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    ///
    /// Available since API-level: 11
    #[cfg(feature = "api-11")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-11")))]
    pub fn node_api_get_module_file_name(
        env: napi_env,
        result: *mut *const ::core::ffi::c_char,
    ) -> napi_status;
    pub fn napi_run_script_path(
        env: napi_env,
        path: *const ::core::ffi::c_char,
        result: *mut napi_value,
    ) -> napi_status;
    pub fn napi_queue_async_work_with_qos(
        env: napi_env,
        work: napi_async_work,
        qos: napi_qos_t,
    ) -> napi_status;
    /// Loads an .abc file as a module. This API returns the namespace of the module.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `path` - Path of the .abc file or name of the module to load.
    ///
    /// * `result` - Result of the module object.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    ///
    /// Available since API-level: 11
    #[cfg(feature = "api-11")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-11")))]
    pub fn napi_load_module(
        env: napi_env,
        path: *const ::core::ffi::c_char,
        result: *mut napi_value,
    ) -> napi_status;
    /// Create ArkTS Object with initial properties given by descriptors, note that property key must be String, and
    /// must can not convert to element_index, also all keys must not duplicate.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `result` - The created ArkTS object.
    ///
    /// * `property_count` - Number of the property descriptors.
    ///
    /// * `properties` - Array of property descriptors which are expected to be applied to the ArkTS object.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    ///
    /// Available since API-level: 11
    #[cfg(feature = "api-11")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-11")))]
    pub fn napi_create_object_with_properties(
        env: napi_env,
        result: *mut napi_value,
        property_count: usize,
        properties: *const napi_property_descriptor,
    ) -> napi_status;
    /// Create ArkTS Object with initial properties given by keys and values, note that property key must be String,
    /// and must can not convert to element_index, also all keys must not duplicate.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `result` - The absolute path of the location of the loaded addon.
    ///
    /// * `property_count` - Number of the propertied which needs to be applied on the ArkTS object.
    ///
    /// * `keys` - Array of the keys of the properties.
    ///
    /// * `values` - Array of the values of the properties.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    ///
    /// Available since API-level: 11
    #[cfg(feature = "api-11")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-11")))]
    pub fn napi_create_object_with_named_properties(
        env: napi_env,
        result: *mut napi_value,
        property_count: usize,
        keys: *mut *const ::core::ffi::c_char,
        values: *const napi_value,
    ) -> napi_status;
    /// This API sets native properties to a object and converts this ArkTS object to native binding object.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `js_object` - The ArkTS value to coerce.
    ///
    /// * `detach_cb` - Native callback that can be used to detach the ArkTS object and the native object.
    ///
    /// * `attach_cb` - Native callback that can be used to bind the ArkTS object and the native object.
    ///
    /// * `native_object` - User-provided native instance to pass to thr detach callback and attach callback.
    ///
    /// * `hint` - Optional hint to pass to the detach callback and attach callback.
    ///
    ///
    /// # Returns
    ///
    /// * Return the function execution status.
    ///
    /// Available since API-level: 11
    #[cfg(feature = "api-11")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-11")))]
    pub fn napi_coerce_to_native_binding_object(
        env: napi_env,
        js_object: napi_value,
        detach_cb: napi_native_binding_detach_callback,
        attach_cb: napi_native_binding_attach_callback,
        native_object: *mut ::core::ffi::c_void,
        hint: *mut ::core::ffi::c_void,
    ) -> napi_status;
    /// The module is loaded through the NAPI. By default, the default object is exported from the module.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `path` - Path name of the module to be loaded, like
    /// * `module_info` - Path names of bundle and module, like com.example.application/entry.
    ///
    /// * `result` - Result of loading a module, which is an exported object of the module.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn napi_load_module_with_info(
        env: napi_env,
        path: *const ::core::ffi::c_char,
        module_info: *const ::core::ffi::c_char,
        result: *mut napi_value,
    ) -> napi_status;
    /// Create the ark runtime.
    ///
    /// # Arguments
    ///
    /// * `env` - Indicates the ark runtime environment.
    ///
    ///
    /// # Returns
    ///
    /// * Return the function execution status.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn napi_create_ark_runtime(env: *mut napi_env) -> napi_status;
    /// Destroy the ark runtime.
    ///
    /// # Arguments
    ///
    /// * `env` - Indicates the ark runtime environment.
    ///
    ///
    /// # Returns
    ///
    /// * Return the function execution status.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn napi_destroy_ark_runtime(env: *mut napi_env) -> napi_status;
    /// Defines a sendable class.
    ///
    /// # Arguments
    ///
    /// * `env` - The environment that the API is invoked under.
    ///
    /// * `utf8name` - Name of the ArkTS constructor function.
    ///
    /// * `length` - The length of the utf8name in bytes, or NAPI_AUTO_LENGTH if it is null-terminated.
    ///
    /// * `constructor` - Callback function that handles constructing instances of the class.
    ///
    /// * `data` - Optional data to be passed to the constructor callback as the data property of the callback info.
    ///
    /// * `property_count` - Number of items in the properties array argument.
    ///
    /// * `properties` - Array of property descriptors describing static and instance data properties, accessors, and
    /// methods on the class. See napi_property_descriptor.
    ///
    /// * `parent` - A napi_value representing the Superclass.
    ///
    /// * `result` - A napi_value representing the constructor function for the class.
    ///
    ///
    /// # Returns
    ///
    /// * Return the function execution status.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn napi_define_sendable_class(
        env: napi_env,
        utf8name: *const ::core::ffi::c_char,
        length: usize,
        constructor: napi_callback,
        data: *mut ::core::ffi::c_void,
        property_count: usize,
        properties: *const napi_property_descriptor,
        parent: napi_value,
        result: *mut napi_value,
    ) -> napi_status;
    /// Queries a napi_value to check if it is sendable.
    ///
    /// # Arguments
    ///
    /// * `env` - The environment that the API is invoked under.
    ///
    /// * `value` - The napi_value to be checked.
    ///
    /// * `result` - Boolean value that is set to true if napi_value is sendable, false otherwise.
    ///
    ///
    /// # Returns
    ///
    /// * Return the function execution status.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn napi_is_sendable(env: napi_env, value: napi_value, result: *mut bool) -> napi_status;
    /// Defines a sendable object.
    ///
    /// # Arguments
    ///
    /// * `env` - The environment that the API is invoked under.
    ///
    /// * `property_count` - The count of object properties.
    ///
    /// * `properties` - Object properties.
    ///
    /// * `result` - The created sendable object.
    ///
    ///
    /// # Returns
    ///
    /// * Return the function execution status.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn napi_create_sendable_object_with_properties(
        env: napi_env,
        property_count: usize,
        properties: *const napi_property_descriptor,
        result: *mut napi_value,
    ) -> napi_status;
    /// Wraps a native instance in an ArkTS object.
    ///
    /// # Arguments
    ///
    /// * `env` - The environment that the API is invoked under.
    ///
    /// * `js_object` - The ArkTS object that will be the wrapper for the native object.
    ///
    /// * `native_object` - The native instance that will be wrapped in the ArkTS object.
    ///
    /// * `finalize_cb` - Optional native callback that can be used to free the native instance when the ArkTS object
    /// has been garbage-collected.
    ///
    /// * `finalize_hint` - Optional contextual hint that is passed to the finalize callback.
    ///
    ///
    /// # Returns
    ///
    /// * Return the function execution status.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn napi_wrap_sendable(
        env: napi_env,
        js_object: napi_value,
        native_object: *mut ::core::ffi::c_void,
        finalize_cb: napi_finalize,
        finalize_hint: *mut ::core::ffi::c_void,
    ) -> napi_status;
    /// Wraps a native instance in an ArkTS object.
    ///
    /// # Arguments
    ///
    /// * `env` - The environment that the API is invoked under.
    ///
    /// * `js_object` - The ArkTS object that will be the wrapper for the native object.
    ///
    /// * `native_object` - The native instance that will be wrapped in the ArkTS object.
    ///
    /// * `finalize_cb` - Optional native callback that can be used to free the native instance when the ArkTS object
    /// has been garbage-collected.
    ///
    /// * `finalize_hint` - Optional contextual hint that is passed to the finalize callback.
    ///
    /// * `native_binding_size` - The size of native binding.
    ///
    ///
    /// # Returns
    ///
    /// * Return the function execution status.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn napi_wrap_sendable_with_size(
        env: napi_env,
        js_object: napi_value,
        native_object: *mut ::core::ffi::c_void,
        finalize_cb: napi_finalize,
        finalize_hint: *mut ::core::ffi::c_void,
        native_binding_size: usize,
    ) -> napi_status;
    /// Retrieves a native instance that was previously wrapped in an ArkTS object.
    ///
    /// # Arguments
    ///
    /// * `env` - The environment that the API is invoked under.
    ///
    /// * `js_object` - The object associated with the native instance.
    ///
    /// * `result` - Pointer to the wrapped native instance.
    ///
    ///
    /// # Returns
    ///
    /// * Return the function execution status.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn napi_unwrap_sendable(
        env: napi_env,
        js_object: napi_value,
        result: *mut *mut ::core::ffi::c_void,
    ) -> napi_status;
    /// Retrieves a native instance that was previously wrapped in an ArkTS object and removes the wrapping.
    ///
    /// # Arguments
    ///
    /// * `env` - The environment that the API is invoked under.
    ///
    /// * `js_object` - The object associated with the native instance.
    ///
    /// * `result` - Pointer to the wrapped native instance.
    ///
    ///
    /// # Returns
    ///
    /// * Return the function execution status.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn napi_remove_wrap_sendable(
        env: napi_env,
        js_object: napi_value,
        result: *mut *mut ::core::ffi::c_void,
    ) -> napi_status;
    /// Create a sendable array.
    ///
    /// # Arguments
    ///
    /// * `env` - The environment that the API is invoked under.
    ///
    /// * `result` - A napi_value representing a sendable array.
    ///
    ///
    /// # Returns
    ///
    /// * Return the function execution status.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn napi_create_sendable_array(env: napi_env, result: *mut napi_value) -> napi_status;
    /// Create a sendable array with length.
    ///
    /// # Arguments
    ///
    /// * `env` - The environment that the API is invoked under.
    ///
    /// * `length` - The initial length of the sendable array.
    ///
    /// * `result` - A napi_value representing a sendable array.
    ///
    ///
    /// # Returns
    ///
    /// * Return the function execution status.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn napi_create_sendable_array_with_length(
        env: napi_env,
        length: usize,
        result: *mut napi_value,
    ) -> napi_status;
    /// Create a sendable arraybuffer.
    ///
    /// # Arguments
    ///
    /// * `env` - The environment that the API is invoked under.
    ///
    /// * `byte_length` - The length in bytes of the sendable arraybuffer to create.
    ///
    /// * `data` - Pointer to the underlying byte buffer of the sendable arraybuffer.
    ///
    /// * `result` - A napi_value representing a sendable arraybuffer.
    ///
    ///
    /// # Returns
    ///
    /// * Return the function execution status.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn napi_create_sendable_arraybuffer(
        env: napi_env,
        byte_length: usize,
        data: *mut *mut ::core::ffi::c_void,
        result: *mut napi_value,
    ) -> napi_status;
    /// Create a sendable typedarray.
    ///
    /// # Arguments
    ///
    /// * `env` - The environment that the API is invoked under.
    ///
    /// * `type` - Scalar datatype of the elements within the sendable typedarray.
    ///
    /// * `length` - Number of elements in the typedarray.
    ///
    /// * `arraybuffer` - Sendable arraybuffer underlying the sendable typedarray.
    ///
    /// * `byte_offset` - The byte offset within the sendable arraybuffer from which to start projecting the
    /// sendable typedarray.
    ///
    /// * `result` - A napi_value representing a sendable typedarray.
    ///
    ///
    /// # Returns
    ///
    /// * Return the function execution status.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn napi_create_sendable_typedarray(
        env: napi_env,
        type_: napi_typedarray_type,
        length: usize,
        arraybuffer: napi_value,
        byte_offset: usize,
        result: *mut napi_value,
    ) -> napi_status;
    /// Run the event loop by the given env and running mode in current thread.
    ///
    /// Support to run the native event loop in an asynchronous native thread with the specified running mode.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `mode` - Indicates the running mode of the native event loop.
    ///
    ///
    /// # Returns
    ///
    /// * Return the function execution status.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn napi_run_event_loop(env: napi_env, mode: napi_event_mode) -> napi_status;
    /// Stop the event loop in current thread.
    ///
    /// Support to stop the running event loop in current native thread.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    ///
    /// # Returns
    ///
    /// * Return the function execution status.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn napi_stop_event_loop(env: napi_env) -> napi_status;
    /// Serialize an ArkTS object.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `object` - The ArkTS object to serialize.
    ///
    /// * `transfer_list` - List of data to transfer in transfer mode.
    ///
    /// * `clone_list` - List of Sendable data to transfer in clone mode.
    ///
    /// * `result` - Serialization result of the ArkTS object.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn napi_serialize(
        env: napi_env,
        object: napi_value,
        transfer_list: napi_value,
        clone_list: napi_value,
        result: *mut *mut ::core::ffi::c_void,
    ) -> napi_status;
    /// Restore serialization data to an ArkTS object.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `buffer` - Data to deserialize.
    ///
    /// * `object` - ArkTS object obtained by deserialization.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn napi_deserialize(
        env: napi_env,
        buffer: *mut ::core::ffi::c_void,
        object: *mut napi_value,
    ) -> napi_status;
    /// Delete serialization data.
    ///
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `buffer` - Data to delete.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn napi_delete_serialization_data(
        env: napi_env,
        buffer: *mut ::core::ffi::c_void,
    ) -> napi_status;
    /// Dispatch a task with specified priority from a native thread to an ArkTS thread, the task will execute
    /// the given thread safe function.
    ///
    /// # Arguments
    ///
    /// * `func` - Indicates the thread safe function.
    ///
    /// * `data` - Indicates the data anticipated to be transferred to the ArkTS thread.
    ///
    /// * `priority` - Indicates the priority of the task dispatched.
    ///
    /// * `isTail` - Indicates the way of the task dispatched into the native event queue. When "isTail" is true,
    /// the task will be dispatched to the tail of the native event queue. Conversely, when "isTail" is
    /// false, the tasks will be dispatched to the head of the native event queue.
    ///
    ///
    /// # Returns
    ///
    /// * Return the function execution status.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn napi_call_threadsafe_function_with_priority(
        func: napi_threadsafe_function,
        data: *mut ::core::ffi::c_void,
        priority: napi_task_priority,
        isTail: bool,
    ) -> napi_status;
    /// Wraps a native instance in an ArkTS object.
    /// # Arguments
    ///
    /// * `env` - The environment that the API is invoked under.
    ///
    /// * `js_object` - The ArkTS object that will be the wrapper for the native object.
    ///
    /// * `native_object` - The native instance that will be wrapped in the ArkTS object.
    ///
    /// * `finalize_cb` - Optional native callback that can be used to free the native instance when the ArkTS object
    /// has been garbage-collected.
    ///
    /// * `async_finalizer` - A boolean value to determine that finalize_cb execute async or not.
    ///
    /// * `finalize_hint` - Optional contextual hint that is passed to the finalize callback.
    ///
    /// * `native_binding_size` - The size of native binding.
    ///
    /// * `result` - Optional reference to the wrapped object.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, js_object or native_object is nullptr.
    ///
    /// [`napi_object_expected`] If the param js_object is not an ArkTS Object or Function.
    ///
    /// [`napi_pending_exception`] There is an uncaught exception occurred before(in) execution.
    ///
    ///
    /// Available since API-level: 18
    #[cfg(feature = "api-18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-18")))]
    pub fn napi_wrap_enhance(
        env: napi_env,
        js_object: napi_value,
        native_object: *mut ::core::ffi::c_void,
        finalize_cb: napi_finalize,
        async_finalizer: bool,
        finalize_hint: *mut ::core::ffi::c_void,
        native_binding_size: usize,
        result: *mut napi_ref,
    ) -> napi_status;
    /// To create a new virtual machine context.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `newEnv` - New generated virtual machine context which is expected to be used later.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env is nullptr.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurs in execution.
    ///
    ///
    /// Available since API-level: 20
    #[cfg(feature = "api-20")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-20")))]
    pub fn napi_create_ark_context(env: napi_env, newEnv: *mut napi_env) -> napi_status;
    /// To switch a virtual machine context which is expected to be used later.
    /// # Arguments
    ///
    /// * `env` - Designated Virtual machine context which is expected to be used as the current virtual machine context.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env is nullptr.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurs in execution.
    ///
    ///
    /// Available since API-level: 20
    #[cfg(feature = "api-20")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-20")))]
    pub fn napi_switch_ark_context(env: napi_env) -> napi_status;
    /// To destroy a virtual machine context which will not be used again.
    /// # Arguments
    ///
    /// * `env` - Virtual machine context expected to be destroyed.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env is nullptr.
    ///
    /// [`napi_pending_exception`] If have uncaught exception, or exception occurs in execution.
    ///
    ///
    /// Available since API-level: 20
    #[cfg(feature = "api-20")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-20")))]
    pub fn napi_destroy_ark_context(env: napi_env) -> napi_status;
    /// To open a critical scope.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `scope` - A critical scope of type of napi_critical_scope is generated.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param scope is nullptr.
    ///
    ///
    /// Available since API-level: 21
    #[cfg(feature = "api-21")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-21")))]
    pub fn napi_open_critical_scope(env: napi_env, scope: *mut napi_critical_scope) -> napi_status;
    /// To close a critical scope.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `scope` - A critical scope to be closed.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param scope is nullptr.
    ///
    ///
    /// Available since API-level: 21
    #[cfg(feature = "api-21")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-21")))]
    pub fn napi_close_critical_scope(env: napi_env, scope: napi_critical_scope) -> napi_status;
    /// To obtain a ArkTS string buffer cache within the critical scope.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - An ArkTS string object which need be encoded with UTF16 format.
    ///
    /// * `buffer` - String buffer cache of the ArkTS string object value.
    ///
    /// * `length` - Length size of the string buffer cache which needs to be obtained.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If the param env, value, buffer and length is nullptr.
    ///
    ///
    /// Available since API-level: 21
    #[cfg(feature = "api-21")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-21")))]
    pub fn napi_get_buffer_string_utf16_in_critical_scope(
        env: napi_env,
        value: napi_value,
        buffer: *mut *const char16_t,
        length: *mut usize,
    ) -> napi_status;
    /// Creates a strong reference for an ArkTS object to extend its lifespan. The caller needs to manage the
    /// reference lifespan.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `value` - The napi_value that is being referenced.
    ///
    /// * `result` - napi_strong_ref pointing to the new strong reference.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, value or result is nullptr.
    ///
    ///
    /// Available since API-level: 21
    #[cfg(feature = "api-21")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-21")))]
    pub fn napi_create_strong_reference(
        env: napi_env,
        value: napi_value,
        result: *mut napi_strong_ref,
    ) -> napi_status;
    /// Deletes the strong reference passed in.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `ref` - The napi_strong_ref to be deleted.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env or ref is nullptr.
    ///
    ///
    /// Available since API-level: 21
    #[cfg(feature = "api-21")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-21")))]
    pub fn napi_delete_strong_reference(env: napi_env, ref_: napi_strong_ref) -> napi_status;
    /// Obtains the ArkTS Object associated with the strong reference.
    /// # Arguments
    ///
    /// * `env` - Current running virtual machine context.
    ///
    /// * `ref` - The napi_strong_ref of the value being requested.
    ///
    /// * `result` - The napi_value referenced by the napi_strong_ref.
    ///
    ///
    /// # Returns
    ///
    /// * Returns the function execution status.
    /// [`napi_ok`] If the function executed successfully.
    ///
    /// [`napi_invalid_arg`] If env, ref or result is nullptr.
    ///
    ///
    /// Available since API-level: 21
    #[cfg(feature = "api-21")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-21")))]
    pub fn napi_get_strong_reference_value(
        env: napi_env,
        ref_: napi_strong_ref,
        result: *mut napi_value,
    ) -> napi_status;
}