dash-shielded-native 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/LICENSE +27 -0
- package/README.md +36 -0
- package/android/build.gradle +56 -0
- package/android/src/main/AndroidManifest.xml +1 -0
- package/android/src/main/java/app/edge/rndashshielded/RNDashShieldedModule.kt +215 -0
- package/android/src/main/java/app/edge/rndashshielded/RNDashShieldedPackage.kt +16 -0
- package/android/src/main/java/uniffi/dash/dash.kt +1665 -0
- package/android/src/main/jniLibs/arm64-v8a/libdashshielded.so +0 -0
- package/dash-shielded-native.podspec +32 -0
- package/ios/.uniffi-generated +1 -0
- package/ios/EdgeDashClient.swift +88 -0
- package/ios/RNDashShielded.m +83 -0
- package/ios/RNDashShielded.swift +214 -0
- package/ios/dash-shielded-native-Bridging-Header.h +2 -0
- package/ios/dash.swift +1124 -0
- package/ios/libdashshielded.xcframework/Info.plist +47 -0
- package/ios/libdashshielded.xcframework/ios-arm64/Headers/dashFFI.h +696 -0
- package/ios/libdashshielded.xcframework/ios-arm64/Headers/module.modulemap +7 -0
- package/ios/libdashshielded.xcframework/ios-arm64/libdashshielded.a +0 -0
- package/ios/libdashshielded.xcframework/ios-arm64-simulator/Headers/dashFFI.h +696 -0
- package/ios/libdashshielded.xcframework/ios-arm64-simulator/Headers/module.modulemap +7 -0
- package/ios/libdashshielded.xcframework/ios-arm64-simulator/libdashshielded.a +0 -0
- package/lib/load-addon.d.ts +34 -0
- package/lib/node.d.ts +50 -0
- package/lib/react-native.d.ts +31 -0
- package/lib/rndash.rn.js +267 -0
- package/lib/rndash.rn.js.map +1 -0
- package/lib/src/node.js +328 -0
- package/lib/src/node.js.map +1 -0
- package/lib/types.d.ts +73 -0
- package/node.d.ts +1 -0
- package/node.js +2 -0
- package/package.json +105 -0
- package/prebuilds/darwin-arm64/dashshielded.node +0 -0
- package/rust/Cargo.lock +6795 -0
- package/rust/Cargo.toml +63 -0
- package/rust/build.rs +7 -0
- package/rust/rust-toolchain.toml +3 -0
- package/rust/src/dash.udl +90 -0
- package/rust/src/lib.rs +16 -0
- package/rust/src/napi_api.rs +164 -0
- package/rust/src/uniffi_api.rs +116 -0
- package/rust/src/wallet.rs +888 -0
- package/rust/uniffi-bindgen.rs +3 -0
- package/src/load-addon.ts +99 -0
- package/src/node.ts +248 -0
- package/src/react-native.ts +212 -0
- package/src/types.ts +88 -0
|
@@ -0,0 +1,696 @@
|
|
|
1
|
+
// This file was autogenerated by some hot garbage in the `uniffi` crate.
|
|
2
|
+
// Trust me, you don't want to mess with it!
|
|
3
|
+
|
|
4
|
+
#pragma once
|
|
5
|
+
|
|
6
|
+
#include <stdbool.h>
|
|
7
|
+
#include <stddef.h>
|
|
8
|
+
#include <stdint.h>
|
|
9
|
+
|
|
10
|
+
// The following structs are used to implement the lowest level
|
|
11
|
+
// of the FFI, and thus useful to multiple uniffied crates.
|
|
12
|
+
// We ensure they are declared exactly once, with a header guard, UNIFFI_SHARED_H.
|
|
13
|
+
#ifdef UNIFFI_SHARED_H
|
|
14
|
+
// We also try to prevent mixing versions of shared uniffi header structs.
|
|
15
|
+
// If you add anything to the #else block, you must increment the version suffix in UNIFFI_SHARED_HEADER_V4
|
|
16
|
+
#ifndef UNIFFI_SHARED_HEADER_V4
|
|
17
|
+
#error Combining helper code from multiple versions of uniffi is not supported
|
|
18
|
+
#endif // ndef UNIFFI_SHARED_HEADER_V4
|
|
19
|
+
#else
|
|
20
|
+
#define UNIFFI_SHARED_H
|
|
21
|
+
#define UNIFFI_SHARED_HEADER_V4
|
|
22
|
+
// ⚠️ Attention: If you change this #else block (ending in `#endif // def UNIFFI_SHARED_H`) you *must* ⚠️
|
|
23
|
+
// ⚠️ increment the version suffix in all instances of UNIFFI_SHARED_HEADER_V4 in this file. ⚠️
|
|
24
|
+
|
|
25
|
+
typedef struct RustBuffer
|
|
26
|
+
{
|
|
27
|
+
uint64_t capacity;
|
|
28
|
+
uint64_t len;
|
|
29
|
+
uint8_t *_Nullable data;
|
|
30
|
+
} RustBuffer;
|
|
31
|
+
|
|
32
|
+
typedef struct ForeignBytes
|
|
33
|
+
{
|
|
34
|
+
int32_t len;
|
|
35
|
+
const uint8_t *_Nullable data;
|
|
36
|
+
} ForeignBytes;
|
|
37
|
+
|
|
38
|
+
// Error definitions
|
|
39
|
+
typedef struct RustCallStatus {
|
|
40
|
+
int8_t code;
|
|
41
|
+
RustBuffer errorBuf;
|
|
42
|
+
} RustCallStatus;
|
|
43
|
+
|
|
44
|
+
// ⚠️ Attention: If you change this #else block (ending in `#endif // def UNIFFI_SHARED_H`) you *must* ⚠️
|
|
45
|
+
// ⚠️ increment the version suffix in all instances of UNIFFI_SHARED_HEADER_V4 in this file. ⚠️
|
|
46
|
+
#endif // def UNIFFI_SHARED_H
|
|
47
|
+
#ifndef UNIFFI_FFIDEF_RUST_FUTURE_CONTINUATION_CALLBACK
|
|
48
|
+
#define UNIFFI_FFIDEF_RUST_FUTURE_CONTINUATION_CALLBACK
|
|
49
|
+
typedef void (*UniffiRustFutureContinuationCallback)(uint64_t, int8_t
|
|
50
|
+
);
|
|
51
|
+
|
|
52
|
+
#endif
|
|
53
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_FREE
|
|
54
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_FREE
|
|
55
|
+
typedef void (*UniffiForeignFutureFree)(uint64_t
|
|
56
|
+
);
|
|
57
|
+
|
|
58
|
+
#endif
|
|
59
|
+
#ifndef UNIFFI_FFIDEF_CALLBACK_INTERFACE_FREE
|
|
60
|
+
#define UNIFFI_FFIDEF_CALLBACK_INTERFACE_FREE
|
|
61
|
+
typedef void (*UniffiCallbackInterfaceFree)(uint64_t
|
|
62
|
+
);
|
|
63
|
+
|
|
64
|
+
#endif
|
|
65
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE
|
|
66
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE
|
|
67
|
+
typedef struct UniffiForeignFuture {
|
|
68
|
+
uint64_t handle;
|
|
69
|
+
UniffiForeignFutureFree _Nonnull free;
|
|
70
|
+
} UniffiForeignFuture;
|
|
71
|
+
|
|
72
|
+
#endif
|
|
73
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U8
|
|
74
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U8
|
|
75
|
+
typedef struct UniffiForeignFutureStructU8 {
|
|
76
|
+
uint8_t returnValue;
|
|
77
|
+
RustCallStatus callStatus;
|
|
78
|
+
} UniffiForeignFutureStructU8;
|
|
79
|
+
|
|
80
|
+
#endif
|
|
81
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U8
|
|
82
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U8
|
|
83
|
+
typedef void (*UniffiForeignFutureCompleteU8)(uint64_t, UniffiForeignFutureStructU8
|
|
84
|
+
);
|
|
85
|
+
|
|
86
|
+
#endif
|
|
87
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I8
|
|
88
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I8
|
|
89
|
+
typedef struct UniffiForeignFutureStructI8 {
|
|
90
|
+
int8_t returnValue;
|
|
91
|
+
RustCallStatus callStatus;
|
|
92
|
+
} UniffiForeignFutureStructI8;
|
|
93
|
+
|
|
94
|
+
#endif
|
|
95
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I8
|
|
96
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I8
|
|
97
|
+
typedef void (*UniffiForeignFutureCompleteI8)(uint64_t, UniffiForeignFutureStructI8
|
|
98
|
+
);
|
|
99
|
+
|
|
100
|
+
#endif
|
|
101
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U16
|
|
102
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U16
|
|
103
|
+
typedef struct UniffiForeignFutureStructU16 {
|
|
104
|
+
uint16_t returnValue;
|
|
105
|
+
RustCallStatus callStatus;
|
|
106
|
+
} UniffiForeignFutureStructU16;
|
|
107
|
+
|
|
108
|
+
#endif
|
|
109
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U16
|
|
110
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U16
|
|
111
|
+
typedef void (*UniffiForeignFutureCompleteU16)(uint64_t, UniffiForeignFutureStructU16
|
|
112
|
+
);
|
|
113
|
+
|
|
114
|
+
#endif
|
|
115
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I16
|
|
116
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I16
|
|
117
|
+
typedef struct UniffiForeignFutureStructI16 {
|
|
118
|
+
int16_t returnValue;
|
|
119
|
+
RustCallStatus callStatus;
|
|
120
|
+
} UniffiForeignFutureStructI16;
|
|
121
|
+
|
|
122
|
+
#endif
|
|
123
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I16
|
|
124
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I16
|
|
125
|
+
typedef void (*UniffiForeignFutureCompleteI16)(uint64_t, UniffiForeignFutureStructI16
|
|
126
|
+
);
|
|
127
|
+
|
|
128
|
+
#endif
|
|
129
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U32
|
|
130
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U32
|
|
131
|
+
typedef struct UniffiForeignFutureStructU32 {
|
|
132
|
+
uint32_t returnValue;
|
|
133
|
+
RustCallStatus callStatus;
|
|
134
|
+
} UniffiForeignFutureStructU32;
|
|
135
|
+
|
|
136
|
+
#endif
|
|
137
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U32
|
|
138
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U32
|
|
139
|
+
typedef void (*UniffiForeignFutureCompleteU32)(uint64_t, UniffiForeignFutureStructU32
|
|
140
|
+
);
|
|
141
|
+
|
|
142
|
+
#endif
|
|
143
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I32
|
|
144
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I32
|
|
145
|
+
typedef struct UniffiForeignFutureStructI32 {
|
|
146
|
+
int32_t returnValue;
|
|
147
|
+
RustCallStatus callStatus;
|
|
148
|
+
} UniffiForeignFutureStructI32;
|
|
149
|
+
|
|
150
|
+
#endif
|
|
151
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I32
|
|
152
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I32
|
|
153
|
+
typedef void (*UniffiForeignFutureCompleteI32)(uint64_t, UniffiForeignFutureStructI32
|
|
154
|
+
);
|
|
155
|
+
|
|
156
|
+
#endif
|
|
157
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U64
|
|
158
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U64
|
|
159
|
+
typedef struct UniffiForeignFutureStructU64 {
|
|
160
|
+
uint64_t returnValue;
|
|
161
|
+
RustCallStatus callStatus;
|
|
162
|
+
} UniffiForeignFutureStructU64;
|
|
163
|
+
|
|
164
|
+
#endif
|
|
165
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U64
|
|
166
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U64
|
|
167
|
+
typedef void (*UniffiForeignFutureCompleteU64)(uint64_t, UniffiForeignFutureStructU64
|
|
168
|
+
);
|
|
169
|
+
|
|
170
|
+
#endif
|
|
171
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I64
|
|
172
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I64
|
|
173
|
+
typedef struct UniffiForeignFutureStructI64 {
|
|
174
|
+
int64_t returnValue;
|
|
175
|
+
RustCallStatus callStatus;
|
|
176
|
+
} UniffiForeignFutureStructI64;
|
|
177
|
+
|
|
178
|
+
#endif
|
|
179
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I64
|
|
180
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I64
|
|
181
|
+
typedef void (*UniffiForeignFutureCompleteI64)(uint64_t, UniffiForeignFutureStructI64
|
|
182
|
+
);
|
|
183
|
+
|
|
184
|
+
#endif
|
|
185
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_F32
|
|
186
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_F32
|
|
187
|
+
typedef struct UniffiForeignFutureStructF32 {
|
|
188
|
+
float returnValue;
|
|
189
|
+
RustCallStatus callStatus;
|
|
190
|
+
} UniffiForeignFutureStructF32;
|
|
191
|
+
|
|
192
|
+
#endif
|
|
193
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_F32
|
|
194
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_F32
|
|
195
|
+
typedef void (*UniffiForeignFutureCompleteF32)(uint64_t, UniffiForeignFutureStructF32
|
|
196
|
+
);
|
|
197
|
+
|
|
198
|
+
#endif
|
|
199
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_F64
|
|
200
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_F64
|
|
201
|
+
typedef struct UniffiForeignFutureStructF64 {
|
|
202
|
+
double returnValue;
|
|
203
|
+
RustCallStatus callStatus;
|
|
204
|
+
} UniffiForeignFutureStructF64;
|
|
205
|
+
|
|
206
|
+
#endif
|
|
207
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_F64
|
|
208
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_F64
|
|
209
|
+
typedef void (*UniffiForeignFutureCompleteF64)(uint64_t, UniffiForeignFutureStructF64
|
|
210
|
+
);
|
|
211
|
+
|
|
212
|
+
#endif
|
|
213
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_POINTER
|
|
214
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_POINTER
|
|
215
|
+
typedef struct UniffiForeignFutureStructPointer {
|
|
216
|
+
void*_Nonnull returnValue;
|
|
217
|
+
RustCallStatus callStatus;
|
|
218
|
+
} UniffiForeignFutureStructPointer;
|
|
219
|
+
|
|
220
|
+
#endif
|
|
221
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_POINTER
|
|
222
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_POINTER
|
|
223
|
+
typedef void (*UniffiForeignFutureCompletePointer)(uint64_t, UniffiForeignFutureStructPointer
|
|
224
|
+
);
|
|
225
|
+
|
|
226
|
+
#endif
|
|
227
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_RUST_BUFFER
|
|
228
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_RUST_BUFFER
|
|
229
|
+
typedef struct UniffiForeignFutureStructRustBuffer {
|
|
230
|
+
RustBuffer returnValue;
|
|
231
|
+
RustCallStatus callStatus;
|
|
232
|
+
} UniffiForeignFutureStructRustBuffer;
|
|
233
|
+
|
|
234
|
+
#endif
|
|
235
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_RUST_BUFFER
|
|
236
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_RUST_BUFFER
|
|
237
|
+
typedef void (*UniffiForeignFutureCompleteRustBuffer)(uint64_t, UniffiForeignFutureStructRustBuffer
|
|
238
|
+
);
|
|
239
|
+
|
|
240
|
+
#endif
|
|
241
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_VOID
|
|
242
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_VOID
|
|
243
|
+
typedef struct UniffiForeignFutureStructVoid {
|
|
244
|
+
RustCallStatus callStatus;
|
|
245
|
+
} UniffiForeignFutureStructVoid;
|
|
246
|
+
|
|
247
|
+
#endif
|
|
248
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_VOID
|
|
249
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_VOID
|
|
250
|
+
typedef void (*UniffiForeignFutureCompleteVoid)(uint64_t, UniffiForeignFutureStructVoid
|
|
251
|
+
);
|
|
252
|
+
|
|
253
|
+
#endif
|
|
254
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_CREATE_TRANSFER
|
|
255
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_CREATE_TRANSFER
|
|
256
|
+
RustBuffer uniffi_dashshielded_fn_func_create_transfer(RustBuffer alias, RustBuffer proposal_id, RustBuffer mnemonic_seed, RustCallStatus *_Nonnull out_status
|
|
257
|
+
);
|
|
258
|
+
#endif
|
|
259
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_DERIVE_SHIELDED_ADDRESS
|
|
260
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_DERIVE_SHIELDED_ADDRESS
|
|
261
|
+
RustBuffer uniffi_dashshielded_fn_func_derive_shielded_address(RustBuffer alias, RustCallStatus *_Nonnull out_status
|
|
262
|
+
);
|
|
263
|
+
#endif
|
|
264
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_DERIVE_SHIELDED_ADDRESS_FROM_SEED
|
|
265
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_DERIVE_SHIELDED_ADDRESS_FROM_SEED
|
|
266
|
+
RustBuffer uniffi_dashshielded_fn_func_derive_shielded_address_from_seed(RustBuffer mnemonic_seed, RustBuffer network, uint32_t account, RustCallStatus *_Nonnull out_status
|
|
267
|
+
);
|
|
268
|
+
#endif
|
|
269
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_DERIVE_VIEWING_KEY
|
|
270
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_DERIVE_VIEWING_KEY
|
|
271
|
+
RustBuffer uniffi_dashshielded_fn_func_derive_viewing_key(RustBuffer mnemonic_seed, RustBuffer network, RustCallStatus *_Nonnull out_status
|
|
272
|
+
);
|
|
273
|
+
#endif
|
|
274
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_INITIALIZE
|
|
275
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_INITIALIZE
|
|
276
|
+
void uniffi_dashshielded_fn_func_initialize(RustBuffer mnemonic_seed, uint32_t account, RustBuffer alias, RustBuffer network_name, RustBuffer default_host, uint32_t default_port, RustCallStatus *_Nonnull out_status
|
|
277
|
+
);
|
|
278
|
+
#endif
|
|
279
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_IS_PROVER_READY
|
|
280
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_IS_PROVER_READY
|
|
281
|
+
int8_t uniffi_dashshielded_fn_func_is_prover_ready(RustCallStatus *_Nonnull out_status
|
|
282
|
+
|
|
283
|
+
);
|
|
284
|
+
#endif
|
|
285
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_IS_VALID_ADDRESS
|
|
286
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_IS_VALID_ADDRESS
|
|
287
|
+
int8_t uniffi_dashshielded_fn_func_is_valid_address(RustBuffer address, RustBuffer network, RustCallStatus *_Nonnull out_status
|
|
288
|
+
);
|
|
289
|
+
#endif
|
|
290
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_POLL
|
|
291
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_POLL
|
|
292
|
+
RustBuffer uniffi_dashshielded_fn_func_poll(RustBuffer alias, RustCallStatus *_Nonnull out_status
|
|
293
|
+
);
|
|
294
|
+
#endif
|
|
295
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_PROPOSE_TRANSFER
|
|
296
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_PROPOSE_TRANSFER
|
|
297
|
+
RustBuffer uniffi_dashshielded_fn_func_propose_transfer(RustBuffer alias, RustBuffer amount_credits, RustBuffer to_address, RustBuffer memo, RustCallStatus *_Nonnull out_status
|
|
298
|
+
);
|
|
299
|
+
#endif
|
|
300
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_SET_DOCUMENT_DIRECTORY
|
|
301
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_SET_DOCUMENT_DIRECTORY
|
|
302
|
+
void uniffi_dashshielded_fn_func_set_document_directory(RustBuffer path, RustCallStatus *_Nonnull out_status
|
|
303
|
+
);
|
|
304
|
+
#endif
|
|
305
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_START_SYNC
|
|
306
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_START_SYNC
|
|
307
|
+
void uniffi_dashshielded_fn_func_start_sync(RustBuffer alias, RustCallStatus *_Nonnull out_status
|
|
308
|
+
);
|
|
309
|
+
#endif
|
|
310
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_STOP
|
|
311
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_STOP
|
|
312
|
+
RustBuffer uniffi_dashshielded_fn_func_stop(RustBuffer alias, RustCallStatus *_Nonnull out_status
|
|
313
|
+
);
|
|
314
|
+
#endif
|
|
315
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_STOP_SYNC
|
|
316
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_STOP_SYNC
|
|
317
|
+
void uniffi_dashshielded_fn_func_stop_sync(RustBuffer alias, RustCallStatus *_Nonnull out_status
|
|
318
|
+
);
|
|
319
|
+
#endif
|
|
320
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_WARM_UP_PROVER
|
|
321
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_FN_FUNC_WARM_UP_PROVER
|
|
322
|
+
void uniffi_dashshielded_fn_func_warm_up_prover(RustCallStatus *_Nonnull out_status
|
|
323
|
+
|
|
324
|
+
);
|
|
325
|
+
#endif
|
|
326
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUSTBUFFER_ALLOC
|
|
327
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUSTBUFFER_ALLOC
|
|
328
|
+
RustBuffer ffi_dashshielded_rustbuffer_alloc(uint64_t size, RustCallStatus *_Nonnull out_status
|
|
329
|
+
);
|
|
330
|
+
#endif
|
|
331
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUSTBUFFER_FROM_BYTES
|
|
332
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUSTBUFFER_FROM_BYTES
|
|
333
|
+
RustBuffer ffi_dashshielded_rustbuffer_from_bytes(ForeignBytes bytes, RustCallStatus *_Nonnull out_status
|
|
334
|
+
);
|
|
335
|
+
#endif
|
|
336
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUSTBUFFER_FREE
|
|
337
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUSTBUFFER_FREE
|
|
338
|
+
void ffi_dashshielded_rustbuffer_free(RustBuffer buf, RustCallStatus *_Nonnull out_status
|
|
339
|
+
);
|
|
340
|
+
#endif
|
|
341
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUSTBUFFER_RESERVE
|
|
342
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUSTBUFFER_RESERVE
|
|
343
|
+
RustBuffer ffi_dashshielded_rustbuffer_reserve(RustBuffer buf, uint64_t additional, RustCallStatus *_Nonnull out_status
|
|
344
|
+
);
|
|
345
|
+
#endif
|
|
346
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_U8
|
|
347
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_U8
|
|
348
|
+
void ffi_dashshielded_rust_future_poll_u8(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
349
|
+
);
|
|
350
|
+
#endif
|
|
351
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_U8
|
|
352
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_U8
|
|
353
|
+
void ffi_dashshielded_rust_future_cancel_u8(uint64_t handle
|
|
354
|
+
);
|
|
355
|
+
#endif
|
|
356
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_U8
|
|
357
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_U8
|
|
358
|
+
void ffi_dashshielded_rust_future_free_u8(uint64_t handle
|
|
359
|
+
);
|
|
360
|
+
#endif
|
|
361
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_U8
|
|
362
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_U8
|
|
363
|
+
uint8_t ffi_dashshielded_rust_future_complete_u8(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
364
|
+
);
|
|
365
|
+
#endif
|
|
366
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_I8
|
|
367
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_I8
|
|
368
|
+
void ffi_dashshielded_rust_future_poll_i8(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
369
|
+
);
|
|
370
|
+
#endif
|
|
371
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_I8
|
|
372
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_I8
|
|
373
|
+
void ffi_dashshielded_rust_future_cancel_i8(uint64_t handle
|
|
374
|
+
);
|
|
375
|
+
#endif
|
|
376
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_I8
|
|
377
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_I8
|
|
378
|
+
void ffi_dashshielded_rust_future_free_i8(uint64_t handle
|
|
379
|
+
);
|
|
380
|
+
#endif
|
|
381
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_I8
|
|
382
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_I8
|
|
383
|
+
int8_t ffi_dashshielded_rust_future_complete_i8(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
384
|
+
);
|
|
385
|
+
#endif
|
|
386
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_U16
|
|
387
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_U16
|
|
388
|
+
void ffi_dashshielded_rust_future_poll_u16(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
389
|
+
);
|
|
390
|
+
#endif
|
|
391
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_U16
|
|
392
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_U16
|
|
393
|
+
void ffi_dashshielded_rust_future_cancel_u16(uint64_t handle
|
|
394
|
+
);
|
|
395
|
+
#endif
|
|
396
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_U16
|
|
397
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_U16
|
|
398
|
+
void ffi_dashshielded_rust_future_free_u16(uint64_t handle
|
|
399
|
+
);
|
|
400
|
+
#endif
|
|
401
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_U16
|
|
402
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_U16
|
|
403
|
+
uint16_t ffi_dashshielded_rust_future_complete_u16(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
404
|
+
);
|
|
405
|
+
#endif
|
|
406
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_I16
|
|
407
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_I16
|
|
408
|
+
void ffi_dashshielded_rust_future_poll_i16(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
409
|
+
);
|
|
410
|
+
#endif
|
|
411
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_I16
|
|
412
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_I16
|
|
413
|
+
void ffi_dashshielded_rust_future_cancel_i16(uint64_t handle
|
|
414
|
+
);
|
|
415
|
+
#endif
|
|
416
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_I16
|
|
417
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_I16
|
|
418
|
+
void ffi_dashshielded_rust_future_free_i16(uint64_t handle
|
|
419
|
+
);
|
|
420
|
+
#endif
|
|
421
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_I16
|
|
422
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_I16
|
|
423
|
+
int16_t ffi_dashshielded_rust_future_complete_i16(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
424
|
+
);
|
|
425
|
+
#endif
|
|
426
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_U32
|
|
427
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_U32
|
|
428
|
+
void ffi_dashshielded_rust_future_poll_u32(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
429
|
+
);
|
|
430
|
+
#endif
|
|
431
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_U32
|
|
432
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_U32
|
|
433
|
+
void ffi_dashshielded_rust_future_cancel_u32(uint64_t handle
|
|
434
|
+
);
|
|
435
|
+
#endif
|
|
436
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_U32
|
|
437
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_U32
|
|
438
|
+
void ffi_dashshielded_rust_future_free_u32(uint64_t handle
|
|
439
|
+
);
|
|
440
|
+
#endif
|
|
441
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_U32
|
|
442
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_U32
|
|
443
|
+
uint32_t ffi_dashshielded_rust_future_complete_u32(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
444
|
+
);
|
|
445
|
+
#endif
|
|
446
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_I32
|
|
447
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_I32
|
|
448
|
+
void ffi_dashshielded_rust_future_poll_i32(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
449
|
+
);
|
|
450
|
+
#endif
|
|
451
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_I32
|
|
452
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_I32
|
|
453
|
+
void ffi_dashshielded_rust_future_cancel_i32(uint64_t handle
|
|
454
|
+
);
|
|
455
|
+
#endif
|
|
456
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_I32
|
|
457
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_I32
|
|
458
|
+
void ffi_dashshielded_rust_future_free_i32(uint64_t handle
|
|
459
|
+
);
|
|
460
|
+
#endif
|
|
461
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_I32
|
|
462
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_I32
|
|
463
|
+
int32_t ffi_dashshielded_rust_future_complete_i32(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
464
|
+
);
|
|
465
|
+
#endif
|
|
466
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_U64
|
|
467
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_U64
|
|
468
|
+
void ffi_dashshielded_rust_future_poll_u64(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
469
|
+
);
|
|
470
|
+
#endif
|
|
471
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_U64
|
|
472
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_U64
|
|
473
|
+
void ffi_dashshielded_rust_future_cancel_u64(uint64_t handle
|
|
474
|
+
);
|
|
475
|
+
#endif
|
|
476
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_U64
|
|
477
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_U64
|
|
478
|
+
void ffi_dashshielded_rust_future_free_u64(uint64_t handle
|
|
479
|
+
);
|
|
480
|
+
#endif
|
|
481
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_U64
|
|
482
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_U64
|
|
483
|
+
uint64_t ffi_dashshielded_rust_future_complete_u64(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
484
|
+
);
|
|
485
|
+
#endif
|
|
486
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_I64
|
|
487
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_I64
|
|
488
|
+
void ffi_dashshielded_rust_future_poll_i64(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
489
|
+
);
|
|
490
|
+
#endif
|
|
491
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_I64
|
|
492
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_I64
|
|
493
|
+
void ffi_dashshielded_rust_future_cancel_i64(uint64_t handle
|
|
494
|
+
);
|
|
495
|
+
#endif
|
|
496
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_I64
|
|
497
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_I64
|
|
498
|
+
void ffi_dashshielded_rust_future_free_i64(uint64_t handle
|
|
499
|
+
);
|
|
500
|
+
#endif
|
|
501
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_I64
|
|
502
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_I64
|
|
503
|
+
int64_t ffi_dashshielded_rust_future_complete_i64(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
504
|
+
);
|
|
505
|
+
#endif
|
|
506
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_F32
|
|
507
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_F32
|
|
508
|
+
void ffi_dashshielded_rust_future_poll_f32(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
509
|
+
);
|
|
510
|
+
#endif
|
|
511
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_F32
|
|
512
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_F32
|
|
513
|
+
void ffi_dashshielded_rust_future_cancel_f32(uint64_t handle
|
|
514
|
+
);
|
|
515
|
+
#endif
|
|
516
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_F32
|
|
517
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_F32
|
|
518
|
+
void ffi_dashshielded_rust_future_free_f32(uint64_t handle
|
|
519
|
+
);
|
|
520
|
+
#endif
|
|
521
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_F32
|
|
522
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_F32
|
|
523
|
+
float ffi_dashshielded_rust_future_complete_f32(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
524
|
+
);
|
|
525
|
+
#endif
|
|
526
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_F64
|
|
527
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_F64
|
|
528
|
+
void ffi_dashshielded_rust_future_poll_f64(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
529
|
+
);
|
|
530
|
+
#endif
|
|
531
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_F64
|
|
532
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_F64
|
|
533
|
+
void ffi_dashshielded_rust_future_cancel_f64(uint64_t handle
|
|
534
|
+
);
|
|
535
|
+
#endif
|
|
536
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_F64
|
|
537
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_F64
|
|
538
|
+
void ffi_dashshielded_rust_future_free_f64(uint64_t handle
|
|
539
|
+
);
|
|
540
|
+
#endif
|
|
541
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_F64
|
|
542
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_F64
|
|
543
|
+
double ffi_dashshielded_rust_future_complete_f64(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
544
|
+
);
|
|
545
|
+
#endif
|
|
546
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_POINTER
|
|
547
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_POINTER
|
|
548
|
+
void ffi_dashshielded_rust_future_poll_pointer(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
549
|
+
);
|
|
550
|
+
#endif
|
|
551
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_POINTER
|
|
552
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_POINTER
|
|
553
|
+
void ffi_dashshielded_rust_future_cancel_pointer(uint64_t handle
|
|
554
|
+
);
|
|
555
|
+
#endif
|
|
556
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_POINTER
|
|
557
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_POINTER
|
|
558
|
+
void ffi_dashshielded_rust_future_free_pointer(uint64_t handle
|
|
559
|
+
);
|
|
560
|
+
#endif
|
|
561
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_POINTER
|
|
562
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_POINTER
|
|
563
|
+
void*_Nonnull ffi_dashshielded_rust_future_complete_pointer(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
564
|
+
);
|
|
565
|
+
#endif
|
|
566
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_RUST_BUFFER
|
|
567
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_RUST_BUFFER
|
|
568
|
+
void ffi_dashshielded_rust_future_poll_rust_buffer(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
569
|
+
);
|
|
570
|
+
#endif
|
|
571
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_RUST_BUFFER
|
|
572
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_RUST_BUFFER
|
|
573
|
+
void ffi_dashshielded_rust_future_cancel_rust_buffer(uint64_t handle
|
|
574
|
+
);
|
|
575
|
+
#endif
|
|
576
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_RUST_BUFFER
|
|
577
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_RUST_BUFFER
|
|
578
|
+
void ffi_dashshielded_rust_future_free_rust_buffer(uint64_t handle
|
|
579
|
+
);
|
|
580
|
+
#endif
|
|
581
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_RUST_BUFFER
|
|
582
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_RUST_BUFFER
|
|
583
|
+
RustBuffer ffi_dashshielded_rust_future_complete_rust_buffer(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
584
|
+
);
|
|
585
|
+
#endif
|
|
586
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_VOID
|
|
587
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_POLL_VOID
|
|
588
|
+
void ffi_dashshielded_rust_future_poll_void(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
589
|
+
);
|
|
590
|
+
#endif
|
|
591
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_VOID
|
|
592
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_CANCEL_VOID
|
|
593
|
+
void ffi_dashshielded_rust_future_cancel_void(uint64_t handle
|
|
594
|
+
);
|
|
595
|
+
#endif
|
|
596
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_VOID
|
|
597
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_FREE_VOID
|
|
598
|
+
void ffi_dashshielded_rust_future_free_void(uint64_t handle
|
|
599
|
+
);
|
|
600
|
+
#endif
|
|
601
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_VOID
|
|
602
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_RUST_FUTURE_COMPLETE_VOID
|
|
603
|
+
void ffi_dashshielded_rust_future_complete_void(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
604
|
+
);
|
|
605
|
+
#endif
|
|
606
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_CREATE_TRANSFER
|
|
607
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_CREATE_TRANSFER
|
|
608
|
+
uint16_t uniffi_dashshielded_checksum_func_create_transfer(void
|
|
609
|
+
|
|
610
|
+
);
|
|
611
|
+
#endif
|
|
612
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_DERIVE_SHIELDED_ADDRESS
|
|
613
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_DERIVE_SHIELDED_ADDRESS
|
|
614
|
+
uint16_t uniffi_dashshielded_checksum_func_derive_shielded_address(void
|
|
615
|
+
|
|
616
|
+
);
|
|
617
|
+
#endif
|
|
618
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_DERIVE_SHIELDED_ADDRESS_FROM_SEED
|
|
619
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_DERIVE_SHIELDED_ADDRESS_FROM_SEED
|
|
620
|
+
uint16_t uniffi_dashshielded_checksum_func_derive_shielded_address_from_seed(void
|
|
621
|
+
|
|
622
|
+
);
|
|
623
|
+
#endif
|
|
624
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_DERIVE_VIEWING_KEY
|
|
625
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_DERIVE_VIEWING_KEY
|
|
626
|
+
uint16_t uniffi_dashshielded_checksum_func_derive_viewing_key(void
|
|
627
|
+
|
|
628
|
+
);
|
|
629
|
+
#endif
|
|
630
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_INITIALIZE
|
|
631
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_INITIALIZE
|
|
632
|
+
uint16_t uniffi_dashshielded_checksum_func_initialize(void
|
|
633
|
+
|
|
634
|
+
);
|
|
635
|
+
#endif
|
|
636
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_IS_PROVER_READY
|
|
637
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_IS_PROVER_READY
|
|
638
|
+
uint16_t uniffi_dashshielded_checksum_func_is_prover_ready(void
|
|
639
|
+
|
|
640
|
+
);
|
|
641
|
+
#endif
|
|
642
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_IS_VALID_ADDRESS
|
|
643
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_IS_VALID_ADDRESS
|
|
644
|
+
uint16_t uniffi_dashshielded_checksum_func_is_valid_address(void
|
|
645
|
+
|
|
646
|
+
);
|
|
647
|
+
#endif
|
|
648
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_POLL
|
|
649
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_POLL
|
|
650
|
+
uint16_t uniffi_dashshielded_checksum_func_poll(void
|
|
651
|
+
|
|
652
|
+
);
|
|
653
|
+
#endif
|
|
654
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_PROPOSE_TRANSFER
|
|
655
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_PROPOSE_TRANSFER
|
|
656
|
+
uint16_t uniffi_dashshielded_checksum_func_propose_transfer(void
|
|
657
|
+
|
|
658
|
+
);
|
|
659
|
+
#endif
|
|
660
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_SET_DOCUMENT_DIRECTORY
|
|
661
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_SET_DOCUMENT_DIRECTORY
|
|
662
|
+
uint16_t uniffi_dashshielded_checksum_func_set_document_directory(void
|
|
663
|
+
|
|
664
|
+
);
|
|
665
|
+
#endif
|
|
666
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_START_SYNC
|
|
667
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_START_SYNC
|
|
668
|
+
uint16_t uniffi_dashshielded_checksum_func_start_sync(void
|
|
669
|
+
|
|
670
|
+
);
|
|
671
|
+
#endif
|
|
672
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_STOP
|
|
673
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_STOP
|
|
674
|
+
uint16_t uniffi_dashshielded_checksum_func_stop(void
|
|
675
|
+
|
|
676
|
+
);
|
|
677
|
+
#endif
|
|
678
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_STOP_SYNC
|
|
679
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_STOP_SYNC
|
|
680
|
+
uint16_t uniffi_dashshielded_checksum_func_stop_sync(void
|
|
681
|
+
|
|
682
|
+
);
|
|
683
|
+
#endif
|
|
684
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_WARM_UP_PROVER
|
|
685
|
+
#define UNIFFI_FFIDEF_UNIFFI_DASHSHIELDED_CHECKSUM_FUNC_WARM_UP_PROVER
|
|
686
|
+
uint16_t uniffi_dashshielded_checksum_func_warm_up_prover(void
|
|
687
|
+
|
|
688
|
+
);
|
|
689
|
+
#endif
|
|
690
|
+
#ifndef UNIFFI_FFIDEF_FFI_DASHSHIELDED_UNIFFI_CONTRACT_VERSION
|
|
691
|
+
#define UNIFFI_FFIDEF_FFI_DASHSHIELDED_UNIFFI_CONTRACT_VERSION
|
|
692
|
+
uint32_t ffi_dashshielded_uniffi_contract_version(void
|
|
693
|
+
|
|
694
|
+
);
|
|
695
|
+
#endif
|
|
696
|
+
|
|
Binary file
|