dear-implot-sys 0.11.0

Low-level FFI bindings for ImPlot via cimplot (C API)
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
//This file is automatically generated by generator.lua from https://github.com/cimgui/cimplot
//based on implot.h file version 1.0 from implot https://github.com/epezent/implot
//with implot_internal.h api

#include "./implot/implot.h"
#include "./implot/implot_internal.h"
#include "cimplot.h"

//ImPlotPoint getters manually wrapped for taking getters modifying ImPlotPoint*

ImPlotPoint_getter getter_funcX;
ImPlotPoint_getter getter_funcX2;

ImPlotPoint Wrapper(int idx, void* data)
{
	ImPlotPoint pp;
	getter_funcX(data, idx, reinterpret_cast<ImPlotPoint_c*>(&pp));
	return pp;
}

ImPlotPoint Wrapper2(int idx, void* data)
{
	ImPlotPoint pp;
	getter_funcX2(data, idx, reinterpret_cast<ImPlotPoint_c*>(&pp));
	return pp;
}

static inline ImPlotAxis ConvertToCPP_ImPlotAxis(const ImPlotAxis_c& src)
{
    ImPlotAxis dest;
    dest.ID = src.ID;
    dest.Flags = src.Flags;
    dest.PreviousFlags = src.PreviousFlags;
    dest.Range.Min = src.Range.Min;
    dest.Range.Max = src.Range.Max;
    dest.RangeCond = src.RangeCond;
    dest.Scale = src.Scale;
    dest.FitExtents.Min = src.FitExtents.Min;
    dest.FitExtents.Max = src.FitExtents.Max;
    dest.OrthoAxis = reinterpret_cast<ImPlotAxis*>(src.OrthoAxis);
    dest.ConstraintRange.Min = src.ConstraintRange.Min;
    dest.ConstraintRange.Max = src.ConstraintRange.Max;
    dest.ConstraintZoom.Min = src.ConstraintZoom.Min;
    dest.ConstraintZoom.Max = src.ConstraintZoom.Max;
    dest.Ticker = src.Ticker;
    dest.Formatter = src.Formatter;
    dest.FormatterData = src.FormatterData;
    dest.FormatSpec[16] = src.FormatSpec[16];
    dest.Locator = src.Locator;
    dest.LinkedMin = src.LinkedMin;
    dest.LinkedMax = src.LinkedMax;
    dest.PickerLevel = src.PickerLevel;
    dest.PickerTimeMin.S = src.PickerTimeMin.S;
    dest.PickerTimeMin.Us = src.PickerTimeMin.Us;
    dest.PickerTimeMax.S = src.PickerTimeMax.S;
    dest.PickerTimeMax.Us = src.PickerTimeMax.Us;
    dest.TransformForward = src.TransformForward;
    dest.TransformInverse = src.TransformInverse;
    dest.TransformData = src.TransformData;
    dest.PixelMin = src.PixelMin;
    dest.PixelMax = src.PixelMax;
    dest.ScaleMin = src.ScaleMin;
    dest.ScaleMax = src.ScaleMax;
    dest.ScaleToPixel = src.ScaleToPixel;
    dest.Datum1 = src.Datum1;
    dest.Datum2 = src.Datum2;
    dest.HoverRect.Min.x = src.HoverRect.Min.x;
    dest.HoverRect.Min.y = src.HoverRect.Min.y;
    dest.HoverRect.Max.x = src.HoverRect.Max.x;
    dest.HoverRect.Max.y = src.HoverRect.Max.y;
    dest.LabelOffset = src.LabelOffset;
    dest.ColorMaj = src.ColorMaj;
    dest.ColorMin = src.ColorMin;
    dest.ColorTick = src.ColorTick;
    dest.ColorTxt = src.ColorTxt;
    dest.ColorBg = src.ColorBg;
    dest.ColorHov = src.ColorHov;
    dest.ColorAct = src.ColorAct;
    dest.ColorHiLi = src.ColorHiLi;
    dest.Enabled = src.Enabled;
    dest.Vertical = src.Vertical;
    dest.FitThisFrame = src.FitThisFrame;
    dest.HasRange = src.HasRange;
    dest.HasFormatSpec = src.HasFormatSpec;
    dest.ShowDefaultTicks = src.ShowDefaultTicks;
    dest.Hovered = src.Hovered;
    dest.Held = src.Held;
    return dest;
}
static inline ImPlotAxis_c ConvertFromCPP_ImPlotAxis(const ImPlotAxis& src)
{
    ImPlotAxis_c dest;
    dest.ID = src.ID;
    dest.Flags = src.Flags;
    dest.PreviousFlags = src.PreviousFlags;
    dest.Range.Min = src.Range.Min;
    dest.Range.Max = src.Range.Max;
    dest.RangeCond = src.RangeCond;
    dest.Scale = src.Scale;
    dest.FitExtents.Min = src.FitExtents.Min;
    dest.FitExtents.Max = src.FitExtents.Max;
    dest.OrthoAxis = reinterpret_cast<ImPlotAxis_c*>(src.OrthoAxis);
    dest.ConstraintRange.Min = src.ConstraintRange.Min;
    dest.ConstraintRange.Max = src.ConstraintRange.Max;
    dest.ConstraintZoom.Min = src.ConstraintZoom.Min;
    dest.ConstraintZoom.Max = src.ConstraintZoom.Max;
    dest.Ticker = src.Ticker;
    dest.Formatter = src.Formatter;
    dest.FormatterData = src.FormatterData;
    dest.FormatSpec[16] = src.FormatSpec[16];
    dest.Locator = src.Locator;
    dest.LinkedMin = src.LinkedMin;
    dest.LinkedMax = src.LinkedMax;
    dest.PickerLevel = src.PickerLevel;
    dest.PickerTimeMin.S = src.PickerTimeMin.S;
    dest.PickerTimeMin.Us = src.PickerTimeMin.Us;
    dest.PickerTimeMax.S = src.PickerTimeMax.S;
    dest.PickerTimeMax.Us = src.PickerTimeMax.Us;
    dest.TransformForward = src.TransformForward;
    dest.TransformInverse = src.TransformInverse;
    dest.TransformData = src.TransformData;
    dest.PixelMin = src.PixelMin;
    dest.PixelMax = src.PixelMax;
    dest.ScaleMin = src.ScaleMin;
    dest.ScaleMax = src.ScaleMax;
    dest.ScaleToPixel = src.ScaleToPixel;
    dest.Datum1 = src.Datum1;
    dest.Datum2 = src.Datum2;
    dest.HoverRect.Min.x = src.HoverRect.Min.x;
    dest.HoverRect.Min.y = src.HoverRect.Min.y;
    dest.HoverRect.Max.x = src.HoverRect.Max.x;
    dest.HoverRect.Max.y = src.HoverRect.Max.y;
    dest.LabelOffset = src.LabelOffset;
    dest.ColorMaj = src.ColorMaj;
    dest.ColorMin = src.ColorMin;
    dest.ColorTick = src.ColorTick;
    dest.ColorTxt = src.ColorTxt;
    dest.ColorBg = src.ColorBg;
    dest.ColorHov = src.ColorHov;
    dest.ColorAct = src.ColorAct;
    dest.ColorHiLi = src.ColorHiLi;
    dest.Enabled = src.Enabled;
    dest.Vertical = src.Vertical;
    dest.FitThisFrame = src.FitThisFrame;
    dest.HasRange = src.HasRange;
    dest.HasFormatSpec = src.HasFormatSpec;
    dest.ShowDefaultTicks = src.ShowDefaultTicks;
    dest.Hovered = src.Hovered;
    dest.Held = src.Held;
    return dest;
}
static inline ImPlotDateTimeSpec ConvertToCPP_ImPlotDateTimeSpec(const ImPlotDateTimeSpec_c& src)
{
    ImPlotDateTimeSpec dest;
    dest.Date = src.Date;
    dest.Time = src.Time;
    dest.UseISO8601 = src.UseISO8601;
    dest.Use24HourClock = src.Use24HourClock;
    return dest;
}
static inline ImPlotDateTimeSpec_c ConvertFromCPP_ImPlotDateTimeSpec(const ImPlotDateTimeSpec& src)
{
    ImPlotDateTimeSpec_c dest;
    dest.Date = src.Date;
    dest.Time = src.Time;
    dest.UseISO8601 = src.UseISO8601;
    dest.Use24HourClock = src.Use24HourClock;
    return dest;
}
static inline ImPlotPoint ConvertToCPP_ImPlotPoint(const ImPlotPoint_c& src)
{
    ImPlotPoint dest;
    dest.x = src.x;
    dest.y = src.y;
    return dest;
}
static inline ImPlotPoint_c ConvertFromCPP_ImPlotPoint(const ImPlotPoint& src)
{
    ImPlotPoint_c dest;
    dest.x = src.x;
    dest.y = src.y;
    return dest;
}
static inline ImPlotRange ConvertToCPP_ImPlotRange(const ImPlotRange_c& src)
{
    ImPlotRange dest;
    dest.Min = src.Min;
    dest.Max = src.Max;
    return dest;
}
static inline ImPlotRange_c ConvertFromCPP_ImPlotRange(const ImPlotRange& src)
{
    ImPlotRange_c dest;
    dest.Min = src.Min;
    dest.Max = src.Max;
    return dest;
}
static inline ImPlotRect ConvertToCPP_ImPlotRect(const ImPlotRect_c& src)
{
    ImPlotRect dest;
    dest.X.Min = src.X.Min;
    dest.X.Max = src.X.Max;
    dest.Y.Min = src.Y.Min;
    dest.Y.Max = src.Y.Max;
    return dest;
}
static inline ImPlotRect_c ConvertFromCPP_ImPlotRect(const ImPlotRect& src)
{
    ImPlotRect_c dest;
    dest.X.Min = src.X.Min;
    dest.X.Max = src.X.Max;
    dest.Y.Min = src.Y.Min;
    dest.Y.Max = src.Y.Max;
    return dest;
}
static inline ImPlotSpec ConvertToCPP_ImPlotSpec(const ImPlotSpec_c& src)
{
    ImPlotSpec dest;
    dest.LineColor.x = src.LineColor.x;
    dest.LineColor.y = src.LineColor.y;
    dest.LineColor.z = src.LineColor.z;
    dest.LineColor.w = src.LineColor.w;
    dest.LineColors = src.LineColors;
    dest.LineWeight = src.LineWeight;
    dest.FillColor.x = src.FillColor.x;
    dest.FillColor.y = src.FillColor.y;
    dest.FillColor.z = src.FillColor.z;
    dest.FillColor.w = src.FillColor.w;
    dest.FillColors = src.FillColors;
    dest.FillAlpha = src.FillAlpha;
    dest.Marker = src.Marker;
    dest.MarkerSize = src.MarkerSize;
    dest.MarkerSizes = src.MarkerSizes;
    dest.MarkerLineColor.x = src.MarkerLineColor.x;
    dest.MarkerLineColor.y = src.MarkerLineColor.y;
    dest.MarkerLineColor.z = src.MarkerLineColor.z;
    dest.MarkerLineColor.w = src.MarkerLineColor.w;
    dest.MarkerLineColors = src.MarkerLineColors;
    dest.MarkerFillColor.x = src.MarkerFillColor.x;
    dest.MarkerFillColor.y = src.MarkerFillColor.y;
    dest.MarkerFillColor.z = src.MarkerFillColor.z;
    dest.MarkerFillColor.w = src.MarkerFillColor.w;
    dest.MarkerFillColors = src.MarkerFillColors;
    dest.Size = src.Size;
    dest.Offset = src.Offset;
    dest.Stride = src.Stride;
    dest.Flags = src.Flags;
    return dest;
}
static inline ImPlotSpec_c ConvertFromCPP_ImPlotSpec(const ImPlotSpec& src)
{
    ImPlotSpec_c dest;
    dest.LineColor.x = src.LineColor.x;
    dest.LineColor.y = src.LineColor.y;
    dest.LineColor.z = src.LineColor.z;
    dest.LineColor.w = src.LineColor.w;
    dest.LineColors = src.LineColors;
    dest.LineWeight = src.LineWeight;
    dest.FillColor.x = src.FillColor.x;
    dest.FillColor.y = src.FillColor.y;
    dest.FillColor.z = src.FillColor.z;
    dest.FillColor.w = src.FillColor.w;
    dest.FillColors = src.FillColors;
    dest.FillAlpha = src.FillAlpha;
    dest.Marker = src.Marker;
    dest.MarkerSize = src.MarkerSize;
    dest.MarkerSizes = src.MarkerSizes;
    dest.MarkerLineColor.x = src.MarkerLineColor.x;
    dest.MarkerLineColor.y = src.MarkerLineColor.y;
    dest.MarkerLineColor.z = src.MarkerLineColor.z;
    dest.MarkerLineColor.w = src.MarkerLineColor.w;
    dest.MarkerLineColors = src.MarkerLineColors;
    dest.MarkerFillColor.x = src.MarkerFillColor.x;
    dest.MarkerFillColor.y = src.MarkerFillColor.y;
    dest.MarkerFillColor.z = src.MarkerFillColor.z;
    dest.MarkerFillColor.w = src.MarkerFillColor.w;
    dest.MarkerFillColors = src.MarkerFillColors;
    dest.Size = src.Size;
    dest.Offset = src.Offset;
    dest.Stride = src.Stride;
    dest.Flags = src.Flags;
    return dest;
}
static inline ImPlotTick ConvertToCPP_ImPlotTick(const ImPlotTick_c& src)
{
    ImPlotTick dest;
    dest.PlotPos = src.PlotPos;
    dest.PixelPos = src.PixelPos;
    dest.LabelSize.x = src.LabelSize.x;
    dest.LabelSize.y = src.LabelSize.y;
    dest.TextOffset = src.TextOffset;
    dest.Major = src.Major;
    dest.ShowLabel = src.ShowLabel;
    dest.Level = src.Level;
    dest.Idx = src.Idx;
    return dest;
}
static inline ImPlotTick_c ConvertFromCPP_ImPlotTick(const ImPlotTick& src)
{
    ImPlotTick_c dest;
    dest.PlotPos = src.PlotPos;
    dest.PixelPos = src.PixelPos;
    dest.LabelSize.x = src.LabelSize.x;
    dest.LabelSize.y = src.LabelSize.y;
    dest.TextOffset = src.TextOffset;
    dest.Major = src.Major;
    dest.ShowLabel = src.ShowLabel;
    dest.Level = src.Level;
    dest.Idx = src.Idx;
    return dest;
}
static inline ImPlotTime ConvertToCPP_ImPlotTime(const ImPlotTime_c& src)
{
    ImPlotTime dest;
    dest.S = src.S;
    dest.Us = src.Us;
    return dest;
}
static inline ImPlotTime_c ConvertFromCPP_ImPlotTime(const ImPlotTime& src)
{
    ImPlotTime_c dest;
    dest.S = src.S;
    dest.Us = src.Us;
    return dest;
}
static inline ImRect ConvertToCPP_ImRect(const ImRect_c& src)
{
    ImRect dest;
    dest.Min.x = src.Min.x;
    dest.Min.y = src.Min.y;
    dest.Max.x = src.Max.x;
    dest.Max.y = src.Max.y;
    return dest;
}
static inline ImRect_c ConvertFromCPP_ImRect(const ImRect& src)
{
    ImRect_c dest;
    dest.Min.x = src.Min.x;
    dest.Min.y = src.Min.y;
    dest.Max.x = src.Max.x;
    dest.Max.y = src.Max.y;
    return dest;
}
static inline ImTextureRef ConvertToCPP_ImTextureRef(const ImTextureRef_c& src)
{
    ImTextureRef dest;
    dest._TexData = src._TexData;
    dest._TexID = src._TexID;
    return dest;
}
static inline ImTextureRef_c ConvertFromCPP_ImTextureRef(const ImTextureRef& src)
{
    ImTextureRef_c dest;
    dest._TexData = src._TexData;
    dest._TexID = src._TexID;
    return dest;
}
static inline ImVec2 ConvertToCPP_ImVec2(const ImVec2_c& src)
{
    ImVec2 dest;
    dest.x = src.x;
    dest.y = src.y;
    return dest;
}
static inline ImVec2_c ConvertFromCPP_ImVec2(const ImVec2& src)
{
    ImVec2_c dest;
    dest.x = src.x;
    dest.y = src.y;
    return dest;
}
static inline ImVec4 ConvertToCPP_ImVec4(const ImVec4_c& src)
{
    ImVec4 dest;
    dest.x = src.x;
    dest.y = src.y;
    dest.z = src.z;
    dest.w = src.w;
    return dest;
}
static inline ImVec4_c ConvertFromCPP_ImVec4(const ImVec4& src)
{
    ImVec4_c dest;
    dest.x = src.x;
    dest.y = src.y;
    dest.z = src.z;
    dest.w = src.w;
    return dest;
}CIMGUI_API ImPlotSpec* ImPlotSpec_ImPlotSpec(void)
{
    return IM_NEW(ImPlotSpec)();
}
CIMGUI_API void ImPlotSpec_destroy(ImPlotSpec* self)
{
    IM_DELETE(self);
}
CIMGUI_API void ImPlotSpec_SetProp_Float(ImPlotSpec* self,ImPlotProp prop,float v)
{
    return self->SetProp(prop,v);
}
CIMGUI_API void ImPlotSpec_SetProp_double(ImPlotSpec* self,ImPlotProp prop,double v)
{
    return self->SetProp(prop,v);
}
CIMGUI_API void ImPlotSpec_SetProp_S8(ImPlotSpec* self,ImPlotProp prop,ImS8 v)
{
    return self->SetProp(prop,v);
}
CIMGUI_API void ImPlotSpec_SetProp_U8(ImPlotSpec* self,ImPlotProp prop,ImU8 v)
{
    return self->SetProp(prop,v);
}
CIMGUI_API void ImPlotSpec_SetProp_S16(ImPlotSpec* self,ImPlotProp prop,ImS16 v)
{
    return self->SetProp(prop,v);
}
CIMGUI_API void ImPlotSpec_SetProp_U16(ImPlotSpec* self,ImPlotProp prop,ImU16 v)
{
    return self->SetProp(prop,v);
}
CIMGUI_API void ImPlotSpec_SetProp_S32(ImPlotSpec* self,ImPlotProp prop,ImS32 v)
{
    return self->SetProp(prop,v);
}
CIMGUI_API void ImPlotSpec_SetProp_U32(ImPlotSpec* self,ImPlotProp prop,ImU32 v)
{
    return self->SetProp(prop,v);
}
CIMGUI_API void ImPlotSpec_SetProp_S64(ImPlotSpec* self,ImPlotProp prop,ImS64 v)
{
    return self->SetProp(prop,v);
}
CIMGUI_API void ImPlotSpec_SetProp_U64(ImPlotSpec* self,ImPlotProp prop,ImU64 v)
{
    return self->SetProp(prop,v);
}
CIMGUI_API void ImPlotSpec_SetProp_U32Ptr(ImPlotSpec* self,ImPlotProp prop,ImU32* v)
{
    return self->SetProp(prop,v);
}
CIMGUI_API void ImPlotSpec_SetProp_FloatPtr(ImPlotSpec* self,ImPlotProp prop,float* v)
{
    return self->SetProp(prop,v);
}
CIMGUI_API void ImPlotSpec_SetProp_Vec4(ImPlotSpec* self,ImPlotProp prop,const ImVec4_c v)
{
    return self->SetProp(prop,ConvertToCPP_ImVec4(v));
}
CIMGUI_API ImPlotPoint* ImPlotPoint_ImPlotPoint_Nil(void)
{
    return IM_NEW(ImPlotPoint)();
}
CIMGUI_API void ImPlotPoint_destroy(ImPlotPoint* self)
{
    IM_DELETE(self);
}
CIMGUI_API ImPlotPoint* ImPlotPoint_ImPlotPoint_double(double _x,double _y)
{
    return IM_NEW(ImPlotPoint)(_x,_y);
}
CIMGUI_API ImPlotPoint* ImPlotPoint_ImPlotPoint_Vec2(const ImVec2_c p)
{
    return IM_NEW(ImPlotPoint)(ConvertToCPP_ImVec2(p));
}
CIMGUI_API ImPlotRange* ImPlotRange_ImPlotRange_Nil(void)
{
    return IM_NEW(ImPlotRange)();
}
CIMGUI_API void ImPlotRange_destroy(ImPlotRange* self)
{
    IM_DELETE(self);
}
CIMGUI_API ImPlotRange* ImPlotRange_ImPlotRange_double(double _min,double _max)
{
    return IM_NEW(ImPlotRange)(_min,_max);
}
CIMGUI_API bool ImPlotRange_Contains(ImPlotRange* self,double value)
{
    return self->Contains(value);
}
CIMGUI_API double ImPlotRange_Size(ImPlotRange* self)
{
    return self->Size();
}
CIMGUI_API double ImPlotRange_Clamp(ImPlotRange* self,double value)
{
    return self->Clamp(value);
}
CIMGUI_API ImPlotRect* ImPlotRect_ImPlotRect_Nil(void)
{
    return IM_NEW(ImPlotRect)();
}
CIMGUI_API void ImPlotRect_destroy(ImPlotRect* self)
{
    IM_DELETE(self);
}
CIMGUI_API ImPlotRect* ImPlotRect_ImPlotRect_double(double x_min,double x_max,double y_min,double y_max)
{
    return IM_NEW(ImPlotRect)(x_min,x_max,y_min,y_max);
}
CIMGUI_API bool ImPlotRect_Contains_PlotPoint(ImPlotRect* self,const ImPlotPoint_c p)
{
    return self->Contains(ConvertToCPP_ImPlotPoint(p));
}
CIMGUI_API bool ImPlotRect_Contains_double(ImPlotRect* self,double x,double y)
{
    return self->Contains(x,y);
}
CIMGUI_API ImPlotPoint_c ImPlotRect_Size(ImPlotRect* self)
{
    return ConvertFromCPP_ImPlotPoint(self->Size());
}
CIMGUI_API ImPlotPoint_c ImPlotRect_Clamp_PlotPoint(ImPlotRect* self,const ImPlotPoint_c p)
{
    return ConvertFromCPP_ImPlotPoint(self->Clamp(ConvertToCPP_ImPlotPoint(p)));
}
CIMGUI_API ImPlotPoint_c ImPlotRect_Clamp_double(ImPlotRect* self,double x,double y)
{
    return ConvertFromCPP_ImPlotPoint(self->Clamp(x,y));
}
CIMGUI_API ImPlotPoint_c ImPlotRect_Min(ImPlotRect* self)
{
    return ConvertFromCPP_ImPlotPoint(self->Min());
}
CIMGUI_API ImPlotPoint_c ImPlotRect_Max(ImPlotRect* self)
{
    return ConvertFromCPP_ImPlotPoint(self->Max());
}
CIMGUI_API ImPlotStyle* ImPlotStyle_ImPlotStyle(void)
{
    return IM_NEW(ImPlotStyle)();
}
CIMGUI_API void ImPlotStyle_destroy(ImPlotStyle* self)
{
    IM_DELETE(self);
}
CIMGUI_API ImPlotInputMap* ImPlotInputMap_ImPlotInputMap(void)
{
    return IM_NEW(ImPlotInputMap)();
}
CIMGUI_API void ImPlotInputMap_destroy(ImPlotInputMap* self)
{
    IM_DELETE(self);
}
CIMGUI_API ImPlotContext* ImPlot_CreateContext()
{
    return ImPlot::CreateContext();
}
CIMGUI_API void ImPlot_DestroyContext(ImPlotContext* ctx)
{
    return ImPlot::DestroyContext(ctx);
}
CIMGUI_API ImPlotContext* ImPlot_GetCurrentContext()
{
    return ImPlot::GetCurrentContext();
}
CIMGUI_API void ImPlot_SetCurrentContext(ImPlotContext* ctx)
{
    return ImPlot::SetCurrentContext(ctx);
}
CIMGUI_API void ImPlot_SetImGuiContext(ImGuiContext* ctx)
{
    return ImPlot::SetImGuiContext(ctx);
}
CIMGUI_API bool ImPlot_BeginPlot(const char* title_id,const ImVec2_c size,ImPlotFlags flags)
{
    return ImPlot::BeginPlot(title_id,ConvertToCPP_ImVec2(size),flags);
}
CIMGUI_API void ImPlot_EndPlot()
{
    return ImPlot::EndPlot();
}
CIMGUI_API bool ImPlot_BeginSubplots(const char* title_id,int rows,int cols,const ImVec2_c size,ImPlotSubplotFlags flags,float* row_ratios,float* col_ratios)
{
    return ImPlot::BeginSubplots(title_id,rows,cols,ConvertToCPP_ImVec2(size),flags,row_ratios,col_ratios);
}
CIMGUI_API void ImPlot_EndSubplots()
{
    return ImPlot::EndSubplots();
}
CIMGUI_API void ImPlot_SetupAxis(ImAxis axis,const char* label,ImPlotAxisFlags flags)
{
    return ImPlot::SetupAxis(axis,label,flags);
}
CIMGUI_API void ImPlot_SetupAxisLimits(ImAxis axis,double v_min,double v_max,ImPlotCond cond)
{
    return ImPlot::SetupAxisLimits(axis,v_min,v_max,cond);
}
CIMGUI_API void ImPlot_SetupAxisLinks(ImAxis axis,double* link_min,double* link_max)
{
    return ImPlot::SetupAxisLinks(axis,link_min,link_max);
}
CIMGUI_API void ImPlot_SetupAxisFormat_Str(ImAxis axis,const char* fmt)
{
    return ImPlot::SetupAxisFormat(axis,fmt);
}
CIMGUI_API void ImPlot_SetupAxisFormat_PlotFormatter(ImAxis axis,ImPlotFormatter formatter,void* data)
{
    return ImPlot::SetupAxisFormat(axis,formatter,data);
}
CIMGUI_API void ImPlot_SetupAxisTicks_doublePtr(ImAxis axis,const double* values,int n_ticks,const char* const labels[],bool keep_default)
{
    return ImPlot::SetupAxisTicks(axis,values,n_ticks,labels,keep_default);
}
CIMGUI_API void ImPlot_SetupAxisTicks_double(ImAxis axis,double v_min,double v_max,int n_ticks,const char* const labels[],bool keep_default)
{
    return ImPlot::SetupAxisTicks(axis,v_min,v_max,n_ticks,labels,keep_default);
}
CIMGUI_API void ImPlot_SetupAxisScale_PlotScale(ImAxis axis,ImPlotScale scale)
{
    return ImPlot::SetupAxisScale(axis,scale);
}
CIMGUI_API void ImPlot_SetupAxisScale_PlotTransform(ImAxis axis,ImPlotTransform forward,ImPlotTransform inverse,void* data)
{
    return ImPlot::SetupAxisScale(axis,forward,inverse,data);
}
CIMGUI_API void ImPlot_SetupAxisLimitsConstraints(ImAxis axis,double v_min,double v_max)
{
    return ImPlot::SetupAxisLimitsConstraints(axis,v_min,v_max);
}
CIMGUI_API void ImPlot_SetupAxisZoomConstraints(ImAxis axis,double z_min,double z_max)
{
    return ImPlot::SetupAxisZoomConstraints(axis,z_min,z_max);
}
CIMGUI_API void ImPlot_SetupAxes(const char* x_label,const char* y_label,ImPlotAxisFlags x_flags,ImPlotAxisFlags y_flags)
{
    return ImPlot::SetupAxes(x_label,y_label,x_flags,y_flags);
}
CIMGUI_API void ImPlot_SetupAxesLimits(double x_min,double x_max,double y_min,double y_max,ImPlotCond cond)
{
    return ImPlot::SetupAxesLimits(x_min,x_max,y_min,y_max,cond);
}
CIMGUI_API void ImPlot_SetupLegend(ImPlotLocation location,ImPlotLegendFlags flags)
{
    return ImPlot::SetupLegend(location,flags);
}
CIMGUI_API void ImPlot_SetupMouseText(ImPlotLocation location,ImPlotMouseTextFlags flags)
{
    return ImPlot::SetupMouseText(location,flags);
}
CIMGUI_API void ImPlot_SetupFinish()
{
    return ImPlot::SetupFinish();
}
CIMGUI_API void ImPlot_SetNextAxisLimits(ImAxis axis,double v_min,double v_max,ImPlotCond cond)
{
    return ImPlot::SetNextAxisLimits(axis,v_min,v_max,cond);
}
CIMGUI_API void ImPlot_SetNextAxisLinks(ImAxis axis,double* link_min,double* link_max)
{
    return ImPlot::SetNextAxisLinks(axis,link_min,link_max);
}
CIMGUI_API void ImPlot_SetNextAxisToFit(ImAxis axis)
{
    return ImPlot::SetNextAxisToFit(axis);
}
CIMGUI_API void ImPlot_SetNextAxesLimits(double x_min,double x_max,double y_min,double y_max,ImPlotCond cond)
{
    return ImPlot::SetNextAxesLimits(x_min,x_max,y_min,y_max,cond);
}
CIMGUI_API void ImPlot_SetNextAxesToFit()
{
    return ImPlot::SetNextAxesToFit();
}
CIMGUI_API void ImPlot_PlotLine_FloatPtrInt(const char* label_id,const float* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotLine(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotLine_doublePtrInt(const char* label_id,const double* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotLine(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotLine_S8PtrInt(const char* label_id,const ImS8* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotLine(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotLine_U8PtrInt(const char* label_id,const ImU8* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotLine(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotLine_S16PtrInt(const char* label_id,const ImS16* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotLine(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotLine_U16PtrInt(const char* label_id,const ImU16* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotLine(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotLine_S32PtrInt(const char* label_id,const ImS32* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotLine(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotLine_U32PtrInt(const char* label_id,const ImU32* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotLine(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotLine_S64PtrInt(const char* label_id,const ImS64* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotLine(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotLine_U64PtrInt(const char* label_id,const ImU64* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotLine(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotLine_FloatPtrFloatPtr(const char* label_id,const float* xs,const float* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotLine(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotLine_doublePtrdoublePtr(const char* label_id,const double* xs,const double* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotLine(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotLine_S8PtrS8Ptr(const char* label_id,const ImS8* xs,const ImS8* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotLine(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotLine_U8PtrU8Ptr(const char* label_id,const ImU8* xs,const ImU8* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotLine(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotLine_S16PtrS16Ptr(const char* label_id,const ImS16* xs,const ImS16* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotLine(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotLine_U16PtrU16Ptr(const char* label_id,const ImU16* xs,const ImU16* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotLine(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotLine_S32PtrS32Ptr(const char* label_id,const ImS32* xs,const ImS32* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotLine(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotLine_U32PtrU32Ptr(const char* label_id,const ImU32* xs,const ImU32* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotLine(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotLine_S64PtrS64Ptr(const char* label_id,const ImS64* xs,const ImS64* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotLine(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotLine_U64PtrU64Ptr(const char* label_id,const ImU64* xs,const ImU64* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotLine(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotLineG_LJ(const char* label_id,ImPlotPoint_getter getter,void* data,int count,const ImPlotSpec_c spec)//custom implementation
{
    getter_funcX = getter;
    ImPlot::PlotLineG(label_id,Wrapper,data,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotLineG(const char* label_id,ImPlotGetter getter,void* data,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotLineG(label_id,getter,data,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotScatter_FloatPtrInt(const char* label_id,const float* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotScatter(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotScatter_doublePtrInt(const char* label_id,const double* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotScatter(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotScatter_S8PtrInt(const char* label_id,const ImS8* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotScatter(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotScatter_U8PtrInt(const char* label_id,const ImU8* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotScatter(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotScatter_S16PtrInt(const char* label_id,const ImS16* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotScatter(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotScatter_U16PtrInt(const char* label_id,const ImU16* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotScatter(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotScatter_S32PtrInt(const char* label_id,const ImS32* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotScatter(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotScatter_U32PtrInt(const char* label_id,const ImU32* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotScatter(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotScatter_S64PtrInt(const char* label_id,const ImS64* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotScatter(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotScatter_U64PtrInt(const char* label_id,const ImU64* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotScatter(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotScatter_FloatPtrFloatPtr(const char* label_id,const float* xs,const float* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotScatter(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotScatter_doublePtrdoublePtr(const char* label_id,const double* xs,const double* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotScatter(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotScatter_S8PtrS8Ptr(const char* label_id,const ImS8* xs,const ImS8* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotScatter(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotScatter_U8PtrU8Ptr(const char* label_id,const ImU8* xs,const ImU8* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotScatter(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotScatter_S16PtrS16Ptr(const char* label_id,const ImS16* xs,const ImS16* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotScatter(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotScatter_U16PtrU16Ptr(const char* label_id,const ImU16* xs,const ImU16* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotScatter(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotScatter_S32PtrS32Ptr(const char* label_id,const ImS32* xs,const ImS32* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotScatter(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotScatter_U32PtrU32Ptr(const char* label_id,const ImU32* xs,const ImU32* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotScatter(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotScatter_S64PtrS64Ptr(const char* label_id,const ImS64* xs,const ImS64* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotScatter(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotScatter_U64PtrU64Ptr(const char* label_id,const ImU64* xs,const ImU64* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotScatter(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotScatterG_LJ(const char* label_id,ImPlotPoint_getter getter,void* data,int count,const ImPlotSpec_c spec)//custom implementation
{
    getter_funcX = getter;
    ImPlot::PlotScatterG(label_id,Wrapper,data,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotScatterG(const char* label_id,ImPlotGetter getter,void* data,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotScatterG(label_id,getter,data,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBubbles_FloatPtrFloatPtrInt(const char* label_id,const float* values,const float* szs,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBubbles(label_id,values,szs,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBubbles_doublePtrdoublePtrInt(const char* label_id,const double* values,const double* szs,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBubbles(label_id,values,szs,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBubbles_S8PtrS8PtrInt(const char* label_id,const ImS8* values,const ImS8* szs,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBubbles(label_id,values,szs,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBubbles_U8PtrU8PtrInt(const char* label_id,const ImU8* values,const ImU8* szs,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBubbles(label_id,values,szs,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBubbles_S16PtrS16PtrInt(const char* label_id,const ImS16* values,const ImS16* szs,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBubbles(label_id,values,szs,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBubbles_U16PtrU16PtrInt(const char* label_id,const ImU16* values,const ImU16* szs,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBubbles(label_id,values,szs,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBubbles_S32PtrS32PtrInt(const char* label_id,const ImS32* values,const ImS32* szs,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBubbles(label_id,values,szs,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBubbles_U32PtrU32PtrInt(const char* label_id,const ImU32* values,const ImU32* szs,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBubbles(label_id,values,szs,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBubbles_S64PtrS64PtrInt(const char* label_id,const ImS64* values,const ImS64* szs,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBubbles(label_id,values,szs,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBubbles_U64PtrU64PtrInt(const char* label_id,const ImU64* values,const ImU64* szs,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBubbles(label_id,values,szs,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBubbles_FloatPtrFloatPtrFloatPtr(const char* label_id,const float* xs,const float* ys,const float* szs,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBubbles(label_id,xs,ys,szs,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBubbles_doublePtrdoublePtrdoublePtr(const char* label_id,const double* xs,const double* ys,const double* szs,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBubbles(label_id,xs,ys,szs,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBubbles_S8PtrS8PtrS8Ptr(const char* label_id,const ImS8* xs,const ImS8* ys,const ImS8* szs,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBubbles(label_id,xs,ys,szs,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBubbles_U8PtrU8PtrU8Ptr(const char* label_id,const ImU8* xs,const ImU8* ys,const ImU8* szs,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBubbles(label_id,xs,ys,szs,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBubbles_S16PtrS16PtrS16Ptr(const char* label_id,const ImS16* xs,const ImS16* ys,const ImS16* szs,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBubbles(label_id,xs,ys,szs,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBubbles_U16PtrU16PtrU16Ptr(const char* label_id,const ImU16* xs,const ImU16* ys,const ImU16* szs,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBubbles(label_id,xs,ys,szs,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBubbles_S32PtrS32PtrS32Ptr(const char* label_id,const ImS32* xs,const ImS32* ys,const ImS32* szs,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBubbles(label_id,xs,ys,szs,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBubbles_U32PtrU32PtrU32Ptr(const char* label_id,const ImU32* xs,const ImU32* ys,const ImU32* szs,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBubbles(label_id,xs,ys,szs,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBubbles_S64PtrS64PtrS64Ptr(const char* label_id,const ImS64* xs,const ImS64* ys,const ImS64* szs,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBubbles(label_id,xs,ys,szs,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBubbles_U64PtrU64PtrU64Ptr(const char* label_id,const ImU64* xs,const ImU64* ys,const ImU64* szs,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBubbles(label_id,xs,ys,szs,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPolygon_FloatPtr(const char* label_id,const float* xs,const float* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPolygon(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPolygon_doublePtr(const char* label_id,const double* xs,const double* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPolygon(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPolygon_S8Ptr(const char* label_id,const ImS8* xs,const ImS8* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPolygon(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPolygon_U8Ptr(const char* label_id,const ImU8* xs,const ImU8* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPolygon(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPolygon_S16Ptr(const char* label_id,const ImS16* xs,const ImS16* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPolygon(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPolygon_U16Ptr(const char* label_id,const ImU16* xs,const ImU16* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPolygon(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPolygon_S32Ptr(const char* label_id,const ImS32* xs,const ImS32* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPolygon(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPolygon_U32Ptr(const char* label_id,const ImU32* xs,const ImU32* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPolygon(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPolygon_S64Ptr(const char* label_id,const ImS64* xs,const ImS64* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPolygon(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPolygon_U64Ptr(const char* label_id,const ImU64* xs,const ImU64* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPolygon(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStairs_FloatPtrInt(const char* label_id,const float* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStairs(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStairs_doublePtrInt(const char* label_id,const double* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStairs(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStairs_S8PtrInt(const char* label_id,const ImS8* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStairs(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStairs_U8PtrInt(const char* label_id,const ImU8* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStairs(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStairs_S16PtrInt(const char* label_id,const ImS16* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStairs(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStairs_U16PtrInt(const char* label_id,const ImU16* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStairs(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStairs_S32PtrInt(const char* label_id,const ImS32* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStairs(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStairs_U32PtrInt(const char* label_id,const ImU32* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStairs(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStairs_S64PtrInt(const char* label_id,const ImS64* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStairs(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStairs_U64PtrInt(const char* label_id,const ImU64* values,int count,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStairs(label_id,values,count,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStairs_FloatPtrFloatPtr(const char* label_id,const float* xs,const float* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStairs(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStairs_doublePtrdoublePtr(const char* label_id,const double* xs,const double* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStairs(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStairs_S8PtrS8Ptr(const char* label_id,const ImS8* xs,const ImS8* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStairs(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStairs_U8PtrU8Ptr(const char* label_id,const ImU8* xs,const ImU8* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStairs(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStairs_S16PtrS16Ptr(const char* label_id,const ImS16* xs,const ImS16* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStairs(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStairs_U16PtrU16Ptr(const char* label_id,const ImU16* xs,const ImU16* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStairs(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStairs_S32PtrS32Ptr(const char* label_id,const ImS32* xs,const ImS32* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStairs(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStairs_U32PtrU32Ptr(const char* label_id,const ImU32* xs,const ImU32* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStairs(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStairs_S64PtrS64Ptr(const char* label_id,const ImS64* xs,const ImS64* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStairs(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStairs_U64PtrU64Ptr(const char* label_id,const ImU64* xs,const ImU64* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStairs(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStairsG_LJ(const char* label_id,ImPlotPoint_getter getter,void* data,int count,const ImPlotSpec_c spec)//custom implementation
{
    getter_funcX = getter;
    ImPlot::PlotStairsG(label_id,Wrapper,data,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStairsG(const char* label_id,ImPlotGetter getter,void* data,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStairsG(label_id,getter,data,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_FloatPtrInt(const char* label_id,const float* values,int count,double yref,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,values,count,yref,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_doublePtrInt(const char* label_id,const double* values,int count,double yref,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,values,count,yref,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_S8PtrInt(const char* label_id,const ImS8* values,int count,double yref,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,values,count,yref,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_U8PtrInt(const char* label_id,const ImU8* values,int count,double yref,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,values,count,yref,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_S16PtrInt(const char* label_id,const ImS16* values,int count,double yref,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,values,count,yref,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_U16PtrInt(const char* label_id,const ImU16* values,int count,double yref,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,values,count,yref,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_S32PtrInt(const char* label_id,const ImS32* values,int count,double yref,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,values,count,yref,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_U32PtrInt(const char* label_id,const ImU32* values,int count,double yref,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,values,count,yref,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_S64PtrInt(const char* label_id,const ImS64* values,int count,double yref,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,values,count,yref,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_U64PtrInt(const char* label_id,const ImU64* values,int count,double yref,double xscale,double xstart,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,values,count,yref,xscale,xstart,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_FloatPtrFloatPtrInt(const char* label_id,const float* xs,const float* ys,int count,double yref,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,xs,ys,count,yref,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_doublePtrdoublePtrInt(const char* label_id,const double* xs,const double* ys,int count,double yref,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,xs,ys,count,yref,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_S8PtrS8PtrInt(const char* label_id,const ImS8* xs,const ImS8* ys,int count,double yref,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,xs,ys,count,yref,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_U8PtrU8PtrInt(const char* label_id,const ImU8* xs,const ImU8* ys,int count,double yref,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,xs,ys,count,yref,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_S16PtrS16PtrInt(const char* label_id,const ImS16* xs,const ImS16* ys,int count,double yref,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,xs,ys,count,yref,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_U16PtrU16PtrInt(const char* label_id,const ImU16* xs,const ImU16* ys,int count,double yref,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,xs,ys,count,yref,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_S32PtrS32PtrInt(const char* label_id,const ImS32* xs,const ImS32* ys,int count,double yref,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,xs,ys,count,yref,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_U32PtrU32PtrInt(const char* label_id,const ImU32* xs,const ImU32* ys,int count,double yref,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,xs,ys,count,yref,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_S64PtrS64PtrInt(const char* label_id,const ImS64* xs,const ImS64* ys,int count,double yref,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,xs,ys,count,yref,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_U64PtrU64PtrInt(const char* label_id,const ImU64* xs,const ImU64* ys,int count,double yref,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,xs,ys,count,yref,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_FloatPtrFloatPtrFloatPtr(const char* label_id,const float* xs,const float* ys1,const float* ys2,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,xs,ys1,ys2,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_doublePtrdoublePtrdoublePtr(const char* label_id,const double* xs,const double* ys1,const double* ys2,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,xs,ys1,ys2,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_S8PtrS8PtrS8Ptr(const char* label_id,const ImS8* xs,const ImS8* ys1,const ImS8* ys2,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,xs,ys1,ys2,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_U8PtrU8PtrU8Ptr(const char* label_id,const ImU8* xs,const ImU8* ys1,const ImU8* ys2,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,xs,ys1,ys2,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_S16PtrS16PtrS16Ptr(const char* label_id,const ImS16* xs,const ImS16* ys1,const ImS16* ys2,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,xs,ys1,ys2,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_U16PtrU16PtrU16Ptr(const char* label_id,const ImU16* xs,const ImU16* ys1,const ImU16* ys2,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,xs,ys1,ys2,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_S32PtrS32PtrS32Ptr(const char* label_id,const ImS32* xs,const ImS32* ys1,const ImS32* ys2,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,xs,ys1,ys2,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_U32PtrU32PtrU32Ptr(const char* label_id,const ImU32* xs,const ImU32* ys1,const ImU32* ys2,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,xs,ys1,ys2,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_S64PtrS64PtrS64Ptr(const char* label_id,const ImS64* xs,const ImS64* ys1,const ImS64* ys2,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,xs,ys1,ys2,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShaded_U64PtrU64PtrU64Ptr(const char* label_id,const ImU64* xs,const ImU64* ys1,const ImU64* ys2,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShaded(label_id,xs,ys1,ys2,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShadedG_LJ(const char* label_id,ImPlotPoint_getter getter1,void* data1,ImPlotPoint_getter getter2,void* data2,int count,const ImPlotSpec_c spec)//custom implementation
{
    getter_funcX = getter1;
    getter_funcX2 = getter2;
    ImPlot::PlotShadedG(label_id,Wrapper,data1,Wrapper2,data2,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotShadedG(const char* label_id,ImPlotGetter getter1,void* data1,ImPlotGetter getter2,void* data2,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotShadedG(label_id,getter1,data1,getter2,data2,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBars_FloatPtrInt(const char* label_id,const float* values,int count,double bar_size,double shift,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBars(label_id,values,count,bar_size,shift,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBars_doublePtrInt(const char* label_id,const double* values,int count,double bar_size,double shift,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBars(label_id,values,count,bar_size,shift,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBars_S8PtrInt(const char* label_id,const ImS8* values,int count,double bar_size,double shift,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBars(label_id,values,count,bar_size,shift,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBars_U8PtrInt(const char* label_id,const ImU8* values,int count,double bar_size,double shift,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBars(label_id,values,count,bar_size,shift,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBars_S16PtrInt(const char* label_id,const ImS16* values,int count,double bar_size,double shift,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBars(label_id,values,count,bar_size,shift,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBars_U16PtrInt(const char* label_id,const ImU16* values,int count,double bar_size,double shift,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBars(label_id,values,count,bar_size,shift,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBars_S32PtrInt(const char* label_id,const ImS32* values,int count,double bar_size,double shift,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBars(label_id,values,count,bar_size,shift,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBars_U32PtrInt(const char* label_id,const ImU32* values,int count,double bar_size,double shift,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBars(label_id,values,count,bar_size,shift,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBars_S64PtrInt(const char* label_id,const ImS64* values,int count,double bar_size,double shift,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBars(label_id,values,count,bar_size,shift,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBars_U64PtrInt(const char* label_id,const ImU64* values,int count,double bar_size,double shift,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBars(label_id,values,count,bar_size,shift,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBars_FloatPtrFloatPtr(const char* label_id,const float* xs,const float* ys,int count,double bar_size,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBars(label_id,xs,ys,count,bar_size,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBars_doublePtrdoublePtr(const char* label_id,const double* xs,const double* ys,int count,double bar_size,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBars(label_id,xs,ys,count,bar_size,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBars_S8PtrS8Ptr(const char* label_id,const ImS8* xs,const ImS8* ys,int count,double bar_size,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBars(label_id,xs,ys,count,bar_size,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBars_U8PtrU8Ptr(const char* label_id,const ImU8* xs,const ImU8* ys,int count,double bar_size,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBars(label_id,xs,ys,count,bar_size,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBars_S16PtrS16Ptr(const char* label_id,const ImS16* xs,const ImS16* ys,int count,double bar_size,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBars(label_id,xs,ys,count,bar_size,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBars_U16PtrU16Ptr(const char* label_id,const ImU16* xs,const ImU16* ys,int count,double bar_size,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBars(label_id,xs,ys,count,bar_size,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBars_S32PtrS32Ptr(const char* label_id,const ImS32* xs,const ImS32* ys,int count,double bar_size,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBars(label_id,xs,ys,count,bar_size,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBars_U32PtrU32Ptr(const char* label_id,const ImU32* xs,const ImU32* ys,int count,double bar_size,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBars(label_id,xs,ys,count,bar_size,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBars_S64PtrS64Ptr(const char* label_id,const ImS64* xs,const ImS64* ys,int count,double bar_size,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBars(label_id,xs,ys,count,bar_size,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBars_U64PtrU64Ptr(const char* label_id,const ImU64* xs,const ImU64* ys,int count,double bar_size,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBars(label_id,xs,ys,count,bar_size,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBarsG_LJ(const char* label_id,ImPlotPoint_getter getter,void* data,int count,double bar_size,const ImPlotSpec_c spec)//custom implementation
{
    getter_funcX = getter;
    ImPlot::PlotBarsG(label_id,Wrapper,data,count,bar_size,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBarsG(const char* label_id,ImPlotGetter getter,void* data,int count,double bar_size,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBarsG(label_id,getter,data,count,bar_size,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBarGroups_FloatPtr(const char* const label_ids[],const float* values,int item_count,int group_count,double group_size,double shift,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBarGroups(label_ids,values,item_count,group_count,group_size,shift,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBarGroups_doublePtr(const char* const label_ids[],const double* values,int item_count,int group_count,double group_size,double shift,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBarGroups(label_ids,values,item_count,group_count,group_size,shift,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBarGroups_S8Ptr(const char* const label_ids[],const ImS8* values,int item_count,int group_count,double group_size,double shift,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBarGroups(label_ids,values,item_count,group_count,group_size,shift,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBarGroups_U8Ptr(const char* const label_ids[],const ImU8* values,int item_count,int group_count,double group_size,double shift,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBarGroups(label_ids,values,item_count,group_count,group_size,shift,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBarGroups_S16Ptr(const char* const label_ids[],const ImS16* values,int item_count,int group_count,double group_size,double shift,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBarGroups(label_ids,values,item_count,group_count,group_size,shift,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBarGroups_U16Ptr(const char* const label_ids[],const ImU16* values,int item_count,int group_count,double group_size,double shift,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBarGroups(label_ids,values,item_count,group_count,group_size,shift,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBarGroups_S32Ptr(const char* const label_ids[],const ImS32* values,int item_count,int group_count,double group_size,double shift,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBarGroups(label_ids,values,item_count,group_count,group_size,shift,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBarGroups_U32Ptr(const char* const label_ids[],const ImU32* values,int item_count,int group_count,double group_size,double shift,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBarGroups(label_ids,values,item_count,group_count,group_size,shift,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBarGroups_S64Ptr(const char* const label_ids[],const ImS64* values,int item_count,int group_count,double group_size,double shift,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBarGroups(label_ids,values,item_count,group_count,group_size,shift,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotBarGroups_U64Ptr(const char* const label_ids[],const ImU64* values,int item_count,int group_count,double group_size,double shift,const ImPlotSpec_c spec)
{
    return ImPlot::PlotBarGroups(label_ids,values,item_count,group_count,group_size,shift,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotErrorBars_FloatPtrFloatPtrFloatPtrInt(const char* label_id,const float* xs,const float* ys,const float* err,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotErrorBars(label_id,xs,ys,err,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotErrorBars_doublePtrdoublePtrdoublePtrInt(const char* label_id,const double* xs,const double* ys,const double* err,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotErrorBars(label_id,xs,ys,err,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotErrorBars_S8PtrS8PtrS8PtrInt(const char* label_id,const ImS8* xs,const ImS8* ys,const ImS8* err,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotErrorBars(label_id,xs,ys,err,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotErrorBars_U8PtrU8PtrU8PtrInt(const char* label_id,const ImU8* xs,const ImU8* ys,const ImU8* err,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotErrorBars(label_id,xs,ys,err,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotErrorBars_S16PtrS16PtrS16PtrInt(const char* label_id,const ImS16* xs,const ImS16* ys,const ImS16* err,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotErrorBars(label_id,xs,ys,err,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotErrorBars_U16PtrU16PtrU16PtrInt(const char* label_id,const ImU16* xs,const ImU16* ys,const ImU16* err,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotErrorBars(label_id,xs,ys,err,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotErrorBars_S32PtrS32PtrS32PtrInt(const char* label_id,const ImS32* xs,const ImS32* ys,const ImS32* err,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotErrorBars(label_id,xs,ys,err,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotErrorBars_U32PtrU32PtrU32PtrInt(const char* label_id,const ImU32* xs,const ImU32* ys,const ImU32* err,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotErrorBars(label_id,xs,ys,err,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotErrorBars_S64PtrS64PtrS64PtrInt(const char* label_id,const ImS64* xs,const ImS64* ys,const ImS64* err,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotErrorBars(label_id,xs,ys,err,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotErrorBars_U64PtrU64PtrU64PtrInt(const char* label_id,const ImU64* xs,const ImU64* ys,const ImU64* err,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotErrorBars(label_id,xs,ys,err,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotErrorBars_FloatPtrFloatPtrFloatPtrFloatPtr(const char* label_id,const float* xs,const float* ys,const float* neg,const float* pos,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotErrorBars(label_id,xs,ys,neg,pos,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotErrorBars_doublePtrdoublePtrdoublePtrdoublePtr(const char* label_id,const double* xs,const double* ys,const double* neg,const double* pos,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotErrorBars(label_id,xs,ys,neg,pos,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotErrorBars_S8PtrS8PtrS8PtrS8Ptr(const char* label_id,const ImS8* xs,const ImS8* ys,const ImS8* neg,const ImS8* pos,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotErrorBars(label_id,xs,ys,neg,pos,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotErrorBars_U8PtrU8PtrU8PtrU8Ptr(const char* label_id,const ImU8* xs,const ImU8* ys,const ImU8* neg,const ImU8* pos,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotErrorBars(label_id,xs,ys,neg,pos,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotErrorBars_S16PtrS16PtrS16PtrS16Ptr(const char* label_id,const ImS16* xs,const ImS16* ys,const ImS16* neg,const ImS16* pos,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotErrorBars(label_id,xs,ys,neg,pos,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotErrorBars_U16PtrU16PtrU16PtrU16Ptr(const char* label_id,const ImU16* xs,const ImU16* ys,const ImU16* neg,const ImU16* pos,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotErrorBars(label_id,xs,ys,neg,pos,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotErrorBars_S32PtrS32PtrS32PtrS32Ptr(const char* label_id,const ImS32* xs,const ImS32* ys,const ImS32* neg,const ImS32* pos,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotErrorBars(label_id,xs,ys,neg,pos,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotErrorBars_U32PtrU32PtrU32PtrU32Ptr(const char* label_id,const ImU32* xs,const ImU32* ys,const ImU32* neg,const ImU32* pos,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotErrorBars(label_id,xs,ys,neg,pos,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotErrorBars_S64PtrS64PtrS64PtrS64Ptr(const char* label_id,const ImS64* xs,const ImS64* ys,const ImS64* neg,const ImS64* pos,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotErrorBars(label_id,xs,ys,neg,pos,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotErrorBars_U64PtrU64PtrU64PtrU64Ptr(const char* label_id,const ImU64* xs,const ImU64* ys,const ImU64* neg,const ImU64* pos,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotErrorBars(label_id,xs,ys,neg,pos,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStems_FloatPtrInt(const char* label_id,const float* values,int count,double ref,double scale,double start,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStems(label_id,values,count,ref,scale,start,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStems_doublePtrInt(const char* label_id,const double* values,int count,double ref,double scale,double start,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStems(label_id,values,count,ref,scale,start,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStems_S8PtrInt(const char* label_id,const ImS8* values,int count,double ref,double scale,double start,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStems(label_id,values,count,ref,scale,start,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStems_U8PtrInt(const char* label_id,const ImU8* values,int count,double ref,double scale,double start,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStems(label_id,values,count,ref,scale,start,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStems_S16PtrInt(const char* label_id,const ImS16* values,int count,double ref,double scale,double start,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStems(label_id,values,count,ref,scale,start,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStems_U16PtrInt(const char* label_id,const ImU16* values,int count,double ref,double scale,double start,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStems(label_id,values,count,ref,scale,start,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStems_S32PtrInt(const char* label_id,const ImS32* values,int count,double ref,double scale,double start,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStems(label_id,values,count,ref,scale,start,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStems_U32PtrInt(const char* label_id,const ImU32* values,int count,double ref,double scale,double start,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStems(label_id,values,count,ref,scale,start,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStems_S64PtrInt(const char* label_id,const ImS64* values,int count,double ref,double scale,double start,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStems(label_id,values,count,ref,scale,start,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStems_U64PtrInt(const char* label_id,const ImU64* values,int count,double ref,double scale,double start,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStems(label_id,values,count,ref,scale,start,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStems_FloatPtrFloatPtr(const char* label_id,const float* xs,const float* ys,int count,double ref,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStems(label_id,xs,ys,count,ref,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStems_doublePtrdoublePtr(const char* label_id,const double* xs,const double* ys,int count,double ref,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStems(label_id,xs,ys,count,ref,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStems_S8PtrS8Ptr(const char* label_id,const ImS8* xs,const ImS8* ys,int count,double ref,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStems(label_id,xs,ys,count,ref,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStems_U8PtrU8Ptr(const char* label_id,const ImU8* xs,const ImU8* ys,int count,double ref,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStems(label_id,xs,ys,count,ref,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStems_S16PtrS16Ptr(const char* label_id,const ImS16* xs,const ImS16* ys,int count,double ref,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStems(label_id,xs,ys,count,ref,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStems_U16PtrU16Ptr(const char* label_id,const ImU16* xs,const ImU16* ys,int count,double ref,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStems(label_id,xs,ys,count,ref,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStems_S32PtrS32Ptr(const char* label_id,const ImS32* xs,const ImS32* ys,int count,double ref,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStems(label_id,xs,ys,count,ref,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStems_U32PtrU32Ptr(const char* label_id,const ImU32* xs,const ImU32* ys,int count,double ref,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStems(label_id,xs,ys,count,ref,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStems_S64PtrS64Ptr(const char* label_id,const ImS64* xs,const ImS64* ys,int count,double ref,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStems(label_id,xs,ys,count,ref,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotStems_U64PtrU64Ptr(const char* label_id,const ImU64* xs,const ImU64* ys,int count,double ref,const ImPlotSpec_c spec)
{
    return ImPlot::PlotStems(label_id,xs,ys,count,ref,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotInfLines_FloatPtr(const char* label_id,const float* values,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotInfLines(label_id,values,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotInfLines_doublePtr(const char* label_id,const double* values,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotInfLines(label_id,values,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotInfLines_S8Ptr(const char* label_id,const ImS8* values,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotInfLines(label_id,values,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotInfLines_U8Ptr(const char* label_id,const ImU8* values,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotInfLines(label_id,values,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotInfLines_S16Ptr(const char* label_id,const ImS16* values,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotInfLines(label_id,values,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotInfLines_U16Ptr(const char* label_id,const ImU16* values,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotInfLines(label_id,values,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotInfLines_S32Ptr(const char* label_id,const ImS32* values,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotInfLines(label_id,values,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotInfLines_U32Ptr(const char* label_id,const ImU32* values,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotInfLines(label_id,values,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotInfLines_S64Ptr(const char* label_id,const ImS64* values,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotInfLines(label_id,values,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotInfLines_U64Ptr(const char* label_id,const ImU64* values,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotInfLines(label_id,values,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPieChart_FloatPtrPlotFormatter(const char* const label_ids[],const float* values,int count,double x,double y,double radius,ImPlotFormatter fmt,void* fmt_data,double angle0,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,fmt,fmt_data,angle0,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPieChart_doublePtrPlotFormatter(const char* const label_ids[],const double* values,int count,double x,double y,double radius,ImPlotFormatter fmt,void* fmt_data,double angle0,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,fmt,fmt_data,angle0,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPieChart_S8PtrPlotFormatter(const char* const label_ids[],const ImS8* values,int count,double x,double y,double radius,ImPlotFormatter fmt,void* fmt_data,double angle0,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,fmt,fmt_data,angle0,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPieChart_U8PtrPlotFormatter(const char* const label_ids[],const ImU8* values,int count,double x,double y,double radius,ImPlotFormatter fmt,void* fmt_data,double angle0,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,fmt,fmt_data,angle0,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPieChart_S16PtrPlotFormatter(const char* const label_ids[],const ImS16* values,int count,double x,double y,double radius,ImPlotFormatter fmt,void* fmt_data,double angle0,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,fmt,fmt_data,angle0,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPieChart_U16PtrPlotFormatter(const char* const label_ids[],const ImU16* values,int count,double x,double y,double radius,ImPlotFormatter fmt,void* fmt_data,double angle0,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,fmt,fmt_data,angle0,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPieChart_S32PtrPlotFormatter(const char* const label_ids[],const ImS32* values,int count,double x,double y,double radius,ImPlotFormatter fmt,void* fmt_data,double angle0,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,fmt,fmt_data,angle0,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPieChart_U32PtrPlotFormatter(const char* const label_ids[],const ImU32* values,int count,double x,double y,double radius,ImPlotFormatter fmt,void* fmt_data,double angle0,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,fmt,fmt_data,angle0,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPieChart_S64PtrPlotFormatter(const char* const label_ids[],const ImS64* values,int count,double x,double y,double radius,ImPlotFormatter fmt,void* fmt_data,double angle0,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,fmt,fmt_data,angle0,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPieChart_U64PtrPlotFormatter(const char* const label_ids[],const ImU64* values,int count,double x,double y,double radius,ImPlotFormatter fmt,void* fmt_data,double angle0,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,fmt,fmt_data,angle0,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPieChart_FloatPtrStr(const char* const label_ids[],const float* values,int count,double x,double y,double radius,const char* label_fmt,double angle0,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,label_fmt,angle0,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPieChart_doublePtrStr(const char* const label_ids[],const double* values,int count,double x,double y,double radius,const char* label_fmt,double angle0,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,label_fmt,angle0,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPieChart_S8PtrStr(const char* const label_ids[],const ImS8* values,int count,double x,double y,double radius,const char* label_fmt,double angle0,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,label_fmt,angle0,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPieChart_U8PtrStr(const char* const label_ids[],const ImU8* values,int count,double x,double y,double radius,const char* label_fmt,double angle0,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,label_fmt,angle0,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPieChart_S16PtrStr(const char* const label_ids[],const ImS16* values,int count,double x,double y,double radius,const char* label_fmt,double angle0,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,label_fmt,angle0,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPieChart_U16PtrStr(const char* const label_ids[],const ImU16* values,int count,double x,double y,double radius,const char* label_fmt,double angle0,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,label_fmt,angle0,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPieChart_S32PtrStr(const char* const label_ids[],const ImS32* values,int count,double x,double y,double radius,const char* label_fmt,double angle0,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,label_fmt,angle0,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPieChart_U32PtrStr(const char* const label_ids[],const ImU32* values,int count,double x,double y,double radius,const char* label_fmt,double angle0,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,label_fmt,angle0,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPieChart_S64PtrStr(const char* const label_ids[],const ImS64* values,int count,double x,double y,double radius,const char* label_fmt,double angle0,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,label_fmt,angle0,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotPieChart_U64PtrStr(const char* const label_ids[],const ImU64* values,int count,double x,double y,double radius,const char* label_fmt,double angle0,const ImPlotSpec_c spec)
{
    return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,label_fmt,angle0,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotHeatmap_FloatPtr(const char* label_id,const float* values,int rows,int cols,double scale_min,double scale_max,const char* label_fmt,const ImPlotPoint_c bounds_min,const ImPlotPoint_c bounds_max,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHeatmap(label_id,values,rows,cols,scale_min,scale_max,label_fmt,ConvertToCPP_ImPlotPoint(bounds_min),ConvertToCPP_ImPlotPoint(bounds_max),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotHeatmap_doublePtr(const char* label_id,const double* values,int rows,int cols,double scale_min,double scale_max,const char* label_fmt,const ImPlotPoint_c bounds_min,const ImPlotPoint_c bounds_max,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHeatmap(label_id,values,rows,cols,scale_min,scale_max,label_fmt,ConvertToCPP_ImPlotPoint(bounds_min),ConvertToCPP_ImPlotPoint(bounds_max),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotHeatmap_S8Ptr(const char* label_id,const ImS8* values,int rows,int cols,double scale_min,double scale_max,const char* label_fmt,const ImPlotPoint_c bounds_min,const ImPlotPoint_c bounds_max,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHeatmap(label_id,values,rows,cols,scale_min,scale_max,label_fmt,ConvertToCPP_ImPlotPoint(bounds_min),ConvertToCPP_ImPlotPoint(bounds_max),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotHeatmap_U8Ptr(const char* label_id,const ImU8* values,int rows,int cols,double scale_min,double scale_max,const char* label_fmt,const ImPlotPoint_c bounds_min,const ImPlotPoint_c bounds_max,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHeatmap(label_id,values,rows,cols,scale_min,scale_max,label_fmt,ConvertToCPP_ImPlotPoint(bounds_min),ConvertToCPP_ImPlotPoint(bounds_max),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotHeatmap_S16Ptr(const char* label_id,const ImS16* values,int rows,int cols,double scale_min,double scale_max,const char* label_fmt,const ImPlotPoint_c bounds_min,const ImPlotPoint_c bounds_max,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHeatmap(label_id,values,rows,cols,scale_min,scale_max,label_fmt,ConvertToCPP_ImPlotPoint(bounds_min),ConvertToCPP_ImPlotPoint(bounds_max),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotHeatmap_U16Ptr(const char* label_id,const ImU16* values,int rows,int cols,double scale_min,double scale_max,const char* label_fmt,const ImPlotPoint_c bounds_min,const ImPlotPoint_c bounds_max,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHeatmap(label_id,values,rows,cols,scale_min,scale_max,label_fmt,ConvertToCPP_ImPlotPoint(bounds_min),ConvertToCPP_ImPlotPoint(bounds_max),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotHeatmap_S32Ptr(const char* label_id,const ImS32* values,int rows,int cols,double scale_min,double scale_max,const char* label_fmt,const ImPlotPoint_c bounds_min,const ImPlotPoint_c bounds_max,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHeatmap(label_id,values,rows,cols,scale_min,scale_max,label_fmt,ConvertToCPP_ImPlotPoint(bounds_min),ConvertToCPP_ImPlotPoint(bounds_max),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotHeatmap_U32Ptr(const char* label_id,const ImU32* values,int rows,int cols,double scale_min,double scale_max,const char* label_fmt,const ImPlotPoint_c bounds_min,const ImPlotPoint_c bounds_max,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHeatmap(label_id,values,rows,cols,scale_min,scale_max,label_fmt,ConvertToCPP_ImPlotPoint(bounds_min),ConvertToCPP_ImPlotPoint(bounds_max),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotHeatmap_S64Ptr(const char* label_id,const ImS64* values,int rows,int cols,double scale_min,double scale_max,const char* label_fmt,const ImPlotPoint_c bounds_min,const ImPlotPoint_c bounds_max,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHeatmap(label_id,values,rows,cols,scale_min,scale_max,label_fmt,ConvertToCPP_ImPlotPoint(bounds_min),ConvertToCPP_ImPlotPoint(bounds_max),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotHeatmap_U64Ptr(const char* label_id,const ImU64* values,int rows,int cols,double scale_min,double scale_max,const char* label_fmt,const ImPlotPoint_c bounds_min,const ImPlotPoint_c bounds_max,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHeatmap(label_id,values,rows,cols,scale_min,scale_max,label_fmt,ConvertToCPP_ImPlotPoint(bounds_min),ConvertToCPP_ImPlotPoint(bounds_max),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API double ImPlot_PlotHistogram_FloatPtr(const char* label_id,const float* values,int count,int bins,double bar_scale,ImPlotRange_c range,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHistogram(label_id,values,count,bins,bar_scale,ConvertToCPP_ImPlotRange(range),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API double ImPlot_PlotHistogram_doublePtr(const char* label_id,const double* values,int count,int bins,double bar_scale,ImPlotRange_c range,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHistogram(label_id,values,count,bins,bar_scale,ConvertToCPP_ImPlotRange(range),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API double ImPlot_PlotHistogram_S8Ptr(const char* label_id,const ImS8* values,int count,int bins,double bar_scale,ImPlotRange_c range,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHistogram(label_id,values,count,bins,bar_scale,ConvertToCPP_ImPlotRange(range),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API double ImPlot_PlotHistogram_U8Ptr(const char* label_id,const ImU8* values,int count,int bins,double bar_scale,ImPlotRange_c range,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHistogram(label_id,values,count,bins,bar_scale,ConvertToCPP_ImPlotRange(range),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API double ImPlot_PlotHistogram_S16Ptr(const char* label_id,const ImS16* values,int count,int bins,double bar_scale,ImPlotRange_c range,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHistogram(label_id,values,count,bins,bar_scale,ConvertToCPP_ImPlotRange(range),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API double ImPlot_PlotHistogram_U16Ptr(const char* label_id,const ImU16* values,int count,int bins,double bar_scale,ImPlotRange_c range,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHistogram(label_id,values,count,bins,bar_scale,ConvertToCPP_ImPlotRange(range),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API double ImPlot_PlotHistogram_S32Ptr(const char* label_id,const ImS32* values,int count,int bins,double bar_scale,ImPlotRange_c range,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHistogram(label_id,values,count,bins,bar_scale,ConvertToCPP_ImPlotRange(range),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API double ImPlot_PlotHistogram_U32Ptr(const char* label_id,const ImU32* values,int count,int bins,double bar_scale,ImPlotRange_c range,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHistogram(label_id,values,count,bins,bar_scale,ConvertToCPP_ImPlotRange(range),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API double ImPlot_PlotHistogram_S64Ptr(const char* label_id,const ImS64* values,int count,int bins,double bar_scale,ImPlotRange_c range,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHistogram(label_id,values,count,bins,bar_scale,ConvertToCPP_ImPlotRange(range),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API double ImPlot_PlotHistogram_U64Ptr(const char* label_id,const ImU64* values,int count,int bins,double bar_scale,ImPlotRange_c range,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHistogram(label_id,values,count,bins,bar_scale,ConvertToCPP_ImPlotRange(range),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API double ImPlot_PlotHistogram2D_FloatPtr(const char* label_id,const float* xs,const float* ys,int count,int x_bins,int y_bins,ImPlotRect_c range,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHistogram2D(label_id,xs,ys,count,x_bins,y_bins,ConvertToCPP_ImPlotRect(range),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API double ImPlot_PlotHistogram2D_doublePtr(const char* label_id,const double* xs,const double* ys,int count,int x_bins,int y_bins,ImPlotRect_c range,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHistogram2D(label_id,xs,ys,count,x_bins,y_bins,ConvertToCPP_ImPlotRect(range),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API double ImPlot_PlotHistogram2D_S8Ptr(const char* label_id,const ImS8* xs,const ImS8* ys,int count,int x_bins,int y_bins,ImPlotRect_c range,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHistogram2D(label_id,xs,ys,count,x_bins,y_bins,ConvertToCPP_ImPlotRect(range),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API double ImPlot_PlotHistogram2D_U8Ptr(const char* label_id,const ImU8* xs,const ImU8* ys,int count,int x_bins,int y_bins,ImPlotRect_c range,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHistogram2D(label_id,xs,ys,count,x_bins,y_bins,ConvertToCPP_ImPlotRect(range),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API double ImPlot_PlotHistogram2D_S16Ptr(const char* label_id,const ImS16* xs,const ImS16* ys,int count,int x_bins,int y_bins,ImPlotRect_c range,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHistogram2D(label_id,xs,ys,count,x_bins,y_bins,ConvertToCPP_ImPlotRect(range),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API double ImPlot_PlotHistogram2D_U16Ptr(const char* label_id,const ImU16* xs,const ImU16* ys,int count,int x_bins,int y_bins,ImPlotRect_c range,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHistogram2D(label_id,xs,ys,count,x_bins,y_bins,ConvertToCPP_ImPlotRect(range),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API double ImPlot_PlotHistogram2D_S32Ptr(const char* label_id,const ImS32* xs,const ImS32* ys,int count,int x_bins,int y_bins,ImPlotRect_c range,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHistogram2D(label_id,xs,ys,count,x_bins,y_bins,ConvertToCPP_ImPlotRect(range),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API double ImPlot_PlotHistogram2D_U32Ptr(const char* label_id,const ImU32* xs,const ImU32* ys,int count,int x_bins,int y_bins,ImPlotRect_c range,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHistogram2D(label_id,xs,ys,count,x_bins,y_bins,ConvertToCPP_ImPlotRect(range),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API double ImPlot_PlotHistogram2D_S64Ptr(const char* label_id,const ImS64* xs,const ImS64* ys,int count,int x_bins,int y_bins,ImPlotRect_c range,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHistogram2D(label_id,xs,ys,count,x_bins,y_bins,ConvertToCPP_ImPlotRect(range),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API double ImPlot_PlotHistogram2D_U64Ptr(const char* label_id,const ImU64* xs,const ImU64* ys,int count,int x_bins,int y_bins,ImPlotRect_c range,const ImPlotSpec_c spec)
{
    return ImPlot::PlotHistogram2D(label_id,xs,ys,count,x_bins,y_bins,ConvertToCPP_ImPlotRect(range),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotDigital_FloatPtr(const char* label_id,const float* xs,const float* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotDigital(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotDigital_doublePtr(const char* label_id,const double* xs,const double* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotDigital(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotDigital_S8Ptr(const char* label_id,const ImS8* xs,const ImS8* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotDigital(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotDigital_U8Ptr(const char* label_id,const ImU8* xs,const ImU8* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotDigital(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotDigital_S16Ptr(const char* label_id,const ImS16* xs,const ImS16* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotDigital(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotDigital_U16Ptr(const char* label_id,const ImU16* xs,const ImU16* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotDigital(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotDigital_S32Ptr(const char* label_id,const ImS32* xs,const ImS32* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotDigital(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotDigital_U32Ptr(const char* label_id,const ImU32* xs,const ImU32* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotDigital(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotDigital_S64Ptr(const char* label_id,const ImS64* xs,const ImS64* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotDigital(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotDigital_U64Ptr(const char* label_id,const ImU64* xs,const ImU64* ys,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotDigital(label_id,xs,ys,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotDigitalG_LJ(const char* label_id,ImPlotPoint_getter getter,void* data,int count,const ImPlotSpec_c spec)//custom implementation
{
    getter_funcX = getter;
    ImPlot::PlotDigitalG(label_id,Wrapper,data,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotDigitalG(const char* label_id,ImPlotGetter getter,void* data,int count,const ImPlotSpec_c spec)
{
    return ImPlot::PlotDigitalG(label_id,getter,data,count,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotImage(const char* label_id,ImTextureRef_c tex_ref,const ImPlotPoint_c bounds_min,const ImPlotPoint_c bounds_max,const ImVec2_c uv0,const ImVec2_c uv1,const ImVec4_c tint_col,const ImPlotSpec_c spec)
{
    return ImPlot::PlotImage(label_id,ConvertToCPP_ImTextureRef(tex_ref),ConvertToCPP_ImPlotPoint(bounds_min),ConvertToCPP_ImPlotPoint(bounds_max),ConvertToCPP_ImVec2(uv0),ConvertToCPP_ImVec2(uv1),ConvertToCPP_ImVec4(tint_col),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotText(const char* text,double x,double y,const ImVec2_c pix_offset,const ImPlotSpec_c spec)
{
    return ImPlot::PlotText(text,x,y,ConvertToCPP_ImVec2(pix_offset),ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API void ImPlot_PlotDummy(const char* label_id,const ImPlotSpec_c spec)
{
    return ImPlot::PlotDummy(label_id,ConvertToCPP_ImPlotSpec(spec));
}
CIMGUI_API bool ImPlot_DragPoint(int id,double* x,double* y,const ImVec4_c col,float size,ImPlotDragToolFlags flags,bool* out_clicked,bool* out_hovered,bool* out_held)
{
    return ImPlot::DragPoint(id,x,y,ConvertToCPP_ImVec4(col),size,flags,out_clicked,out_hovered,out_held);
}
CIMGUI_API bool ImPlot_DragLineX(int id,double* x,const ImVec4_c col,float thickness,ImPlotDragToolFlags flags,bool* out_clicked,bool* out_hovered,bool* out_held)
{
    return ImPlot::DragLineX(id,x,ConvertToCPP_ImVec4(col),thickness,flags,out_clicked,out_hovered,out_held);
}
CIMGUI_API bool ImPlot_DragLineY(int id,double* y,const ImVec4_c col,float thickness,ImPlotDragToolFlags flags,bool* out_clicked,bool* out_hovered,bool* out_held)
{
    return ImPlot::DragLineY(id,y,ConvertToCPP_ImVec4(col),thickness,flags,out_clicked,out_hovered,out_held);
}
CIMGUI_API bool ImPlot_DragRect(int id,double* x1,double* y1,double* x2,double* y2,const ImVec4_c col,ImPlotDragToolFlags flags,bool* out_clicked,bool* out_hovered,bool* out_held)
{
    return ImPlot::DragRect(id,x1,y1,x2,y2,ConvertToCPP_ImVec4(col),flags,out_clicked,out_hovered,out_held);
}
CIMGUI_API void ImPlot_Annotation_Bool(double x,double y,const ImVec4_c col,const ImVec2_c pix_offset,bool clamp,bool round)
{
    return ImPlot::Annotation(x,y,ConvertToCPP_ImVec4(col),ConvertToCPP_ImVec2(pix_offset),clamp,round);
}
CIMGUI_API void ImPlot_Annotation_Str(double x,double y,const ImVec4_c col,const ImVec2_c pix_offset,bool clamp,const char* fmt,...)
{
    va_list args;
    va_start(args, fmt);
    ImPlot::AnnotationV(x,y,ConvertToCPP_ImVec4(col),ConvertToCPP_ImVec2(pix_offset),clamp,fmt,args);
    va_end(args);
}
#ifdef CIMGUI_VARGS0
CIMGUI_API void ImPlot_Annotation_Str0(double x,double y,const ImVec4_c col,const ImVec2_c pix_offset,bool clamp,const char* fmt)
{
    return ImPlot_Annotation_Str(x,y,col,pix_offset,clamp,fmt);
}
#endif
CIMGUI_API void ImPlot_AnnotationV(double x,double y,const ImVec4_c col,const ImVec2_c pix_offset,bool clamp,const char* fmt,va_list args)
{
    return ImPlot::AnnotationV(x,y,ConvertToCPP_ImVec4(col),ConvertToCPP_ImVec2(pix_offset),clamp,fmt,args);
}
CIMGUI_API void ImPlot_TagX_Bool(double x,const ImVec4_c col,bool round)
{
    return ImPlot::TagX(x,ConvertToCPP_ImVec4(col),round);
}
CIMGUI_API void ImPlot_TagX_Str(double x,const ImVec4_c col,const char* fmt,...)
{
    va_list args;
    va_start(args, fmt);
    ImPlot::TagXV(x,ConvertToCPP_ImVec4(col),fmt,args);
    va_end(args);
}
#ifdef CIMGUI_VARGS0
CIMGUI_API void ImPlot_TagX_Str0(double x,const ImVec4_c col,const char* fmt)
{
    return ImPlot_TagX_Str(x,col,fmt);
}
#endif
CIMGUI_API void ImPlot_TagXV(double x,const ImVec4_c col,const char* fmt,va_list args)
{
    return ImPlot::TagXV(x,ConvertToCPP_ImVec4(col),fmt,args);
}
CIMGUI_API void ImPlot_TagY_Bool(double y,const ImVec4_c col,bool round)
{
    return ImPlot::TagY(y,ConvertToCPP_ImVec4(col),round);
}
CIMGUI_API void ImPlot_TagY_Str(double y,const ImVec4_c col,const char* fmt,...)
{
    va_list args;
    va_start(args, fmt);
    ImPlot::TagYV(y,ConvertToCPP_ImVec4(col),fmt,args);
    va_end(args);
}
#ifdef CIMGUI_VARGS0
CIMGUI_API void ImPlot_TagY_Str0(double y,const ImVec4_c col,const char* fmt)
{
    return ImPlot_TagY_Str(y,col,fmt);
}
#endif
CIMGUI_API void ImPlot_TagYV(double y,const ImVec4_c col,const char* fmt,va_list args)
{
    return ImPlot::TagYV(y,ConvertToCPP_ImVec4(col),fmt,args);
}
CIMGUI_API void ImPlot_SetAxis(ImAxis axis)
{
    return ImPlot::SetAxis(axis);
}
CIMGUI_API void ImPlot_SetAxes(ImAxis x_axis,ImAxis y_axis)
{
    return ImPlot::SetAxes(x_axis,y_axis);
}
CIMGUI_API ImPlotPoint_c ImPlot_PixelsToPlot_Vec2(const ImVec2_c pix,ImAxis x_axis,ImAxis y_axis)
{
    return ConvertFromCPP_ImPlotPoint(ImPlot::PixelsToPlot(ConvertToCPP_ImVec2(pix),x_axis,y_axis));
}
CIMGUI_API ImPlotPoint_c ImPlot_PixelsToPlot_Float(float x,float y,ImAxis x_axis,ImAxis y_axis)
{
    return ConvertFromCPP_ImPlotPoint(ImPlot::PixelsToPlot(x,y,x_axis,y_axis));
}
CIMGUI_API ImVec2_c ImPlot_PlotToPixels_PlotPoint(const ImPlotPoint_c plt,ImAxis x_axis,ImAxis y_axis)
{
    return ConvertFromCPP_ImVec2(ImPlot::PlotToPixels(ConvertToCPP_ImPlotPoint(plt),x_axis,y_axis));
}
CIMGUI_API ImVec2_c ImPlot_PlotToPixels_double(double x,double y,ImAxis x_axis,ImAxis y_axis)
{
    return ConvertFromCPP_ImVec2(ImPlot::PlotToPixels(x,y,x_axis,y_axis));
}
CIMGUI_API ImVec2_c ImPlot_GetPlotPos()
{
    return ConvertFromCPP_ImVec2(ImPlot::GetPlotPos());
}
CIMGUI_API ImVec2_c ImPlot_GetPlotSize()
{
    return ConvertFromCPP_ImVec2(ImPlot::GetPlotSize());
}
CIMGUI_API ImPlotPoint_c ImPlot_GetPlotMousePos(ImAxis x_axis,ImAxis y_axis)
{
    return ConvertFromCPP_ImPlotPoint(ImPlot::GetPlotMousePos(x_axis,y_axis));
}
CIMGUI_API ImPlotRect_c ImPlot_GetPlotLimits(ImAxis x_axis,ImAxis y_axis)
{
    return ConvertFromCPP_ImPlotRect(ImPlot::GetPlotLimits(x_axis,y_axis));
}
CIMGUI_API bool ImPlot_IsPlotHovered()
{
    return ImPlot::IsPlotHovered();
}
CIMGUI_API bool ImPlot_IsAxisHovered(ImAxis axis)
{
    return ImPlot::IsAxisHovered(axis);
}
CIMGUI_API bool ImPlot_IsSubplotsHovered()
{
    return ImPlot::IsSubplotsHovered();
}
CIMGUI_API bool ImPlot_IsPlotSelected()
{
    return ImPlot::IsPlotSelected();
}
CIMGUI_API ImPlotRect_c ImPlot_GetPlotSelection(ImAxis x_axis,ImAxis y_axis)
{
    return ConvertFromCPP_ImPlotRect(ImPlot::GetPlotSelection(x_axis,y_axis));
}
CIMGUI_API void ImPlot_CancelPlotSelection()
{
    return ImPlot::CancelPlotSelection();
}
CIMGUI_API void ImPlot_HideNextItem(bool hidden,ImPlotCond cond)
{
    return ImPlot::HideNextItem(hidden,cond);
}
CIMGUI_API bool ImPlot_BeginAlignedPlots(const char* group_id,bool vertical)
{
    return ImPlot::BeginAlignedPlots(group_id,vertical);
}
CIMGUI_API void ImPlot_EndAlignedPlots()
{
    return ImPlot::EndAlignedPlots();
}
CIMGUI_API bool ImPlot_BeginLegendPopup(const char* label_id,ImGuiMouseButton mouse_button)
{
    return ImPlot::BeginLegendPopup(label_id,mouse_button);
}
CIMGUI_API void ImPlot_EndLegendPopup()
{
    return ImPlot::EndLegendPopup();
}
CIMGUI_API bool ImPlot_IsLegendEntryHovered(const char* label_id)
{
    return ImPlot::IsLegendEntryHovered(label_id);
}
CIMGUI_API bool ImPlot_BeginDragDropTargetPlot()
{
    return ImPlot::BeginDragDropTargetPlot();
}
CIMGUI_API bool ImPlot_BeginDragDropTargetAxis(ImAxis axis)
{
    return ImPlot::BeginDragDropTargetAxis(axis);
}
CIMGUI_API bool ImPlot_BeginDragDropTargetLegend()
{
    return ImPlot::BeginDragDropTargetLegend();
}
CIMGUI_API void ImPlot_EndDragDropTarget()
{
    return ImPlot::EndDragDropTarget();
}
CIMGUI_API bool ImPlot_BeginDragDropSourcePlot(ImGuiDragDropFlags flags)
{
    return ImPlot::BeginDragDropSourcePlot(flags);
}
CIMGUI_API bool ImPlot_BeginDragDropSourceAxis(ImAxis axis,ImGuiDragDropFlags flags)
{
    return ImPlot::BeginDragDropSourceAxis(axis,flags);
}
CIMGUI_API bool ImPlot_BeginDragDropSourceItem(const char* label_id,ImGuiDragDropFlags flags)
{
    return ImPlot::BeginDragDropSourceItem(label_id,flags);
}
CIMGUI_API void ImPlot_EndDragDropSource()
{
    return ImPlot::EndDragDropSource();
}
CIMGUI_API ImPlotStyle* ImPlot_GetStyle()
{
    return &ImPlot::GetStyle();
}
CIMGUI_API void ImPlot_StyleColorsAuto(ImPlotStyle* dst)
{
    return ImPlot::StyleColorsAuto(dst);
}
CIMGUI_API void ImPlot_StyleColorsClassic(ImPlotStyle* dst)
{
    return ImPlot::StyleColorsClassic(dst);
}
CIMGUI_API void ImPlot_StyleColorsDark(ImPlotStyle* dst)
{
    return ImPlot::StyleColorsDark(dst);
}
CIMGUI_API void ImPlot_StyleColorsLight(ImPlotStyle* dst)
{
    return ImPlot::StyleColorsLight(dst);
}
CIMGUI_API void ImPlot_PushStyleColor_U32(ImPlotCol idx,ImU32 col)
{
    return ImPlot::PushStyleColor(idx,col);
}
CIMGUI_API void ImPlot_PushStyleColor_Vec4(ImPlotCol idx,const ImVec4_c col)
{
    return ImPlot::PushStyleColor(idx,ConvertToCPP_ImVec4(col));
}
CIMGUI_API void ImPlot_PopStyleColor(int count)
{
    return ImPlot::PopStyleColor(count);
}
CIMGUI_API void ImPlot_PushStyleVar_Float(ImPlotStyleVar idx,float val)
{
    return ImPlot::PushStyleVar(idx,val);
}
CIMGUI_API void ImPlot_PushStyleVar_Int(ImPlotStyleVar idx,int val)
{
    return ImPlot::PushStyleVar(idx,val);
}
CIMGUI_API void ImPlot_PushStyleVar_Vec2(ImPlotStyleVar idx,const ImVec2_c val)
{
    return ImPlot::PushStyleVar(idx,ConvertToCPP_ImVec2(val));
}
CIMGUI_API void ImPlot_PopStyleVar(int count)
{
    return ImPlot::PopStyleVar(count);
}
CIMGUI_API ImVec4_c ImPlot_GetLastItemColor()
{
    return ConvertFromCPP_ImVec4(ImPlot::GetLastItemColor());
}
CIMGUI_API const char* ImPlot_GetStyleColorName(ImPlotCol idx)
{
    return ImPlot::GetStyleColorName(idx);
}
CIMGUI_API const char* ImPlot_GetMarkerName(ImPlotMarker idx)
{
    return ImPlot::GetMarkerName(idx);
}
CIMGUI_API ImPlotMarker ImPlot_NextMarker()
{
    return ImPlot::NextMarker();
}
CIMGUI_API ImPlotColormap ImPlot_AddColormap_Vec4Ptr(const char* name,const ImVec4* cols,int size,bool qual)
{
    return ImPlot::AddColormap(name,cols,size,qual);
}
CIMGUI_API ImPlotColormap ImPlot_AddColormap_U32Ptr(const char* name,const ImU32* cols,int size,bool qual)
{
    return ImPlot::AddColormap(name,cols,size,qual);
}
CIMGUI_API int ImPlot_GetColormapCount()
{
    return ImPlot::GetColormapCount();
}
CIMGUI_API const char* ImPlot_GetColormapName(ImPlotColormap cmap)
{
    return ImPlot::GetColormapName(cmap);
}
CIMGUI_API ImPlotColormap ImPlot_GetColormapIndex(const char* name)
{
    return ImPlot::GetColormapIndex(name);
}
CIMGUI_API void ImPlot_PushColormap_PlotColormap(ImPlotColormap cmap)
{
    return ImPlot::PushColormap(cmap);
}
CIMGUI_API void ImPlot_PushColormap_Str(const char* name)
{
    return ImPlot::PushColormap(name);
}
CIMGUI_API void ImPlot_PopColormap(int count)
{
    return ImPlot::PopColormap(count);
}
CIMGUI_API ImVec4_c ImPlot_NextColormapColor()
{
    return ConvertFromCPP_ImVec4(ImPlot::NextColormapColor());
}
CIMGUI_API int ImPlot_GetColormapSize(ImPlotColormap cmap)
{
    return ImPlot::GetColormapSize(cmap);
}
CIMGUI_API ImVec4_c ImPlot_GetColormapColor(int idx,ImPlotColormap cmap)
{
    return ConvertFromCPP_ImVec4(ImPlot::GetColormapColor(idx,cmap));
}
CIMGUI_API ImVec4_c ImPlot_SampleColormap(float t,ImPlotColormap cmap)
{
    return ConvertFromCPP_ImVec4(ImPlot::SampleColormap(t,cmap));
}
CIMGUI_API void ImPlot_ColormapScale(const char* label,double scale_min,double scale_max,const ImVec2_c size,const char* format,ImPlotColormapScaleFlags flags,ImPlotColormap cmap)
{
    return ImPlot::ColormapScale(label,scale_min,scale_max,ConvertToCPP_ImVec2(size),format,flags,cmap);
}
CIMGUI_API bool ImPlot_ColormapSlider(const char* label,float* t,ImVec4* out,const char* format,ImPlotColormap cmap)
{
    return ImPlot::ColormapSlider(label,t,out,format,cmap);
}
CIMGUI_API bool ImPlot_ColormapButton(const char* label,const ImVec2_c size,ImPlotColormap cmap)
{
    return ImPlot::ColormapButton(label,ConvertToCPP_ImVec2(size),cmap);
}
CIMGUI_API void ImPlot_BustColorCache(const char* plot_title_id)
{
    return ImPlot::BustColorCache(plot_title_id);
}
CIMGUI_API ImPlotInputMap* ImPlot_GetInputMap()
{
    return &ImPlot::GetInputMap();
}
CIMGUI_API void ImPlot_MapInputDefault(ImPlotInputMap* dst)
{
    return ImPlot::MapInputDefault(dst);
}
CIMGUI_API void ImPlot_MapInputReverse(ImPlotInputMap* dst)
{
    return ImPlot::MapInputReverse(dst);
}
CIMGUI_API void ImPlot_ItemIcon_Vec4(const ImVec4_c col)
{
    return ImPlot::ItemIcon(ConvertToCPP_ImVec4(col));
}
CIMGUI_API void ImPlot_ItemIcon_U32(ImU32 col)
{
    return ImPlot::ItemIcon(col);
}
CIMGUI_API void ImPlot_ColormapIcon(ImPlotColormap cmap)
{
    return ImPlot::ColormapIcon(cmap);
}
CIMGUI_API ImDrawList* ImPlot_GetPlotDrawList()
{
    return ImPlot::GetPlotDrawList();
}
CIMGUI_API void ImPlot_PushPlotClipRect(float expand)
{
    return ImPlot::PushPlotClipRect(expand);
}
CIMGUI_API void ImPlot_PopPlotClipRect()
{
    return ImPlot::PopPlotClipRect();
}
CIMGUI_API bool ImPlot_ShowStyleSelector(const char* label)
{
    return ImPlot::ShowStyleSelector(label);
}
CIMGUI_API bool ImPlot_ShowColormapSelector(const char* label)
{
    return ImPlot::ShowColormapSelector(label);
}
CIMGUI_API bool ImPlot_ShowInputMapSelector(const char* label)
{
    return ImPlot::ShowInputMapSelector(label);
}
CIMGUI_API void ImPlot_ShowStyleEditor(ImPlotStyle* ref)
{
    return ImPlot::ShowStyleEditor(ref);
}
CIMGUI_API void ImPlot_ShowUserGuide()
{
    return ImPlot::ShowUserGuide();
}
CIMGUI_API void ImPlot_ShowMetricsWindow(bool* p_popen)
{
    return ImPlot::ShowMetricsWindow(p_popen);
}
CIMGUI_API void ImPlot_ShowDemoWindow(bool* p_open)
{
    return ImPlot::ShowDemoWindow(p_open);
}
CIMGUI_API float ImPlot_ImLog10_Float(float x)
{
    return ImLog10(x);
}
CIMGUI_API double ImPlot_ImLog10_double(double x)
{
    return ImLog10(x);
}
CIMGUI_API float ImPlot_ImSinh_Float(float x)
{
    return ImSinh(x);
}
CIMGUI_API double ImPlot_ImSinh_double(double x)
{
    return ImSinh(x);
}
CIMGUI_API float ImPlot_ImAsinh_Float(float x)
{
    return ImAsinh(x);
}
CIMGUI_API double ImPlot_ImAsinh_double(double x)
{
    return ImAsinh(x);
}
CIMGUI_API float ImPlot_ImRemap_Float(float x,float x0,float x1,float y0,float y1)
{
    return ImRemap(x,x0,x1,y0,y1);
}
CIMGUI_API double ImPlot_ImRemap_double(double x,double x0,double x1,double y0,double y1)
{
    return ImRemap(x,x0,x1,y0,y1);
}
CIMGUI_API ImS8 ImPlot_ImRemap_S8(ImS8 x,ImS8 x0,ImS8 x1,ImS8 y0,ImS8 y1)
{
    return ImRemap(x,x0,x1,y0,y1);
}
CIMGUI_API ImU8 ImPlot_ImRemap_U8(ImU8 x,ImU8 x0,ImU8 x1,ImU8 y0,ImU8 y1)
{
    return ImRemap(x,x0,x1,y0,y1);
}
CIMGUI_API ImS16 ImPlot_ImRemap_S16(ImS16 x,ImS16 x0,ImS16 x1,ImS16 y0,ImS16 y1)
{
    return ImRemap(x,x0,x1,y0,y1);
}
CIMGUI_API ImU16 ImPlot_ImRemap_U16(ImU16 x,ImU16 x0,ImU16 x1,ImU16 y0,ImU16 y1)
{
    return ImRemap(x,x0,x1,y0,y1);
}
CIMGUI_API ImS32 ImPlot_ImRemap_S32(ImS32 x,ImS32 x0,ImS32 x1,ImS32 y0,ImS32 y1)
{
    return ImRemap(x,x0,x1,y0,y1);
}
CIMGUI_API ImU32 ImPlot_ImRemap_U32(ImU32 x,ImU32 x0,ImU32 x1,ImU32 y0,ImU32 y1)
{
    return ImRemap(x,x0,x1,y0,y1);
}
CIMGUI_API ImS64 ImPlot_ImRemap_S64(ImS64 x,ImS64 x0,ImS64 x1,ImS64 y0,ImS64 y1)
{
    return ImRemap(x,x0,x1,y0,y1);
}
CIMGUI_API ImU64 ImPlot_ImRemap_U64(ImU64 x,ImU64 x0,ImU64 x1,ImU64 y0,ImU64 y1)
{
    return ImRemap(x,x0,x1,y0,y1);
}
CIMGUI_API float ImPlot_ImRemap01_Float(float x,float x0,float x1)
{
    return ImRemap01(x,x0,x1);
}
CIMGUI_API double ImPlot_ImRemap01_double(double x,double x0,double x1)
{
    return ImRemap01(x,x0,x1);
}
CIMGUI_API ImS8 ImPlot_ImRemap01_S8(ImS8 x,ImS8 x0,ImS8 x1)
{
    return ImRemap01(x,x0,x1);
}
CIMGUI_API ImU8 ImPlot_ImRemap01_U8(ImU8 x,ImU8 x0,ImU8 x1)
{
    return ImRemap01(x,x0,x1);
}
CIMGUI_API ImS16 ImPlot_ImRemap01_S16(ImS16 x,ImS16 x0,ImS16 x1)
{
    return ImRemap01(x,x0,x1);
}
CIMGUI_API ImU16 ImPlot_ImRemap01_U16(ImU16 x,ImU16 x0,ImU16 x1)
{
    return ImRemap01(x,x0,x1);
}
CIMGUI_API ImS32 ImPlot_ImRemap01_S32(ImS32 x,ImS32 x0,ImS32 x1)
{
    return ImRemap01(x,x0,x1);
}
CIMGUI_API ImU32 ImPlot_ImRemap01_U32(ImU32 x,ImU32 x0,ImU32 x1)
{
    return ImRemap01(x,x0,x1);
}
CIMGUI_API ImS64 ImPlot_ImRemap01_S64(ImS64 x,ImS64 x0,ImS64 x1)
{
    return ImRemap01(x,x0,x1);
}
CIMGUI_API ImU64 ImPlot_ImRemap01_U64(ImU64 x,ImU64 x0,ImU64 x1)
{
    return ImRemap01(x,x0,x1);
}
CIMGUI_API int ImPlot_ImPosMod(int l,int r)
{
    return ImPosMod(l,r);
}
CIMGUI_API bool ImPlot_ImNan(double val)
{
    return ImNan(val);
}
CIMGUI_API bool ImPlot_ImNanOrInf(double val)
{
    return ImNanOrInf(val);
}
CIMGUI_API double ImPlot_ImConstrainNan(double val)
{
    return ImConstrainNan(val);
}
CIMGUI_API double ImPlot_ImConstrainInf(double val)
{
    return ImConstrainInf(val);
}
CIMGUI_API double ImPlot_ImConstrainLog(double val)
{
    return ImConstrainLog(val);
}
CIMGUI_API double ImPlot_ImConstrainTime(double val)
{
    return ImConstrainTime(val);
}
CIMGUI_API bool ImPlot_ImAlmostEqual(double v1,double v2,int ulp)
{
    return ImAlmostEqual(v1,v2,ulp);
}
CIMGUI_API float ImPlot_ImMinArray_FloatPtr(const float* values,int count)
{
    return ImMinArray(values,count);
}
CIMGUI_API double ImPlot_ImMinArray_doublePtr(const double* values,int count)
{
    return ImMinArray(values,count);
}
CIMGUI_API ImS8 ImPlot_ImMinArray_S8Ptr(const ImS8* values,int count)
{
    return ImMinArray(values,count);
}
CIMGUI_API ImU8 ImPlot_ImMinArray_U8Ptr(const ImU8* values,int count)
{
    return ImMinArray(values,count);
}
CIMGUI_API ImS16 ImPlot_ImMinArray_S16Ptr(const ImS16* values,int count)
{
    return ImMinArray(values,count);
}
CIMGUI_API ImU16 ImPlot_ImMinArray_U16Ptr(const ImU16* values,int count)
{
    return ImMinArray(values,count);
}
CIMGUI_API ImS32 ImPlot_ImMinArray_S32Ptr(const ImS32* values,int count)
{
    return ImMinArray(values,count);
}
CIMGUI_API ImU32 ImPlot_ImMinArray_U32Ptr(const ImU32* values,int count)
{
    return ImMinArray(values,count);
}
CIMGUI_API ImS64 ImPlot_ImMinArray_S64Ptr(const ImS64* values,int count)
{
    return ImMinArray(values,count);
}
CIMGUI_API ImU64 ImPlot_ImMinArray_U64Ptr(const ImU64* values,int count)
{
    return ImMinArray(values,count);
}
CIMGUI_API float ImPlot_ImMaxArray_FloatPtr(const float* values,int count)
{
    return ImMaxArray(values,count);
}
CIMGUI_API double ImPlot_ImMaxArray_doublePtr(const double* values,int count)
{
    return ImMaxArray(values,count);
}
CIMGUI_API ImS8 ImPlot_ImMaxArray_S8Ptr(const ImS8* values,int count)
{
    return ImMaxArray(values,count);
}
CIMGUI_API ImU8 ImPlot_ImMaxArray_U8Ptr(const ImU8* values,int count)
{
    return ImMaxArray(values,count);
}
CIMGUI_API ImS16 ImPlot_ImMaxArray_S16Ptr(const ImS16* values,int count)
{
    return ImMaxArray(values,count);
}
CIMGUI_API ImU16 ImPlot_ImMaxArray_U16Ptr(const ImU16* values,int count)
{
    return ImMaxArray(values,count);
}
CIMGUI_API ImS32 ImPlot_ImMaxArray_S32Ptr(const ImS32* values,int count)
{
    return ImMaxArray(values,count);
}
CIMGUI_API ImU32 ImPlot_ImMaxArray_U32Ptr(const ImU32* values,int count)
{
    return ImMaxArray(values,count);
}
CIMGUI_API ImS64 ImPlot_ImMaxArray_S64Ptr(const ImS64* values,int count)
{
    return ImMaxArray(values,count);
}
CIMGUI_API ImU64 ImPlot_ImMaxArray_U64Ptr(const ImU64* values,int count)
{
    return ImMaxArray(values,count);
}
CIMGUI_API void ImPlot_ImMinMaxArray_FloatPtr(const float* values,int count,float* min_out,float* max_out)
{
    return ImMinMaxArray(values,count,min_out,max_out);
}
CIMGUI_API void ImPlot_ImMinMaxArray_doublePtr(const double* values,int count,double* min_out,double* max_out)
{
    return ImMinMaxArray(values,count,min_out,max_out);
}
CIMGUI_API void ImPlot_ImMinMaxArray_S8Ptr(const ImS8* values,int count,ImS8* min_out,ImS8* max_out)
{
    return ImMinMaxArray(values,count,min_out,max_out);
}
CIMGUI_API void ImPlot_ImMinMaxArray_U8Ptr(const ImU8* values,int count,ImU8* min_out,ImU8* max_out)
{
    return ImMinMaxArray(values,count,min_out,max_out);
}
CIMGUI_API void ImPlot_ImMinMaxArray_S16Ptr(const ImS16* values,int count,ImS16* min_out,ImS16* max_out)
{
    return ImMinMaxArray(values,count,min_out,max_out);
}
CIMGUI_API void ImPlot_ImMinMaxArray_U16Ptr(const ImU16* values,int count,ImU16* min_out,ImU16* max_out)
{
    return ImMinMaxArray(values,count,min_out,max_out);
}
CIMGUI_API void ImPlot_ImMinMaxArray_S32Ptr(const ImS32* values,int count,ImS32* min_out,ImS32* max_out)
{
    return ImMinMaxArray(values,count,min_out,max_out);
}
CIMGUI_API void ImPlot_ImMinMaxArray_U32Ptr(const ImU32* values,int count,ImU32* min_out,ImU32* max_out)
{
    return ImMinMaxArray(values,count,min_out,max_out);
}
CIMGUI_API void ImPlot_ImMinMaxArray_S64Ptr(const ImS64* values,int count,ImS64* min_out,ImS64* max_out)
{
    return ImMinMaxArray(values,count,min_out,max_out);
}
CIMGUI_API void ImPlot_ImMinMaxArray_U64Ptr(const ImU64* values,int count,ImU64* min_out,ImU64* max_out)
{
    return ImMinMaxArray(values,count,min_out,max_out);
}
CIMGUI_API float ImPlot_ImSum_FloatPtr(const float* values,int count)
{
    return ImSum(values,count);
}
CIMGUI_API double ImPlot_ImSum_doublePtr(const double* values,int count)
{
    return ImSum(values,count);
}
CIMGUI_API ImS8 ImPlot_ImSum_S8Ptr(const ImS8* values,int count)
{
    return ImSum(values,count);
}
CIMGUI_API ImU8 ImPlot_ImSum_U8Ptr(const ImU8* values,int count)
{
    return ImSum(values,count);
}
CIMGUI_API ImS16 ImPlot_ImSum_S16Ptr(const ImS16* values,int count)
{
    return ImSum(values,count);
}
CIMGUI_API ImU16 ImPlot_ImSum_U16Ptr(const ImU16* values,int count)
{
    return ImSum(values,count);
}
CIMGUI_API ImS32 ImPlot_ImSum_S32Ptr(const ImS32* values,int count)
{
    return ImSum(values,count);
}
CIMGUI_API ImU32 ImPlot_ImSum_U32Ptr(const ImU32* values,int count)
{
    return ImSum(values,count);
}
CIMGUI_API ImS64 ImPlot_ImSum_S64Ptr(const ImS64* values,int count)
{
    return ImSum(values,count);
}
CIMGUI_API ImU64 ImPlot_ImSum_U64Ptr(const ImU64* values,int count)
{
    return ImSum(values,count);
}
CIMGUI_API double ImPlot_ImMean_FloatPtr(const float* values,int count)
{
    return ImMean(values,count);
}
CIMGUI_API double ImPlot_ImMean_doublePtr(const double* values,int count)
{
    return ImMean(values,count);
}
CIMGUI_API double ImPlot_ImMean_S8Ptr(const ImS8* values,int count)
{
    return ImMean(values,count);
}
CIMGUI_API double ImPlot_ImMean_U8Ptr(const ImU8* values,int count)
{
    return ImMean(values,count);
}
CIMGUI_API double ImPlot_ImMean_S16Ptr(const ImS16* values,int count)
{
    return ImMean(values,count);
}
CIMGUI_API double ImPlot_ImMean_U16Ptr(const ImU16* values,int count)
{
    return ImMean(values,count);
}
CIMGUI_API double ImPlot_ImMean_S32Ptr(const ImS32* values,int count)
{
    return ImMean(values,count);
}
CIMGUI_API double ImPlot_ImMean_U32Ptr(const ImU32* values,int count)
{
    return ImMean(values,count);
}
CIMGUI_API double ImPlot_ImMean_S64Ptr(const ImS64* values,int count)
{
    return ImMean(values,count);
}
CIMGUI_API double ImPlot_ImMean_U64Ptr(const ImU64* values,int count)
{
    return ImMean(values,count);
}
CIMGUI_API double ImPlot_ImStdDev_FloatPtr(const float* values,int count)
{
    return ImStdDev(values,count);
}
CIMGUI_API double ImPlot_ImStdDev_doublePtr(const double* values,int count)
{
    return ImStdDev(values,count);
}
CIMGUI_API double ImPlot_ImStdDev_S8Ptr(const ImS8* values,int count)
{
    return ImStdDev(values,count);
}
CIMGUI_API double ImPlot_ImStdDev_U8Ptr(const ImU8* values,int count)
{
    return ImStdDev(values,count);
}
CIMGUI_API double ImPlot_ImStdDev_S16Ptr(const ImS16* values,int count)
{
    return ImStdDev(values,count);
}
CIMGUI_API double ImPlot_ImStdDev_U16Ptr(const ImU16* values,int count)
{
    return ImStdDev(values,count);
}
CIMGUI_API double ImPlot_ImStdDev_S32Ptr(const ImS32* values,int count)
{
    return ImStdDev(values,count);
}
CIMGUI_API double ImPlot_ImStdDev_U32Ptr(const ImU32* values,int count)
{
    return ImStdDev(values,count);
}
CIMGUI_API double ImPlot_ImStdDev_S64Ptr(const ImS64* values,int count)
{
    return ImStdDev(values,count);
}
CIMGUI_API double ImPlot_ImStdDev_U64Ptr(const ImU64* values,int count)
{
    return ImStdDev(values,count);
}
CIMGUI_API ImU32 ImPlot_ImMixU32(ImU32 a,ImU32 b,ImU32 s)
{
    return ImMixU32(a,b,s);
}
CIMGUI_API ImU32 ImPlot_ImLerpU32(const ImU32* colors,int size,float t)
{
    return ImLerpU32(colors,size,t);
}
CIMGUI_API ImU32 ImPlot_ImAlphaU32(ImU32 col,float alpha)
{
    return ImAlphaU32(col,alpha);
}
CIMGUI_API bool ImPlot_ImOverlaps_Float(float min_a,float max_a,float min_b,float max_b)
{
    return ImOverlaps(min_a,max_a,min_b,max_b);
}
CIMGUI_API bool ImPlot_ImOverlaps_double(double min_a,double max_a,double min_b,double max_b)
{
    return ImOverlaps(min_a,max_a,min_b,max_b);
}
CIMGUI_API bool ImPlot_ImOverlaps_S8(ImS8 min_a,ImS8 max_a,ImS8 min_b,ImS8 max_b)
{
    return ImOverlaps(min_a,max_a,min_b,max_b);
}
CIMGUI_API bool ImPlot_ImOverlaps_U8(ImU8 min_a,ImU8 max_a,ImU8 min_b,ImU8 max_b)
{
    return ImOverlaps(min_a,max_a,min_b,max_b);
}
CIMGUI_API bool ImPlot_ImOverlaps_S16(ImS16 min_a,ImS16 max_a,ImS16 min_b,ImS16 max_b)
{
    return ImOverlaps(min_a,max_a,min_b,max_b);
}
CIMGUI_API bool ImPlot_ImOverlaps_U16(ImU16 min_a,ImU16 max_a,ImU16 min_b,ImU16 max_b)
{
    return ImOverlaps(min_a,max_a,min_b,max_b);
}
CIMGUI_API bool ImPlot_ImOverlaps_S32(ImS32 min_a,ImS32 max_a,ImS32 min_b,ImS32 max_b)
{
    return ImOverlaps(min_a,max_a,min_b,max_b);
}
CIMGUI_API bool ImPlot_ImOverlaps_U32(ImU32 min_a,ImU32 max_a,ImU32 min_b,ImU32 max_b)
{
    return ImOverlaps(min_a,max_a,min_b,max_b);
}
CIMGUI_API bool ImPlot_ImOverlaps_S64(ImS64 min_a,ImS64 max_a,ImS64 min_b,ImS64 max_b)
{
    return ImOverlaps(min_a,max_a,min_b,max_b);
}
CIMGUI_API bool ImPlot_ImOverlaps_U64(ImU64 min_a,ImU64 max_a,ImU64 min_b,ImU64 max_b)
{
    return ImOverlaps(min_a,max_a,min_b,max_b);
}
CIMGUI_API ImPlotDateTimeSpec* ImPlotDateTimeSpec_ImPlotDateTimeSpec_Nil(void)
{
    return IM_NEW(ImPlotDateTimeSpec)();
}
CIMGUI_API void ImPlotDateTimeSpec_destroy(ImPlotDateTimeSpec* self)
{
    IM_DELETE(self);
}
CIMGUI_API ImPlotDateTimeSpec* ImPlotDateTimeSpec_ImPlotDateTimeSpec_PlotDateFmt(ImPlotDateFmt date_fmt,ImPlotTimeFmt time_fmt,bool use_24_hr_clk,bool use_iso_8601)
{
    return IM_NEW(ImPlotDateTimeSpec)(date_fmt,time_fmt,use_24_hr_clk,use_iso_8601);
}
CIMGUI_API ImPlotTime* ImPlotTime_ImPlotTime_Nil(void)
{
    return IM_NEW(ImPlotTime)();
}
CIMGUI_API void ImPlotTime_destroy(ImPlotTime* self)
{
    IM_DELETE(self);
}
CIMGUI_API ImPlotTime* ImPlotTime_ImPlotTime_time_t(time_t s,int us)
{
    return IM_NEW(ImPlotTime)(s,us);
}
CIMGUI_API void ImPlotTime_RollOver(ImPlotTime* self)
{
    return self->RollOver();
}
CIMGUI_API double ImPlotTime_ToDouble(ImPlotTime* self)
{
    return self->ToDouble();
}
CIMGUI_API ImPlotTime_c ImPlotTime_FromDouble(double t)
{
    return ConvertFromCPP_ImPlotTime(ImPlotTime::FromDouble(t));
}
CIMGUI_API ImPlotColormapData* ImPlotColormapData_ImPlotColormapData(void)
{
    return IM_NEW(ImPlotColormapData)();
}
CIMGUI_API void ImPlotColormapData_destroy(ImPlotColormapData* self)
{
    IM_DELETE(self);
}
CIMGUI_API int ImPlotColormapData_Append(ImPlotColormapData* self,const char* name,const ImU32* keys,int count,bool qual)
{
    return self->Append(name,keys,count,qual);
}
CIMGUI_API void ImPlotColormapData__AppendTable(ImPlotColormapData* self,ImPlotColormap cmap)
{
    return self->_AppendTable(cmap);
}
CIMGUI_API void ImPlotColormapData_RebuildTables(ImPlotColormapData* self)
{
    return self->RebuildTables();
}
CIMGUI_API bool ImPlotColormapData_IsQual(ImPlotColormapData* self,ImPlotColormap cmap)
{
    return self->IsQual(cmap);
}
CIMGUI_API const char* ImPlotColormapData_GetName(ImPlotColormapData* self,ImPlotColormap cmap)
{
    return self->GetName(cmap);
}
CIMGUI_API ImPlotColormap ImPlotColormapData_GetIndex(ImPlotColormapData* self,const char* name)
{
    return self->GetIndex(name);
}
CIMGUI_API const ImU32* ImPlotColormapData_GetKeys(ImPlotColormapData* self,ImPlotColormap cmap)
{
    return self->GetKeys(cmap);
}
CIMGUI_API int ImPlotColormapData_GetKeyCount(ImPlotColormapData* self,ImPlotColormap cmap)
{
    return self->GetKeyCount(cmap);
}
CIMGUI_API ImU32 ImPlotColormapData_GetKeyColor(ImPlotColormapData* self,ImPlotColormap cmap,int idx)
{
    return self->GetKeyColor(cmap,idx);
}
CIMGUI_API void ImPlotColormapData_SetKeyColor(ImPlotColormapData* self,ImPlotColormap cmap,int idx,ImU32 value)
{
    return self->SetKeyColor(cmap,idx,value);
}
CIMGUI_API const ImU32* ImPlotColormapData_GetTable(ImPlotColormapData* self,ImPlotColormap cmap)
{
    return self->GetTable(cmap);
}
CIMGUI_API int ImPlotColormapData_GetTableSize(ImPlotColormapData* self,ImPlotColormap cmap)
{
    return self->GetTableSize(cmap);
}
CIMGUI_API ImU32 ImPlotColormapData_GetTableColor(ImPlotColormapData* self,ImPlotColormap cmap,int idx)
{
    return self->GetTableColor(cmap,idx);
}
CIMGUI_API ImU32 ImPlotColormapData_LerpTable(ImPlotColormapData* self,ImPlotColormap cmap,float t)
{
    return self->LerpTable(cmap,t);
}
CIMGUI_API ImPlotPointError* ImPlotPointError_ImPlotPointError_Nil(void)
{
    return IM_NEW(ImPlotPointError)();
}
CIMGUI_API void ImPlotPointError_destroy(ImPlotPointError* self)
{
    IM_DELETE(self);
}
CIMGUI_API ImPlotPointError* ImPlotPointError_ImPlotPointError_double(double x,double y,double neg,double pos)
{
    return IM_NEW(ImPlotPointError)(x,y,neg,pos);
}
CIMGUI_API ImPlotAnnotation* ImPlotAnnotation_ImPlotAnnotation(void)
{
    return IM_NEW(ImPlotAnnotation)();
}
CIMGUI_API void ImPlotAnnotation_destroy(ImPlotAnnotation* self)
{
    IM_DELETE(self);
}
CIMGUI_API ImPlotAnnotationCollection* ImPlotAnnotationCollection_ImPlotAnnotationCollection(void)
{
    return IM_NEW(ImPlotAnnotationCollection)();
}
CIMGUI_API void ImPlotAnnotationCollection_destroy(ImPlotAnnotationCollection* self)
{
    IM_DELETE(self);
}
CIMGUI_API void ImPlotAnnotationCollection_AppendV(ImPlotAnnotationCollection* self,const ImVec2_c pos,const ImVec2_c off,ImU32 bg,ImU32 fg,bool clamp,const char* fmt,va_list args)
{
    return self->AppendV(ConvertToCPP_ImVec2(pos),ConvertToCPP_ImVec2(off),bg,fg,clamp,fmt,args);
}
CIMGUI_API void ImPlotAnnotationCollection_Append(ImPlotAnnotationCollection* self,const ImVec2_c pos,const ImVec2_c off,ImU32 bg,ImU32 fg,bool clamp,const char* fmt,...)
{
    va_list args;
    va_start(args, fmt);
    self->AppendV(ConvertToCPP_ImVec2(pos),ConvertToCPP_ImVec2(off),bg,fg,clamp,fmt,args);
    va_end(args);
}
CIMGUI_API const char* ImPlotAnnotationCollection_GetText(ImPlotAnnotationCollection* self,int idx)
{
    return self->GetText(idx);
}
CIMGUI_API void ImPlotAnnotationCollection_Reset(ImPlotAnnotationCollection* self)
{
    return self->Reset();
}
CIMGUI_API ImPlotTag* ImPlotTag_ImPlotTag(void)
{
    return IM_NEW(ImPlotTag)();
}
CIMGUI_API void ImPlotTag_destroy(ImPlotTag* self)
{
    IM_DELETE(self);
}
CIMGUI_API ImPlotTagCollection* ImPlotTagCollection_ImPlotTagCollection(void)
{
    return IM_NEW(ImPlotTagCollection)();
}
CIMGUI_API void ImPlotTagCollection_destroy(ImPlotTagCollection* self)
{
    IM_DELETE(self);
}
CIMGUI_API void ImPlotTagCollection_AppendV(ImPlotTagCollection* self,ImAxis axis,double value,ImU32 bg,ImU32 fg,const char* fmt,va_list args)
{
    return self->AppendV(axis,value,bg,fg,fmt,args);
}
CIMGUI_API void ImPlotTagCollection_Append(ImPlotTagCollection* self,ImAxis axis,double value,ImU32 bg,ImU32 fg,const char* fmt,...)
{
    va_list args;
    va_start(args, fmt);
    self->AppendV(axis,value,bg,fg,fmt,args);
    va_end(args);
}
CIMGUI_API const char* ImPlotTagCollection_GetText(ImPlotTagCollection* self,int idx)
{
    return self->GetText(idx);
}
CIMGUI_API void ImPlotTagCollection_Reset(ImPlotTagCollection* self)
{
    return self->Reset();
}
CIMGUI_API ImPlotTick* ImPlotTick_ImPlotTick_Nil(void)
{
    return IM_NEW(ImPlotTick)();
}
CIMGUI_API void ImPlotTick_destroy(ImPlotTick* self)
{
    IM_DELETE(self);
}
CIMGUI_API ImPlotTick* ImPlotTick_ImPlotTick_double(double value,bool major,int level,bool show_label)
{
    return IM_NEW(ImPlotTick)(value,major,level,show_label);
}
CIMGUI_API ImPlotTicker* ImPlotTicker_ImPlotTicker(void)
{
    return IM_NEW(ImPlotTicker)();
}
CIMGUI_API void ImPlotTicker_destroy(ImPlotTicker* self)
{
    IM_DELETE(self);
}
CIMGUI_API ImPlotTick* ImPlotTicker_AddTick_doubleStr(ImPlotTicker* self,double value,bool major,int level,bool show_label,const char* label)
{
    return &self->AddTick(value,major,level,show_label,label);
}
CIMGUI_API ImPlotTick* ImPlotTicker_AddTick_doublePlotFormatter(ImPlotTicker* self,double value,bool major,int level,bool show_label,ImPlotFormatter formatter,void* data)
{
    return &self->AddTick(value,major,level,show_label,formatter,data);
}
CIMGUI_API ImPlotTick* ImPlotTicker_AddTick_PlotTick(ImPlotTicker* self,ImPlotTick_c tick)
{
    return &self->AddTick(ConvertToCPP_ImPlotTick(tick));
}
CIMGUI_API const char* ImPlotTicker_GetText_Int(ImPlotTicker* self,int idx)
{
    return self->GetText(idx);
}
CIMGUI_API const char* ImPlotTicker_GetText_PlotTick(ImPlotTicker* self,const ImPlotTick_c tick)
{
    return self->GetText(ConvertToCPP_ImPlotTick(tick));
}
CIMGUI_API void ImPlotTicker_OverrideSizeLate(ImPlotTicker* self,const ImVec2_c size)
{
    return self->OverrideSizeLate(ConvertToCPP_ImVec2(size));
}
CIMGUI_API void ImPlotTicker_Reset(ImPlotTicker* self)
{
    return self->Reset();
}
CIMGUI_API int ImPlotTicker_TickCount(ImPlotTicker* self)
{
    return self->TickCount();
}
CIMGUI_API ImPlotAxis* ImPlotAxis_ImPlotAxis(void)
{
    return IM_NEW(ImPlotAxis)();
}
CIMGUI_API void ImPlotAxis_destroy(ImPlotAxis* self)
{
    IM_DELETE(self);
}
CIMGUI_API void ImPlotAxis_Reset(ImPlotAxis* self)
{
    return self->Reset();
}
CIMGUI_API bool ImPlotAxis_SetMin(ImPlotAxis* self,double _min,bool force)
{
    return self->SetMin(_min,force);
}
CIMGUI_API bool ImPlotAxis_SetMax(ImPlotAxis* self,double _max,bool force)
{
    return self->SetMax(_max,force);
}
CIMGUI_API void ImPlotAxis_SetRange_double(ImPlotAxis* self,double v1,double v2)
{
    return self->SetRange(v1,v2);
}
CIMGUI_API void ImPlotAxis_SetRange_PlotRange(ImPlotAxis* self,const ImPlotRange_c range)
{
    return self->SetRange(ConvertToCPP_ImPlotRange(range));
}
CIMGUI_API void ImPlotAxis_SetAspect(ImPlotAxis* self,double unit_per_pix)
{
    return self->SetAspect(unit_per_pix);
}
CIMGUI_API float ImPlotAxis_PixelSize(ImPlotAxis* self)
{
    return self->PixelSize();
}
CIMGUI_API double ImPlotAxis_GetAspect(ImPlotAxis* self)
{
    return self->GetAspect();
}
CIMGUI_API void ImPlotAxis_Constrain(ImPlotAxis* self)
{
    return self->Constrain();
}
CIMGUI_API void ImPlotAxis_UpdateTransformCache(ImPlotAxis* self)
{
    return self->UpdateTransformCache();
}
CIMGUI_API float ImPlotAxis_PlotToPixels(ImPlotAxis* self,double plt)
{
    return self->PlotToPixels(plt);
}
CIMGUI_API double ImPlotAxis_PixelsToPlot(ImPlotAxis* self,float pix)
{
    return self->PixelsToPlot(pix);
}
CIMGUI_API void ImPlotAxis_ExtendFit(ImPlotAxis* self,double v)
{
    return self->ExtendFit(v);
}
CIMGUI_API void ImPlotAxis_ExtendFitWith(ImPlotAxis* self,ImPlotAxis* alt,double v,double v_alt)
{
    return self->ExtendFitWith(*alt,v,v_alt);
}
CIMGUI_API void ImPlotAxis_ApplyFit(ImPlotAxis* self,float padding)
{
    return self->ApplyFit(padding);
}
CIMGUI_API bool ImPlotAxis_HasLabel(ImPlotAxis* self)
{
    return self->HasLabel();
}
CIMGUI_API bool ImPlotAxis_HasGridLines(ImPlotAxis* self)
{
    return self->HasGridLines();
}
CIMGUI_API bool ImPlotAxis_HasTickLabels(ImPlotAxis* self)
{
    return self->HasTickLabels();
}
CIMGUI_API bool ImPlotAxis_HasTickMarks(ImPlotAxis* self)
{
    return self->HasTickMarks();
}
CIMGUI_API bool ImPlotAxis_WillRender(ImPlotAxis* self)
{
    return self->WillRender();
}
CIMGUI_API bool ImPlotAxis_IsOpposite(ImPlotAxis* self)
{
    return self->IsOpposite();
}
CIMGUI_API bool ImPlotAxis_IsInverted(ImPlotAxis* self)
{
    return self->IsInverted();
}
CIMGUI_API bool ImPlotAxis_IsForeground(ImPlotAxis* self)
{
    return self->IsForeground();
}
CIMGUI_API bool ImPlotAxis_IsAutoFitting(ImPlotAxis* self)
{
    return self->IsAutoFitting();
}
CIMGUI_API bool ImPlotAxis_CanInitFit(ImPlotAxis* self)
{
    return self->CanInitFit();
}
CIMGUI_API bool ImPlotAxis_IsRangeLocked(ImPlotAxis* self)
{
    return self->IsRangeLocked();
}
CIMGUI_API bool ImPlotAxis_IsLockedMin(ImPlotAxis* self)
{
    return self->IsLockedMin();
}
CIMGUI_API bool ImPlotAxis_IsLockedMax(ImPlotAxis* self)
{
    return self->IsLockedMax();
}
CIMGUI_API bool ImPlotAxis_IsLocked(ImPlotAxis* self)
{
    return self->IsLocked();
}
CIMGUI_API bool ImPlotAxis_IsInputLockedMin(ImPlotAxis* self)
{
    return self->IsInputLockedMin();
}
CIMGUI_API bool ImPlotAxis_IsInputLockedMax(ImPlotAxis* self)
{
    return self->IsInputLockedMax();
}
CIMGUI_API bool ImPlotAxis_IsInputLocked(ImPlotAxis* self)
{
    return self->IsInputLocked();
}
CIMGUI_API bool ImPlotAxis_HasMenus(ImPlotAxis* self)
{
    return self->HasMenus();
}
CIMGUI_API bool ImPlotAxis_IsPanLocked(ImPlotAxis* self,bool increasing)
{
    return self->IsPanLocked(increasing);
}
CIMGUI_API void ImPlotAxis_PushLinks(ImPlotAxis* self)
{
    return self->PushLinks();
}
CIMGUI_API void ImPlotAxis_PullLinks(ImPlotAxis* self)
{
    return self->PullLinks();
}
CIMGUI_API ImPlotAlignmentData* ImPlotAlignmentData_ImPlotAlignmentData(void)
{
    return IM_NEW(ImPlotAlignmentData)();
}
CIMGUI_API void ImPlotAlignmentData_destroy(ImPlotAlignmentData* self)
{
    IM_DELETE(self);
}
CIMGUI_API void ImPlotAlignmentData_Begin(ImPlotAlignmentData* self)
{
    return self->Begin();
}
CIMGUI_API void ImPlotAlignmentData_Update(ImPlotAlignmentData* self,float* pad_a,float* pad_b,float* delta_a,float* delta_b)
{
    return self->Update(*pad_a,*pad_b,*delta_a,*delta_b);
}
CIMGUI_API void ImPlotAlignmentData_End(ImPlotAlignmentData* self)
{
    return self->End();
}
CIMGUI_API void ImPlotAlignmentData_Reset(ImPlotAlignmentData* self)
{
    return self->Reset();
}
CIMGUI_API ImPlotItem* ImPlotItem_ImPlotItem(void)
{
    return IM_NEW(ImPlotItem)();
}
CIMGUI_API void ImPlotItem_destroy(ImPlotItem* self)
{
    IM_DELETE(self);
}
CIMGUI_API ImPlotLegend* ImPlotLegend_ImPlotLegend(void)
{
    return IM_NEW(ImPlotLegend)();
}
CIMGUI_API void ImPlotLegend_destroy(ImPlotLegend* self)
{
    IM_DELETE(self);
}
CIMGUI_API void ImPlotLegend_Reset(ImPlotLegend* self)
{
    return self->Reset();
}
CIMGUI_API ImPlotItemGroup* ImPlotItemGroup_ImPlotItemGroup(void)
{
    return IM_NEW(ImPlotItemGroup)();
}
CIMGUI_API void ImPlotItemGroup_destroy(ImPlotItemGroup* self)
{
    IM_DELETE(self);
}
CIMGUI_API int ImPlotItemGroup_GetItemCount(ImPlotItemGroup* self)
{
    return self->GetItemCount();
}
CIMGUI_API ImGuiID ImPlotItemGroup_GetItemID(ImPlotItemGroup* self,const char* label_id)
{
    return self->GetItemID(label_id);
}
CIMGUI_API ImPlotItem* ImPlotItemGroup_GetItem_ID(ImPlotItemGroup* self,ImGuiID id)
{
    return self->GetItem(id);
}
CIMGUI_API ImPlotItem* ImPlotItemGroup_GetItem_Str(ImPlotItemGroup* self,const char* label_id)
{
    return self->GetItem(label_id);
}
CIMGUI_API ImPlotItem* ImPlotItemGroup_GetOrAddItem(ImPlotItemGroup* self,ImGuiID id)
{
    return self->GetOrAddItem(id);
}
CIMGUI_API ImPlotItem* ImPlotItemGroup_GetItemByIndex(ImPlotItemGroup* self,int i)
{
    return self->GetItemByIndex(i);
}
CIMGUI_API int ImPlotItemGroup_GetItemIndex(ImPlotItemGroup* self,ImPlotItem* item)
{
    return self->GetItemIndex(item);
}
CIMGUI_API int ImPlotItemGroup_GetLegendCount(ImPlotItemGroup* self)
{
    return self->GetLegendCount();
}
CIMGUI_API ImPlotItem* ImPlotItemGroup_GetLegendItem(ImPlotItemGroup* self,int i)
{
    return self->GetLegendItem(i);
}
CIMGUI_API const char* ImPlotItemGroup_GetLegendLabel(ImPlotItemGroup* self,int i)
{
    return self->GetLegendLabel(i);
}
CIMGUI_API void ImPlotItemGroup_Reset(ImPlotItemGroup* self)
{
    return self->Reset();
}
CIMGUI_API ImPlotPlot* ImPlotPlot_ImPlotPlot(void)
{
    return IM_NEW(ImPlotPlot)();
}
CIMGUI_API void ImPlotPlot_destroy(ImPlotPlot* self)
{
    IM_DELETE(self);
}
CIMGUI_API bool ImPlotPlot_IsInputLocked(ImPlotPlot* self)
{
    return self->IsInputLocked();
}
CIMGUI_API void ImPlotPlot_ClearTextBuffer(ImPlotPlot* self)
{
    return self->ClearTextBuffer();
}
CIMGUI_API void ImPlotPlot_SetTitle(ImPlotPlot* self,const char* title)
{
    return self->SetTitle(title);
}
CIMGUI_API bool ImPlotPlot_HasTitle(ImPlotPlot* self)
{
    return self->HasTitle();
}
CIMGUI_API const char* ImPlotPlot_GetTitle(ImPlotPlot* self)
{
    return self->GetTitle();
}
CIMGUI_API ImPlotAxis* ImPlotPlot_XAxis_Nil(ImPlotPlot* self,int i)
{
    return &self->XAxis(i);
}
CIMGUI_API const ImPlotAxis* ImPlotPlot_XAxis__const(ImPlotPlot* self,int i)
{
    return &self->XAxis(i);
}
CIMGUI_API ImPlotAxis* ImPlotPlot_YAxis_Nil(ImPlotPlot* self,int i)
{
    return &self->YAxis(i);
}
CIMGUI_API const ImPlotAxis* ImPlotPlot_YAxis__const(ImPlotPlot* self,int i)
{
    return &self->YAxis(i);
}
CIMGUI_API int ImPlotPlot_EnabledAxesX(ImPlotPlot* self)
{
    return self->EnabledAxesX();
}
CIMGUI_API int ImPlotPlot_EnabledAxesY(ImPlotPlot* self)
{
    return self->EnabledAxesY();
}
CIMGUI_API void ImPlotPlot_SetAxisLabel(ImPlotPlot* self,ImPlotAxis* axis,const char* label)
{
    return self->SetAxisLabel(*axis,label);
}
CIMGUI_API const char* ImPlotPlot_GetAxisLabel(ImPlotPlot* self,const ImPlotAxis_c axis)
{
    return self->GetAxisLabel(ConvertToCPP_ImPlotAxis(axis));
}
CIMGUI_API ImPlotSubplot* ImPlotSubplot_ImPlotSubplot(void)
{
    return IM_NEW(ImPlotSubplot)();
}
CIMGUI_API void ImPlotSubplot_destroy(ImPlotSubplot* self)
{
    IM_DELETE(self);
}
CIMGUI_API ImPlotNextPlotData* ImPlotNextPlotData_ImPlotNextPlotData(void)
{
    return IM_NEW(ImPlotNextPlotData)();
}
CIMGUI_API void ImPlotNextPlotData_destroy(ImPlotNextPlotData* self)
{
    IM_DELETE(self);
}
CIMGUI_API void ImPlotNextPlotData_Reset(ImPlotNextPlotData* self)
{
    return self->Reset();
}
CIMGUI_API ImPlotNextItemData* ImPlotNextItemData_ImPlotNextItemData(void)
{
    return IM_NEW(ImPlotNextItemData)();
}
CIMGUI_API void ImPlotNextItemData_destroy(ImPlotNextItemData* self)
{
    IM_DELETE(self);
}
CIMGUI_API void ImPlotNextItemData_Reset(ImPlotNextItemData* self)
{
    return self->Reset();
}
CIMGUI_API void ImPlot_Initialize(ImPlotContext* ctx)
{
    return ImPlot::Initialize(ctx);
}
CIMGUI_API void ImPlot_ResetCtxForNextPlot(ImPlotContext* ctx)
{
    return ImPlot::ResetCtxForNextPlot(ctx);
}
CIMGUI_API void ImPlot_ResetCtxForNextAlignedPlots(ImPlotContext* ctx)
{
    return ImPlot::ResetCtxForNextAlignedPlots(ctx);
}
CIMGUI_API void ImPlot_ResetCtxForNextSubplot(ImPlotContext* ctx)
{
    return ImPlot::ResetCtxForNextSubplot(ctx);
}
CIMGUI_API ImPlotPlot* ImPlot_GetPlot(const char* title)
{
    return ImPlot::GetPlot(title);
}
CIMGUI_API ImPlotPlot* ImPlot_GetCurrentPlot()
{
    return ImPlot::GetCurrentPlot();
}
CIMGUI_API void ImPlot_BustPlotCache()
{
    return ImPlot::BustPlotCache();
}
CIMGUI_API void ImPlot_ShowPlotContextMenu(ImPlotPlot* plot)
{
    return ImPlot::ShowPlotContextMenu(*plot);
}
CIMGUI_API void ImPlot_SetupLock()
{
    return ImPlot::SetupLock();
}
CIMGUI_API void ImPlot_SubplotNextCell()
{
    return ImPlot::SubplotNextCell();
}
CIMGUI_API void ImPlot_ShowSubplotsContextMenu(ImPlotSubplot* subplot)
{
    return ImPlot::ShowSubplotsContextMenu(*subplot);
}
CIMGUI_API bool ImPlot_BeginItem(const char* label_id,const ImPlotSpec_c spec,const ImVec4_c item_col,ImPlotMarker item_mkr)
{
    return ImPlot::BeginItem(label_id,ConvertToCPP_ImPlotSpec(spec),ConvertToCPP_ImVec4(item_col),item_mkr);
}
CIMGUI_API void ImPlot_EndItem()
{
    return ImPlot::EndItem();
}
CIMGUI_API ImPlotItem* ImPlot_RegisterOrGetItem(const char* label_id,ImPlotItemFlags flags,bool* just_created)
{
    return ImPlot::RegisterOrGetItem(label_id,flags,just_created);
}
CIMGUI_API ImPlotItem* ImPlot_GetItem(const char* label_id)
{
    return ImPlot::GetItem(label_id);
}
CIMGUI_API ImPlotItem* ImPlot_GetCurrentItem()
{
    return ImPlot::GetCurrentItem();
}
CIMGUI_API void ImPlot_BustItemCache()
{
    return ImPlot::BustItemCache();
}
CIMGUI_API bool ImPlot_AnyAxesInputLocked(ImPlotAxis* axes,int count)
{
    return ImPlot::AnyAxesInputLocked(axes,count);
}
CIMGUI_API bool ImPlot_AllAxesInputLocked(ImPlotAxis* axes,int count)
{
    return ImPlot::AllAxesInputLocked(axes,count);
}
CIMGUI_API bool ImPlot_AnyAxesHeld(ImPlotAxis* axes,int count)
{
    return ImPlot::AnyAxesHeld(axes,count);
}
CIMGUI_API bool ImPlot_AnyAxesHovered(ImPlotAxis* axes,int count)
{
    return ImPlot::AnyAxesHovered(axes,count);
}
CIMGUI_API bool ImPlot_FitThisFrame()
{
    return ImPlot::FitThisFrame();
}
CIMGUI_API void ImPlot_FitPointX(double x)
{
    return ImPlot::FitPointX(x);
}
CIMGUI_API void ImPlot_FitPointY(double y)
{
    return ImPlot::FitPointY(y);
}
CIMGUI_API void ImPlot_FitPoint(const ImPlotPoint_c p)
{
    return ImPlot::FitPoint(ConvertToCPP_ImPlotPoint(p));
}
CIMGUI_API bool ImPlot_RangesOverlap(const ImPlotRange_c r1,const ImPlotRange_c r2)
{
    return ImPlot::RangesOverlap(ConvertToCPP_ImPlotRange(r1),ConvertToCPP_ImPlotRange(r2));
}
CIMGUI_API void ImPlot_ShowAxisContextMenu(ImPlotAxis* axis,ImPlotAxis* equal_axis,bool time_allowed)
{
    return ImPlot::ShowAxisContextMenu(*axis,equal_axis,time_allowed);
}
CIMGUI_API ImVec2_c ImPlot_GetLocationPos(const ImRect_c outer_rect,const ImVec2_c inner_size,ImPlotLocation location,const ImVec2_c pad)
{
    return ConvertFromCPP_ImVec2(ImPlot::GetLocationPos(ConvertToCPP_ImRect(outer_rect),ConvertToCPP_ImVec2(inner_size),location,ConvertToCPP_ImVec2(pad)));
}
CIMGUI_API ImVec2_c ImPlot_CalcLegendSize(ImPlotItemGroup* items,const ImVec2_c pad,const ImVec2_c spacing,bool vertical)
{
    return ConvertFromCPP_ImVec2(ImPlot::CalcLegendSize(*items,ConvertToCPP_ImVec2(pad),ConvertToCPP_ImVec2(spacing),vertical));
}
CIMGUI_API bool ImPlot_ClampLegendRect(ImRect* legend_rect,const ImRect_c outer_rect,const ImVec2_c pad)
{
    return ImPlot::ClampLegendRect(*legend_rect,ConvertToCPP_ImRect(outer_rect),ConvertToCPP_ImVec2(pad));
}
CIMGUI_API bool ImPlot_ShowLegendEntries(ImPlotItemGroup* items,const ImRect_c legend_bb,bool interactable,const ImVec2_c pad,const ImVec2_c spacing,bool vertical,ImDrawList* DrawList)
{
    return ImPlot::ShowLegendEntries(*items,ConvertToCPP_ImRect(legend_bb),interactable,ConvertToCPP_ImVec2(pad),ConvertToCPP_ImVec2(spacing),vertical,*DrawList);
}
CIMGUI_API void ImPlot_ShowAltLegend(const char* title_id,bool vertical,const ImVec2_c size,bool interactable)
{
    return ImPlot::ShowAltLegend(title_id,vertical,ConvertToCPP_ImVec2(size),interactable);
}
CIMGUI_API bool ImPlot_ShowLegendContextMenu(ImPlotLegend* legend,bool visible)
{
    return ImPlot::ShowLegendContextMenu(*legend,visible);
}
CIMGUI_API void ImPlot_LabelAxisValue(const ImPlotAxis_c axis,double value,char* buff,int size,bool round)
{
    return ImPlot::LabelAxisValue(ConvertToCPP_ImPlotAxis(axis),value,buff,size,round);
}
CIMGUI_API const ImPlotNextItemData* ImPlot_GetItemData()
{
    return &ImPlot::GetItemData();
}
CIMGUI_API bool ImPlot_IsColorAuto_Vec4(const ImVec4_c col)
{
    return ImPlot::IsColorAuto(ConvertToCPP_ImVec4(col));
}
CIMGUI_API bool ImPlot_IsColorAuto_PlotCol(ImPlotCol idx)
{
    return ImPlot::IsColorAuto(idx);
}
CIMGUI_API ImVec4_c ImPlot_GetAutoColor(ImPlotCol idx)
{
    return ConvertFromCPP_ImVec4(ImPlot::GetAutoColor(idx));
}
CIMGUI_API ImVec4_c ImPlot_GetStyleColorVec4(ImPlotCol idx)
{
    return ConvertFromCPP_ImVec4(ImPlot::GetStyleColorVec4(idx));
}
CIMGUI_API ImU32 ImPlot_GetStyleColorU32(ImPlotCol idx)
{
    return ImPlot::GetStyleColorU32(idx);
}
CIMGUI_API void ImPlot_AddTextVertical(ImDrawList* DrawList,ImVec2_c pos,ImU32 col,const char* text_begin,const char* text_end)
{
    return ImPlot::AddTextVertical(DrawList,ConvertToCPP_ImVec2(pos),col,text_begin,text_end);
}
CIMGUI_API void ImPlot_AddTextCentered(ImDrawList* DrawList,ImVec2_c top_center,ImU32 col,const char* text_begin,const char* text_end)
{
    return ImPlot::AddTextCentered(DrawList,ConvertToCPP_ImVec2(top_center),col,text_begin,text_end);
}
CIMGUI_API ImVec2_c ImPlot_CalcTextSizeVertical(const char* text)
{
    return ConvertFromCPP_ImVec2(ImPlot::CalcTextSizeVertical(text));
}
CIMGUI_API ImU32 ImPlot_CalcTextColor_Vec4(const ImVec4_c bg)
{
    return ImPlot::CalcTextColor(ConvertToCPP_ImVec4(bg));
}
CIMGUI_API ImU32 ImPlot_CalcTextColor_U32(ImU32 bg)
{
    return ImPlot::CalcTextColor(bg);
}
CIMGUI_API ImU32 ImPlot_CalcHoverColor(ImU32 col)
{
    return ImPlot::CalcHoverColor(col);
}
CIMGUI_API ImVec2_c ImPlot_ClampLabelPos(ImVec2_c pos,const ImVec2_c size,const ImVec2_c Min,const ImVec2_c Max)
{
    return ConvertFromCPP_ImVec2(ImPlot::ClampLabelPos(ConvertToCPP_ImVec2(pos),ConvertToCPP_ImVec2(size),ConvertToCPP_ImVec2(Min),ConvertToCPP_ImVec2(Max)));
}
CIMGUI_API ImU32 ImPlot_GetColormapColorU32(int idx,ImPlotColormap cmap)
{
    return ImPlot::GetColormapColorU32(idx,cmap);
}
CIMGUI_API ImU32 ImPlot_NextColormapColorU32()
{
    return ImPlot::NextColormapColorU32();
}
CIMGUI_API ImU32 ImPlot_SampleColormapU32(float t,ImPlotColormap cmap)
{
    return ImPlot::SampleColormapU32(t,cmap);
}
CIMGUI_API void ImPlot_RenderColorBar(const ImU32* colors,int size,ImDrawList* DrawList,const ImRect_c bounds,bool vert,bool reversed,bool continuous)
{
    return ImPlot::RenderColorBar(colors,size,*DrawList,ConvertToCPP_ImRect(bounds),vert,reversed,continuous);
}
CIMGUI_API double ImPlot_NiceNum(double x,bool round)
{
    return ImPlot::NiceNum(x,round);
}
CIMGUI_API int ImPlot_OrderOfMagnitude(double val)
{
    return ImPlot::OrderOfMagnitude(val);
}
CIMGUI_API int ImPlot_OrderToPrecision(int order)
{
    return ImPlot::OrderToPrecision(order);
}
CIMGUI_API int ImPlot_Precision(double val)
{
    return ImPlot::Precision(val);
}
CIMGUI_API double ImPlot_RoundTo(double val,int prec)
{
    return ImPlot::RoundTo(val,prec);
}
CIMGUI_API ImVec2_c ImPlot_Intersection(const ImVec2_c a1,const ImVec2_c a2,const ImVec2_c b1,const ImVec2_c b2)
{
    return ConvertFromCPP_ImVec2(ImPlot::Intersection(ConvertToCPP_ImVec2(a1),ConvertToCPP_ImVec2(a2),ConvertToCPP_ImVec2(b1),ConvertToCPP_ImVec2(b2)));
}
CIMGUI_API void ImPlot_FillRange_Vector_Float_Ptr(ImVector_float * buffer,int n,float vmin,float vmax)
{
    return ImPlot::FillRange(*buffer,n,vmin,vmax);
}
CIMGUI_API void ImPlot_FillRange_Vector_double_Ptr(ImVector_double * buffer,int n,double vmin,double vmax)
{
    return ImPlot::FillRange(*buffer,n,vmin,vmax);
}
CIMGUI_API void ImPlot_FillRange_Vector_S8_Ptr(ImVector_ImS8 * buffer,int n,ImS8 vmin,ImS8 vmax)
{
    return ImPlot::FillRange(*buffer,n,vmin,vmax);
}
CIMGUI_API void ImPlot_FillRange_Vector_U8_Ptr(ImVector_ImU8 * buffer,int n,ImU8 vmin,ImU8 vmax)
{
    return ImPlot::FillRange(*buffer,n,vmin,vmax);
}
CIMGUI_API void ImPlot_FillRange_Vector_S16_Ptr(ImVector_ImS16 * buffer,int n,ImS16 vmin,ImS16 vmax)
{
    return ImPlot::FillRange(*buffer,n,vmin,vmax);
}
CIMGUI_API void ImPlot_FillRange_Vector_U16_Ptr(ImVector_ImU16 * buffer,int n,ImU16 vmin,ImU16 vmax)
{
    return ImPlot::FillRange(*buffer,n,vmin,vmax);
}
CIMGUI_API void ImPlot_FillRange_Vector_S32_Ptr(ImVector_ImS32 * buffer,int n,ImS32 vmin,ImS32 vmax)
{
    return ImPlot::FillRange(*buffer,n,vmin,vmax);
}
CIMGUI_API void ImPlot_FillRange_Vector_U32_Ptr(ImVector_ImU32 * buffer,int n,ImU32 vmin,ImU32 vmax)
{
    return ImPlot::FillRange(*buffer,n,vmin,vmax);
}
CIMGUI_API void ImPlot_FillRange_Vector_S64_Ptr(ImVector_ImS64 * buffer,int n,ImS64 vmin,ImS64 vmax)
{
    return ImPlot::FillRange(*buffer,n,vmin,vmax);
}
CIMGUI_API void ImPlot_FillRange_Vector_U64_Ptr(ImVector_ImU64 * buffer,int n,ImU64 vmin,ImU64 vmax)
{
    return ImPlot::FillRange(*buffer,n,vmin,vmax);
}
CIMGUI_API bool ImPlot_IsLeapYear(int year)
{
    return ImPlot::IsLeapYear(year);
}
CIMGUI_API int ImPlot_GetDaysInMonth(int year,int month)
{
    return ImPlot::GetDaysInMonth(year,month);
}
CIMGUI_API ImPlotTime_c ImPlot_MkGmtTime(struct tm* ptm)
{
    return ConvertFromCPP_ImPlotTime(ImPlot::MkGmtTime(ptm));
}
CIMGUI_API tm* ImPlot_GetGmtTime(const ImPlotTime_c t,tm* ptm)
{
    return ImPlot::GetGmtTime(ConvertToCPP_ImPlotTime(t),ptm);
}
CIMGUI_API ImPlotTime_c ImPlot_MkLocTime(struct tm* ptm)
{
    return ConvertFromCPP_ImPlotTime(ImPlot::MkLocTime(ptm));
}
CIMGUI_API tm* ImPlot_GetLocTime(const ImPlotTime_c t,tm* ptm)
{
    return ImPlot::GetLocTime(ConvertToCPP_ImPlotTime(t),ptm);
}
CIMGUI_API ImPlotTime_c ImPlot_MkTime(struct tm* ptm)
{
    return ConvertFromCPP_ImPlotTime(ImPlot::MkTime(ptm));
}
CIMGUI_API tm* ImPlot_GetTime(const ImPlotTime_c t,tm* ptm)
{
    return ImPlot::GetTime(ConvertToCPP_ImPlotTime(t),ptm);
}
CIMGUI_API ImPlotTime_c ImPlot_MakeTime(int year,int month,int day,int hour,int min,int sec,int us)
{
    return ConvertFromCPP_ImPlotTime(ImPlot::MakeTime(year,month,day,hour,min,sec,us));
}
CIMGUI_API int ImPlot_GetYear(const ImPlotTime_c t)
{
    return ImPlot::GetYear(ConvertToCPP_ImPlotTime(t));
}
CIMGUI_API int ImPlot_GetMonth(const ImPlotTime_c t)
{
    return ImPlot::GetMonth(ConvertToCPP_ImPlotTime(t));
}
CIMGUI_API ImPlotTime_c ImPlot_AddTime(const ImPlotTime_c t,ImPlotTimeUnit unit,int count)
{
    return ConvertFromCPP_ImPlotTime(ImPlot::AddTime(ConvertToCPP_ImPlotTime(t),unit,count));
}
CIMGUI_API ImPlotTime_c ImPlot_FloorTime(const ImPlotTime_c t,ImPlotTimeUnit unit)
{
    return ConvertFromCPP_ImPlotTime(ImPlot::FloorTime(ConvertToCPP_ImPlotTime(t),unit));
}
CIMGUI_API ImPlotTime_c ImPlot_CeilTime(const ImPlotTime_c t,ImPlotTimeUnit unit)
{
    return ConvertFromCPP_ImPlotTime(ImPlot::CeilTime(ConvertToCPP_ImPlotTime(t),unit));
}
CIMGUI_API ImPlotTime_c ImPlot_RoundTime(const ImPlotTime_c t,ImPlotTimeUnit unit)
{
    return ConvertFromCPP_ImPlotTime(ImPlot::RoundTime(ConvertToCPP_ImPlotTime(t),unit));
}
CIMGUI_API ImPlotTime_c ImPlot_CombineDateTime(const ImPlotTime_c date_part,const ImPlotTime_c time_part)
{
    return ConvertFromCPP_ImPlotTime(ImPlot::CombineDateTime(ConvertToCPP_ImPlotTime(date_part),ConvertToCPP_ImPlotTime(time_part)));
}
CIMGUI_API ImPlotTime_c ImPlot_Now()
{
    return ConvertFromCPP_ImPlotTime(ImPlot::Now());
}
CIMGUI_API ImPlotTime_c ImPlot_Today()
{
    return ConvertFromCPP_ImPlotTime(ImPlot::Today());
}
CIMGUI_API int ImPlot_FormatTime(const ImPlotTime_c t,char* buffer,int size,ImPlotTimeFmt fmt,bool use_24_hr_clk)
{
    return ImPlot::FormatTime(ConvertToCPP_ImPlotTime(t),buffer,size,fmt,use_24_hr_clk);
}
CIMGUI_API int ImPlot_FormatDate(const ImPlotTime_c t,char* buffer,int size,ImPlotDateFmt fmt,bool use_iso_8601)
{
    return ImPlot::FormatDate(ConvertToCPP_ImPlotTime(t),buffer,size,fmt,use_iso_8601);
}
CIMGUI_API int ImPlot_FormatDateTime(const ImPlotTime_c t,char* buffer,int size,ImPlotDateTimeSpec_c fmt)
{
    return ImPlot::FormatDateTime(ConvertToCPP_ImPlotTime(t),buffer,size,ConvertToCPP_ImPlotDateTimeSpec(fmt));
}
CIMGUI_API bool ImPlot_ShowDatePicker(const char* id,int* level,ImPlotTime* t,const ImPlotTime* t1,const ImPlotTime* t2)
{
    return ImPlot::ShowDatePicker(id,level,t,t1,t2);
}
CIMGUI_API bool ImPlot_ShowTimePicker(const char* id,ImPlotTime* t)
{
    return ImPlot::ShowTimePicker(id,t);
}
CIMGUI_API double ImPlot_TransformForward_Log10(double v,void* noname1)
{
    return ImPlot::TransformForward_Log10(v,noname1);
}
CIMGUI_API double ImPlot_TransformInverse_Log10(double v,void* noname1)
{
    return ImPlot::TransformInverse_Log10(v,noname1);
}
CIMGUI_API double ImPlot_TransformForward_SymLog(double v,void* noname1)
{
    return ImPlot::TransformForward_SymLog(v,noname1);
}
CIMGUI_API double ImPlot_TransformInverse_SymLog(double v,void* noname1)
{
    return ImPlot::TransformInverse_SymLog(v,noname1);
}
CIMGUI_API double ImPlot_TransformForward_Logit(double v,void* noname1)
{
    return ImPlot::TransformForward_Logit(v,noname1);
}
CIMGUI_API double ImPlot_TransformInverse_Logit(double v,void* noname1)
{
    return ImPlot::TransformInverse_Logit(v,noname1);
}
CIMGUI_API int ImPlot_Formatter_Default(double value,char* buff,int size,void* data)
{
    return ImPlot::Formatter_Default(value,buff,size,data);
}
CIMGUI_API int ImPlot_Formatter_Logit(double value,char* buff,int size,void* noname1)
{
    return ImPlot::Formatter_Logit(value,buff,size,noname1);
}
CIMGUI_API int ImPlot_Formatter_Time(double noname1,char* buff,int size,void* data)
{
    return ImPlot::Formatter_Time(noname1,buff,size,data);
}
CIMGUI_API void ImPlot_Locator_Default(ImPlotTicker* ticker,const ImPlotRange_c range,float pixels,bool vertical,ImPlotFormatter formatter,void* formatter_data)
{
    return ImPlot::Locator_Default(*ticker,ConvertToCPP_ImPlotRange(range),pixels,vertical,formatter,formatter_data);
}
CIMGUI_API void ImPlot_Locator_Time(ImPlotTicker* ticker,const ImPlotRange_c range,float pixels,bool vertical,ImPlotFormatter formatter,void* formatter_data)
{
    return ImPlot::Locator_Time(*ticker,ConvertToCPP_ImPlotRange(range),pixels,vertical,formatter,formatter_data);
}
CIMGUI_API void ImPlot_Locator_Log10(ImPlotTicker* ticker,const ImPlotRange_c range,float pixels,bool vertical,ImPlotFormatter formatter,void* formatter_data)
{
    return ImPlot::Locator_Log10(*ticker,ConvertToCPP_ImPlotRange(range),pixels,vertical,formatter,formatter_data);
}
CIMGUI_API void ImPlot_Locator_SymLog(ImPlotTicker* ticker,const ImPlotRange_c range,float pixels,bool vertical,ImPlotFormatter formatter,void* formatter_data)
{
    return ImPlot::Locator_SymLog(*ticker,ConvertToCPP_ImPlotRange(range),pixels,vertical,formatter,formatter_data);
}