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
|
#![allow(non_upper_case_globals)]
#![allow(dead_code)]
/* automatically generated by rust-bindgen 0.70.1 */
pub const MONERO_wallet2_api_c_h_sha256: &[u8; 65] =
b"e8db0ef0324a153f5e3ecca4c0db23c54f4576e84988f04bd4f11c1142f9d7ad\0";
pub const MONERO_wallet2_api_c_cpp_sha256 : & [u8 ; 106] = b"dca52ac9ee009fda9fb5726543a454885e61d8eb74fb33112288029ed625bec5-b089f9ee69924882c5d14dd1a6991deb05d9d1cd\0" ;
pub const MONERO_wallet2_api_c_exp_sha256: &[u8; 65] =
b"c8913ac41068f67b57c9b0a3c7dd8973e3c1273b66c2ff0aadb0003931da748c\0";
pub const NetworkType_MAINNET: ::std::os::raw::c_int = 0;
pub const NetworkType_TESTNET: ::std::os::raw::c_int = 1;
pub const NetworkType_STAGENET: ::std::os::raw::c_int = 2;
pub const PendingTransactionStatus_Ok: ::std::os::raw::c_int = 0;
pub const PendingTransactionStatus_Error: ::std::os::raw::c_int = 1;
pub const PendingTransactionStatus_Critical: ::std::os::raw::c_int = 2;
pub const Priority_Default: ::std::os::raw::c_int = 0;
pub const Priority_Low: ::std::os::raw::c_int = 1;
pub const Priority_Medium: ::std::os::raw::c_int = 2;
pub const Priority_High: ::std::os::raw::c_int = 3;
pub const Priority_Last: ::std::os::raw::c_int = 4;
extern "C" {
pub fn MONERO_PendingTransaction_status(
pendingTx_ptr: *mut ::std::os::raw::c_void,
) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn MONERO_PendingTransaction_errorString(
pendingTx_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_PendingTransaction_commit(
pendingTx_ptr: *mut ::std::os::raw::c_void,
filename: *const ::std::os::raw::c_char,
overwrite: bool,
) -> bool;
}
extern "C" {
pub fn MONERO_PendingTransaction_commitUR(
pendingTx_ptr: *mut ::std::os::raw::c_void,
max_fragment_length: ::std::os::raw::c_int,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_PendingTransaction_amount(pendingTx_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_PendingTransaction_dust(pendingTx_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_PendingTransaction_fee(pendingTx_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_PendingTransaction_txid(
pendingTx_ptr: *mut ::std::os::raw::c_void,
separator: *const ::std::os::raw::c_char,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_PendingTransaction_txCount(pendingTx_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_PendingTransaction_subaddrAccount(
pendingTx_ptr: *mut ::std::os::raw::c_void,
separator: *const ::std::os::raw::c_char,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_PendingTransaction_subaddrIndices(
pendingTx_ptr: *mut ::std::os::raw::c_void,
separator: *const ::std::os::raw::c_char,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_PendingTransaction_multisigSignData(
pendingTx_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_PendingTransaction_signMultisigTx(pendingTx_ptr: *mut ::std::os::raw::c_void);
}
extern "C" {
pub fn MONERO_PendingTransaction_signersKeys(
pendingTx_ptr: *mut ::std::os::raw::c_void,
separator: *const ::std::os::raw::c_char,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_PendingTransaction_hex(
pendingTx_ptr: *mut ::std::os::raw::c_void,
separator: *const ::std::os::raw::c_char,
) -> *const ::std::os::raw::c_char;
}
pub const UnsignedTransactionStatus_Ok: ::std::os::raw::c_int = 0;
pub const UnsignedTransactionStatus_Error: ::std::os::raw::c_int = 1;
pub const UnsignedTransactionStatus_Critical: ::std::os::raw::c_int = 2;
extern "C" {
pub fn MONERO_UnsignedTransaction_status(
unsignedTx_ptr: *mut ::std::os::raw::c_void,
) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn MONERO_UnsignedTransaction_errorString(
unsignedTx_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_UnsignedTransaction_amount(
unsignedTx_ptr: *mut ::std::os::raw::c_void,
separator: *const ::std::os::raw::c_char,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_UnsignedTransaction_fee(
unsignedTx_ptr: *mut ::std::os::raw::c_void,
separator: *const ::std::os::raw::c_char,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_UnsignedTransaction_mixin(
unsignedTx_ptr: *mut ::std::os::raw::c_void,
separator: *const ::std::os::raw::c_char,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_UnsignedTransaction_confirmationMessage(
unsignedTx_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_UnsignedTransaction_paymentId(
unsignedTx_ptr: *mut ::std::os::raw::c_void,
separator: *const ::std::os::raw::c_char,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_UnsignedTransaction_recipientAddress(
unsignedTx_ptr: *mut ::std::os::raw::c_void,
separator: *const ::std::os::raw::c_char,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_UnsignedTransaction_minMixinCount(
unsignedTx_ptr: *mut ::std::os::raw::c_void,
) -> u64;
}
extern "C" {
pub fn MONERO_UnsignedTransaction_txCount(unsignedTx_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_UnsignedTransaction_sign(
unsignedTx_ptr: *mut ::std::os::raw::c_void,
signedFileName: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_UnsignedTransaction_signUR(
unsignedTx_ptr: *mut ::std::os::raw::c_void,
max_fragment_length: ::std::os::raw::c_int,
) -> *const ::std::os::raw::c_char;
}
pub const TransactionInfoDirection_In: ::std::os::raw::c_int = 0;
pub const TransactionInfoDirection_Out: ::std::os::raw::c_int = 1;
extern "C" {
pub fn MONERO_TransactionInfo_direction(
txInfo_ptr: *mut ::std::os::raw::c_void,
) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn MONERO_TransactionInfo_isPending(txInfo_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_TransactionInfo_isFailed(txInfo_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_TransactionInfo_isCoinbase(txInfo_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_TransactionInfo_amount(txInfo_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_TransactionInfo_fee(txInfo_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_TransactionInfo_blockHeight(txInfo_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_TransactionInfo_description(
txInfo_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_TransactionInfo_subaddrIndex(
txInfo_ptr: *mut ::std::os::raw::c_void,
separator: *const ::std::os::raw::c_char,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_TransactionInfo_subaddrAccount(txInfo_ptr: *mut ::std::os::raw::c_void) -> u32;
}
extern "C" {
pub fn MONERO_TransactionInfo_label(
txInfo_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_TransactionInfo_confirmations(txInfo_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_TransactionInfo_unlockTime(txInfo_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_TransactionInfo_hash(
txInfo_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_TransactionInfo_timestamp(txInfo_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_TransactionInfo_paymentId(
txInfo_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_TransactionInfo_transfers_count(
txInfo_ptr: *mut ::std::os::raw::c_void,
) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn MONERO_TransactionInfo_transfers_amount(
txInfo_ptr: *mut ::std::os::raw::c_void,
index: ::std::os::raw::c_int,
) -> u64;
}
extern "C" {
pub fn MONERO_TransactionInfo_transfers_address(
txInfo_ptr: *mut ::std::os::raw::c_void,
address: ::std::os::raw::c_int,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_TransactionHistory_count(
txHistory_ptr: *mut ::std::os::raw::c_void,
) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn MONERO_TransactionHistory_transaction(
txHistory_ptr: *mut ::std::os::raw::c_void,
index: ::std::os::raw::c_int,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_TransactionHistory_transactionById(
txHistory_ptr: *mut ::std::os::raw::c_void,
id: *const ::std::os::raw::c_char,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_TransactionHistory_refresh(txHistory_ptr: *mut ::std::os::raw::c_void);
}
extern "C" {
pub fn MONERO_TransactionHistory_setTxNote(
txHistory_ptr: *mut ::std::os::raw::c_void,
txid: *const ::std::os::raw::c_char,
note: *const ::std::os::raw::c_char,
);
}
extern "C" {
pub fn MONERO_AddressBookRow_extra(
addressBookRow_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_AddressBookRow_getAddress(
addressBookRow_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_AddressBookRow_getDescription(
addressBookRow_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_AddressBookRow_getPaymentId(
addressBookRow_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_AddressBookRow_getRowId(addressBookRow_ptr: *mut ::std::os::raw::c_void)
-> usize;
}
pub const AddressBookErrorCodeStatus_Ok: ::std::os::raw::c_int = 0;
pub const AddressBookErrorCodeGeneral_Error: ::std::os::raw::c_int = 1;
pub const AddressBookErrorCodeInvalid_Address: ::std::os::raw::c_int = 2;
pub const AddressBookErrorCodeInvalidPaymentId: ::std::os::raw::c_int = 3;
extern "C" {
pub fn MONERO_AddressBook_getAll_size(
addressBook_ptr: *mut ::std::os::raw::c_void,
) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn MONERO_AddressBook_getAll_byIndex(
addressBook_ptr: *mut ::std::os::raw::c_void,
index: ::std::os::raw::c_int,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_AddressBook_addRow(
addressBook_ptr: *mut ::std::os::raw::c_void,
dst_addr: *const ::std::os::raw::c_char,
payment_id: *const ::std::os::raw::c_char,
description: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_AddressBook_deleteRow(
addressBook_ptr: *mut ::std::os::raw::c_void,
rowId: usize,
) -> bool;
}
extern "C" {
pub fn MONERO_AddressBook_setDescription(
addressBook_ptr: *mut ::std::os::raw::c_void,
rowId: usize,
description: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_AddressBook_refresh(addressBook_ptr: *mut ::std::os::raw::c_void);
}
extern "C" {
pub fn MONERO_AddressBook_errorString(
addressBook_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_AddressBook_errorCode(
addressBook_ptr: *mut ::std::os::raw::c_void,
) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn MONERO_AddressBook_lookupPaymentID(
addressBook_ptr: *mut ::std::os::raw::c_void,
payment_id: *const ::std::os::raw::c_char,
) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn MONERO_CoinsInfo_blockHeight(coinsInfo_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_CoinsInfo_hash(
coinsInfo_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_CoinsInfo_internalOutputIndex(
coinsInfo_ptr: *mut ::std::os::raw::c_void,
) -> usize;
}
extern "C" {
pub fn MONERO_CoinsInfo_globalOutputIndex(coinsInfo_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_CoinsInfo_spent(coinsInfo_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_CoinsInfo_frozen(coinsInfo_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_CoinsInfo_spentHeight(coinsInfo_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_CoinsInfo_amount(coinsInfo_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_CoinsInfo_rct(coinsInfo_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_CoinsInfo_keyImageKnown(coinsInfo_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_CoinsInfo_pkIndex(coinsInfo_ptr: *mut ::std::os::raw::c_void) -> usize;
}
extern "C" {
pub fn MONERO_CoinsInfo_subaddrIndex(coinsInfo_ptr: *mut ::std::os::raw::c_void) -> u32;
}
extern "C" {
pub fn MONERO_CoinsInfo_subaddrAccount(coinsInfo_ptr: *mut ::std::os::raw::c_void) -> u32;
}
extern "C" {
pub fn MONERO_CoinsInfo_address(
coinsInfo_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_CoinsInfo_addressLabel(
coinsInfo_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_CoinsInfo_keyImage(
coinsInfo_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_CoinsInfo_unlockTime(coinsInfo_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_CoinsInfo_unlocked(coinsInfo_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_CoinsInfo_pubKey(
coinsInfo_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_CoinsInfo_coinbase(coinsInfo_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_CoinsInfo_description(
coinsInfo_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Coins_count(coins_ptr: *mut ::std::os::raw::c_void) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn MONERO_Coins_coin(
coins_ptr: *mut ::std::os::raw::c_void,
index: ::std::os::raw::c_int,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_Coins_getAll_size(
coins_ptr: *mut ::std::os::raw::c_void,
) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn MONERO_Coins_getAll_byIndex(
coins_ptr: *mut ::std::os::raw::c_void,
index: ::std::os::raw::c_int,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_Coins_refresh(coins_ptr: *mut ::std::os::raw::c_void);
}
extern "C" {
pub fn MONERO_Coins_setFrozenByPublicKey(
coins_ptr: *mut ::std::os::raw::c_void,
public_key: *const ::std::os::raw::c_char,
);
}
extern "C" {
pub fn MONERO_Coins_setFrozen(
coins_ptr: *mut ::std::os::raw::c_void,
index: ::std::os::raw::c_int,
);
}
extern "C" {
pub fn MONERO_Coins_thaw(coins_ptr: *mut ::std::os::raw::c_void, index: ::std::os::raw::c_int);
}
extern "C" {
pub fn MONERO_Coins_thawByPublicKey(
coins_ptr: *mut ::std::os::raw::c_void,
public_key: *const ::std::os::raw::c_char,
);
}
extern "C" {
pub fn MONERO_Coins_isTransferUnlocked(
coins_ptr: *mut ::std::os::raw::c_void,
unlockTime: u64,
blockHeight: u64,
) -> bool;
}
extern "C" {
pub fn MONERO_Coins_setDescription(
coins_ptr: *mut ::std::os::raw::c_void,
public_key: *const ::std::os::raw::c_char,
description: *const ::std::os::raw::c_char,
);
}
extern "C" {
pub fn MONERO_SubaddressRow_extra(
subaddressRow_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_SubaddressRow_getAddress(
subaddressRow_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_SubaddressRow_getLabel(
subaddressRow_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_SubaddressRow_getRowId(subaddressRow_ptr: *mut ::std::os::raw::c_void) -> usize;
}
extern "C" {
pub fn MONERO_Subaddress_getAll_size(
subaddress_ptr: *mut ::std::os::raw::c_void,
) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn MONERO_Subaddress_getAll_byIndex(
subaddress_ptr: *mut ::std::os::raw::c_void,
index: ::std::os::raw::c_int,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_Subaddress_addRow(
subaddress_ptr: *mut ::std::os::raw::c_void,
accountIndex: u32,
label: *const ::std::os::raw::c_char,
);
}
extern "C" {
pub fn MONERO_Subaddress_setLabel(
subaddress_ptr: *mut ::std::os::raw::c_void,
accountIndex: u32,
addressIndex: u32,
label: *const ::std::os::raw::c_char,
);
}
extern "C" {
pub fn MONERO_Subaddress_refresh(
subaddress_ptr: *mut ::std::os::raw::c_void,
accountIndex: u32,
);
}
extern "C" {
pub fn MONERO_SubaddressAccountRow_extra(
subaddressAccountRow_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_SubaddressAccountRow_getAddress(
subaddressAccountRow_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_SubaddressAccountRow_getLabel(
subaddressAccountRow_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_SubaddressAccountRow_getBalance(
subaddressAccountRow_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_SubaddressAccountRow_getUnlockedBalance(
subaddressAccountRow_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_SubaddressAccountRow_getRowId(
subaddressAccountRow_ptr: *mut ::std::os::raw::c_void,
) -> usize;
}
extern "C" {
pub fn MONERO_SubaddressAccount_getAll_size(
subaddressAccount_ptr: *mut ::std::os::raw::c_void,
) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn MONERO_SubaddressAccount_getAll_byIndex(
subaddressAccount_ptr: *mut ::std::os::raw::c_void,
index: ::std::os::raw::c_int,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_SubaddressAccount_addRow(
subaddressAccount_ptr: *mut ::std::os::raw::c_void,
label: *const ::std::os::raw::c_char,
);
}
extern "C" {
pub fn MONERO_SubaddressAccount_setLabel(
subaddressAccount_ptr: *mut ::std::os::raw::c_void,
accountIndex: u32,
label: *const ::std::os::raw::c_char,
);
}
extern "C" {
pub fn MONERO_SubaddressAccount_refresh(subaddressAccount_ptr: *mut ::std::os::raw::c_void);
}
extern "C" {
pub fn MONERO_MultisigState_isMultisig(multisigState_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_MultisigState_isReady(multisigState_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_MultisigState_threshold(multisigState_ptr: *mut ::std::os::raw::c_void) -> u32;
}
extern "C" {
pub fn MONERO_MultisigState_total(multisigState_ptr: *mut ::std::os::raw::c_void) -> u32;
}
extern "C" {
pub fn MONERO_DeviceProgress_progress(deviceProgress_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_DeviceProgress_indeterminate(
deviceProgress_ptr: *mut ::std::os::raw::c_void,
) -> bool;
}
pub const WalletDevice_Software: ::std::os::raw::c_int = 0;
pub const WalletDevice_Ledger: ::std::os::raw::c_int = 1;
pub const WalletDevice_Trezor: ::std::os::raw::c_int = 2;
pub const WalletStatus_Ok: ::std::os::raw::c_int = 0;
pub const WalletStatus_Error: ::std::os::raw::c_int = 1;
pub const WalletStatus_Critical: ::std::os::raw::c_int = 2;
pub const WalletConnectionStatus_Disconnected: ::std::os::raw::c_int = 0;
pub const WalletConnectionStatus_Connected: ::std::os::raw::c_int = 1;
pub const WalletConnectionStatus_WrongVersion: ::std::os::raw::c_int = 2;
pub const WalletBackgroundSync_Off: ::std::os::raw::c_int = 0;
pub const WalletBackgroundSync_ReusePassword: ::std::os::raw::c_int = 1;
pub const BackgroundSync_CustomPassword: ::std::os::raw::c_int = 2;
extern "C" {
pub fn MONERO_Wallet_seed(
wallet_ptr: *mut ::std::os::raw::c_void,
seed_offset: *const ::std::os::raw::c_char,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_getSeedLanguage(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_setSeedLanguage(
wallet_ptr: *mut ::std::os::raw::c_void,
arg: *const ::std::os::raw::c_char,
);
}
extern "C" {
pub fn MONERO_Wallet_status(wallet_ptr: *mut ::std::os::raw::c_void) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn MONERO_Wallet_errorString(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_setPassword(
wallet_ptr: *mut ::std::os::raw::c_void,
password: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_getPassword(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_setDevicePin(
wallet_ptr: *mut ::std::os::raw::c_void,
pin: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_setDevicePassphrase(
wallet_ptr: *mut ::std::os::raw::c_void,
passphrase: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_address(
wallet_ptr: *mut ::std::os::raw::c_void,
accountIndex: u64,
addressIndex: u64,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_path(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_nettype(wallet_ptr: *mut ::std::os::raw::c_void) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn MONERO_Wallet_useForkRules(
wallet_ptr: *mut ::std::os::raw::c_void,
version: u8,
early_blocks: i64,
) -> u8;
}
extern "C" {
pub fn MONERO_Wallet_integratedAddress(
wallet_ptr: *mut ::std::os::raw::c_void,
payment_id: *const ::std::os::raw::c_char,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_secretViewKey(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_publicViewKey(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_secretSpendKey(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_publicSpendKey(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_publicMultisigSignerKey(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_stop(wallet_ptr: *mut ::std::os::raw::c_void);
}
extern "C" {
pub fn MONERO_Wallet_store(
wallet_ptr: *mut ::std::os::raw::c_void,
path: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_filename(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_keysFilename(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_init(
wallet_ptr: *mut ::std::os::raw::c_void,
daemon_address: *const ::std::os::raw::c_char,
upper_transaction_size_limit: u64,
daemon_username: *const ::std::os::raw::c_char,
daemon_password: *const ::std::os::raw::c_char,
use_ssl: bool,
lightWallet: bool,
proxy_address: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_createWatchOnly(
wallet_ptr: *mut ::std::os::raw::c_void,
path: *const ::std::os::raw::c_char,
password: *const ::std::os::raw::c_char,
language: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_setRefreshFromBlockHeight(
wallet_ptr: *mut ::std::os::raw::c_void,
refresh_from_block_height: u64,
);
}
extern "C" {
pub fn MONERO_Wallet_getRefreshFromBlockHeight(wallet_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_Wallet_setRecoveringFromSeed(
wallet_ptr: *mut ::std::os::raw::c_void,
recoveringFromSeed: bool,
);
}
extern "C" {
pub fn MONERO_Wallet_setRecoveringFromDevice(
wallet_ptr: *mut ::std::os::raw::c_void,
recoveringFromDevice: bool,
);
}
extern "C" {
pub fn MONERO_Wallet_setSubaddressLookahead(
wallet_ptr: *mut ::std::os::raw::c_void,
major: u32,
minor: u32,
);
}
extern "C" {
pub fn MONERO_Wallet_connectToDaemon(wallet_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_connected(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn MONERO_Wallet_setTrustedDaemon(wallet_ptr: *mut ::std::os::raw::c_void, arg: bool);
}
extern "C" {
pub fn MONERO_Wallet_trustedDaemon(wallet_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_setProxy(
wallet_ptr: *mut ::std::os::raw::c_void,
address: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_balance(wallet_ptr: *mut ::std::os::raw::c_void, accountIndex: u32)
-> u64;
}
extern "C" {
pub fn MONERO_Wallet_unlockedBalance(
wallet_ptr: *mut ::std::os::raw::c_void,
accountIndex: u32,
) -> u64;
}
extern "C" {
pub fn MONERO_Wallet_viewOnlyBalance(
wallet_ptr: *mut ::std::os::raw::c_void,
accountIndex: u32,
) -> u64;
}
extern "C" {
pub fn MONERO_Wallet_watchOnly(wallet_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_isDeterministic(wallet_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_blockChainHeight(wallet_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_Wallet_approximateBlockChainHeight(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> u64;
}
extern "C" {
pub fn MONERO_Wallet_estimateBlockChainHeight(wallet_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_Wallet_daemonBlockChainHeight(wallet_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_Wallet_daemonBlockChainHeight_cached(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> u64;
}
extern "C" {
pub fn MONERO_Wallet_daemonBlockChainHeight_runThread(
wallet_ptr: *mut ::std::os::raw::c_void,
seconds: ::std::os::raw::c_int,
);
}
extern "C" {
pub fn MONERO_Wallet_daemonBlockChainTargetHeight(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> u64;
}
extern "C" {
pub fn MONERO_Wallet_synchronized(wallet_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_displayAmount(amount: u64) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_amountFromString(amount: *const ::std::os::raw::c_char) -> u64;
}
extern "C" {
pub fn MONERO_Wallet_amountFromDouble(amount: f64) -> u64;
}
extern "C" {
pub fn MONERO_Wallet_genPaymentId() -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_paymentIdValid(paiment_id: *const ::std::os::raw::c_char) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_addressValid(
str_: *const ::std::os::raw::c_char,
nettype: ::std::os::raw::c_int,
) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_keyValid(
secret_key_string: *const ::std::os::raw::c_char,
address_string: *const ::std::os::raw::c_char,
isViewKey: bool,
nettype: ::std::os::raw::c_int,
) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_keyValid_error(
secret_key_string: *const ::std::os::raw::c_char,
address_string: *const ::std::os::raw::c_char,
isViewKey: bool,
nettype: ::std::os::raw::c_int,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_paymentIdFromAddress(
strarg: *const ::std::os::raw::c_char,
nettype: ::std::os::raw::c_int,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_maximumAllowedAmount() -> u64;
}
extern "C" {
pub fn MONERO_Wallet_init3(
wallet_ptr: *mut ::std::os::raw::c_void,
argv0: *const ::std::os::raw::c_char,
default_log_base_name: *const ::std::os::raw::c_char,
log_path: *const ::std::os::raw::c_char,
console: bool,
);
}
extern "C" {
pub fn MONERO_Wallet_getPolyseed(
wallet_ptr: *mut ::std::os::raw::c_void,
passphrase: *const ::std::os::raw::c_char,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_createPolyseed(
language: *const ::std::os::raw::c_char,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_startRefresh(wallet_ptr: *mut ::std::os::raw::c_void);
}
extern "C" {
pub fn MONERO_Wallet_pauseRefresh(wallet_ptr: *mut ::std::os::raw::c_void);
}
extern "C" {
pub fn MONERO_Wallet_refresh(wallet_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_refreshAsync(wallet_ptr: *mut ::std::os::raw::c_void);
}
extern "C" {
pub fn MONERO_Wallet_rescanBlockchain(wallet_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_rescanBlockchainAsync(wallet_ptr: *mut ::std::os::raw::c_void);
}
extern "C" {
pub fn MONERO_Wallet_setAutoRefreshInterval(
wallet_ptr: *mut ::std::os::raw::c_void,
millis: ::std::os::raw::c_int,
);
}
extern "C" {
pub fn MONERO_Wallet_autoRefreshInterval(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn MONERO_Wallet_addSubaddressAccount(
wallet_ptr: *mut ::std::os::raw::c_void,
label: *const ::std::os::raw::c_char,
);
}
extern "C" {
pub fn MONERO_Wallet_numSubaddressAccounts(wallet_ptr: *mut ::std::os::raw::c_void) -> usize;
}
extern "C" {
pub fn MONERO_Wallet_numSubaddresses(
wallet_ptr: *mut ::std::os::raw::c_void,
accountIndex: u32,
) -> usize;
}
extern "C" {
pub fn MONERO_Wallet_addSubaddress(
wallet_ptr: *mut ::std::os::raw::c_void,
accountIndex: u32,
label: *const ::std::os::raw::c_char,
);
}
extern "C" {
pub fn MONERO_Wallet_getSubaddressLabel(
wallet_ptr: *mut ::std::os::raw::c_void,
accountIndex: u32,
addressIndex: u32,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_setSubaddressLabel(
wallet_ptr: *mut ::std::os::raw::c_void,
accountIndex: u32,
addressIndex: u32,
label: *const ::std::os::raw::c_char,
);
}
extern "C" {
pub fn MONERO_Wallet_multisig(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_Wallet_getMultisigInfo(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_makeMultisig(
wallet_ptr: *mut ::std::os::raw::c_void,
info: *const ::std::os::raw::c_char,
info_separator: *const ::std::os::raw::c_char,
threshold: u32,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_exchangeMultisigKeys(
wallet_ptr: *mut ::std::os::raw::c_void,
info: *const ::std::os::raw::c_char,
info_separator: *const ::std::os::raw::c_char,
force_update_use_with_caution: bool,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_exportMultisigImages(
wallet_ptr: *mut ::std::os::raw::c_void,
separator: *const ::std::os::raw::c_char,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_importMultisigImages(
wallet_ptr: *mut ::std::os::raw::c_void,
info: *const ::std::os::raw::c_char,
info_separator: *const ::std::os::raw::c_char,
) -> usize;
}
extern "C" {
pub fn MONERO_Wallet_hasMultisigPartialKeyImages(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> usize;
}
extern "C" {
pub fn MONERO_Wallet_restoreMultisigTransaction(
wallet_ptr: *mut ::std::os::raw::c_void,
signData: *const ::std::os::raw::c_char,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_Wallet_createTransactionMultDest(
wallet_ptr: *mut ::std::os::raw::c_void,
dst_addr_list: *const ::std::os::raw::c_char,
dst_addr_list_separator: *const ::std::os::raw::c_char,
payment_id: *const ::std::os::raw::c_char,
amount_sweep_all: bool,
amount_list: *const ::std::os::raw::c_char,
amount_list_separator: *const ::std::os::raw::c_char,
mixin_count: u32,
pendingTransactionPriority: ::std::os::raw::c_int,
subaddr_account: u32,
preferredInputs: *const ::std::os::raw::c_char,
preferredInputs_separator: *const ::std::os::raw::c_char,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_Wallet_createTransaction(
wallet_ptr: *mut ::std::os::raw::c_void,
dst_addr: *const ::std::os::raw::c_char,
payment_id: *const ::std::os::raw::c_char,
amount: u64,
mixin_count: u32,
pendingTransactionPriority: ::std::os::raw::c_int,
subaddr_account: u32,
preferredInputs: *const ::std::os::raw::c_char,
separator: *const ::std::os::raw::c_char,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_Wallet_loadUnsignedTx(
wallet_ptr: *mut ::std::os::raw::c_void,
unsigned_filename: *const ::std::os::raw::c_char,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_Wallet_loadUnsignedTxUR(
wallet_ptr: *mut ::std::os::raw::c_void,
input: *const ::std::os::raw::c_char,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_Wallet_submitTransaction(
wallet_ptr: *mut ::std::os::raw::c_void,
fileName: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_submitTransactionUR(
wallet_ptr: *mut ::std::os::raw::c_void,
input: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_hasUnknownKeyImages(wallet_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_exportKeyImages(
wallet_ptr: *mut ::std::os::raw::c_void,
filename: *const ::std::os::raw::c_char,
all: bool,
) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_exportKeyImagesUR(
wallet_ptr: *mut ::std::os::raw::c_void,
max_fragment_length: usize,
all: bool,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_importKeyImages(
wallet_ptr: *mut ::std::os::raw::c_void,
filename: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_importKeyImagesUR(
wallet_ptr: *mut ::std::os::raw::c_void,
input: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_exportOutputs(
wallet_ptr: *mut ::std::os::raw::c_void,
filename: *const ::std::os::raw::c_char,
all: bool,
) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_exportOutputsUR(
wallet_ptr: *mut ::std::os::raw::c_void,
max_fragment_length: usize,
all: bool,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_importOutputs(
wallet_ptr: *mut ::std::os::raw::c_void,
filename: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_importOutputsUR(
wallet_ptr: *mut ::std::os::raw::c_void,
input: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_setupBackgroundSync(
wallet_ptr: *mut ::std::os::raw::c_void,
background_sync_type: ::std::os::raw::c_int,
wallet_password: *const ::std::os::raw::c_char,
background_cache_password: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_getBackgroundSyncType(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn MONERO_Wallet_startBackgroundSync(wallet_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_stopBackgroundSync(
wallet_ptr: *mut ::std::os::raw::c_void,
wallet_password: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_isBackgroundSyncing(wallet_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_isBackgroundWallet(wallet_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_history(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_Wallet_addressBook(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_Wallet_coins(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_Wallet_subaddress(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_Wallet_subaddressAccount(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_Wallet_defaultMixin(wallet_ptr: *mut ::std::os::raw::c_void) -> u32;
}
extern "C" {
pub fn MONERO_Wallet_setDefaultMixin(wallet_ptr: *mut ::std::os::raw::c_void, arg: u32);
}
extern "C" {
pub fn MONERO_Wallet_setCacheAttribute(
wallet_ptr: *mut ::std::os::raw::c_void,
key: *const ::std::os::raw::c_char,
val: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_getCacheAttribute(
wallet_ptr: *mut ::std::os::raw::c_void,
key: *const ::std::os::raw::c_char,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_setUserNote(
wallet_ptr: *mut ::std::os::raw::c_void,
txid: *const ::std::os::raw::c_char,
note: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_getUserNote(
wallet_ptr: *mut ::std::os::raw::c_void,
txid: *const ::std::os::raw::c_char,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_getTxKey(
wallet_ptr: *mut ::std::os::raw::c_void,
txid: *const ::std::os::raw::c_char,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_signMessage(
wallet_ptr: *mut ::std::os::raw::c_void,
message: *const ::std::os::raw::c_char,
address: *const ::std::os::raw::c_char,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_verifySignedMessage(
wallet_ptr: *mut ::std::os::raw::c_void,
message: *const ::std::os::raw::c_char,
address: *const ::std::os::raw::c_char,
signature: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_rescanSpent(wallet_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_setOffline(wallet_ptr: *mut ::std::os::raw::c_void, offline: bool);
}
extern "C" {
pub fn MONERO_Wallet_isOffline(wallet_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_segregatePreForkOutputs(
wallet_ptr: *mut ::std::os::raw::c_void,
segregate: bool,
);
}
extern "C" {
pub fn MONERO_Wallet_segregationHeight(wallet_ptr: *mut ::std::os::raw::c_void, height: u64);
}
extern "C" {
pub fn MONERO_Wallet_keyReuseMitigation2(
wallet_ptr: *mut ::std::os::raw::c_void,
mitigation: bool,
);
}
extern "C" {
pub fn MONERO_Wallet_lockKeysFile(wallet_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_unlockKeysFile(wallet_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_isKeysFileLocked(wallet_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_getDeviceType(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn MONERO_Wallet_coldKeyImageSync(
wallet_ptr: *mut ::std::os::raw::c_void,
spent: u64,
unspent: u64,
) -> u64;
}
extern "C" {
pub fn MONERO_Wallet_deviceShowAddress(
wallet_ptr: *mut ::std::os::raw::c_void,
accountIndex: u32,
addressIndex: u32,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_Wallet_reconnectDevice(wallet_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_getBytesReceived(wallet_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_Wallet_getBytesSent(wallet_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_Wallet_getStateIsConnected(wallet_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_getSendToDevice(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> *mut ::std::os::raw::c_uchar;
}
extern "C" {
pub fn MONERO_Wallet_getSendToDeviceLength(wallet_ptr: *mut ::std::os::raw::c_void) -> usize;
}
extern "C" {
pub fn MONERO_Wallet_getReceivedFromDevice(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> *mut ::std::os::raw::c_uchar;
}
extern "C" {
pub fn MONERO_Wallet_getReceivedFromDeviceLength(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> usize;
}
extern "C" {
pub fn MONERO_Wallet_getWaitsForDeviceSend(wallet_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_getWaitsForDeviceReceive(wallet_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_Wallet_setDeviceReceivedData(
wallet_ptr: *mut ::std::os::raw::c_void,
data: *mut ::std::os::raw::c_uchar,
len: usize,
);
}
extern "C" {
pub fn MONERO_Wallet_setDeviceSendData(
wallet_ptr: *mut ::std::os::raw::c_void,
data: *mut ::std::os::raw::c_uchar,
len: usize,
);
}
extern "C" {
pub fn MONERO_WalletManager_createWallet(
wm_ptr: *mut ::std::os::raw::c_void,
path: *const ::std::os::raw::c_char,
password: *const ::std::os::raw::c_char,
language: *const ::std::os::raw::c_char,
networkType: ::std::os::raw::c_int,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_WalletManager_openWallet(
wm_ptr: *mut ::std::os::raw::c_void,
path: *const ::std::os::raw::c_char,
password: *const ::std::os::raw::c_char,
networkType: ::std::os::raw::c_int,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_WalletManager_recoveryWallet(
wm_ptr: *mut ::std::os::raw::c_void,
path: *const ::std::os::raw::c_char,
password: *const ::std::os::raw::c_char,
mnemonic: *const ::std::os::raw::c_char,
networkType: ::std::os::raw::c_int,
restoreHeight: u64,
kdfRounds: u64,
seedOffset: *const ::std::os::raw::c_char,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_WalletManager_createWalletFromKeys(
wm_ptr: *mut ::std::os::raw::c_void,
path: *const ::std::os::raw::c_char,
password: *const ::std::os::raw::c_char,
language: *const ::std::os::raw::c_char,
nettype: ::std::os::raw::c_int,
restoreHeight: u64,
addressString: *const ::std::os::raw::c_char,
viewKeyString: *const ::std::os::raw::c_char,
spendKeyString: *const ::std::os::raw::c_char,
kdf_rounds: u64,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_WalletManager_createDeterministicWalletFromSpendKey(
wm_ptr: *mut ::std::os::raw::c_void,
path: *const ::std::os::raw::c_char,
password: *const ::std::os::raw::c_char,
language: *const ::std::os::raw::c_char,
nettype: ::std::os::raw::c_int,
restoreHeight: u64,
spendKeyString: *const ::std::os::raw::c_char,
kdf_rounds: u64,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_WalletManager_createWalletFromDevice(
wm_ptr: *mut ::std::os::raw::c_void,
path: *const ::std::os::raw::c_char,
password: *const ::std::os::raw::c_char,
nettype: ::std::os::raw::c_int,
deviceName: *const ::std::os::raw::c_char,
restoreHeight: u64,
subaddressLookahead: *const ::std::os::raw::c_char,
viewKeyString: *const ::std::os::raw::c_char,
spendKeyString: *const ::std::os::raw::c_char,
kdf_rounds: u64,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_WalletManager_createWalletFromPolyseed(
wm_ptr: *mut ::std::os::raw::c_void,
path: *const ::std::os::raw::c_char,
password: *const ::std::os::raw::c_char,
nettype: ::std::os::raw::c_int,
mnemonic: *const ::std::os::raw::c_char,
passphrase: *const ::std::os::raw::c_char,
newWallet: bool,
restore_height: u64,
kdf_rounds: u64,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_WalletManager_closeWallet(
wm_ptr: *mut ::std::os::raw::c_void,
wallet_ptr: *mut ::std::os::raw::c_void,
store: bool,
) -> bool;
}
extern "C" {
pub fn MONERO_WalletManager_walletExists(
wm_ptr: *mut ::std::os::raw::c_void,
path: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_WalletManager_verifyWalletPassword(
wm_ptr: *mut ::std::os::raw::c_void,
keys_file_name: *const ::std::os::raw::c_char,
password: *const ::std::os::raw::c_char,
no_spend_key: bool,
kdf_rounds: u64,
) -> bool;
}
extern "C" {
pub fn MONERO_WalletManager_queryWalletDevice(
device_type: ::std::os::raw::c_int,
keys_file_name: *const ::std::os::raw::c_char,
password: *const ::std::os::raw::c_char,
kdf_rounds: u64,
) -> bool;
}
extern "C" {
pub fn MONERO_WalletManager_findWallets(
wm_ptr: *mut ::std::os::raw::c_void,
path: *const ::std::os::raw::c_char,
separator: *const ::std::os::raw::c_char,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_WalletManager_errorString(
wm_ptr: *mut ::std::os::raw::c_void,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_WalletManager_setDaemonAddress(
wm_ptr: *mut ::std::os::raw::c_void,
address: *const ::std::os::raw::c_char,
);
}
extern "C" {
pub fn MONERO_WalletManager_blockchainHeight(wm_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_WalletManager_blockchainTargetHeight(wm_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_WalletManager_networkDifficulty(wm_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_WalletManager_miningHashRate(wm_ptr: *mut ::std::os::raw::c_void) -> f64;
}
extern "C" {
pub fn MONERO_WalletManager_blockTarget(wm_ptr: *mut ::std::os::raw::c_void) -> u64;
}
extern "C" {
pub fn MONERO_WalletManager_isMining(wm_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_WalletManager_startMining(
wm_ptr: *mut ::std::os::raw::c_void,
address: *const ::std::os::raw::c_char,
threads: u32,
backgroundMining: bool,
ignoreBattery: bool,
) -> bool;
}
extern "C" {
pub fn MONERO_WalletManager_stopMining(
wm_ptr: *mut ::std::os::raw::c_void,
address: *const ::std::os::raw::c_char,
) -> bool;
}
extern "C" {
pub fn MONERO_WalletManager_resolveOpenAlias(
wm_ptr: *mut ::std::os::raw::c_void,
address: *const ::std::os::raw::c_char,
dnssec_valid: bool,
) -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_WalletManager_setProxy(
wm_ptr: *mut ::std::os::raw::c_void,
address: *const ::std::os::raw::c_char,
) -> bool;
}
pub const LogLevel_Silent: ::std::os::raw::c_int = -1;
pub const LogLevel_0: ::std::os::raw::c_int = 0;
pub const LogLevel_1: ::std::os::raw::c_int = 1;
pub const LogLevel_2: ::std::os::raw::c_int = 2;
pub const LogLevel_3: ::std::os::raw::c_int = 3;
pub const LogLevel_4: ::std::os::raw::c_int = 4;
pub const LogLevel_Min: ::std::os::raw::c_int = -1;
pub const LogLevel_Max: ::std::os::raw::c_int = 4;
extern "C" {
pub fn MONERO_WalletManagerFactory_getWalletManager() -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_WalletManagerFactory_setLogLevel(level: ::std::os::raw::c_int);
}
extern "C" {
pub fn MONERO_WalletManagerFactory_setLogCategories(categories: *const ::std::os::raw::c_char);
}
extern "C" {
pub fn MONERO_DEBUG_test0();
}
extern "C" {
pub fn MONERO_DEBUG_test1(x: bool) -> bool;
}
extern "C" {
pub fn MONERO_DEBUG_test2(x: ::std::os::raw::c_int) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn MONERO_DEBUG_test3(x: u64) -> u64;
}
extern "C" {
pub fn MONERO_DEBUG_test4(x: u64) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_DEBUG_test5() -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_DEBUG_test5_std() -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_DEBUG_isPointerNull(wallet_ptr: *mut ::std::os::raw::c_void) -> bool;
}
extern "C" {
pub fn MONERO_cw_getWalletListener(
wallet_ptr: *mut ::std::os::raw::c_void,
) -> *mut ::std::os::raw::c_void;
}
extern "C" {
pub fn MONERO_cw_WalletListener_resetNeedToRefresh(
cw_walletListener_ptr: *mut ::std::os::raw::c_void,
);
}
extern "C" {
pub fn MONERO_cw_WalletListener_isNeedToRefresh(
cw_walletListener_ptr: *mut ::std::os::raw::c_void,
) -> bool;
}
extern "C" {
pub fn MONERO_cw_WalletListener_isNewTransactionExist(
cw_walletListener_ptr: *mut ::std::os::raw::c_void,
) -> bool;
}
extern "C" {
pub fn MONERO_cw_WalletListener_resetIsNewTransactionExist(
cw_walletListener_ptr: *mut ::std::os::raw::c_void,
);
}
extern "C" {
pub fn MONERO_cw_WalletListener_height(
cw_walletListener_ptr: *mut ::std::os::raw::c_void,
) -> u64;
}
extern "C" {
pub fn MONERO_free(ptr: *mut ::std::os::raw::c_void);
}
extern "C" {
pub fn MONERO_checksum_wallet2_api_c_h() -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_checksum_wallet2_api_c_cpp() -> *const ::std::os::raw::c_char;
}
extern "C" {
pub fn MONERO_checksum_wallet2_api_c_exp() -> *const ::std::os::raw::c_char;
}
|