CAPI.cs
201 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
using UnityEngine;
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text;
#pragma warning disable 414
namespace Oculus.Platform
{
public class CAPI
{
#if UNITY_STANDALONE_WIN || UNITY_EDITOR_WIN
#if UNITY_64 || UNITY_EDITOR_64
public const string DLL_NAME = "LibOVRPlatform64_1";
#else
public const string DLL_NAME = "LibOVRPlatform32_1";
#endif
#elif UNITY_EDITOR || UNITY_EDITOR_64
public const string DLL_NAME = "ovrplatform";
#elif UNITY_ANDROID && OVR_STANDALONE_PLATFORM
public const string DLL_NAME = "ovrplatform_standalone";
#else
public const string DLL_NAME = "ovrplatformloader";
#endif
private static UTF8Encoding nativeStringEncoding = new UTF8Encoding(false);
[StructLayout(LayoutKind.Sequential)]
public struct ovrKeyValuePair {
public ovrKeyValuePair(string key, string value) {
key_ = key;
valueType_ = KeyValuePairType.String;
stringValue_ = value;
intValue_ = 0;
doubleValue_ = 0.0;
}
public ovrKeyValuePair(string key, int value) {
key_ = key;
valueType_ = KeyValuePairType.Int;
intValue_ = value;
stringValue_ = null;
doubleValue_ = 0.0;
}
public ovrKeyValuePair(string key, double value) {
key_ = key;
valueType_ = KeyValuePairType.Double;
doubleValue_ = value;
stringValue_ = null;
intValue_ = 0;
}
public string key_;
KeyValuePairType valueType_;
public string stringValue_;
public int intValue_;
public double doubleValue_;
};
[StructLayout(LayoutKind.Sequential)]
public struct ovrNetSyncVec3 {
public float x;
public float y;
public float z;
}
public static IntPtr ArrayOfStructsToIntPtr(Array ar)
{
int totalSize = 0;
for(int i=0; i<ar.Length; i++) {
totalSize += Marshal.SizeOf(ar.GetValue(i));
}
IntPtr childrenPtr = Marshal.AllocHGlobal(totalSize);
IntPtr curr = childrenPtr;
for(int i=0; i<ar.Length; i++) {
Marshal.StructureToPtr(ar.GetValue(i), curr, false);
curr = (IntPtr)((long)curr + Marshal.SizeOf(ar.GetValue(i)));
}
return childrenPtr;
}
public static CAPI.ovrKeyValuePair[] DictionaryToOVRKeyValuePairs(Dictionary<string, object> dict)
{
if(dict == null || dict.Count == 0)
{
return null;
}
var nativeCustomData = new CAPI.ovrKeyValuePair[dict.Count];
int i = 0;
foreach(var item in dict)
{
if(item.Value.GetType() == typeof(int))
{
nativeCustomData[i] = new CAPI.ovrKeyValuePair(item.Key, (int)item.Value);
}
else if(item.Value.GetType() == typeof(string))
{
nativeCustomData[i] = new CAPI.ovrKeyValuePair(item.Key, (string)item.Value);
}
else if(item.Value.GetType() == typeof(double))
{
nativeCustomData[i] = new CAPI.ovrKeyValuePair(item.Key, (double)item.Value);
}
else
{
throw new Exception("Only int, double or string are allowed types in CustomQuery.data");
}
i++;
}
return nativeCustomData;
}
public static byte[] IntPtrToByteArray(IntPtr data, ulong size)
{
byte[] outArray = new byte[size];
Marshal.Copy(data, outArray, 0, (int)size);
return outArray;
}
[StructLayout(LayoutKind.Sequential)]
public struct ovrMatchmakingCriterion {
public ovrMatchmakingCriterion(string key, MatchmakingCriterionImportance importance)
{
key_ = key;
importance_ = importance;
parameterArray = IntPtr.Zero;
parameterArrayCount = 0;
}
public string key_;
public MatchmakingCriterionImportance importance_;
public IntPtr parameterArray;
public uint parameterArrayCount;
};
[StructLayout(LayoutKind.Sequential)]
public struct ovrMatchmakingCustomQueryData {
public IntPtr dataArray;
public uint dataArrayCount;
public IntPtr criterionArray;
public uint criterionArrayCount;
};
public static Dictionary<string, string> DataStoreFromNative(IntPtr pointer) {
var d = new Dictionary<string, string>();
var size = (int)CAPI.ovr_DataStore_GetNumKeys(pointer);
for (var i = 0; i < size; i++) {
string key = CAPI.ovr_DataStore_GetKey(pointer, i);
d[key] = CAPI.ovr_DataStore_GetValue(pointer, key);
}
return d;
}
public static string StringFromNative(IntPtr pointer) {
if (pointer == IntPtr.Zero) {
return null;
}
var l = GetNativeStringLengthNotIncludingNullTerminator(pointer);
var data = new byte[l];
Marshal.Copy(pointer, data, 0, l);
return nativeStringEncoding.GetString(data);
}
public static int GetNativeStringLengthNotIncludingNullTerminator(IntPtr pointer) {
var l = 0;
while (true) {
if (Marshal.ReadByte(pointer, l) == 0) {
return l;
}
l++;
}
}
public static DateTime DateTimeFromNative(ulong seconds_since_the_one_true_epoch) {
var dt = new DateTime(1970, 1, 1, 0, 0, 0, 0);
return dt.AddSeconds(seconds_since_the_one_true_epoch).ToLocalTime();
}
public static ulong DateTimeToNative(DateTime dt) {
var universal = (dt.Kind != DateTimeKind.Utc) ? dt.ToUniversalTime() : dt;
var epochStart = new DateTime(1970, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc);
return (ulong) (universal - epochStart).TotalSeconds;
}
public static byte[] BlobFromNative(uint size, IntPtr pointer) {
var a = new byte[(int)size];
for (int i = 0; i < (int)size; i++) {
a[i] = Marshal.ReadByte(pointer, i);
}
return a;
}
public static byte[] FiledataFromNative(uint size, IntPtr pointer) {
var data = new byte[(int)size];
Marshal.Copy(pointer, data, 0, (int)size);
return data;
}
public static IntPtr StringToNative(string s) {
if (s == null) {
throw new Exception("StringFromNative: null argument");
}
var l = nativeStringEncoding.GetByteCount(s);
var data = new byte[l + 1];
nativeStringEncoding.GetBytes(s, 0, s.Length, data, 0);
var pointer = Marshal.AllocCoTaskMem(l + 1);
Marshal.Copy(data, 0, pointer, l + 1);
return pointer;
}
// Initialization
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_UnityInitWrapper(string appId);
// Initializes just the global variables to use the Unity api without calling the init logic
[DllImport(DLL_NAME, CallingConvention = CallingConvention.Cdecl)]
public static extern void ovr_UnityInitGlobals(IntPtr loggingCB);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_UnityInitWrapperAsynchronous(string appId);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_UnityInitWrapperStandalone(string accessToken, IntPtr loggingCB);
[StructLayout(LayoutKind.Sequential)]
public struct OculusInitParams
{
public int sType;
public string email;
public string password;
public UInt64 appId;
public string uriPrefixOverride;
}
[DllImport(DLL_NAME, CallingConvention = CallingConvention.Cdecl)]
public static extern ulong ovr_Platform_InitializeStandaloneOculus(ref OculusInitParams init);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.Cdecl)]
public static extern ulong ovr_PlatformInitializeWithAccessToken(UInt64 appId, string accessToken);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_UnityInitWrapperWindows(string appId, IntPtr loggingCB);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_UnityInitWrapperWindowsAsynchronous(string appId, IntPtr loggingCB);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_SetDeveloperAccessToken(string accessToken);
public static string ovr_GetLoggedInUserLocale() {
var result = StringFromNative(ovr_GetLoggedInUserLocale_Native());
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_GetLoggedInUserLocale")]
private static extern IntPtr ovr_GetLoggedInUserLocale_Native();
// Message queue access
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_PopMessage();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_FreeMessage(IntPtr message);
// VOIP
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Voip_CreateEncoder();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_Voip_DestroyEncoder(IntPtr encoder);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Voip_CreateDecoder();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_Voip_DestroyDecoder(IntPtr decoder);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_VoipDecoder_Decode(IntPtr obj, byte[] compressedData, ulong compressedSize);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Microphone_Create();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_Microphone_Destroy(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_Voip_SetSystemVoipPassthrough(bool passthrough);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_Voip_SetSystemVoipMicrophoneMuted(VoipMuteState muted);
// Misc
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_UnityResetTestPlatform();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_HTTP_GetWithMessageType(string url, int messageType);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_CrashApplication();
public const int VoipFilterBufferSize = 480;
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void FilterCallback([MarshalAs(UnmanagedType.LPArray, SizeConst = VoipFilterBufferSize), In, Out] short[] pcmData, UIntPtr pcmDataLength, int frequency, int numChannels);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.Cdecl)]
public static extern void ovr_Voip_SetMicrophoneFilterCallback(FilterCallback cb);
[DllImport(DLL_NAME, CallingConvention = CallingConvention.Cdecl)]
public static extern void ovr_Voip_SetMicrophoneFilterCallbackWithFixedSizeBuffer(FilterCallback cb, UIntPtr bufferSizeElements);
// Logging
public static void LogNewEvent(string eventName, Dictionary<string, string> values) {
var eventNameNative = StringToNative(eventName);
var count = values == null ? 0 : values.Count;
IntPtr[] valuesNative = new IntPtr[count * 2];
if (count > 0) {
int i = 0;
foreach(var item in values) {
valuesNative[i * 2 + 0] = StringToNative(item.Key);
valuesNative[i * 2 + 1] = StringToNative(item.Value);
i++;
}
}
ovr_Log_NewEvent(eventNameNative, valuesNative, (UIntPtr)count);
Marshal.FreeCoTaskMem(eventNameNative);
foreach (var nativeItem in valuesNative) {
Marshal.FreeCoTaskMem(nativeItem);
}
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_Log_NewEvent(IntPtr eventName, IntPtr[] values, UIntPtr length);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_ApplicationLifecycle_GetLaunchDetails();
public static void ovr_ApplicationLifecycle_LogDeeplinkResult(string trackingID, LaunchResult result) {
IntPtr trackingID_native = StringToNative(trackingID);
ovr_ApplicationLifecycle_LogDeeplinkResult_Native(trackingID_native, result);
Marshal.FreeCoTaskMem(trackingID_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ApplicationLifecycle_LogDeeplinkResult")]
private static extern void ovr_ApplicationLifecycle_LogDeeplinkResult_Native(IntPtr trackingID, LaunchResult result);
public static ulong ovr_HTTP_StartTransfer(string url, ovrKeyValuePair[] headers) {
IntPtr url_native = StringToNative(url);
UIntPtr headers_length = (UIntPtr)headers.Length;
var result = (ovr_HTTP_StartTransfer_Native(url_native, headers, headers_length));
Marshal.FreeCoTaskMem(url_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_HTTP_StartTransfer")]
private static extern ulong ovr_HTTP_StartTransfer_Native(IntPtr url, ovrKeyValuePair[] headers, UIntPtr numItems);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_HTTP_Write(ulong transferId, byte[] bytes, UIntPtr length);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_HTTP_WriteEOM(ulong transferId);
public static string ovr_Message_GetStringForJavascript(IntPtr message) {
var result = StringFromNative(ovr_Message_GetStringForJavascript_Native(message));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Message_GetStringForJavascript")]
private static extern IntPtr ovr_Message_GetStringForJavascript_Native(IntPtr message);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_NetSync_GetAmbisonicFloatPCM(long connection_id, float[] outputBuffer, UIntPtr outputBufferNumElements);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_NetSync_GetAmbisonicInt16PCM(long connection_id, Int16[] outputBuffer, UIntPtr outputBufferNumElements);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_NetSync_GetAmbisonicInterleavedFloatPCM(long connection_id, float[] outputBuffer, UIntPtr outputBufferNumElements);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_NetSync_GetAmbisonicInterleavedInt16PCM(long connection_id, Int16[] outputBuffer, UIntPtr outputBufferNumElements);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_NetSync_GetListenerPosition(long connection_id, UInt64 sessionId, ref ovrNetSyncVec3 position);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_NetSync_GetMonostreamFloatPCM(long connection_id, UInt64 sessionId, float[] outputBuffer, UIntPtr outputBufferNumElements);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_NetSync_GetMonostreamInt16PCM(long connection_id, UInt64 session_id, Int16[] outputBuffer, UIntPtr outputBufferNumElements);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_NetSync_GetPcmBufferMaxSamples();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_NetSync_GetVoipAmplitude(long connection_id, UInt64 sessionId, ref float amplitude);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_NetSync_SetListenerPosition(long connection_id, ref ovrNetSyncVec3 position);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_Net_Accept(UInt64 peerID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_Net_AcceptForCurrentRoom();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_Net_Close(UInt64 peerID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_Net_CloseForCurrentRoom();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_Net_Connect(UInt64 peerID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_Net_IsConnected(UInt64 peerID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Net_Ping(UInt64 peerID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Net_ReadPacket();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_Net_SendPacket(UInt64 userID, UIntPtr length, byte[] bytes, SendPolicy policy);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_Net_SendPacketToCurrentRoom(UIntPtr length, byte[] bytes, SendPolicy policy);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern int ovr_Party_PluginGetSharedMemHandle();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern VoipMuteState ovr_Party_PluginGetVoipMicrophoneMuted();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_Party_PluginGetVoipPassthrough();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern SystemVoipStatus ovr_Party_PluginGetVoipStatus();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_Voip_Accept(UInt64 userID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern VoipDtxState ovr_Voip_GetIsConnectionUsingDtx(UInt64 peerID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern VoipBitrate ovr_Voip_GetLocalBitrate(UInt64 peerID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_Voip_GetOutputBufferMaxSize();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_Voip_GetPCM(UInt64 senderID, Int16[] outputBuffer, UIntPtr outputBufferNumElements);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_Voip_GetPCMFloat(UInt64 senderID, float[] outputBuffer, UIntPtr outputBufferNumElements);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_Voip_GetPCMSize(UInt64 senderID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_Voip_GetPCMWithTimestamp(UInt64 senderID, Int16[] outputBuffer, UIntPtr outputBufferNumElements, UInt32[] timestamp);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_Voip_GetPCMWithTimestampFloat(UInt64 senderID, float[] outputBuffer, UIntPtr outputBufferNumElements, UInt32[] timestamp);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern VoipBitrate ovr_Voip_GetRemoteBitrate(UInt64 peerID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt32 ovr_Voip_GetSyncTimestamp(UInt64 userID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern long ovr_Voip_GetSyncTimestampDifference(UInt32 lhs, UInt32 rhs);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern VoipMuteState ovr_Voip_GetSystemVoipMicrophoneMuted();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern SystemVoipStatus ovr_Voip_GetSystemVoipStatus();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_Voip_SetMicrophoneMuted(VoipMuteState state);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_Voip_SetNewConnectionOptions(IntPtr voipOptions);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_Voip_SetOutputSampleRate(VoipSampleRate rate);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_Voip_Start(UInt64 userID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_Voip_Stop(UInt64 userID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_AbuseReport_LaunchAdvancedReportFlow(UInt64 content_id, IntPtr abuse_report_options);
public static ulong ovr_Achievements_AddCount(string name, ulong count) {
IntPtr name_native = StringToNative(name);
var result = (ovr_Achievements_AddCount_Native(name_native, count));
Marshal.FreeCoTaskMem(name_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Achievements_AddCount")]
private static extern ulong ovr_Achievements_AddCount_Native(IntPtr name, ulong count);
public static ulong ovr_Achievements_AddFields(string name, string fields) {
IntPtr name_native = StringToNative(name);
IntPtr fields_native = StringToNative(fields);
var result = (ovr_Achievements_AddFields_Native(name_native, fields_native));
Marshal.FreeCoTaskMem(name_native);
Marshal.FreeCoTaskMem(fields_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Achievements_AddFields")]
private static extern ulong ovr_Achievements_AddFields_Native(IntPtr name, IntPtr fields);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Achievements_GetAllDefinitions();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Achievements_GetAllProgress();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Achievements_GetDefinitionsByName(string[] names, int count);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Achievements_GetProgressByName(string[] names, int count);
public static ulong ovr_Achievements_Unlock(string name) {
IntPtr name_native = StringToNative(name);
var result = (ovr_Achievements_Unlock_Native(name_native));
Marshal.FreeCoTaskMem(name_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Achievements_Unlock")]
private static extern ulong ovr_Achievements_Unlock_Native(IntPtr name);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Application_ExecuteCoordinatedLaunch(ulong appID, ulong roomID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Application_GetInstalledApplications();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Application_GetVersion();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Application_LaunchOtherApp(UInt64 appID, IntPtr deeplink_options);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_ApplicationLifecycle_GetRegisteredPIDs();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_ApplicationLifecycle_GetSessionKey();
public static ulong ovr_ApplicationLifecycle_RegisterSessionKey(string sessionKey) {
IntPtr sessionKey_native = StringToNative(sessionKey);
var result = (ovr_ApplicationLifecycle_RegisterSessionKey_Native(sessionKey_native));
Marshal.FreeCoTaskMem(sessionKey_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ApplicationLifecycle_RegisterSessionKey")]
private static extern ulong ovr_ApplicationLifecycle_RegisterSessionKey_Native(IntPtr sessionKey);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_AssetFile_Delete(UInt64 assetFileID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_AssetFile_DeleteById(UInt64 assetFileID);
public static ulong ovr_AssetFile_DeleteByName(string assetFileName) {
IntPtr assetFileName_native = StringToNative(assetFileName);
var result = (ovr_AssetFile_DeleteByName_Native(assetFileName_native));
Marshal.FreeCoTaskMem(assetFileName_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_AssetFile_DeleteByName")]
private static extern ulong ovr_AssetFile_DeleteByName_Native(IntPtr assetFileName);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_AssetFile_Download(UInt64 assetFileID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_AssetFile_DownloadById(UInt64 assetFileID);
public static ulong ovr_AssetFile_DownloadByName(string assetFileName) {
IntPtr assetFileName_native = StringToNative(assetFileName);
var result = (ovr_AssetFile_DownloadByName_Native(assetFileName_native));
Marshal.FreeCoTaskMem(assetFileName_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_AssetFile_DownloadByName")]
private static extern ulong ovr_AssetFile_DownloadByName_Native(IntPtr assetFileName);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_AssetFile_DownloadCancel(UInt64 assetFileID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_AssetFile_DownloadCancelById(UInt64 assetFileID);
public static ulong ovr_AssetFile_DownloadCancelByName(string assetFileName) {
IntPtr assetFileName_native = StringToNative(assetFileName);
var result = (ovr_AssetFile_DownloadCancelByName_Native(assetFileName_native));
Marshal.FreeCoTaskMem(assetFileName_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_AssetFile_DownloadCancelByName")]
private static extern ulong ovr_AssetFile_DownloadCancelByName_Native(IntPtr assetFileName);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_AssetFile_GetList();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_AssetFile_Status(UInt64 assetFileID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_AssetFile_StatusById(UInt64 assetFileID);
public static ulong ovr_AssetFile_StatusByName(string assetFileName) {
IntPtr assetFileName_native = StringToNative(assetFileName);
var result = (ovr_AssetFile_StatusByName_Native(assetFileName_native));
Marshal.FreeCoTaskMem(assetFileName_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_AssetFile_StatusByName")]
private static extern ulong ovr_AssetFile_StatusByName_Native(IntPtr assetFileName);
public static ulong ovr_Avatar_UpdateMetaData(string avatarMetaData, string imageFilePath) {
IntPtr avatarMetaData_native = StringToNative(avatarMetaData);
IntPtr imageFilePath_native = StringToNative(imageFilePath);
var result = (ovr_Avatar_UpdateMetaData_Native(avatarMetaData_native, imageFilePath_native));
Marshal.FreeCoTaskMem(avatarMetaData_native);
Marshal.FreeCoTaskMem(imageFilePath_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Avatar_UpdateMetaData")]
private static extern ulong ovr_Avatar_UpdateMetaData_Native(IntPtr avatarMetaData, IntPtr imageFilePath);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Cal_FinalizeApplication(UInt64 groupingObject, UInt64[] userIDs, int numUserIDs, UInt64 finalized_application_ID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Cal_GetSuggestedApplications(UInt64 groupingObject, UInt64[] userIDs, int numUserIDs);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Cal_ProposeApplication(UInt64 groupingObject, UInt64[] userIDs, int numUserIDs, UInt64 proposed_application_ID);
public static ulong ovr_Challenges_Create(string leaderboardName, IntPtr challengeOptions) {
IntPtr leaderboardName_native = StringToNative(leaderboardName);
var result = (ovr_Challenges_Create_Native(leaderboardName_native, challengeOptions));
Marshal.FreeCoTaskMem(leaderboardName_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Challenges_Create")]
private static extern ulong ovr_Challenges_Create_Native(IntPtr leaderboardName, IntPtr challengeOptions);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Challenges_DeclineInvite(UInt64 challengeID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Challenges_Delete(UInt64 challengeID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Challenges_Get(UInt64 challengeID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Challenges_GetEntries(UInt64 challengeID, int limit, LeaderboardFilterType filter, LeaderboardStartAt startAt);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Challenges_GetEntriesAfterRank(UInt64 challengeID, int limit, ulong afterRank);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Challenges_GetEntriesByIds(UInt64 challengeID, int limit, LeaderboardStartAt startAt, UInt64[] userIDs, uint userIDLength);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Challenges_GetList(IntPtr challengeOptions, int limit);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Challenges_GetNextChallenges(IntPtr handle);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Challenges_GetNextEntries(IntPtr handle);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Challenges_GetPreviousChallenges(IntPtr handle);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Challenges_GetPreviousEntries(IntPtr handle);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Challenges_Join(UInt64 challengeID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Challenges_Leave(UInt64 challengeID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Challenges_UpdateInfo(UInt64 challengeID, IntPtr challengeOptions);
public static ulong ovr_CloudStorage_Delete(string bucket, string key) {
IntPtr bucket_native = StringToNative(bucket);
IntPtr key_native = StringToNative(key);
var result = (ovr_CloudStorage_Delete_Native(bucket_native, key_native));
Marshal.FreeCoTaskMem(bucket_native);
Marshal.FreeCoTaskMem(key_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CloudStorage_Delete")]
private static extern ulong ovr_CloudStorage_Delete_Native(IntPtr bucket, IntPtr key);
public static ulong ovr_CloudStorage_Load(string bucket, string key) {
IntPtr bucket_native = StringToNative(bucket);
IntPtr key_native = StringToNative(key);
var result = (ovr_CloudStorage_Load_Native(bucket_native, key_native));
Marshal.FreeCoTaskMem(bucket_native);
Marshal.FreeCoTaskMem(key_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CloudStorage_Load")]
private static extern ulong ovr_CloudStorage_Load_Native(IntPtr bucket, IntPtr key);
public static ulong ovr_CloudStorage_LoadBucketMetadata(string bucket) {
IntPtr bucket_native = StringToNative(bucket);
var result = (ovr_CloudStorage_LoadBucketMetadata_Native(bucket_native));
Marshal.FreeCoTaskMem(bucket_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CloudStorage_LoadBucketMetadata")]
private static extern ulong ovr_CloudStorage_LoadBucketMetadata_Native(IntPtr bucket);
public static ulong ovr_CloudStorage_LoadConflictMetadata(string bucket, string key) {
IntPtr bucket_native = StringToNative(bucket);
IntPtr key_native = StringToNative(key);
var result = (ovr_CloudStorage_LoadConflictMetadata_Native(bucket_native, key_native));
Marshal.FreeCoTaskMem(bucket_native);
Marshal.FreeCoTaskMem(key_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CloudStorage_LoadConflictMetadata")]
private static extern ulong ovr_CloudStorage_LoadConflictMetadata_Native(IntPtr bucket, IntPtr key);
public static ulong ovr_CloudStorage_LoadHandle(string handle) {
IntPtr handle_native = StringToNative(handle);
var result = (ovr_CloudStorage_LoadHandle_Native(handle_native));
Marshal.FreeCoTaskMem(handle_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CloudStorage_LoadHandle")]
private static extern ulong ovr_CloudStorage_LoadHandle_Native(IntPtr handle);
public static ulong ovr_CloudStorage_LoadMetadata(string bucket, string key) {
IntPtr bucket_native = StringToNative(bucket);
IntPtr key_native = StringToNative(key);
var result = (ovr_CloudStorage_LoadMetadata_Native(bucket_native, key_native));
Marshal.FreeCoTaskMem(bucket_native);
Marshal.FreeCoTaskMem(key_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CloudStorage_LoadMetadata")]
private static extern ulong ovr_CloudStorage_LoadMetadata_Native(IntPtr bucket, IntPtr key);
public static ulong ovr_CloudStorage_ResolveKeepLocal(string bucket, string key, string remoteHandle) {
IntPtr bucket_native = StringToNative(bucket);
IntPtr key_native = StringToNative(key);
IntPtr remoteHandle_native = StringToNative(remoteHandle);
var result = (ovr_CloudStorage_ResolveKeepLocal_Native(bucket_native, key_native, remoteHandle_native));
Marshal.FreeCoTaskMem(bucket_native);
Marshal.FreeCoTaskMem(key_native);
Marshal.FreeCoTaskMem(remoteHandle_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CloudStorage_ResolveKeepLocal")]
private static extern ulong ovr_CloudStorage_ResolveKeepLocal_Native(IntPtr bucket, IntPtr key, IntPtr remoteHandle);
public static ulong ovr_CloudStorage_ResolveKeepRemote(string bucket, string key, string remoteHandle) {
IntPtr bucket_native = StringToNative(bucket);
IntPtr key_native = StringToNative(key);
IntPtr remoteHandle_native = StringToNative(remoteHandle);
var result = (ovr_CloudStorage_ResolveKeepRemote_Native(bucket_native, key_native, remoteHandle_native));
Marshal.FreeCoTaskMem(bucket_native);
Marshal.FreeCoTaskMem(key_native);
Marshal.FreeCoTaskMem(remoteHandle_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CloudStorage_ResolveKeepRemote")]
private static extern ulong ovr_CloudStorage_ResolveKeepRemote_Native(IntPtr bucket, IntPtr key, IntPtr remoteHandle);
public static ulong ovr_CloudStorage_Save(string bucket, string key, byte[] data, uint dataSize, long counter, string extraData) {
IntPtr bucket_native = StringToNative(bucket);
IntPtr key_native = StringToNative(key);
IntPtr extraData_native = StringToNative(extraData);
var result = (ovr_CloudStorage_Save_Native(bucket_native, key_native, data, dataSize, counter, extraData_native));
Marshal.FreeCoTaskMem(bucket_native);
Marshal.FreeCoTaskMem(key_native);
Marshal.FreeCoTaskMem(extraData_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CloudStorage_Save")]
private static extern ulong ovr_CloudStorage_Save_Native(IntPtr bucket, IntPtr key, byte[] data, uint dataSize, long counter, IntPtr extraData);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_CloudStorage2_GetUserDirectoryPath();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Colocation_GetCurrentMapUuid();
public static ulong ovr_Colocation_RequestMap(string uuid) {
IntPtr uuid_native = StringToNative(uuid);
var result = (ovr_Colocation_RequestMap_Native(uuid_native));
Marshal.FreeCoTaskMem(uuid_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Colocation_RequestMap")]
private static extern ulong ovr_Colocation_RequestMap_Native(IntPtr uuid);
public static ulong ovr_Colocation_ShareMap(string uuid) {
IntPtr uuid_native = StringToNative(uuid);
var result = (ovr_Colocation_ShareMap_Native(uuid_native));
Marshal.FreeCoTaskMem(uuid_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Colocation_ShareMap")]
private static extern ulong ovr_Colocation_ShareMap_Native(IntPtr uuid);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Entitlement_GetIsViewerEntitled();
public static ulong ovr_GraphAPI_Get(string url) {
IntPtr url_native = StringToNative(url);
var result = (ovr_GraphAPI_Get_Native(url_native));
Marshal.FreeCoTaskMem(url_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_GraphAPI_Get")]
private static extern ulong ovr_GraphAPI_Get_Native(IntPtr url);
public static ulong ovr_GraphAPI_Post(string url) {
IntPtr url_native = StringToNative(url);
var result = (ovr_GraphAPI_Post_Native(url_native));
Marshal.FreeCoTaskMem(url_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_GraphAPI_Post")]
private static extern ulong ovr_GraphAPI_Post_Native(IntPtr url);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_GroupPresence_LaunchInvitePanel(IntPtr options);
public static ulong ovr_HTTP_Get(string url) {
IntPtr url_native = StringToNative(url);
var result = (ovr_HTTP_Get_Native(url_native));
Marshal.FreeCoTaskMem(url_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_HTTP_Get")]
private static extern ulong ovr_HTTP_Get_Native(IntPtr url);
public static ulong ovr_HTTP_GetToFile(string url, string diskFile) {
IntPtr url_native = StringToNative(url);
IntPtr diskFile_native = StringToNative(diskFile);
var result = (ovr_HTTP_GetToFile_Native(url_native, diskFile_native));
Marshal.FreeCoTaskMem(url_native);
Marshal.FreeCoTaskMem(diskFile_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_HTTP_GetToFile")]
private static extern ulong ovr_HTTP_GetToFile_Native(IntPtr url, IntPtr diskFile);
public static ulong ovr_HTTP_MultiPartPost(string url, string filepath_param_name, string filepath, string access_token, ovrKeyValuePair[] post_params) {
IntPtr url_native = StringToNative(url);
IntPtr filepath_param_name_native = StringToNative(filepath_param_name);
IntPtr filepath_native = StringToNative(filepath);
IntPtr access_token_native = StringToNative(access_token);
UIntPtr post_params_length = (UIntPtr)post_params.Length;
var result = (ovr_HTTP_MultiPartPost_Native(url_native, filepath_param_name_native, filepath_native, access_token_native, post_params, post_params_length));
Marshal.FreeCoTaskMem(url_native);
Marshal.FreeCoTaskMem(filepath_param_name_native);
Marshal.FreeCoTaskMem(filepath_native);
Marshal.FreeCoTaskMem(access_token_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_HTTP_MultiPartPost")]
private static extern ulong ovr_HTTP_MultiPartPost_Native(IntPtr url, IntPtr filepath_param_name, IntPtr filepath, IntPtr access_token, ovrKeyValuePair[] post_params, UIntPtr numItems);
public static ulong ovr_HTTP_Post(string url) {
IntPtr url_native = StringToNative(url);
var result = (ovr_HTTP_Post_Native(url_native));
Marshal.FreeCoTaskMem(url_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_HTTP_Post")]
private static extern ulong ovr_HTTP_Post_Native(IntPtr url);
public static ulong ovr_IAP_ConsumePurchase(string sku) {
IntPtr sku_native = StringToNative(sku);
var result = (ovr_IAP_ConsumePurchase_Native(sku_native));
Marshal.FreeCoTaskMem(sku_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_IAP_ConsumePurchase")]
private static extern ulong ovr_IAP_ConsumePurchase_Native(IntPtr sku);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_IAP_GetProductsBySKU(string[] skus, int count);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_IAP_GetViewerPurchases();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_IAP_GetViewerPurchasesDurableCache();
public static ulong ovr_IAP_LaunchCheckoutFlow(string sku) {
IntPtr sku_native = StringToNative(sku);
var result = (ovr_IAP_LaunchCheckoutFlow_Native(sku_native));
Marshal.FreeCoTaskMem(sku_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_IAP_LaunchCheckoutFlow")]
private static extern ulong ovr_IAP_LaunchCheckoutFlow_Native(IntPtr sku);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_LanguagePack_GetCurrent();
public static ulong ovr_LanguagePack_SetCurrent(string tag) {
IntPtr tag_native = StringToNative(tag);
var result = (ovr_LanguagePack_SetCurrent_Native(tag_native));
Marshal.FreeCoTaskMem(tag_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_LanguagePack_SetCurrent")]
private static extern ulong ovr_LanguagePack_SetCurrent_Native(IntPtr tag);
public static ulong ovr_Leaderboard_Get(string leaderboardName) {
IntPtr leaderboardName_native = StringToNative(leaderboardName);
var result = (ovr_Leaderboard_Get_Native(leaderboardName_native));
Marshal.FreeCoTaskMem(leaderboardName_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Leaderboard_Get")]
private static extern ulong ovr_Leaderboard_Get_Native(IntPtr leaderboardName);
public static ulong ovr_Leaderboard_GetEntries(string leaderboardName, int limit, LeaderboardFilterType filter, LeaderboardStartAt startAt) {
IntPtr leaderboardName_native = StringToNative(leaderboardName);
var result = (ovr_Leaderboard_GetEntries_Native(leaderboardName_native, limit, filter, startAt));
Marshal.FreeCoTaskMem(leaderboardName_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Leaderboard_GetEntries")]
private static extern ulong ovr_Leaderboard_GetEntries_Native(IntPtr leaderboardName, int limit, LeaderboardFilterType filter, LeaderboardStartAt startAt);
public static ulong ovr_Leaderboard_GetEntriesAfterRank(string leaderboardName, int limit, ulong afterRank) {
IntPtr leaderboardName_native = StringToNative(leaderboardName);
var result = (ovr_Leaderboard_GetEntriesAfterRank_Native(leaderboardName_native, limit, afterRank));
Marshal.FreeCoTaskMem(leaderboardName_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Leaderboard_GetEntriesAfterRank")]
private static extern ulong ovr_Leaderboard_GetEntriesAfterRank_Native(IntPtr leaderboardName, int limit, ulong afterRank);
public static ulong ovr_Leaderboard_GetEntriesByIds(string leaderboardName, int limit, LeaderboardStartAt startAt, UInt64[] userIDs, uint userIDLength) {
IntPtr leaderboardName_native = StringToNative(leaderboardName);
var result = (ovr_Leaderboard_GetEntriesByIds_Native(leaderboardName_native, limit, startAt, userIDs, userIDLength));
Marshal.FreeCoTaskMem(leaderboardName_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Leaderboard_GetEntriesByIds")]
private static extern ulong ovr_Leaderboard_GetEntriesByIds_Native(IntPtr leaderboardName, int limit, LeaderboardStartAt startAt, UInt64[] userIDs, uint userIDLength);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Leaderboard_GetNextEntries(IntPtr handle);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Leaderboard_GetPreviousEntries(IntPtr handle);
public static ulong ovr_Leaderboard_WriteEntry(string leaderboardName, long score, byte[] extraData, uint extraDataLength, bool forceUpdate) {
IntPtr leaderboardName_native = StringToNative(leaderboardName);
var result = (ovr_Leaderboard_WriteEntry_Native(leaderboardName_native, score, extraData, extraDataLength, forceUpdate));
Marshal.FreeCoTaskMem(leaderboardName_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Leaderboard_WriteEntry")]
private static extern ulong ovr_Leaderboard_WriteEntry_Native(IntPtr leaderboardName, long score, byte[] extraData, uint extraDataLength, bool forceUpdate);
public static ulong ovr_Leaderboard_WriteEntryWithSupplementaryMetric(string leaderboardName, long score, long supplementaryMetric, byte[] extraData, uint extraDataLength, bool forceUpdate) {
IntPtr leaderboardName_native = StringToNative(leaderboardName);
var result = (ovr_Leaderboard_WriteEntryWithSupplementaryMetric_Native(leaderboardName_native, score, supplementaryMetric, extraData, extraDataLength, forceUpdate));
Marshal.FreeCoTaskMem(leaderboardName_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Leaderboard_WriteEntryWithSupplementaryMetric")]
private static extern ulong ovr_Leaderboard_WriteEntryWithSupplementaryMetric_Native(IntPtr leaderboardName, long score, long supplementaryMetric, byte[] extraData, uint extraDataLength, bool forceUpdate);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Livestreaming_GetStatus();
public static ulong ovr_Livestreaming_IsAllowedForApplication(string packageName) {
IntPtr packageName_native = StringToNative(packageName);
var result = (ovr_Livestreaming_IsAllowedForApplication_Native(packageName_native));
Marshal.FreeCoTaskMem(packageName_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Livestreaming_IsAllowedForApplication")]
private static extern ulong ovr_Livestreaming_IsAllowedForApplication_Native(IntPtr packageName);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Livestreaming_LaunchLivestreamingFlow();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Livestreaming_PauseStream();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Livestreaming_ResumeStream();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Livestreaming_StartPartyStream();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Livestreaming_StartStream(LivestreamingAudience audience, LivestreamingMicrophoneStatus micStatus);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Livestreaming_StopPartyStream();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Livestreaming_StopStream();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Livestreaming_UpdateCommentsOverlayVisibility(bool isVisible);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Livestreaming_UpdateMicStatus(LivestreamingMicrophoneStatus micStatus);
public static ulong ovr_Matchmaking_Browse(string pool, IntPtr customQueryData) {
IntPtr pool_native = StringToNative(pool);
var result = (ovr_Matchmaking_Browse_Native(pool_native, customQueryData));
Marshal.FreeCoTaskMem(pool_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Matchmaking_Browse")]
private static extern ulong ovr_Matchmaking_Browse_Native(IntPtr pool, IntPtr customQueryData);
public static ulong ovr_Matchmaking_Browse2(string pool, IntPtr matchmakingOptions) {
IntPtr pool_native = StringToNative(pool);
var result = (ovr_Matchmaking_Browse2_Native(pool_native, matchmakingOptions));
Marshal.FreeCoTaskMem(pool_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Matchmaking_Browse2")]
private static extern ulong ovr_Matchmaking_Browse2_Native(IntPtr pool, IntPtr matchmakingOptions);
public static ulong ovr_Matchmaking_Cancel(string pool, string requestHash) {
IntPtr pool_native = StringToNative(pool);
IntPtr requestHash_native = StringToNative(requestHash);
var result = (ovr_Matchmaking_Cancel_Native(pool_native, requestHash_native));
Marshal.FreeCoTaskMem(pool_native);
Marshal.FreeCoTaskMem(requestHash_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Matchmaking_Cancel")]
private static extern ulong ovr_Matchmaking_Cancel_Native(IntPtr pool, IntPtr requestHash);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Matchmaking_Cancel2();
public static ulong ovr_Matchmaking_CreateAndEnqueueRoom(string pool, uint maxUsers, bool subscribeToUpdates, IntPtr customQueryData) {
IntPtr pool_native = StringToNative(pool);
var result = (ovr_Matchmaking_CreateAndEnqueueRoom_Native(pool_native, maxUsers, subscribeToUpdates, customQueryData));
Marshal.FreeCoTaskMem(pool_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Matchmaking_CreateAndEnqueueRoom")]
private static extern ulong ovr_Matchmaking_CreateAndEnqueueRoom_Native(IntPtr pool, uint maxUsers, bool subscribeToUpdates, IntPtr customQueryData);
public static ulong ovr_Matchmaking_CreateAndEnqueueRoom2(string pool, IntPtr matchmakingOptions) {
IntPtr pool_native = StringToNative(pool);
var result = (ovr_Matchmaking_CreateAndEnqueueRoom2_Native(pool_native, matchmakingOptions));
Marshal.FreeCoTaskMem(pool_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Matchmaking_CreateAndEnqueueRoom2")]
private static extern ulong ovr_Matchmaking_CreateAndEnqueueRoom2_Native(IntPtr pool, IntPtr matchmakingOptions);
public static ulong ovr_Matchmaking_CreateRoom(string pool, uint maxUsers, bool subscribeToUpdates) {
IntPtr pool_native = StringToNative(pool);
var result = (ovr_Matchmaking_CreateRoom_Native(pool_native, maxUsers, subscribeToUpdates));
Marshal.FreeCoTaskMem(pool_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Matchmaking_CreateRoom")]
private static extern ulong ovr_Matchmaking_CreateRoom_Native(IntPtr pool, uint maxUsers, bool subscribeToUpdates);
public static ulong ovr_Matchmaking_CreateRoom2(string pool, IntPtr matchmakingOptions) {
IntPtr pool_native = StringToNative(pool);
var result = (ovr_Matchmaking_CreateRoom2_Native(pool_native, matchmakingOptions));
Marshal.FreeCoTaskMem(pool_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Matchmaking_CreateRoom2")]
private static extern ulong ovr_Matchmaking_CreateRoom2_Native(IntPtr pool, IntPtr matchmakingOptions);
public static ulong ovr_Matchmaking_Enqueue(string pool, IntPtr customQueryData) {
IntPtr pool_native = StringToNative(pool);
var result = (ovr_Matchmaking_Enqueue_Native(pool_native, customQueryData));
Marshal.FreeCoTaskMem(pool_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Matchmaking_Enqueue")]
private static extern ulong ovr_Matchmaking_Enqueue_Native(IntPtr pool, IntPtr customQueryData);
public static ulong ovr_Matchmaking_Enqueue2(string pool, IntPtr matchmakingOptions) {
IntPtr pool_native = StringToNative(pool);
var result = (ovr_Matchmaking_Enqueue2_Native(pool_native, matchmakingOptions));
Marshal.FreeCoTaskMem(pool_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Matchmaking_Enqueue2")]
private static extern ulong ovr_Matchmaking_Enqueue2_Native(IntPtr pool, IntPtr matchmakingOptions);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Matchmaking_EnqueueRoom(UInt64 roomID, IntPtr customQueryData);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Matchmaking_EnqueueRoom2(UInt64 roomID, IntPtr matchmakingOptions);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Matchmaking_GetAdminSnapshot();
public static ulong ovr_Matchmaking_GetStats(string pool, uint maxLevel, MatchmakingStatApproach approach) {
IntPtr pool_native = StringToNative(pool);
var result = (ovr_Matchmaking_GetStats_Native(pool_native, maxLevel, approach));
Marshal.FreeCoTaskMem(pool_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Matchmaking_GetStats")]
private static extern ulong ovr_Matchmaking_GetStats_Native(IntPtr pool, uint maxLevel, MatchmakingStatApproach approach);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Matchmaking_JoinRoom(UInt64 roomID, bool subscribeToUpdates);
public static ulong ovr_Matchmaking_ReportResultInsecure(UInt64 roomID, ovrKeyValuePair[] data) {
UIntPtr data_length = (UIntPtr)data.Length;
var result = (ovr_Matchmaking_ReportResultInsecure_Native(roomID, data, data_length));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Matchmaking_ReportResultInsecure")]
private static extern ulong ovr_Matchmaking_ReportResultInsecure_Native(UInt64 roomID, ovrKeyValuePair[] data, UIntPtr numItems);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Matchmaking_StartMatch(UInt64 roomID);
public static ulong ovr_Media_ShareToFacebook(string postTextSuggestion, string filePath, MediaContentType contentType) {
IntPtr postTextSuggestion_native = StringToNative(postTextSuggestion);
IntPtr filePath_native = StringToNative(filePath);
var result = (ovr_Media_ShareToFacebook_Native(postTextSuggestion_native, filePath_native, contentType));
Marshal.FreeCoTaskMem(postTextSuggestion_native);
Marshal.FreeCoTaskMem(filePath_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Media_ShareToFacebook")]
private static extern ulong ovr_Media_ShareToFacebook_Native(IntPtr postTextSuggestion, IntPtr filePath, MediaContentType contentType);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_NetSync_Connect(IntPtr connect_options);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_NetSync_Disconnect(long connection_id);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_NetSync_GetSessions(long connection_id);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_NetSync_GetVoipAttenuation(long connection_id);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_NetSync_GetVoipAttenuationDefault();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_NetSync_SetVoipAttenuation(long connection_id, float[] distances, float[] decibels, UIntPtr count);
public static ulong ovr_NetSync_SetVoipAttenuationModel(long connection_id, string name, float[] distances, float[] decibels, UIntPtr count) {
IntPtr name_native = StringToNative(name);
var result = (ovr_NetSync_SetVoipAttenuationModel_Native(connection_id, name_native, distances, decibels, count));
Marshal.FreeCoTaskMem(name_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_NetSync_SetVoipAttenuationModel")]
private static extern ulong ovr_NetSync_SetVoipAttenuationModel_Native(long connection_id, IntPtr name, float[] distances, float[] decibels, UIntPtr count);
public static ulong ovr_NetSync_SetVoipChannelCfg(long connection_id, string channel_name, string attnmodel, bool disable_spatialization) {
IntPtr channel_name_native = StringToNative(channel_name);
IntPtr attnmodel_native = StringToNative(attnmodel);
var result = (ovr_NetSync_SetVoipChannelCfg_Native(connection_id, channel_name_native, attnmodel_native, disable_spatialization));
Marshal.FreeCoTaskMem(channel_name_native);
Marshal.FreeCoTaskMem(attnmodel_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_NetSync_SetVoipChannelCfg")]
private static extern ulong ovr_NetSync_SetVoipChannelCfg_Native(long connection_id, IntPtr channel_name, IntPtr attnmodel, bool disable_spatialization);
public static ulong ovr_NetSync_SetVoipGroup(long connection_id, string group_id) {
IntPtr group_id_native = StringToNative(group_id);
var result = (ovr_NetSync_SetVoipGroup_Native(connection_id, group_id_native));
Marshal.FreeCoTaskMem(group_id_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_NetSync_SetVoipGroup")]
private static extern ulong ovr_NetSync_SetVoipGroup_Native(long connection_id, IntPtr group_id);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_NetSync_SetVoipListentoChannels(long connection_id, string[] listento_channels, UIntPtr count);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_NetSync_SetVoipMicSource(long connection_id, NetSyncVoipMicSource mic_source);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_NetSync_SetVoipSessionMuted(long connection_id, UInt64 session_id, bool muted);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_NetSync_SetVoipSpeaktoChannels(long connection_id, string[] speakto_channels, UIntPtr count);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_NetSync_SetVoipStreamMode(long connection_id, UInt64 sessionId, NetSyncVoipStreamMode streamMode);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Notification_GetRoomInvites();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Notification_MarkAsRead(UInt64 notificationID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Party_Create();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Party_GatherInApplication(UInt64 partyID, UInt64 appID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Party_Get(UInt64 partyID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Party_GetCurrent();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Party_GetCurrentForUser(UInt64 userID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Party_Invite(UInt64 partyID, UInt64 userID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Party_Join(UInt64 partyID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Party_Leave(UInt64 partyID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_RichPresence_Clear();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_RichPresence_GetDestinations();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_RichPresence_Set(IntPtr richPresenceOptions);
public static ulong ovr_RichPresence_SetDestination(string api_name) {
IntPtr api_name_native = StringToNative(api_name);
var result = (ovr_RichPresence_SetDestination_Native(api_name_native));
Marshal.FreeCoTaskMem(api_name_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_RichPresence_SetDestination")]
private static extern ulong ovr_RichPresence_SetDestination_Native(IntPtr api_name);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_RichPresence_SetIsJoinable(bool is_joinable);
public static ulong ovr_RichPresence_SetLobbySession(string id) {
IntPtr id_native = StringToNative(id);
var result = (ovr_RichPresence_SetLobbySession_Native(id_native));
Marshal.FreeCoTaskMem(id_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_RichPresence_SetLobbySession")]
private static extern ulong ovr_RichPresence_SetLobbySession_Native(IntPtr id);
public static ulong ovr_RichPresence_SetMatchSession(string id) {
IntPtr id_native = StringToNative(id);
var result = (ovr_RichPresence_SetMatchSession_Native(id_native));
Marshal.FreeCoTaskMem(id_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_RichPresence_SetMatchSession")]
private static extern ulong ovr_RichPresence_SetMatchSession_Native(IntPtr id);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Room_CreateAndJoinPrivate(RoomJoinPolicy joinPolicy, uint maxUsers, bool subscribeToUpdates);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Room_CreateAndJoinPrivate2(RoomJoinPolicy joinPolicy, uint maxUsers, IntPtr roomOptions);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Room_Get(UInt64 roomID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Room_GetCurrent();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Room_GetCurrentForUser(UInt64 userID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Room_GetInvitableUsers();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Room_GetInvitableUsers2(IntPtr roomOptions);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Room_GetModeratedRooms();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Room_GetSocialRooms(UInt64 appID);
public static ulong ovr_Room_InviteUser(UInt64 roomID, string inviteToken) {
IntPtr inviteToken_native = StringToNative(inviteToken);
var result = (ovr_Room_InviteUser_Native(roomID, inviteToken_native));
Marshal.FreeCoTaskMem(inviteToken_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Room_InviteUser")]
private static extern ulong ovr_Room_InviteUser_Native(UInt64 roomID, IntPtr inviteToken);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Room_Join(UInt64 roomID, bool subscribeToUpdates);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Room_Join2(UInt64 roomID, IntPtr roomOptions);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Room_KickUser(UInt64 roomID, UInt64 userID, int kickDurationSeconds);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Room_LaunchInvitableUserFlow(UInt64 roomID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Room_Leave(UInt64 roomID);
public static ulong ovr_Room_SetDescription(UInt64 roomID, string description) {
IntPtr description_native = StringToNative(description);
var result = (ovr_Room_SetDescription_Native(roomID, description_native));
Marshal.FreeCoTaskMem(description_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Room_SetDescription")]
private static extern ulong ovr_Room_SetDescription_Native(UInt64 roomID, IntPtr description);
public static ulong ovr_Room_UpdateDataStore(UInt64 roomID, ovrKeyValuePair[] data) {
UIntPtr data_length = (UIntPtr)data.Length;
var result = (ovr_Room_UpdateDataStore_Native(roomID, data, data_length));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Room_UpdateDataStore")]
private static extern ulong ovr_Room_UpdateDataStore_Native(UInt64 roomID, ovrKeyValuePair[] data, UIntPtr numItems);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Room_UpdateMembershipLockStatus(UInt64 roomID, RoomMembershipLockStatus membershipLockStatus);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Room_UpdateOwner(UInt64 roomID, UInt64 userID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Room_UpdatePrivateRoomJoinPolicy(UInt64 roomID, RoomJoinPolicy newJoinPolicy);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_SystemPermissions_GetStatus(PermissionType permType);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_SystemPermissions_LaunchDeeplink(PermissionType permType);
public static ulong ovr_User_CancelRecordingForReportFlow(string recordingUUID) {
IntPtr recordingUUID_native = StringToNative(recordingUUID);
var result = (ovr_User_CancelRecordingForReportFlow_Native(recordingUUID_native));
Marshal.FreeCoTaskMem(recordingUUID_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_User_CancelRecordingForReportFlow")]
private static extern ulong ovr_User_CancelRecordingForReportFlow_Native(IntPtr recordingUUID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_User_Get(UInt64 userID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_User_GetAccessToken();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_User_GetLinkedAccounts(IntPtr userOptions);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_User_GetLoggedInUser();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_User_GetLoggedInUserFriends();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_User_GetLoggedInUserFriendsAndRooms();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_User_GetLoggedInUserRecentlyMetUsersAndRooms(IntPtr userOptions);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_User_GetOrgScopedID(UInt64 userID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_User_GetSdkAccounts();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_User_GetUserProof();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_User_LaunchBlockFlow(UInt64 userID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_User_LaunchFriendRequestFlow(UInt64 userID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_User_LaunchProfile(UInt64 userID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_User_LaunchReportFlow(UInt64 userID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_User_LaunchReportFlow2(UInt64 optionalUserID, IntPtr abuseReportOptions);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_User_LaunchUnblockFlow(UInt64 userID);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_User_NewEntitledTestUser();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_User_NewTestUser();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_User_NewTestUserFriends();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_User_StartRecordingForReportFlow();
public static ulong ovr_User_StopRecordingAndLaunchReportFlow(UInt64 optionalUserID, string optionalRecordingUUID) {
IntPtr optionalRecordingUUID_native = StringToNative(optionalRecordingUUID);
var result = (ovr_User_StopRecordingAndLaunchReportFlow_Native(optionalUserID, optionalRecordingUUID_native));
Marshal.FreeCoTaskMem(optionalRecordingUUID_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_User_StopRecordingAndLaunchReportFlow")]
private static extern ulong ovr_User_StopRecordingAndLaunchReportFlow_Native(UInt64 optionalUserID, IntPtr optionalRecordingUUID);
public static ulong ovr_User_StopRecordingAndLaunchReportFlow2(UInt64 optionalUserID, string optionalRecordingUUID, IntPtr abuseReportOptions) {
IntPtr optionalRecordingUUID_native = StringToNative(optionalRecordingUUID);
var result = (ovr_User_StopRecordingAndLaunchReportFlow2_Native(optionalUserID, optionalRecordingUUID_native, abuseReportOptions));
Marshal.FreeCoTaskMem(optionalRecordingUUID_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_User_StopRecordingAndLaunchReportFlow2")]
private static extern ulong ovr_User_StopRecordingAndLaunchReportFlow2_Native(UInt64 optionalUserID, IntPtr optionalRecordingUUID, IntPtr abuseReportOptions);
public static ulong ovr_User_TestUserCreateDeviceManifest(string deviceID, UInt64[] appIDs, int numAppIDs) {
IntPtr deviceID_native = StringToNative(deviceID);
var result = (ovr_User_TestUserCreateDeviceManifest_Native(deviceID_native, appIDs, numAppIDs));
Marshal.FreeCoTaskMem(deviceID_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_User_TestUserCreateDeviceManifest")]
private static extern ulong ovr_User_TestUserCreateDeviceManifest_Native(IntPtr deviceID, UInt64[] appIDs, int numAppIDs);
public static ulong ovr_UserDataStore_PrivateDeleteEntryByKey(UInt64 userID, string key) {
IntPtr key_native = StringToNative(key);
var result = (ovr_UserDataStore_PrivateDeleteEntryByKey_Native(userID, key_native));
Marshal.FreeCoTaskMem(key_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_UserDataStore_PrivateDeleteEntryByKey")]
private static extern ulong ovr_UserDataStore_PrivateDeleteEntryByKey_Native(UInt64 userID, IntPtr key);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_UserDataStore_PrivateGetEntries(UInt64 userID);
public static ulong ovr_UserDataStore_PrivateGetEntryByKey(UInt64 userID, string key) {
IntPtr key_native = StringToNative(key);
var result = (ovr_UserDataStore_PrivateGetEntryByKey_Native(userID, key_native));
Marshal.FreeCoTaskMem(key_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_UserDataStore_PrivateGetEntryByKey")]
private static extern ulong ovr_UserDataStore_PrivateGetEntryByKey_Native(UInt64 userID, IntPtr key);
public static ulong ovr_UserDataStore_PrivateWriteEntry(UInt64 userID, string key, string value) {
IntPtr key_native = StringToNative(key);
IntPtr value_native = StringToNative(value);
var result = (ovr_UserDataStore_PrivateWriteEntry_Native(userID, key_native, value_native));
Marshal.FreeCoTaskMem(key_native);
Marshal.FreeCoTaskMem(value_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_UserDataStore_PrivateWriteEntry")]
private static extern ulong ovr_UserDataStore_PrivateWriteEntry_Native(UInt64 userID, IntPtr key, IntPtr value);
public static ulong ovr_UserDataStore_PublicDeleteEntryByKey(UInt64 userID, string key) {
IntPtr key_native = StringToNative(key);
var result = (ovr_UserDataStore_PublicDeleteEntryByKey_Native(userID, key_native));
Marshal.FreeCoTaskMem(key_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_UserDataStore_PublicDeleteEntryByKey")]
private static extern ulong ovr_UserDataStore_PublicDeleteEntryByKey_Native(UInt64 userID, IntPtr key);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_UserDataStore_PublicGetEntries(UInt64 userID);
public static ulong ovr_UserDataStore_PublicGetEntryByKey(UInt64 userID, string key) {
IntPtr key_native = StringToNative(key);
var result = (ovr_UserDataStore_PublicGetEntryByKey_Native(userID, key_native));
Marshal.FreeCoTaskMem(key_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_UserDataStore_PublicGetEntryByKey")]
private static extern ulong ovr_UserDataStore_PublicGetEntryByKey_Native(UInt64 userID, IntPtr key);
public static ulong ovr_UserDataStore_PublicWriteEntry(UInt64 userID, string key, string value) {
IntPtr key_native = StringToNative(key);
IntPtr value_native = StringToNative(value);
var result = (ovr_UserDataStore_PublicWriteEntry_Native(userID, key_native, value_native));
Marshal.FreeCoTaskMem(key_native);
Marshal.FreeCoTaskMem(value_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_UserDataStore_PublicWriteEntry")]
private static extern ulong ovr_UserDataStore_PublicWriteEntry_Native(UInt64 userID, IntPtr key, IntPtr value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Voip_SetSystemVoipSuppressed(bool suppressed);
public static string ovr_AbuseReportRecording_GetRecordingUuid(IntPtr obj) {
var result = StringFromNative(ovr_AbuseReportRecording_GetRecordingUuid_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_AbuseReportRecording_GetRecordingUuid")]
private static extern IntPtr ovr_AbuseReportRecording_GetRecordingUuid_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern uint ovr_AchievementDefinition_GetBitfieldLength(IntPtr obj);
public static string ovr_AchievementDefinition_GetName(IntPtr obj) {
var result = StringFromNative(ovr_AchievementDefinition_GetName_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_AchievementDefinition_GetName")]
private static extern IntPtr ovr_AchievementDefinition_GetName_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_AchievementDefinition_GetTarget(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern AchievementType ovr_AchievementDefinition_GetType(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_AchievementDefinitionArray_GetElement(IntPtr obj, UIntPtr index);
public static string ovr_AchievementDefinitionArray_GetNextUrl(IntPtr obj) {
var result = StringFromNative(ovr_AchievementDefinitionArray_GetNextUrl_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_AchievementDefinitionArray_GetNextUrl")]
private static extern IntPtr ovr_AchievementDefinitionArray_GetNextUrl_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_AchievementDefinitionArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_AchievementDefinitionArray_HasNextPage(IntPtr obj);
public static string ovr_AchievementProgress_GetBitfield(IntPtr obj) {
var result = StringFromNative(ovr_AchievementProgress_GetBitfield_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_AchievementProgress_GetBitfield")]
private static extern IntPtr ovr_AchievementProgress_GetBitfield_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_AchievementProgress_GetCount(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_AchievementProgress_GetIsUnlocked(IntPtr obj);
public static string ovr_AchievementProgress_GetName(IntPtr obj) {
var result = StringFromNative(ovr_AchievementProgress_GetName_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_AchievementProgress_GetName")]
private static extern IntPtr ovr_AchievementProgress_GetName_Native(IntPtr obj);
public static DateTime ovr_AchievementProgress_GetUnlockTime(IntPtr obj) {
var result = DateTimeFromNative(ovr_AchievementProgress_GetUnlockTime_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_AchievementProgress_GetUnlockTime")]
private static extern ulong ovr_AchievementProgress_GetUnlockTime_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_AchievementProgressArray_GetElement(IntPtr obj, UIntPtr index);
public static string ovr_AchievementProgressArray_GetNextUrl(IntPtr obj) {
var result = StringFromNative(ovr_AchievementProgressArray_GetNextUrl_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_AchievementProgressArray_GetNextUrl")]
private static extern IntPtr ovr_AchievementProgressArray_GetNextUrl_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_AchievementProgressArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_AchievementProgressArray_HasNextPage(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_AchievementUpdate_GetJustUnlocked(IntPtr obj);
public static string ovr_AchievementUpdate_GetName(IntPtr obj) {
var result = StringFromNative(ovr_AchievementUpdate_GetName_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_AchievementUpdate_GetName")]
private static extern IntPtr ovr_AchievementUpdate_GetName_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_Application_GetID(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern int ovr_ApplicationVersion_GetCurrentCode(IntPtr obj);
public static string ovr_ApplicationVersion_GetCurrentName(IntPtr obj) {
var result = StringFromNative(ovr_ApplicationVersion_GetCurrentName_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ApplicationVersion_GetCurrentName")]
private static extern IntPtr ovr_ApplicationVersion_GetCurrentName_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern int ovr_ApplicationVersion_GetLatestCode(IntPtr obj);
public static string ovr_ApplicationVersion_GetLatestName(IntPtr obj) {
var result = StringFromNative(ovr_ApplicationVersion_GetLatestName_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ApplicationVersion_GetLatestName")]
private static extern IntPtr ovr_ApplicationVersion_GetLatestName_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_AssetDetails_GetAssetId(IntPtr obj);
public static string ovr_AssetDetails_GetAssetType(IntPtr obj) {
var result = StringFromNative(ovr_AssetDetails_GetAssetType_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_AssetDetails_GetAssetType")]
private static extern IntPtr ovr_AssetDetails_GetAssetType_Native(IntPtr obj);
public static string ovr_AssetDetails_GetDownloadStatus(IntPtr obj) {
var result = StringFromNative(ovr_AssetDetails_GetDownloadStatus_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_AssetDetails_GetDownloadStatus")]
private static extern IntPtr ovr_AssetDetails_GetDownloadStatus_Native(IntPtr obj);
public static string ovr_AssetDetails_GetFilepath(IntPtr obj) {
var result = StringFromNative(ovr_AssetDetails_GetFilepath_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_AssetDetails_GetFilepath")]
private static extern IntPtr ovr_AssetDetails_GetFilepath_Native(IntPtr obj);
public static string ovr_AssetDetails_GetIapStatus(IntPtr obj) {
var result = StringFromNative(ovr_AssetDetails_GetIapStatus_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_AssetDetails_GetIapStatus")]
private static extern IntPtr ovr_AssetDetails_GetIapStatus_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_AssetDetails_GetLanguage(IntPtr obj);
public static string ovr_AssetDetails_GetMetadata(IntPtr obj) {
var result = StringFromNative(ovr_AssetDetails_GetMetadata_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_AssetDetails_GetMetadata")]
private static extern IntPtr ovr_AssetDetails_GetMetadata_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_AssetDetailsArray_GetElement(IntPtr obj, UIntPtr index);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_AssetDetailsArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_AssetFileDeleteResult_GetAssetFileId(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_AssetFileDeleteResult_GetAssetId(IntPtr obj);
public static string ovr_AssetFileDeleteResult_GetFilepath(IntPtr obj) {
var result = StringFromNative(ovr_AssetFileDeleteResult_GetFilepath_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_AssetFileDeleteResult_GetFilepath")]
private static extern IntPtr ovr_AssetFileDeleteResult_GetFilepath_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_AssetFileDeleteResult_GetSuccess(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_AssetFileDownloadCancelResult_GetAssetFileId(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_AssetFileDownloadCancelResult_GetAssetId(IntPtr obj);
public static string ovr_AssetFileDownloadCancelResult_GetFilepath(IntPtr obj) {
var result = StringFromNative(ovr_AssetFileDownloadCancelResult_GetFilepath_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_AssetFileDownloadCancelResult_GetFilepath")]
private static extern IntPtr ovr_AssetFileDownloadCancelResult_GetFilepath_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_AssetFileDownloadCancelResult_GetSuccess(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_AssetFileDownloadResult_GetAssetId(IntPtr obj);
public static string ovr_AssetFileDownloadResult_GetFilepath(IntPtr obj) {
var result = StringFromNative(ovr_AssetFileDownloadResult_GetFilepath_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_AssetFileDownloadResult_GetFilepath")]
private static extern IntPtr ovr_AssetFileDownloadResult_GetFilepath_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_AssetFileDownloadUpdate_GetAssetFileId(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_AssetFileDownloadUpdate_GetAssetId(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern uint ovr_AssetFileDownloadUpdate_GetBytesTotal(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern int ovr_AssetFileDownloadUpdate_GetBytesTransferred(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_AssetFileDownloadUpdate_GetCompleted(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern int ovr_CalApplicationFinalized_GetCountdownMS(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_CalApplicationFinalized_GetID(IntPtr obj);
public static string ovr_CalApplicationFinalized_GetLaunchDetails(IntPtr obj) {
var result = StringFromNative(ovr_CalApplicationFinalized_GetLaunchDetails_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CalApplicationFinalized_GetLaunchDetails")]
private static extern IntPtr ovr_CalApplicationFinalized_GetLaunchDetails_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_CalApplicationProposed_GetID(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_CalApplicationSuggestion_GetID(IntPtr obj);
public static string ovr_CalApplicationSuggestion_GetSocialContext(IntPtr obj) {
var result = StringFromNative(ovr_CalApplicationSuggestion_GetSocialContext_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CalApplicationSuggestion_GetSocialContext")]
private static extern IntPtr ovr_CalApplicationSuggestion_GetSocialContext_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_CalApplicationSuggestionArray_GetElement(IntPtr obj, UIntPtr index);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_CalApplicationSuggestionArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ChallengeCreationType ovr_Challenge_GetCreationType(IntPtr obj);
public static string ovr_Challenge_GetDescription(IntPtr obj) {
var result = StringFromNative(ovr_Challenge_GetDescription_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Challenge_GetDescription")]
private static extern IntPtr ovr_Challenge_GetDescription_Native(IntPtr obj);
public static DateTime ovr_Challenge_GetEndDate(IntPtr obj) {
var result = DateTimeFromNative(ovr_Challenge_GetEndDate_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Challenge_GetEndDate")]
private static extern ulong ovr_Challenge_GetEndDate_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_Challenge_GetID(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Challenge_GetInvitedUsers(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Challenge_GetLeaderboard(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Challenge_GetParticipants(IntPtr obj);
public static DateTime ovr_Challenge_GetStartDate(IntPtr obj) {
var result = DateTimeFromNative(ovr_Challenge_GetStartDate_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Challenge_GetStartDate")]
private static extern ulong ovr_Challenge_GetStartDate_Native(IntPtr obj);
public static string ovr_Challenge_GetTitle(IntPtr obj) {
var result = StringFromNative(ovr_Challenge_GetTitle_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Challenge_GetTitle")]
private static extern IntPtr ovr_Challenge_GetTitle_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ChallengeVisibility ovr_Challenge_GetVisibility(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_ChallengeArray_GetElement(IntPtr obj, UIntPtr index);
public static string ovr_ChallengeArray_GetNextUrl(IntPtr obj) {
var result = StringFromNative(ovr_ChallengeArray_GetNextUrl_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeArray_GetNextUrl")]
private static extern IntPtr ovr_ChallengeArray_GetNextUrl_Native(IntPtr obj);
public static string ovr_ChallengeArray_GetPreviousUrl(IntPtr obj) {
var result = StringFromNative(ovr_ChallengeArray_GetPreviousUrl_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeArray_GetPreviousUrl")]
private static extern IntPtr ovr_ChallengeArray_GetPreviousUrl_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_ChallengeArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_ChallengeArray_GetTotalCount(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_ChallengeArray_HasNextPage(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_ChallengeArray_HasPreviousPage(IntPtr obj);
public static string ovr_ChallengeEntry_GetDisplayScore(IntPtr obj) {
var result = StringFromNative(ovr_ChallengeEntry_GetDisplayScore_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeEntry_GetDisplayScore")]
private static extern IntPtr ovr_ChallengeEntry_GetDisplayScore_Native(IntPtr obj);
public static byte[] ovr_ChallengeEntry_GetExtraData(IntPtr obj) {
var result = BlobFromNative(ovr_LeaderboardEntry_GetExtraDataLength(obj), ovr_ChallengeEntry_GetExtraData_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeEntry_GetExtraData")]
private static extern IntPtr ovr_ChallengeEntry_GetExtraData_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern uint ovr_ChallengeEntry_GetExtraDataLength(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern int ovr_ChallengeEntry_GetRank(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern long ovr_ChallengeEntry_GetScore(IntPtr obj);
public static DateTime ovr_ChallengeEntry_GetTimestamp(IntPtr obj) {
var result = DateTimeFromNative(ovr_ChallengeEntry_GetTimestamp_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeEntry_GetTimestamp")]
private static extern ulong ovr_ChallengeEntry_GetTimestamp_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_ChallengeEntry_GetUser(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_ChallengeEntryArray_GetElement(IntPtr obj, UIntPtr index);
public static string ovr_ChallengeEntryArray_GetNextUrl(IntPtr obj) {
var result = StringFromNative(ovr_ChallengeEntryArray_GetNextUrl_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeEntryArray_GetNextUrl")]
private static extern IntPtr ovr_ChallengeEntryArray_GetNextUrl_Native(IntPtr obj);
public static string ovr_ChallengeEntryArray_GetPreviousUrl(IntPtr obj) {
var result = StringFromNative(ovr_ChallengeEntryArray_GetPreviousUrl_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeEntryArray_GetPreviousUrl")]
private static extern IntPtr ovr_ChallengeEntryArray_GetPreviousUrl_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_ChallengeEntryArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_ChallengeEntryArray_GetTotalCount(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_ChallengeEntryArray_HasNextPage(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_ChallengeEntryArray_HasPreviousPage(IntPtr obj);
public static string ovr_CloudStorage2UserDirectoryPathResponse_GetPath(IntPtr obj) {
var result = StringFromNative(ovr_CloudStorage2UserDirectoryPathResponse_GetPath_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CloudStorage2UserDirectoryPathResponse_GetPath")]
private static extern IntPtr ovr_CloudStorage2UserDirectoryPathResponse_GetPath_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_CloudStorageConflictMetadata_GetLocal(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_CloudStorageConflictMetadata_GetRemote(IntPtr obj);
public static string ovr_CloudStorageData_GetBucket(IntPtr obj) {
var result = StringFromNative(ovr_CloudStorageData_GetBucket_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CloudStorageData_GetBucket")]
private static extern IntPtr ovr_CloudStorageData_GetBucket_Native(IntPtr obj);
public static byte[] ovr_CloudStorageData_GetData(IntPtr obj) {
var result = FiledataFromNative(ovr_CloudStorageData_GetDataSize(obj), ovr_CloudStorageData_GetData_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CloudStorageData_GetData")]
private static extern IntPtr ovr_CloudStorageData_GetData_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern uint ovr_CloudStorageData_GetDataSize(IntPtr obj);
public static string ovr_CloudStorageData_GetKey(IntPtr obj) {
var result = StringFromNative(ovr_CloudStorageData_GetKey_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CloudStorageData_GetKey")]
private static extern IntPtr ovr_CloudStorageData_GetKey_Native(IntPtr obj);
public static string ovr_CloudStorageMetadata_GetBucket(IntPtr obj) {
var result = StringFromNative(ovr_CloudStorageMetadata_GetBucket_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CloudStorageMetadata_GetBucket")]
private static extern IntPtr ovr_CloudStorageMetadata_GetBucket_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern long ovr_CloudStorageMetadata_GetCounter(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern uint ovr_CloudStorageMetadata_GetDataSize(IntPtr obj);
public static string ovr_CloudStorageMetadata_GetExtraData(IntPtr obj) {
var result = StringFromNative(ovr_CloudStorageMetadata_GetExtraData_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CloudStorageMetadata_GetExtraData")]
private static extern IntPtr ovr_CloudStorageMetadata_GetExtraData_Native(IntPtr obj);
public static string ovr_CloudStorageMetadata_GetKey(IntPtr obj) {
var result = StringFromNative(ovr_CloudStorageMetadata_GetKey_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CloudStorageMetadata_GetKey")]
private static extern IntPtr ovr_CloudStorageMetadata_GetKey_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_CloudStorageMetadata_GetSaveTime(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern CloudStorageDataStatus ovr_CloudStorageMetadata_GetStatus(IntPtr obj);
public static string ovr_CloudStorageMetadata_GetVersionHandle(IntPtr obj) {
var result = StringFromNative(ovr_CloudStorageMetadata_GetVersionHandle_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CloudStorageMetadata_GetVersionHandle")]
private static extern IntPtr ovr_CloudStorageMetadata_GetVersionHandle_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_CloudStorageMetadataArray_GetElement(IntPtr obj, UIntPtr index);
public static string ovr_CloudStorageMetadataArray_GetNextUrl(IntPtr obj) {
var result = StringFromNative(ovr_CloudStorageMetadataArray_GetNextUrl_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CloudStorageMetadataArray_GetNextUrl")]
private static extern IntPtr ovr_CloudStorageMetadataArray_GetNextUrl_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_CloudStorageMetadataArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_CloudStorageMetadataArray_HasNextPage(IntPtr obj);
public static string ovr_CloudStorageUpdateResponse_GetBucket(IntPtr obj) {
var result = StringFromNative(ovr_CloudStorageUpdateResponse_GetBucket_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CloudStorageUpdateResponse_GetBucket")]
private static extern IntPtr ovr_CloudStorageUpdateResponse_GetBucket_Native(IntPtr obj);
public static string ovr_CloudStorageUpdateResponse_GetKey(IntPtr obj) {
var result = StringFromNative(ovr_CloudStorageUpdateResponse_GetKey_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CloudStorageUpdateResponse_GetKey")]
private static extern IntPtr ovr_CloudStorageUpdateResponse_GetKey_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern CloudStorageUpdateStatus ovr_CloudStorageUpdateResponse_GetStatus(IntPtr obj);
public static string ovr_CloudStorageUpdateResponse_GetVersionHandle(IntPtr obj) {
var result = StringFromNative(ovr_CloudStorageUpdateResponse_GetVersionHandle_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_CloudStorageUpdateResponse_GetVersionHandle")]
private static extern IntPtr ovr_CloudStorageUpdateResponse_GetVersionHandle_Native(IntPtr obj);
public static uint ovr_DataStore_Contains(IntPtr obj, string key) {
IntPtr key_native = StringToNative(key);
var result = (ovr_DataStore_Contains_Native(obj, key_native));
Marshal.FreeCoTaskMem(key_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_DataStore_Contains")]
private static extern uint ovr_DataStore_Contains_Native(IntPtr obj, IntPtr key);
public static string ovr_DataStore_GetKey(IntPtr obj, int index) {
var result = StringFromNative(ovr_DataStore_GetKey_Native(obj, index));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_DataStore_GetKey")]
private static extern IntPtr ovr_DataStore_GetKey_Native(IntPtr obj, int index);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_DataStore_GetNumKeys(IntPtr obj);
public static string ovr_DataStore_GetValue(IntPtr obj, string key) {
IntPtr key_native = StringToNative(key);
var result = StringFromNative(ovr_DataStore_GetValue_Native(obj, key_native));
Marshal.FreeCoTaskMem(key_native);
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_DataStore_GetValue")]
private static extern IntPtr ovr_DataStore_GetValue_Native(IntPtr obj, IntPtr key);
public static string ovr_Destination_GetApiName(IntPtr obj) {
var result = StringFromNative(ovr_Destination_GetApiName_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Destination_GetApiName")]
private static extern IntPtr ovr_Destination_GetApiName_Native(IntPtr obj);
public static string ovr_Destination_GetDeeplinkMessage(IntPtr obj) {
var result = StringFromNative(ovr_Destination_GetDeeplinkMessage_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Destination_GetDeeplinkMessage")]
private static extern IntPtr ovr_Destination_GetDeeplinkMessage_Native(IntPtr obj);
public static string ovr_Destination_GetDisplayName(IntPtr obj) {
var result = StringFromNative(ovr_Destination_GetDisplayName_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Destination_GetDisplayName")]
private static extern IntPtr ovr_Destination_GetDisplayName_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_DestinationArray_GetElement(IntPtr obj, UIntPtr index);
public static string ovr_DestinationArray_GetNextUrl(IntPtr obj) {
var result = StringFromNative(ovr_DestinationArray_GetNextUrl_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_DestinationArray_GetNextUrl")]
private static extern IntPtr ovr_DestinationArray_GetNextUrl_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_DestinationArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_DestinationArray_HasNextPage(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern int ovr_Error_GetCode(IntPtr obj);
public static string ovr_Error_GetDisplayableMessage(IntPtr obj) {
var result = StringFromNative(ovr_Error_GetDisplayableMessage_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Error_GetDisplayableMessage")]
private static extern IntPtr ovr_Error_GetDisplayableMessage_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern int ovr_Error_GetHttpCode(IntPtr obj);
public static string ovr_Error_GetMessage(IntPtr obj) {
var result = StringFromNative(ovr_Error_GetMessage_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Error_GetMessage")]
private static extern IntPtr ovr_Error_GetMessage_Native(IntPtr obj);
public static string ovr_GroupPresenceLeaveIntent_GetDestinationApiName(IntPtr obj) {
var result = StringFromNative(ovr_GroupPresenceLeaveIntent_GetDestinationApiName_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_GroupPresenceLeaveIntent_GetDestinationApiName")]
private static extern IntPtr ovr_GroupPresenceLeaveIntent_GetDestinationApiName_Native(IntPtr obj);
public static string ovr_GroupPresenceLeaveIntent_GetLobbySessionId(IntPtr obj) {
var result = StringFromNative(ovr_GroupPresenceLeaveIntent_GetLobbySessionId_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_GroupPresenceLeaveIntent_GetLobbySessionId")]
private static extern IntPtr ovr_GroupPresenceLeaveIntent_GetLobbySessionId_Native(IntPtr obj);
public static string ovr_GroupPresenceLeaveIntent_GetMatchSessionId(IntPtr obj) {
var result = StringFromNative(ovr_GroupPresenceLeaveIntent_GetMatchSessionId_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_GroupPresenceLeaveIntent_GetMatchSessionId")]
private static extern IntPtr ovr_GroupPresenceLeaveIntent_GetMatchSessionId_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_HttpTransferUpdate_GetBytes(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_HttpTransferUpdate_GetID(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_HttpTransferUpdate_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_HttpTransferUpdate_IsCompleted(IntPtr obj);
public static string ovr_InstalledApplication_GetApplicationId(IntPtr obj) {
var result = StringFromNative(ovr_InstalledApplication_GetApplicationId_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_InstalledApplication_GetApplicationId")]
private static extern IntPtr ovr_InstalledApplication_GetApplicationId_Native(IntPtr obj);
public static string ovr_InstalledApplication_GetPackageName(IntPtr obj) {
var result = StringFromNative(ovr_InstalledApplication_GetPackageName_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_InstalledApplication_GetPackageName")]
private static extern IntPtr ovr_InstalledApplication_GetPackageName_Native(IntPtr obj);
public static string ovr_InstalledApplication_GetStatus(IntPtr obj) {
var result = StringFromNative(ovr_InstalledApplication_GetStatus_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_InstalledApplication_GetStatus")]
private static extern IntPtr ovr_InstalledApplication_GetStatus_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern int ovr_InstalledApplication_GetVersionCode(IntPtr obj);
public static string ovr_InstalledApplication_GetVersionName(IntPtr obj) {
var result = StringFromNative(ovr_InstalledApplication_GetVersionName_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_InstalledApplication_GetVersionName")]
private static extern IntPtr ovr_InstalledApplication_GetVersionName_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_InstalledApplicationArray_GetElement(IntPtr obj, UIntPtr index);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_InstalledApplicationArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_InvitePanelResultInfo_GetInvitesSent(IntPtr obj);
public static string ovr_LanguagePackInfo_GetEnglishName(IntPtr obj) {
var result = StringFromNative(ovr_LanguagePackInfo_GetEnglishName_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_LanguagePackInfo_GetEnglishName")]
private static extern IntPtr ovr_LanguagePackInfo_GetEnglishName_Native(IntPtr obj);
public static string ovr_LanguagePackInfo_GetNativeName(IntPtr obj) {
var result = StringFromNative(ovr_LanguagePackInfo_GetNativeName_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_LanguagePackInfo_GetNativeName")]
private static extern IntPtr ovr_LanguagePackInfo_GetNativeName_Native(IntPtr obj);
public static string ovr_LanguagePackInfo_GetTag(IntPtr obj) {
var result = StringFromNative(ovr_LanguagePackInfo_GetTag_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_LanguagePackInfo_GetTag")]
private static extern IntPtr ovr_LanguagePackInfo_GetTag_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_LaunchBlockFlowResult_GetDidBlock(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_LaunchBlockFlowResult_GetDidCancel(IntPtr obj);
public static string ovr_LaunchDetails_GetDeeplinkMessage(IntPtr obj) {
var result = StringFromNative(ovr_LaunchDetails_GetDeeplinkMessage_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_LaunchDetails_GetDeeplinkMessage")]
private static extern IntPtr ovr_LaunchDetails_GetDeeplinkMessage_Native(IntPtr obj);
public static string ovr_LaunchDetails_GetDestinationApiName(IntPtr obj) {
var result = StringFromNative(ovr_LaunchDetails_GetDestinationApiName_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_LaunchDetails_GetDestinationApiName")]
private static extern IntPtr ovr_LaunchDetails_GetDestinationApiName_Native(IntPtr obj);
public static string ovr_LaunchDetails_GetLaunchSource(IntPtr obj) {
var result = StringFromNative(ovr_LaunchDetails_GetLaunchSource_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_LaunchDetails_GetLaunchSource")]
private static extern IntPtr ovr_LaunchDetails_GetLaunchSource_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern LaunchType ovr_LaunchDetails_GetLaunchType(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_LaunchDetails_GetRoomID(IntPtr obj);
public static string ovr_LaunchDetails_GetTrackingID(IntPtr obj) {
var result = StringFromNative(ovr_LaunchDetails_GetTrackingID_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_LaunchDetails_GetTrackingID")]
private static extern IntPtr ovr_LaunchDetails_GetTrackingID_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_LaunchDetails_GetUsers(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_LaunchFriendRequestFlowResult_GetDidCancel(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_LaunchFriendRequestFlowResult_GetDidSendRequest(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_LaunchInvitePanelFlowResult_GetInvitedUsers(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_LaunchReportFlowResult_GetDidCancel(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_LaunchReportFlowResult_GetUserReportId(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_LaunchUnblockFlowResult_GetDidCancel(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_LaunchUnblockFlowResult_GetDidUnblock(IntPtr obj);
public static string ovr_Leaderboard_GetApiName(IntPtr obj) {
var result = StringFromNative(ovr_Leaderboard_GetApiName_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Leaderboard_GetApiName")]
private static extern IntPtr ovr_Leaderboard_GetApiName_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Leaderboard_GetDestination(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_Leaderboard_GetID(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_LeaderboardArray_GetElement(IntPtr obj, UIntPtr index);
public static string ovr_LeaderboardArray_GetNextUrl(IntPtr obj) {
var result = StringFromNative(ovr_LeaderboardArray_GetNextUrl_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_LeaderboardArray_GetNextUrl")]
private static extern IntPtr ovr_LeaderboardArray_GetNextUrl_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_LeaderboardArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_LeaderboardArray_HasNextPage(IntPtr obj);
public static string ovr_LeaderboardEntry_GetDisplayScore(IntPtr obj) {
var result = StringFromNative(ovr_LeaderboardEntry_GetDisplayScore_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_LeaderboardEntry_GetDisplayScore")]
private static extern IntPtr ovr_LeaderboardEntry_GetDisplayScore_Native(IntPtr obj);
public static byte[] ovr_LeaderboardEntry_GetExtraData(IntPtr obj) {
var result = BlobFromNative(ovr_LeaderboardEntry_GetExtraDataLength(obj), ovr_LeaderboardEntry_GetExtraData_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_LeaderboardEntry_GetExtraData")]
private static extern IntPtr ovr_LeaderboardEntry_GetExtraData_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern uint ovr_LeaderboardEntry_GetExtraDataLength(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern int ovr_LeaderboardEntry_GetRank(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern long ovr_LeaderboardEntry_GetScore(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_LeaderboardEntry_GetSupplementaryMetric(IntPtr obj);
public static DateTime ovr_LeaderboardEntry_GetTimestamp(IntPtr obj) {
var result = DateTimeFromNative(ovr_LeaderboardEntry_GetTimestamp_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_LeaderboardEntry_GetTimestamp")]
private static extern ulong ovr_LeaderboardEntry_GetTimestamp_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_LeaderboardEntry_GetUser(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_LeaderboardEntryArray_GetElement(IntPtr obj, UIntPtr index);
public static string ovr_LeaderboardEntryArray_GetNextUrl(IntPtr obj) {
var result = StringFromNative(ovr_LeaderboardEntryArray_GetNextUrl_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_LeaderboardEntryArray_GetNextUrl")]
private static extern IntPtr ovr_LeaderboardEntryArray_GetNextUrl_Native(IntPtr obj);
public static string ovr_LeaderboardEntryArray_GetPreviousUrl(IntPtr obj) {
var result = StringFromNative(ovr_LeaderboardEntryArray_GetPreviousUrl_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_LeaderboardEntryArray_GetPreviousUrl")]
private static extern IntPtr ovr_LeaderboardEntryArray_GetPreviousUrl_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_LeaderboardEntryArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_LeaderboardEntryArray_GetTotalCount(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_LeaderboardEntryArray_HasNextPage(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_LeaderboardEntryArray_HasPreviousPage(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_LeaderboardUpdateStatus_GetDidUpdate(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_LeaderboardUpdateStatus_GetUpdatedChallengeId(IntPtr obj, uint index);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern uint ovr_LeaderboardUpdateStatus_GetUpdatedChallengeIdsSize(IntPtr obj);
public static string ovr_LinkedAccount_GetAccessToken(IntPtr obj) {
var result = StringFromNative(ovr_LinkedAccount_GetAccessToken_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_LinkedAccount_GetAccessToken")]
private static extern IntPtr ovr_LinkedAccount_GetAccessToken_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ServiceProvider ovr_LinkedAccount_GetServiceProvider(IntPtr obj);
public static string ovr_LinkedAccount_GetUserId(IntPtr obj) {
var result = StringFromNative(ovr_LinkedAccount_GetUserId_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_LinkedAccount_GetUserId")]
private static extern IntPtr ovr_LinkedAccount_GetUserId_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_LinkedAccountArray_GetElement(IntPtr obj, UIntPtr index);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_LinkedAccountArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_LivestreamingApplicationStatus_GetStreamingEnabled(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern LivestreamingStartStatus ovr_LivestreamingStartResult_GetStreamingResult(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_LivestreamingStatus_GetCommentsVisible(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_LivestreamingStatus_GetIsPaused(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_LivestreamingStatus_GetLivestreamingEnabled(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern int ovr_LivestreamingStatus_GetLivestreamingType(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_LivestreamingStatus_GetMicEnabled(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern int ovr_LivestreamingVideoStats_GetCommentCount(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern int ovr_LivestreamingVideoStats_GetReactionCount(IntPtr obj);
public static string ovr_LivestreamingVideoStats_GetTotalViews(IntPtr obj) {
var result = StringFromNative(ovr_LivestreamingVideoStats_GetTotalViews_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_LivestreamingVideoStats_GetTotalViews")]
private static extern IntPtr ovr_LivestreamingVideoStats_GetTotalViews_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_MatchmakingAdminSnapshot_GetCandidates(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern double ovr_MatchmakingAdminSnapshot_GetMyCurrentThreshold(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_MatchmakingAdminSnapshotCandidate_GetCanMatch(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern double ovr_MatchmakingAdminSnapshotCandidate_GetMyTotalScore(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern double ovr_MatchmakingAdminSnapshotCandidate_GetTheirCurrentThreshold(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern double ovr_MatchmakingAdminSnapshotCandidate_GetTheirTotalScore(IntPtr obj);
public static string ovr_MatchmakingAdminSnapshotCandidate_GetTraceId(IntPtr obj) {
var result = StringFromNative(ovr_MatchmakingAdminSnapshotCandidate_GetTraceId_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_MatchmakingAdminSnapshotCandidate_GetTraceId")]
private static extern IntPtr ovr_MatchmakingAdminSnapshotCandidate_GetTraceId_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_MatchmakingAdminSnapshotCandidateArray_GetElement(IntPtr obj, UIntPtr index);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_MatchmakingAdminSnapshotCandidateArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_MatchmakingBrowseResult_GetEnqueueResult(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_MatchmakingBrowseResult_GetRooms(IntPtr obj);
public static string ovr_MatchmakingCandidate_GetEntryHash(IntPtr obj) {
var result = StringFromNative(ovr_MatchmakingCandidate_GetEntryHash_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_MatchmakingCandidate_GetEntryHash")]
private static extern IntPtr ovr_MatchmakingCandidate_GetEntryHash_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_MatchmakingCandidate_GetUserId(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_MatchmakingCandidateArray_GetElement(IntPtr obj, UIntPtr index);
public static string ovr_MatchmakingCandidateArray_GetNextUrl(IntPtr obj) {
var result = StringFromNative(ovr_MatchmakingCandidateArray_GetNextUrl_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_MatchmakingCandidateArray_GetNextUrl")]
private static extern IntPtr ovr_MatchmakingCandidateArray_GetNextUrl_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_MatchmakingCandidateArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_MatchmakingCandidateArray_HasNextPage(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_MatchmakingEnqueueResult_GetAdminSnapshot(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern uint ovr_MatchmakingEnqueueResult_GetAverageWait(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern uint ovr_MatchmakingEnqueueResult_GetMatchesInLastHourCount(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern uint ovr_MatchmakingEnqueueResult_GetMaxExpectedWait(IntPtr obj);
public static string ovr_MatchmakingEnqueueResult_GetPool(IntPtr obj) {
var result = StringFromNative(ovr_MatchmakingEnqueueResult_GetPool_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_MatchmakingEnqueueResult_GetPool")]
private static extern IntPtr ovr_MatchmakingEnqueueResult_GetPool_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern uint ovr_MatchmakingEnqueueResult_GetRecentMatchPercentage(IntPtr obj);
public static string ovr_MatchmakingEnqueueResult_GetRequestHash(IntPtr obj) {
var result = StringFromNative(ovr_MatchmakingEnqueueResult_GetRequestHash_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_MatchmakingEnqueueResult_GetRequestHash")]
private static extern IntPtr ovr_MatchmakingEnqueueResult_GetRequestHash_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_MatchmakingEnqueueResultAndRoom_GetMatchmakingEnqueueResult(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_MatchmakingEnqueueResultAndRoom_GetRoom(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_MatchmakingEnqueuedUser_GetAdditionalUserID(IntPtr obj, uint index);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern uint ovr_MatchmakingEnqueuedUser_GetAdditionalUserIDsSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_MatchmakingEnqueuedUser_GetCustomData(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_MatchmakingEnqueuedUser_GetUser(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_MatchmakingEnqueuedUserArray_GetElement(IntPtr obj, UIntPtr index);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_MatchmakingEnqueuedUserArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_MatchmakingNotification_GetAddedByUserId(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_MatchmakingNotification_GetRoom(IntPtr obj);
public static string ovr_MatchmakingNotification_GetTraceId(IntPtr obj) {
var result = StringFromNative(ovr_MatchmakingNotification_GetTraceId_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_MatchmakingNotification_GetTraceId")]
private static extern IntPtr ovr_MatchmakingNotification_GetTraceId_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern uint ovr_MatchmakingRoom_GetPingTime(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_MatchmakingRoom_GetRoom(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_MatchmakingRoom_HasPingTime(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_MatchmakingRoomArray_GetElement(IntPtr obj, UIntPtr index);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_MatchmakingRoomArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern uint ovr_MatchmakingStats_GetDrawCount(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern uint ovr_MatchmakingStats_GetLossCount(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern uint ovr_MatchmakingStats_GetSkillLevel(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern double ovr_MatchmakingStats_GetSkillMean(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern double ovr_MatchmakingStats_GetSkillStandardDeviation(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern uint ovr_MatchmakingStats_GetWinCount(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetAbuseReportRecording(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetAchievementDefinitionArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetAchievementProgressArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetAchievementUpdate(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetApplicationVersion(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetAssetDetails(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetAssetDetailsArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetAssetFileDeleteResult(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetAssetFileDownloadCancelResult(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetAssetFileDownloadResult(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetAssetFileDownloadUpdate(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetCalApplicationFinalized(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetCalApplicationProposed(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetCalApplicationSuggestionArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetChallenge(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetChallengeArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetChallengeEntryArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetCloudStorageConflictMetadata(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetCloudStorageData(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetCloudStorageMetadata(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetCloudStorageMetadataArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetCloudStorageUpdateResponse(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetDataStore(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetDestinationArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetError(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetGroupPresenceLeaveIntent(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetHttpTransferUpdate(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetInstalledApplicationArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetInvitePanelResultInfo(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetLaunchBlockFlowResult(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetLaunchFriendRequestFlowResult(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetLaunchInvitePanelFlowResult(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetLaunchReportFlowResult(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetLaunchUnblockFlowResult(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetLeaderboardArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetLeaderboardEntryArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetLeaderboardUpdateStatus(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetLinkedAccountArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetLivestreamingApplicationStatus(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetLivestreamingStartResult(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetLivestreamingStatus(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetLivestreamingVideoStats(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetMatchmakingAdminSnapshot(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetMatchmakingBrowseResult(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetMatchmakingEnqueueResult(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetMatchmakingEnqueueResultAndRoom(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetMatchmakingRoomArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetMatchmakingStats(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetNativeMessage(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetNetSyncConnection(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetNetSyncSessionArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetNetSyncSessionsChangedNotification(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetNetSyncSetSessionPropertyResult(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetNetSyncVoipAttenuationValueArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetNetworkingPeer(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetOrgScopedID(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetParty(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetPartyID(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetPartyUpdateNotification(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetPidArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetPingResult(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetPlatformInitialize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetProductArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetPurchase(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetPurchaseArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_Message_GetRequestID(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetRoom(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetRoomArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetRoomInviteNotification(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetRoomInviteNotificationArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetSdkAccountArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetShareMediaResult(IntPtr obj);
public static string ovr_Message_GetString(IntPtr obj) {
var result = StringFromNative(ovr_Message_GetString_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Message_GetString")]
private static extern IntPtr ovr_Message_GetString_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetSystemPermission(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetSystemVoipState(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern Message.MessageType ovr_Message_GetType(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetUser(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetUserAndRoomArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetUserArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetUserDataStoreUpdateResponse(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetUserProof(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Message_GetUserReportID(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_Message_IsError(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_Microphone_GetNumSamplesAvailable(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_Microphone_GetOutputBufferMaxSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_Microphone_GetPCM(IntPtr obj, Int16[] outputBuffer, UIntPtr outputBufferNumElements);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_Microphone_GetPCMFloat(IntPtr obj, float[] outputBuffer, UIntPtr outputBufferNumElements);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_Microphone_ReadData(IntPtr obj, float[] outputBuffer, UIntPtr outputBufferSize);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_Microphone_SetAcceptableRecordingDelayHint(IntPtr obj, UIntPtr delayMs);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_Microphone_Start(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_Microphone_Stop(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern long ovr_NetSyncConnection_GetConnectionId(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern NetSyncDisconnectReason ovr_NetSyncConnection_GetDisconnectReason(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_NetSyncConnection_GetSessionId(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern NetSyncConnectionStatus ovr_NetSyncConnection_GetStatus(IntPtr obj);
public static string ovr_NetSyncConnection_GetZoneId(IntPtr obj) {
var result = StringFromNative(ovr_NetSyncConnection_GetZoneId_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_NetSyncConnection_GetZoneId")]
private static extern IntPtr ovr_NetSyncConnection_GetZoneId_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern long ovr_NetSyncSession_GetConnectionId(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_NetSyncSession_GetMuted(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_NetSyncSession_GetSessionId(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_NetSyncSession_GetUserId(IntPtr obj);
public static string ovr_NetSyncSession_GetVoipGroup(IntPtr obj) {
var result = StringFromNative(ovr_NetSyncSession_GetVoipGroup_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_NetSyncSession_GetVoipGroup")]
private static extern IntPtr ovr_NetSyncSession_GetVoipGroup_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_NetSyncSessionArray_GetElement(IntPtr obj, UIntPtr index);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_NetSyncSessionArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern long ovr_NetSyncSessionsChangedNotification_GetConnectionId(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_NetSyncSessionsChangedNotification_GetSessions(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_NetSyncSetSessionPropertyResult_GetSession(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern float ovr_NetSyncVoipAttenuationValue_GetDecibels(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern float ovr_NetSyncVoipAttenuationValue_GetDistance(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_NetSyncVoipAttenuationValueArray_GetElement(IntPtr obj, UIntPtr index);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_NetSyncVoipAttenuationValueArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_NetworkingPeer_GetID(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern PeerConnectionState ovr_NetworkingPeer_GetState(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_OrgScopedID_GetID(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_Packet_Free(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Packet_GetBytes(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern SendPolicy ovr_Packet_GetSendPolicy(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_Packet_GetSenderID(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_Packet_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_Party_GetID(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Party_GetInvitedUsers(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Party_GetLeader(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Party_GetRoom(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Party_GetUsers(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_PartyID_GetID(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern PartyUpdateAction ovr_PartyUpdateNotification_GetAction(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_PartyUpdateNotification_GetPartyId(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_PartyUpdateNotification_GetSenderId(IntPtr obj);
public static string ovr_PartyUpdateNotification_GetUpdateTimestamp(IntPtr obj) {
var result = StringFromNative(ovr_PartyUpdateNotification_GetUpdateTimestamp_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_PartyUpdateNotification_GetUpdateTimestamp")]
private static extern IntPtr ovr_PartyUpdateNotification_GetUpdateTimestamp_Native(IntPtr obj);
public static string ovr_PartyUpdateNotification_GetUserAlias(IntPtr obj) {
var result = StringFromNative(ovr_PartyUpdateNotification_GetUserAlias_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_PartyUpdateNotification_GetUserAlias")]
private static extern IntPtr ovr_PartyUpdateNotification_GetUserAlias_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_PartyUpdateNotification_GetUserId(IntPtr obj);
public static string ovr_PartyUpdateNotification_GetUserName(IntPtr obj) {
var result = StringFromNative(ovr_PartyUpdateNotification_GetUserName_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_PartyUpdateNotification_GetUserName")]
private static extern IntPtr ovr_PartyUpdateNotification_GetUserName_Native(IntPtr obj);
public static string ovr_Pid_GetId(IntPtr obj) {
var result = StringFromNative(ovr_Pid_GetId_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Pid_GetId")]
private static extern IntPtr ovr_Pid_GetId_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_PidArray_GetElement(IntPtr obj, UIntPtr index);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_PidArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_PingResult_GetID(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ulong ovr_PingResult_GetPingTimeUsec(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_PingResult_IsTimeout(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern PlatformInitializeResult ovr_PlatformInitialize_GetResult(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern uint ovr_Price_GetAmountInHundredths(IntPtr obj);
public static string ovr_Price_GetCurrency(IntPtr obj) {
var result = StringFromNative(ovr_Price_GetCurrency_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Price_GetCurrency")]
private static extern IntPtr ovr_Price_GetCurrency_Native(IntPtr obj);
public static string ovr_Price_GetFormatted(IntPtr obj) {
var result = StringFromNative(ovr_Price_GetFormatted_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Price_GetFormatted")]
private static extern IntPtr ovr_Price_GetFormatted_Native(IntPtr obj);
public static string ovr_Product_GetDescription(IntPtr obj) {
var result = StringFromNative(ovr_Product_GetDescription_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Product_GetDescription")]
private static extern IntPtr ovr_Product_GetDescription_Native(IntPtr obj);
public static string ovr_Product_GetFormattedPrice(IntPtr obj) {
var result = StringFromNative(ovr_Product_GetFormattedPrice_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Product_GetFormattedPrice")]
private static extern IntPtr ovr_Product_GetFormattedPrice_Native(IntPtr obj);
public static string ovr_Product_GetName(IntPtr obj) {
var result = StringFromNative(ovr_Product_GetName_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Product_GetName")]
private static extern IntPtr ovr_Product_GetName_Native(IntPtr obj);
public static string ovr_Product_GetSKU(IntPtr obj) {
var result = StringFromNative(ovr_Product_GetSKU_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Product_GetSKU")]
private static extern IntPtr ovr_Product_GetSKU_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_ProductArray_GetElement(IntPtr obj, UIntPtr index);
public static string ovr_ProductArray_GetNextUrl(IntPtr obj) {
var result = StringFromNative(ovr_ProductArray_GetNextUrl_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ProductArray_GetNextUrl")]
private static extern IntPtr ovr_ProductArray_GetNextUrl_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_ProductArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_ProductArray_HasNextPage(IntPtr obj);
public static DateTime ovr_Purchase_GetExpirationTime(IntPtr obj) {
var result = DateTimeFromNative(ovr_Purchase_GetExpirationTime_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Purchase_GetExpirationTime")]
private static extern ulong ovr_Purchase_GetExpirationTime_Native(IntPtr obj);
public static DateTime ovr_Purchase_GetGrantTime(IntPtr obj) {
var result = DateTimeFromNative(ovr_Purchase_GetGrantTime_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Purchase_GetGrantTime")]
private static extern ulong ovr_Purchase_GetGrantTime_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_Purchase_GetPurchaseID(IntPtr obj);
public static string ovr_Purchase_GetPurchaseStrID(IntPtr obj) {
var result = StringFromNative(ovr_Purchase_GetPurchaseStrID_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Purchase_GetPurchaseStrID")]
private static extern IntPtr ovr_Purchase_GetPurchaseStrID_Native(IntPtr obj);
public static string ovr_Purchase_GetSKU(IntPtr obj) {
var result = StringFromNative(ovr_Purchase_GetSKU_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Purchase_GetSKU")]
private static extern IntPtr ovr_Purchase_GetSKU_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_PurchaseArray_GetElement(IntPtr obj, UIntPtr index);
public static string ovr_PurchaseArray_GetNextUrl(IntPtr obj) {
var result = StringFromNative(ovr_PurchaseArray_GetNextUrl_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_PurchaseArray_GetNextUrl")]
private static extern IntPtr ovr_PurchaseArray_GetNextUrl_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_PurchaseArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_PurchaseArray_HasNextPage(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_Room_GetApplicationID(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Room_GetDataStore(IntPtr obj);
public static string ovr_Room_GetDescription(IntPtr obj) {
var result = StringFromNative(ovr_Room_GetDescription_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Room_GetDescription")]
private static extern IntPtr ovr_Room_GetDescription_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_Room_GetID(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Room_GetInvitedUsers(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_Room_GetIsMembershipLocked(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern RoomJoinPolicy ovr_Room_GetJoinPolicy(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern RoomJoinability ovr_Room_GetJoinability(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Room_GetMatchedUsers(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern uint ovr_Room_GetMaxUsers(IntPtr obj);
public static string ovr_Room_GetName(IntPtr obj) {
var result = StringFromNative(ovr_Room_GetName_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Room_GetName")]
private static extern IntPtr ovr_Room_GetName_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Room_GetOwner(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Room_GetTeams(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern RoomType ovr_Room_GetType(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Room_GetUsers(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern uint ovr_Room_GetVersion(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_RoomArray_GetElement(IntPtr obj, UIntPtr index);
public static string ovr_RoomArray_GetNextUrl(IntPtr obj) {
var result = StringFromNative(ovr_RoomArray_GetNextUrl_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_RoomArray_GetNextUrl")]
private static extern IntPtr ovr_RoomArray_GetNextUrl_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_RoomArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_RoomArray_HasNextPage(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_RoomInviteNotification_GetID(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_RoomInviteNotification_GetRoomID(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_RoomInviteNotification_GetSenderID(IntPtr obj);
public static DateTime ovr_RoomInviteNotification_GetSentTime(IntPtr obj) {
var result = DateTimeFromNative(ovr_RoomInviteNotification_GetSentTime_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_RoomInviteNotification_GetSentTime")]
private static extern ulong ovr_RoomInviteNotification_GetSentTime_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_RoomInviteNotificationArray_GetElement(IntPtr obj, UIntPtr index);
public static string ovr_RoomInviteNotificationArray_GetNextUrl(IntPtr obj) {
var result = StringFromNative(ovr_RoomInviteNotificationArray_GetNextUrl_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_RoomInviteNotificationArray_GetNextUrl")]
private static extern IntPtr ovr_RoomInviteNotificationArray_GetNextUrl_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_RoomInviteNotificationArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_RoomInviteNotificationArray_HasNextPage(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern SdkAccountType ovr_SdkAccount_GetAccountType(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_SdkAccount_GetUserId(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_SdkAccountArray_GetElement(IntPtr obj, UIntPtr index);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_SdkAccountArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern ShareMediaStatus ovr_ShareMediaResult_GetStatus(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_SupplementaryMetric_GetID(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern long ovr_SupplementaryMetric_GetMetric(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_SystemPermission_GetHasPermission(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern PermissionGrantStatus ovr_SystemPermission_GetPermissionGrantStatus(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern VoipMuteState ovr_SystemVoipState_GetMicrophoneMuted(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern SystemVoipStatus ovr_SystemVoipState_GetStatus(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_Team_GetAssignedUsers(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern int ovr_Team_GetMaxUsers(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern int ovr_Team_GetMinUsers(IntPtr obj);
public static string ovr_Team_GetName(IntPtr obj) {
var result = StringFromNative(ovr_Team_GetName_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Team_GetName")]
private static extern IntPtr ovr_Team_GetName_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_TeamArray_GetElement(IntPtr obj, UIntPtr index);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_TeamArray_GetSize(IntPtr obj);
public static string ovr_TestUser_GetAccessToken(IntPtr obj) {
var result = StringFromNative(ovr_TestUser_GetAccessToken_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_TestUser_GetAccessToken")]
private static extern IntPtr ovr_TestUser_GetAccessToken_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_TestUser_GetAppAccessArray(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_TestUser_GetFbAppAccessArray(IntPtr obj);
public static string ovr_TestUser_GetFriendAccessToken(IntPtr obj) {
var result = StringFromNative(ovr_TestUser_GetFriendAccessToken_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_TestUser_GetFriendAccessToken")]
private static extern IntPtr ovr_TestUser_GetFriendAccessToken_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_TestUser_GetFriendAppAccessArray(IntPtr obj);
public static string ovr_TestUser_GetUserAlias(IntPtr obj) {
var result = StringFromNative(ovr_TestUser_GetUserAlias_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_TestUser_GetUserAlias")]
private static extern IntPtr ovr_TestUser_GetUserAlias_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_TestUser_GetUserFbid(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_TestUser_GetUserId(IntPtr obj);
public static string ovr_TestUserAppAccess_GetAccessToken(IntPtr obj) {
var result = StringFromNative(ovr_TestUserAppAccess_GetAccessToken_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_TestUserAppAccess_GetAccessToken")]
private static extern IntPtr ovr_TestUserAppAccess_GetAccessToken_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_TestUserAppAccess_GetAppId(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_TestUserAppAccess_GetUserId(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_TestUserAppAccessArray_GetElement(IntPtr obj, UIntPtr index);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_TestUserAppAccessArray_GetSize(IntPtr obj);
public static string ovr_User_GetDisplayName(IntPtr obj) {
var result = StringFromNative(ovr_User_GetDisplayName_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_User_GetDisplayName")]
private static extern IntPtr ovr_User_GetDisplayName_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_User_GetID(IntPtr obj);
public static string ovr_User_GetImageUrl(IntPtr obj) {
var result = StringFromNative(ovr_User_GetImageUrl_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_User_GetImageUrl")]
private static extern IntPtr ovr_User_GetImageUrl_Native(IntPtr obj);
public static string ovr_User_GetInviteToken(IntPtr obj) {
var result = StringFromNative(ovr_User_GetInviteToken_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_User_GetInviteToken")]
private static extern IntPtr ovr_User_GetInviteToken_Native(IntPtr obj);
public static string ovr_User_GetOculusID(IntPtr obj) {
var result = StringFromNative(ovr_User_GetOculusID_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_User_GetOculusID")]
private static extern IntPtr ovr_User_GetOculusID_Native(IntPtr obj);
public static string ovr_User_GetPresence(IntPtr obj) {
var result = StringFromNative(ovr_User_GetPresence_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_User_GetPresence")]
private static extern IntPtr ovr_User_GetPresence_Native(IntPtr obj);
public static string ovr_User_GetPresenceDeeplinkMessage(IntPtr obj) {
var result = StringFromNative(ovr_User_GetPresenceDeeplinkMessage_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_User_GetPresenceDeeplinkMessage")]
private static extern IntPtr ovr_User_GetPresenceDeeplinkMessage_Native(IntPtr obj);
public static string ovr_User_GetPresenceDestinationApiName(IntPtr obj) {
var result = StringFromNative(ovr_User_GetPresenceDestinationApiName_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_User_GetPresenceDestinationApiName")]
private static extern IntPtr ovr_User_GetPresenceDestinationApiName_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UserPresenceStatus ovr_User_GetPresenceStatus(IntPtr obj);
public static string ovr_User_GetSmallImageUrl(IntPtr obj) {
var result = StringFromNative(ovr_User_GetSmallImageUrl_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_User_GetSmallImageUrl")]
private static extern IntPtr ovr_User_GetSmallImageUrl_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_UserAndRoom_GetRoom(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_UserAndRoom_GetUser(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_UserAndRoomArray_GetElement(IntPtr obj, UIntPtr index);
public static string ovr_UserAndRoomArray_GetNextUrl(IntPtr obj) {
var result = StringFromNative(ovr_UserAndRoomArray_GetNextUrl_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_UserAndRoomArray_GetNextUrl")]
private static extern IntPtr ovr_UserAndRoomArray_GetNextUrl_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_UserAndRoomArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_UserAndRoomArray_HasNextPage(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_UserArray_GetElement(IntPtr obj, UIntPtr index);
public static string ovr_UserArray_GetNextUrl(IntPtr obj) {
var result = StringFromNative(ovr_UserArray_GetNextUrl_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_UserArray_GetNextUrl")]
private static extern IntPtr ovr_UserArray_GetNextUrl_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_UserArray_GetSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_UserArray_HasNextPage(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_UserDataStoreUpdateResponse_GetSuccess(IntPtr obj);
public static string ovr_UserProof_GetNonce(IntPtr obj) {
var result = StringFromNative(ovr_UserProof_GetNonce_Native(obj));
return result;
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_UserProof_GetNonce")]
private static extern IntPtr ovr_UserProof_GetNonce_Native(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern bool ovr_UserReportID_GetDidCancel(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UInt64 ovr_UserReportID_GetID(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_VoipDecoder_Decode(IntPtr obj, byte[] compressedData, UIntPtr compressedSize);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_VoipDecoder_GetDecodedPCM(IntPtr obj, float[] outputBuffer, UIntPtr outputBufferSize);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_VoipEncoder_AddPCM(IntPtr obj, float[] inputData, uint inputSize);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_VoipEncoder_GetCompressedData(IntPtr obj, byte[] outputBuffer, UIntPtr intputSize);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern UIntPtr ovr_VoipEncoder_GetCompressedDataSize(IntPtr obj);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_AbuseReportOptions_Create();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_AbuseReportOptions_Destroy(IntPtr handle);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_AbuseReportOptions_SetPreventPeopleChooser(IntPtr handle, bool value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_AbuseReportOptions_SetReportType(IntPtr handle, AbuseReportType value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_AdvancedAbuseReportOptions_Create();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_AdvancedAbuseReportOptions_Destroy(IntPtr handle);
public static void ovr_AdvancedAbuseReportOptions_SetObjectType(IntPtr handle, string value) {
IntPtr value_native = StringToNative(value);
ovr_AdvancedAbuseReportOptions_SetObjectType_Native(handle, value_native);
Marshal.FreeCoTaskMem(value_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_AdvancedAbuseReportOptions_SetObjectType")]
private static extern void ovr_AdvancedAbuseReportOptions_SetObjectType_Native(IntPtr handle, IntPtr value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_AdvancedAbuseReportOptions_SetReportType(IntPtr handle, AbuseReportType value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_AdvancedAbuseReportOptions_SetVideoMode(IntPtr handle, AbuseReportVideoMode value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_ApplicationOptions_Create();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_ApplicationOptions_Destroy(IntPtr handle);
public static void ovr_ApplicationOptions_SetDeeplinkMessage(IntPtr handle, string value) {
IntPtr value_native = StringToNative(value);
ovr_ApplicationOptions_SetDeeplinkMessage_Native(handle, value_native);
Marshal.FreeCoTaskMem(value_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ApplicationOptions_SetDeeplinkMessage")]
private static extern void ovr_ApplicationOptions_SetDeeplinkMessage_Native(IntPtr handle, IntPtr value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_ChallengeOptions_Create();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_ChallengeOptions_Destroy(IntPtr handle);
public static void ovr_ChallengeOptions_SetDescription(IntPtr handle, string value) {
IntPtr value_native = StringToNative(value);
ovr_ChallengeOptions_SetDescription_Native(handle, value_native);
Marshal.FreeCoTaskMem(value_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeOptions_SetDescription")]
private static extern void ovr_ChallengeOptions_SetDescription_Native(IntPtr handle, IntPtr value);
public static void ovr_ChallengeOptions_SetEndDate(IntPtr handle, DateTime value) {
ulong value_native = DateTimeToNative(value);
ovr_ChallengeOptions_SetEndDate_Native(handle, value_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeOptions_SetEndDate")]
private static extern void ovr_ChallengeOptions_SetEndDate_Native(IntPtr handle, ulong value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_ChallengeOptions_SetIncludeActiveChallenges(IntPtr handle, bool value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_ChallengeOptions_SetIncludeFutureChallenges(IntPtr handle, bool value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_ChallengeOptions_SetIncludePastChallenges(IntPtr handle, bool value);
public static void ovr_ChallengeOptions_SetLeaderboardName(IntPtr handle, string value) {
IntPtr value_native = StringToNative(value);
ovr_ChallengeOptions_SetLeaderboardName_Native(handle, value_native);
Marshal.FreeCoTaskMem(value_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeOptions_SetLeaderboardName")]
private static extern void ovr_ChallengeOptions_SetLeaderboardName_Native(IntPtr handle, IntPtr value);
public static void ovr_ChallengeOptions_SetStartDate(IntPtr handle, DateTime value) {
ulong value_native = DateTimeToNative(value);
ovr_ChallengeOptions_SetStartDate_Native(handle, value_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeOptions_SetStartDate")]
private static extern void ovr_ChallengeOptions_SetStartDate_Native(IntPtr handle, ulong value);
public static void ovr_ChallengeOptions_SetTitle(IntPtr handle, string value) {
IntPtr value_native = StringToNative(value);
ovr_ChallengeOptions_SetTitle_Native(handle, value_native);
Marshal.FreeCoTaskMem(value_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeOptions_SetTitle")]
private static extern void ovr_ChallengeOptions_SetTitle_Native(IntPtr handle, IntPtr value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_ChallengeOptions_SetViewerFilter(IntPtr handle, ChallengeViewerFilter value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_ChallengeOptions_SetVisibility(IntPtr handle, ChallengeVisibility value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_InviteOptions_Create();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_InviteOptions_Destroy(IntPtr handle);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_InviteOptions_AddSuggestedUser(IntPtr handle, UInt64 value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_InviteOptions_ClearSuggestedUsers(IntPtr handle);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_MatchmakingOptions_Create();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_MatchmakingOptions_Destroy(IntPtr handle);
public static void ovr_MatchmakingOptions_SetCreateRoomDataStoreString(IntPtr handle, string key, string value) {
IntPtr key_native = StringToNative(key);
IntPtr value_native = StringToNative(value);
ovr_MatchmakingOptions_SetCreateRoomDataStoreString_Native(handle, key_native, value_native);
Marshal.FreeCoTaskMem(key_native);
Marshal.FreeCoTaskMem(value_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_MatchmakingOptions_SetCreateRoomDataStoreString")]
private static extern void ovr_MatchmakingOptions_SetCreateRoomDataStoreString_Native(IntPtr handle, IntPtr key, IntPtr value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_MatchmakingOptions_ClearCreateRoomDataStore(IntPtr handle);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_MatchmakingOptions_SetCreateRoomJoinPolicy(IntPtr handle, RoomJoinPolicy value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_MatchmakingOptions_SetCreateRoomMaxUsers(IntPtr handle, uint value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_MatchmakingOptions_AddEnqueueAdditionalUser(IntPtr handle, UInt64 value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_MatchmakingOptions_ClearEnqueueAdditionalUsers(IntPtr handle);
public static void ovr_MatchmakingOptions_SetEnqueueDataSettingsInt(IntPtr handle, string key, int value) {
IntPtr key_native = StringToNative(key);
ovr_MatchmakingOptions_SetEnqueueDataSettingsInt_Native(handle, key_native, value);
Marshal.FreeCoTaskMem(key_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_MatchmakingOptions_SetEnqueueDataSettingsInt")]
private static extern void ovr_MatchmakingOptions_SetEnqueueDataSettingsInt_Native(IntPtr handle, IntPtr key, int value);
public static void ovr_MatchmakingOptions_SetEnqueueDataSettingsDouble(IntPtr handle, string key, double value) {
IntPtr key_native = StringToNative(key);
ovr_MatchmakingOptions_SetEnqueueDataSettingsDouble_Native(handle, key_native, value);
Marshal.FreeCoTaskMem(key_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_MatchmakingOptions_SetEnqueueDataSettingsDouble")]
private static extern void ovr_MatchmakingOptions_SetEnqueueDataSettingsDouble_Native(IntPtr handle, IntPtr key, double value);
public static void ovr_MatchmakingOptions_SetEnqueueDataSettingsString(IntPtr handle, string key, string value) {
IntPtr key_native = StringToNative(key);
IntPtr value_native = StringToNative(value);
ovr_MatchmakingOptions_SetEnqueueDataSettingsString_Native(handle, key_native, value_native);
Marshal.FreeCoTaskMem(key_native);
Marshal.FreeCoTaskMem(value_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_MatchmakingOptions_SetEnqueueDataSettingsString")]
private static extern void ovr_MatchmakingOptions_SetEnqueueDataSettingsString_Native(IntPtr handle, IntPtr key, IntPtr value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_MatchmakingOptions_ClearEnqueueDataSettings(IntPtr handle);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_MatchmakingOptions_SetEnqueueIsDebug(IntPtr handle, bool value);
public static void ovr_MatchmakingOptions_SetEnqueueQueryKey(IntPtr handle, string value) {
IntPtr value_native = StringToNative(value);
ovr_MatchmakingOptions_SetEnqueueQueryKey_Native(handle, value_native);
Marshal.FreeCoTaskMem(value_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_MatchmakingOptions_SetEnqueueQueryKey")]
private static extern void ovr_MatchmakingOptions_SetEnqueueQueryKey_Native(IntPtr handle, IntPtr value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_NetSyncOptions_Create();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_NetSyncOptions_Destroy(IntPtr handle);
public static void ovr_NetSyncOptions_SetVoipGroup(IntPtr handle, string value) {
IntPtr value_native = StringToNative(value);
ovr_NetSyncOptions_SetVoipGroup_Native(handle, value_native);
Marshal.FreeCoTaskMem(value_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_NetSyncOptions_SetVoipGroup")]
private static extern void ovr_NetSyncOptions_SetVoipGroup_Native(IntPtr handle, IntPtr value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_NetSyncOptions_SetVoipStreamDefault(IntPtr handle, NetSyncVoipStreamMode value);
public static void ovr_NetSyncOptions_SetZoneId(IntPtr handle, string value) {
IntPtr value_native = StringToNative(value);
ovr_NetSyncOptions_SetZoneId_Native(handle, value_native);
Marshal.FreeCoTaskMem(value_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_NetSyncOptions_SetZoneId")]
private static extern void ovr_NetSyncOptions_SetZoneId_Native(IntPtr handle, IntPtr value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_RichPresenceOptions_Create();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_RichPresenceOptions_Destroy(IntPtr handle);
public static void ovr_RichPresenceOptions_SetApiName(IntPtr handle, string value) {
IntPtr value_native = StringToNative(value);
ovr_RichPresenceOptions_SetApiName_Native(handle, value_native);
Marshal.FreeCoTaskMem(value_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_RichPresenceOptions_SetApiName")]
private static extern void ovr_RichPresenceOptions_SetApiName_Native(IntPtr handle, IntPtr value);
public static void ovr_RichPresenceOptions_SetArgsString(IntPtr handle, string key, string value) {
IntPtr key_native = StringToNative(key);
IntPtr value_native = StringToNative(value);
ovr_RichPresenceOptions_SetArgsString_Native(handle, key_native, value_native);
Marshal.FreeCoTaskMem(key_native);
Marshal.FreeCoTaskMem(value_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_RichPresenceOptions_SetArgsString")]
private static extern void ovr_RichPresenceOptions_SetArgsString_Native(IntPtr handle, IntPtr key, IntPtr value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_RichPresenceOptions_ClearArgs(IntPtr handle);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_RichPresenceOptions_SetCurrentCapacity(IntPtr handle, uint value);
public static void ovr_RichPresenceOptions_SetDeeplinkMessageOverride(IntPtr handle, string value) {
IntPtr value_native = StringToNative(value);
ovr_RichPresenceOptions_SetDeeplinkMessageOverride_Native(handle, value_native);
Marshal.FreeCoTaskMem(value_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_RichPresenceOptions_SetDeeplinkMessageOverride")]
private static extern void ovr_RichPresenceOptions_SetDeeplinkMessageOverride_Native(IntPtr handle, IntPtr value);
public static void ovr_RichPresenceOptions_SetEndTime(IntPtr handle, DateTime value) {
ulong value_native = DateTimeToNative(value);
ovr_RichPresenceOptions_SetEndTime_Native(handle, value_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_RichPresenceOptions_SetEndTime")]
private static extern void ovr_RichPresenceOptions_SetEndTime_Native(IntPtr handle, ulong value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_RichPresenceOptions_SetExtraContext(IntPtr handle, RichPresenceExtraContext value);
public static void ovr_RichPresenceOptions_SetInstanceId(IntPtr handle, string value) {
IntPtr value_native = StringToNative(value);
ovr_RichPresenceOptions_SetInstanceId_Native(handle, value_native);
Marshal.FreeCoTaskMem(value_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_RichPresenceOptions_SetInstanceId")]
private static extern void ovr_RichPresenceOptions_SetInstanceId_Native(IntPtr handle, IntPtr value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_RichPresenceOptions_SetIsIdle(IntPtr handle, bool value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_RichPresenceOptions_SetIsJoinable(IntPtr handle, bool value);
public static void ovr_RichPresenceOptions_SetJoinableId(IntPtr handle, string value) {
IntPtr value_native = StringToNative(value);
ovr_RichPresenceOptions_SetJoinableId_Native(handle, value_native);
Marshal.FreeCoTaskMem(value_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_RichPresenceOptions_SetJoinableId")]
private static extern void ovr_RichPresenceOptions_SetJoinableId_Native(IntPtr handle, IntPtr value);
public static void ovr_RichPresenceOptions_SetLobbySessionId(IntPtr handle, string value) {
IntPtr value_native = StringToNative(value);
ovr_RichPresenceOptions_SetLobbySessionId_Native(handle, value_native);
Marshal.FreeCoTaskMem(value_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_RichPresenceOptions_SetLobbySessionId")]
private static extern void ovr_RichPresenceOptions_SetLobbySessionId_Native(IntPtr handle, IntPtr value);
public static void ovr_RichPresenceOptions_SetMatchSessionId(IntPtr handle, string value) {
IntPtr value_native = StringToNative(value);
ovr_RichPresenceOptions_SetMatchSessionId_Native(handle, value_native);
Marshal.FreeCoTaskMem(value_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_RichPresenceOptions_SetMatchSessionId")]
private static extern void ovr_RichPresenceOptions_SetMatchSessionId_Native(IntPtr handle, IntPtr value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_RichPresenceOptions_SetMaxCapacity(IntPtr handle, uint value);
public static void ovr_RichPresenceOptions_SetStartTime(IntPtr handle, DateTime value) {
ulong value_native = DateTimeToNative(value);
ovr_RichPresenceOptions_SetStartTime_Native(handle, value_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_RichPresenceOptions_SetStartTime")]
private static extern void ovr_RichPresenceOptions_SetStartTime_Native(IntPtr handle, ulong value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_RoomOptions_Create();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_RoomOptions_Destroy(IntPtr handle);
public static void ovr_RoomOptions_SetDataStoreString(IntPtr handle, string key, string value) {
IntPtr key_native = StringToNative(key);
IntPtr value_native = StringToNative(value);
ovr_RoomOptions_SetDataStoreString_Native(handle, key_native, value_native);
Marshal.FreeCoTaskMem(key_native);
Marshal.FreeCoTaskMem(value_native);
}
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_RoomOptions_SetDataStoreString")]
private static extern void ovr_RoomOptions_SetDataStoreString_Native(IntPtr handle, IntPtr key, IntPtr value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_RoomOptions_ClearDataStore(IntPtr handle);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_RoomOptions_SetExcludeRecentlyMet(IntPtr handle, bool value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_RoomOptions_SetMaxUserResults(IntPtr handle, uint value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_RoomOptions_SetOrdering(IntPtr handle, UserOrdering value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_RoomOptions_SetRecentlyMetTimeWindow(IntPtr handle, TimeWindow value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_RoomOptions_SetRoomId(IntPtr handle, UInt64 value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_RoomOptions_SetTurnOffUpdates(IntPtr handle, bool value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_UserOptions_Create();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_UserOptions_Destroy(IntPtr handle);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_UserOptions_SetMaxUsers(IntPtr handle, uint value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_UserOptions_AddServiceProvider(IntPtr handle, ServiceProvider value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_UserOptions_ClearServiceProviders(IntPtr handle);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_UserOptions_SetTimeWindow(IntPtr handle, TimeWindow value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern IntPtr ovr_VoipOptions_Create();
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_VoipOptions_Destroy(IntPtr handle);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_VoipOptions_SetBitrateForNewConnections(IntPtr handle, VoipBitrate value);
[DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)]
public static extern void ovr_VoipOptions_SetCreateNewConnectionUseDtx(IntPtr handle, VoipDtxState value);
}
}