proofmode 0.9.0

Capture, share, and preserve verifiable photos and videos
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
// This file was autogenerated by some hot garbage in the `uniffi` crate.
// Trust me, you don't want to mess with it!

#pragma once

#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>

// The following structs are used to implement the lowest level
// of the FFI, and thus useful to multiple uniffied crates.
// We ensure they are declared exactly once, with a header guard, UNIFFI_SHARED_H.
#ifdef UNIFFI_SHARED_H
    // We also try to prevent mixing versions of shared uniffi header structs.
    // If you add anything to the #else block, you must increment the version suffix in UNIFFI_SHARED_HEADER_V4
    #ifndef UNIFFI_SHARED_HEADER_V4
        #error Combining helper code from multiple versions of uniffi is not supported
    #endif // ndef UNIFFI_SHARED_HEADER_V4
#else
#define UNIFFI_SHARED_H
#define UNIFFI_SHARED_HEADER_V4
// ⚠️ Attention: If you change this #else block (ending in `#endif // def UNIFFI_SHARED_H`) you *must* ⚠️
// ⚠️ increment the version suffix in all instances of UNIFFI_SHARED_HEADER_V4 in this file.           ⚠️

typedef struct RustBuffer
{
    uint64_t capacity;
    uint64_t len;
    uint8_t *_Nullable data;
} RustBuffer;

typedef struct ForeignBytes
{
    int32_t len;
    const uint8_t *_Nullable data;
} ForeignBytes;

// Error definitions
typedef struct RustCallStatus {
    int8_t code;
    RustBuffer errorBuf;
} RustCallStatus;

// ⚠️ Attention: If you change this #else block (ending in `#endif // def UNIFFI_SHARED_H`) you *must* ⚠️
// ⚠️ increment the version suffix in all instances of UNIFFI_SHARED_HEADER_V4 in this file.           ⚠️
#endif // def UNIFFI_SHARED_H
#ifndef UNIFFI_FFIDEF_RUST_FUTURE_CONTINUATION_CALLBACK
#define UNIFFI_FFIDEF_RUST_FUTURE_CONTINUATION_CALLBACK
typedef void (*UniffiRustFutureContinuationCallback)(uint64_t, int8_t
    );

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_DROPPED_CALLBACK
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_DROPPED_CALLBACK
typedef void (*UniffiForeignFutureDroppedCallback)(uint64_t
    );

#endif
#ifndef UNIFFI_FFIDEF_CALLBACK_INTERFACE_FREE
#define UNIFFI_FFIDEF_CALLBACK_INTERFACE_FREE
typedef void (*UniffiCallbackInterfaceFree)(uint64_t
    );

#endif
#ifndef UNIFFI_FFIDEF_CALLBACK_INTERFACE_CLONE
#define UNIFFI_FFIDEF_CALLBACK_INTERFACE_CLONE
typedef uint64_t (*UniffiCallbackInterfaceClone)(uint64_t
    );

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_DROPPED_CALLBACK_STRUCT
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_DROPPED_CALLBACK_STRUCT
typedef struct UniffiForeignFutureDroppedCallbackStruct {
    uint64_t handle;
    UniffiForeignFutureDroppedCallback _Nonnull free;
} UniffiForeignFutureDroppedCallbackStruct;

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_U8
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_U8
typedef struct UniffiForeignFutureResultU8 {
    uint8_t returnValue;
    RustCallStatus callStatus;
} UniffiForeignFutureResultU8;

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U8
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U8
typedef void (*UniffiForeignFutureCompleteU8)(uint64_t, UniffiForeignFutureResultU8
    );

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_I8
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_I8
typedef struct UniffiForeignFutureResultI8 {
    int8_t returnValue;
    RustCallStatus callStatus;
} UniffiForeignFutureResultI8;

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I8
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I8
typedef void (*UniffiForeignFutureCompleteI8)(uint64_t, UniffiForeignFutureResultI8
    );

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_U16
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_U16
typedef struct UniffiForeignFutureResultU16 {
    uint16_t returnValue;
    RustCallStatus callStatus;
} UniffiForeignFutureResultU16;

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U16
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U16
typedef void (*UniffiForeignFutureCompleteU16)(uint64_t, UniffiForeignFutureResultU16
    );

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_I16
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_I16
typedef struct UniffiForeignFutureResultI16 {
    int16_t returnValue;
    RustCallStatus callStatus;
} UniffiForeignFutureResultI16;

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I16
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I16
typedef void (*UniffiForeignFutureCompleteI16)(uint64_t, UniffiForeignFutureResultI16
    );

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_U32
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_U32
typedef struct UniffiForeignFutureResultU32 {
    uint32_t returnValue;
    RustCallStatus callStatus;
} UniffiForeignFutureResultU32;

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U32
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U32
typedef void (*UniffiForeignFutureCompleteU32)(uint64_t, UniffiForeignFutureResultU32
    );

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_I32
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_I32
typedef struct UniffiForeignFutureResultI32 {
    int32_t returnValue;
    RustCallStatus callStatus;
} UniffiForeignFutureResultI32;

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I32
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I32
typedef void (*UniffiForeignFutureCompleteI32)(uint64_t, UniffiForeignFutureResultI32
    );

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_U64
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_U64
typedef struct UniffiForeignFutureResultU64 {
    uint64_t returnValue;
    RustCallStatus callStatus;
} UniffiForeignFutureResultU64;

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U64
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U64
typedef void (*UniffiForeignFutureCompleteU64)(uint64_t, UniffiForeignFutureResultU64
    );

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_I64
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_I64
typedef struct UniffiForeignFutureResultI64 {
    int64_t returnValue;
    RustCallStatus callStatus;
} UniffiForeignFutureResultI64;

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I64
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I64
typedef void (*UniffiForeignFutureCompleteI64)(uint64_t, UniffiForeignFutureResultI64
    );

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_F32
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_F32
typedef struct UniffiForeignFutureResultF32 {
    float returnValue;
    RustCallStatus callStatus;
} UniffiForeignFutureResultF32;

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_F32
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_F32
typedef void (*UniffiForeignFutureCompleteF32)(uint64_t, UniffiForeignFutureResultF32
    );

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_F64
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_F64
typedef struct UniffiForeignFutureResultF64 {
    double returnValue;
    RustCallStatus callStatus;
} UniffiForeignFutureResultF64;

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_F64
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_F64
typedef void (*UniffiForeignFutureCompleteF64)(uint64_t, UniffiForeignFutureResultF64
    );

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_RUST_BUFFER
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_RUST_BUFFER
typedef struct UniffiForeignFutureResultRustBuffer {
    RustBuffer returnValue;
    RustCallStatus callStatus;
} UniffiForeignFutureResultRustBuffer;

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_RUST_BUFFER
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_RUST_BUFFER
typedef void (*UniffiForeignFutureCompleteRustBuffer)(uint64_t, UniffiForeignFutureResultRustBuffer
    );

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_VOID
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_RESULT_VOID
typedef struct UniffiForeignFutureResultVoid {
    RustCallStatus callStatus;
} UniffiForeignFutureResultVoid;

#endif
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_VOID
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_VOID
typedef void (*UniffiForeignFutureCompleteVoid)(uint64_t, UniffiForeignFutureResultVoid
    );

#endif
#ifndef UNIFFI_FFIDEF_CALLBACK_INTERFACE_PROOF_MODE_CALLBACKS_METHOD0
#define UNIFFI_FFIDEF_CALLBACK_INTERFACE_PROOF_MODE_CALLBACKS_METHOD0
typedef void (*UniffiCallbackInterfaceProofModeCallbacksMethod0)(uint64_t, RustBuffer* _Nonnull, 
        RustCallStatus *_Nonnull uniffiCallStatus
    );

#endif
#ifndef UNIFFI_FFIDEF_CALLBACK_INTERFACE_PROOF_MODE_CALLBACKS_METHOD1
#define UNIFFI_FFIDEF_CALLBACK_INTERFACE_PROOF_MODE_CALLBACKS_METHOD1
typedef void (*UniffiCallbackInterfaceProofModeCallbacksMethod1)(uint64_t, RustBuffer* _Nonnull, 
        RustCallStatus *_Nonnull uniffiCallStatus
    );

#endif
#ifndef UNIFFI_FFIDEF_CALLBACK_INTERFACE_PROOF_MODE_CALLBACKS_METHOD2
#define UNIFFI_FFIDEF_CALLBACK_INTERFACE_PROOF_MODE_CALLBACKS_METHOD2
typedef void (*UniffiCallbackInterfaceProofModeCallbacksMethod2)(uint64_t, RustBuffer* _Nonnull, 
        RustCallStatus *_Nonnull uniffiCallStatus
    );

#endif
#ifndef UNIFFI_FFIDEF_CALLBACK_INTERFACE_PROOF_MODE_CALLBACKS_METHOD3
#define UNIFFI_FFIDEF_CALLBACK_INTERFACE_PROOF_MODE_CALLBACKS_METHOD3
typedef void (*UniffiCallbackInterfaceProofModeCallbacksMethod3)(uint64_t, RustBuffer, RustBuffer, RustBuffer, int8_t* _Nonnull, 
        RustCallStatus *_Nonnull uniffiCallStatus
    );

#endif
#ifndef UNIFFI_FFIDEF_CALLBACK_INTERFACE_PROOF_MODE_CALLBACKS_METHOD4
#define UNIFFI_FFIDEF_CALLBACK_INTERFACE_PROOF_MODE_CALLBACKS_METHOD4
typedef void (*UniffiCallbackInterfaceProofModeCallbacksMethod4)(uint64_t, RustBuffer, RustBuffer, RustBuffer, int8_t* _Nonnull, 
        RustCallStatus *_Nonnull uniffiCallStatus
    );

#endif
#ifndef UNIFFI_FFIDEF_CALLBACK_INTERFACE_PROOF_MODE_CALLBACKS_METHOD5
#define UNIFFI_FFIDEF_CALLBACK_INTERFACE_PROOF_MODE_CALLBACKS_METHOD5
typedef void (*UniffiCallbackInterfaceProofModeCallbacksMethod5)(uint64_t, RustBuffer, RustBuffer* _Nonnull, 
        RustCallStatus *_Nonnull uniffiCallStatus
    );

#endif
#ifndef UNIFFI_FFIDEF_CALLBACK_INTERFACE_PROOF_MODE_CALLBACKS_METHOD6
#define UNIFFI_FFIDEF_CALLBACK_INTERFACE_PROOF_MODE_CALLBACKS_METHOD6
typedef void (*UniffiCallbackInterfaceProofModeCallbacksMethod6)(uint64_t, RustBuffer, void* _Nonnull, 
        RustCallStatus *_Nonnull uniffiCallStatus
    );

#endif
#ifndef UNIFFI_FFIDEF_V_TABLE_CALLBACK_INTERFACE_PROOF_MODE_CALLBACKS
#define UNIFFI_FFIDEF_V_TABLE_CALLBACK_INTERFACE_PROOF_MODE_CALLBACKS
typedef struct UniffiVTableCallbackInterfaceProofModeCallbacks {
    UniffiCallbackInterfaceFree _Nonnull uniffiFree;
    UniffiCallbackInterfaceClone _Nonnull uniffiClone;
    UniffiCallbackInterfaceProofModeCallbacksMethod0 _Nonnull getLocation;
    UniffiCallbackInterfaceProofModeCallbacksMethod1 _Nonnull getDeviceInfo;
    UniffiCallbackInterfaceProofModeCallbacksMethod2 _Nonnull getNetworkInfo;
    UniffiCallbackInterfaceProofModeCallbacksMethod3 _Nonnull saveData;
    UniffiCallbackInterfaceProofModeCallbacksMethod4 _Nonnull saveText;
    UniffiCallbackInterfaceProofModeCallbacksMethod5 _Nonnull signData;
    UniffiCallbackInterfaceProofModeCallbacksMethod6 _Nonnull reportProgress;
} UniffiVTableCallbackInterfaceProofModeCallbacks;

#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_CLONE_PROOFMODECALLBACKS
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_CLONE_PROOFMODECALLBACKS
uint64_t uniffi_proofmode_fn_clone_proofmodecallbacks(uint64_t handle, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_FREE_PROOFMODECALLBACKS
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_FREE_PROOFMODECALLBACKS
void uniffi_proofmode_fn_free_proofmodecallbacks(uint64_t handle, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_INIT_CALLBACK_VTABLE_PROOFMODECALLBACKS
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_INIT_CALLBACK_VTABLE_PROOFMODECALLBACKS
void uniffi_proofmode_fn_init_callback_vtable_proofmodecallbacks(const UniffiVTableCallbackInterfaceProofModeCallbacks* _Nonnull vtable
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_METHOD_PROOFMODECALLBACKS_GET_LOCATION
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_METHOD_PROOFMODECALLBACKS_GET_LOCATION
RustBuffer uniffi_proofmode_fn_method_proofmodecallbacks_get_location(uint64_t ptr, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_METHOD_PROOFMODECALLBACKS_GET_DEVICE_INFO
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_METHOD_PROOFMODECALLBACKS_GET_DEVICE_INFO
RustBuffer uniffi_proofmode_fn_method_proofmodecallbacks_get_device_info(uint64_t ptr, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_METHOD_PROOFMODECALLBACKS_GET_NETWORK_INFO
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_METHOD_PROOFMODECALLBACKS_GET_NETWORK_INFO
RustBuffer uniffi_proofmode_fn_method_proofmodecallbacks_get_network_info(uint64_t ptr, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_METHOD_PROOFMODECALLBACKS_SAVE_DATA
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_METHOD_PROOFMODECALLBACKS_SAVE_DATA
int8_t uniffi_proofmode_fn_method_proofmodecallbacks_save_data(uint64_t ptr, RustBuffer hash, RustBuffer filename, RustBuffer data, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_METHOD_PROOFMODECALLBACKS_SAVE_TEXT
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_METHOD_PROOFMODECALLBACKS_SAVE_TEXT
int8_t uniffi_proofmode_fn_method_proofmodecallbacks_save_text(uint64_t ptr, RustBuffer hash, RustBuffer filename, RustBuffer text, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_METHOD_PROOFMODECALLBACKS_SIGN_DATA
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_METHOD_PROOFMODECALLBACKS_SIGN_DATA
RustBuffer uniffi_proofmode_fn_method_proofmodecallbacks_sign_data(uint64_t ptr, RustBuffer data, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_METHOD_PROOFMODECALLBACKS_REPORT_PROGRESS
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_METHOD_PROOFMODECALLBACKS_REPORT_PROGRESS
void uniffi_proofmode_fn_method_proofmodecallbacks_report_progress(uint64_t ptr, RustBuffer message, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_FUNC_CHECK_FILES
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_FUNC_CHECK_FILES
RustBuffer uniffi_proofmode_fn_func_check_files(RustBuffer file_paths, uint64_t callbacks, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_FUNC_GENERATE_PROOF
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_FUNC_GENERATE_PROOF
RustBuffer uniffi_proofmode_fn_func_generate_proof(RustBuffer media_data, RustBuffer metadata, RustBuffer config, uint64_t callbacks, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_FUNC_GET_FILE_HASH
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_FUNC_GET_FILE_HASH
RustBuffer uniffi_proofmode_fn_func_get_file_hash(RustBuffer media_data, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_FUNC_GET_VERSION
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_FN_FUNC_GET_VERSION
RustBuffer uniffi_proofmode_fn_func_get_version(RustCallStatus *_Nonnull out_status
    
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUSTBUFFER_ALLOC
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUSTBUFFER_ALLOC
RustBuffer ffi_proofmode_rustbuffer_alloc(uint64_t size, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUSTBUFFER_FROM_BYTES
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUSTBUFFER_FROM_BYTES
RustBuffer ffi_proofmode_rustbuffer_from_bytes(ForeignBytes bytes, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUSTBUFFER_FREE
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUSTBUFFER_FREE
void ffi_proofmode_rustbuffer_free(RustBuffer buf, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUSTBUFFER_RESERVE
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUSTBUFFER_RESERVE
RustBuffer ffi_proofmode_rustbuffer_reserve(RustBuffer buf, uint64_t additional, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_U8
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_U8
void ffi_proofmode_rust_future_poll_u8(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_U8
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_U8
void ffi_proofmode_rust_future_cancel_u8(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_U8
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_U8
void ffi_proofmode_rust_future_free_u8(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_U8
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_U8
uint8_t ffi_proofmode_rust_future_complete_u8(uint64_t handle, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_I8
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_I8
void ffi_proofmode_rust_future_poll_i8(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_I8
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_I8
void ffi_proofmode_rust_future_cancel_i8(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_I8
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_I8
void ffi_proofmode_rust_future_free_i8(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_I8
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_I8
int8_t ffi_proofmode_rust_future_complete_i8(uint64_t handle, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_U16
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_U16
void ffi_proofmode_rust_future_poll_u16(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_U16
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_U16
void ffi_proofmode_rust_future_cancel_u16(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_U16
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_U16
void ffi_proofmode_rust_future_free_u16(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_U16
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_U16
uint16_t ffi_proofmode_rust_future_complete_u16(uint64_t handle, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_I16
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_I16
void ffi_proofmode_rust_future_poll_i16(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_I16
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_I16
void ffi_proofmode_rust_future_cancel_i16(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_I16
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_I16
void ffi_proofmode_rust_future_free_i16(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_I16
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_I16
int16_t ffi_proofmode_rust_future_complete_i16(uint64_t handle, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_U32
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_U32
void ffi_proofmode_rust_future_poll_u32(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_U32
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_U32
void ffi_proofmode_rust_future_cancel_u32(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_U32
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_U32
void ffi_proofmode_rust_future_free_u32(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_U32
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_U32
uint32_t ffi_proofmode_rust_future_complete_u32(uint64_t handle, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_I32
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_I32
void ffi_proofmode_rust_future_poll_i32(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_I32
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_I32
void ffi_proofmode_rust_future_cancel_i32(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_I32
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_I32
void ffi_proofmode_rust_future_free_i32(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_I32
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_I32
int32_t ffi_proofmode_rust_future_complete_i32(uint64_t handle, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_U64
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_U64
void ffi_proofmode_rust_future_poll_u64(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_U64
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_U64
void ffi_proofmode_rust_future_cancel_u64(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_U64
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_U64
void ffi_proofmode_rust_future_free_u64(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_U64
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_U64
uint64_t ffi_proofmode_rust_future_complete_u64(uint64_t handle, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_I64
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_I64
void ffi_proofmode_rust_future_poll_i64(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_I64
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_I64
void ffi_proofmode_rust_future_cancel_i64(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_I64
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_I64
void ffi_proofmode_rust_future_free_i64(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_I64
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_I64
int64_t ffi_proofmode_rust_future_complete_i64(uint64_t handle, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_F32
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_F32
void ffi_proofmode_rust_future_poll_f32(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_F32
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_F32
void ffi_proofmode_rust_future_cancel_f32(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_F32
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_F32
void ffi_proofmode_rust_future_free_f32(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_F32
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_F32
float ffi_proofmode_rust_future_complete_f32(uint64_t handle, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_F64
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_F64
void ffi_proofmode_rust_future_poll_f64(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_F64
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_F64
void ffi_proofmode_rust_future_cancel_f64(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_F64
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_F64
void ffi_proofmode_rust_future_free_f64(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_F64
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_F64
double ffi_proofmode_rust_future_complete_f64(uint64_t handle, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_RUST_BUFFER
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_RUST_BUFFER
void ffi_proofmode_rust_future_poll_rust_buffer(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_RUST_BUFFER
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_RUST_BUFFER
void ffi_proofmode_rust_future_cancel_rust_buffer(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_RUST_BUFFER
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_RUST_BUFFER
void ffi_proofmode_rust_future_free_rust_buffer(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_RUST_BUFFER
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_RUST_BUFFER
RustBuffer ffi_proofmode_rust_future_complete_rust_buffer(uint64_t handle, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_VOID
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_POLL_VOID
void ffi_proofmode_rust_future_poll_void(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_VOID
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_CANCEL_VOID
void ffi_proofmode_rust_future_cancel_void(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_VOID
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_FREE_VOID
void ffi_proofmode_rust_future_free_void(uint64_t handle
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_VOID
#define UNIFFI_FFIDEF_FFI_PROOFMODE_RUST_FUTURE_COMPLETE_VOID
void ffi_proofmode_rust_future_complete_void(uint64_t handle, RustCallStatus *_Nonnull out_status
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_CHECKSUM_FUNC_CHECK_FILES
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_CHECKSUM_FUNC_CHECK_FILES
uint16_t uniffi_proofmode_checksum_func_check_files(void
    
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_CHECKSUM_FUNC_GENERATE_PROOF
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_CHECKSUM_FUNC_GENERATE_PROOF
uint16_t uniffi_proofmode_checksum_func_generate_proof(void
    
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_CHECKSUM_FUNC_GET_FILE_HASH
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_CHECKSUM_FUNC_GET_FILE_HASH
uint16_t uniffi_proofmode_checksum_func_get_file_hash(void
    
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_CHECKSUM_FUNC_GET_VERSION
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_CHECKSUM_FUNC_GET_VERSION
uint16_t uniffi_proofmode_checksum_func_get_version(void
    
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_CHECKSUM_METHOD_PROOFMODECALLBACKS_GET_LOCATION
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_CHECKSUM_METHOD_PROOFMODECALLBACKS_GET_LOCATION
uint16_t uniffi_proofmode_checksum_method_proofmodecallbacks_get_location(void
    
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_CHECKSUM_METHOD_PROOFMODECALLBACKS_GET_DEVICE_INFO
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_CHECKSUM_METHOD_PROOFMODECALLBACKS_GET_DEVICE_INFO
uint16_t uniffi_proofmode_checksum_method_proofmodecallbacks_get_device_info(void
    
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_CHECKSUM_METHOD_PROOFMODECALLBACKS_GET_NETWORK_INFO
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_CHECKSUM_METHOD_PROOFMODECALLBACKS_GET_NETWORK_INFO
uint16_t uniffi_proofmode_checksum_method_proofmodecallbacks_get_network_info(void
    
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_CHECKSUM_METHOD_PROOFMODECALLBACKS_SAVE_DATA
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_CHECKSUM_METHOD_PROOFMODECALLBACKS_SAVE_DATA
uint16_t uniffi_proofmode_checksum_method_proofmodecallbacks_save_data(void
    
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_CHECKSUM_METHOD_PROOFMODECALLBACKS_SAVE_TEXT
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_CHECKSUM_METHOD_PROOFMODECALLBACKS_SAVE_TEXT
uint16_t uniffi_proofmode_checksum_method_proofmodecallbacks_save_text(void
    
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_CHECKSUM_METHOD_PROOFMODECALLBACKS_SIGN_DATA
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_CHECKSUM_METHOD_PROOFMODECALLBACKS_SIGN_DATA
uint16_t uniffi_proofmode_checksum_method_proofmodecallbacks_sign_data(void
    
);
#endif
#ifndef UNIFFI_FFIDEF_UNIFFI_PROOFMODE_CHECKSUM_METHOD_PROOFMODECALLBACKS_REPORT_PROGRESS
#define UNIFFI_FFIDEF_UNIFFI_PROOFMODE_CHECKSUM_METHOD_PROOFMODECALLBACKS_REPORT_PROGRESS
uint16_t uniffi_proofmode_checksum_method_proofmodecallbacks_report_progress(void
    
);
#endif
#ifndef UNIFFI_FFIDEF_FFI_PROOFMODE_UNIFFI_CONTRACT_VERSION
#define UNIFFI_FFIDEF_FFI_PROOFMODE_UNIFFI_CONTRACT_VERSION
uint32_t ffi_proofmode_uniffi_contract_version(void
    
);
#endif