@apollohg/react-native-prose-editor 0.1.0

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.
Files changed (47) hide show
  1. package/LICENSE +160 -0
  2. package/README.md +143 -0
  3. package/android/build.gradle +39 -0
  4. package/android/src/main/assets/editor-icons/MaterialIcons.json +2236 -0
  5. package/android/src/main/assets/editor-icons/MaterialIcons.ttf +0 -0
  6. package/android/src/main/java/com/apollohg/editor/EditorAddons.kt +131 -0
  7. package/android/src/main/java/com/apollohg/editor/EditorEditText.kt +1057 -0
  8. package/android/src/main/java/com/apollohg/editor/EditorHeightBehavior.kt +14 -0
  9. package/android/src/main/java/com/apollohg/editor/EditorInputConnection.kt +191 -0
  10. package/android/src/main/java/com/apollohg/editor/EditorTheme.kt +325 -0
  11. package/android/src/main/java/com/apollohg/editor/NativeEditorExpoView.kt +647 -0
  12. package/android/src/main/java/com/apollohg/editor/NativeEditorModule.kt +257 -0
  13. package/android/src/main/java/com/apollohg/editor/NativeToolbar.kt +714 -0
  14. package/android/src/main/java/com/apollohg/editor/PositionBridge.kt +76 -0
  15. package/android/src/main/java/com/apollohg/editor/RenderBridge.kt +1044 -0
  16. package/android/src/main/java/com/apollohg/editor/RichTextEditorView.kt +211 -0
  17. package/expo-module.config.json +9 -0
  18. package/ios/EditorAddons.swift +228 -0
  19. package/ios/EditorCore.xcframework/Info.plist +44 -0
  20. package/ios/EditorCore.xcframework/ios-arm64/libeditor_core.a +0 -0
  21. package/ios/EditorCore.xcframework/ios-arm64_x86_64-simulator/libeditor_core.a +0 -0
  22. package/ios/EditorLayoutManager.swift +254 -0
  23. package/ios/EditorTheme.swift +372 -0
  24. package/ios/Generated_editor_core.swift +1143 -0
  25. package/ios/NativeEditorExpoView.swift +1417 -0
  26. package/ios/NativeEditorModule.swift +263 -0
  27. package/ios/PositionBridge.swift +278 -0
  28. package/ios/ReactNativeProseEditor.podspec +49 -0
  29. package/ios/RenderBridge.swift +825 -0
  30. package/ios/RichTextEditorView.swift +1559 -0
  31. package/ios/editor_coreFFI/editor_coreFFI.h +1014 -0
  32. package/ios/editor_coreFFI/module.modulemap +7 -0
  33. package/ios/editor_coreFFI.h +904 -0
  34. package/ios/editor_coreFFI.modulemap +7 -0
  35. package/package.json +66 -0
  36. package/rust/android/arm64-v8a/libeditor_core.so +0 -0
  37. package/rust/android/armeabi-v7a/libeditor_core.so +0 -0
  38. package/rust/android/x86_64/libeditor_core.so +0 -0
  39. package/rust/bindings/kotlin/uniffi/editor_core/editor_core.kt +2014 -0
  40. package/src/EditorTheme.ts +130 -0
  41. package/src/EditorToolbar.tsx +620 -0
  42. package/src/NativeEditorBridge.ts +607 -0
  43. package/src/NativeRichTextEditor.tsx +951 -0
  44. package/src/addons.ts +158 -0
  45. package/src/index.ts +63 -0
  46. package/src/schemas.ts +153 -0
  47. package/src/useNativeEditor.ts +173 -0
@@ -0,0 +1,1014 @@
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_EDITOR_CORE_FN_FUNC_EDITOR_CAN_REDO
255
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_CAN_REDO
256
+ int8_t uniffi_editor_core_fn_func_editor_can_redo(uint64_t id, RustCallStatus *_Nonnull out_status
257
+ );
258
+ #endif
259
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_CAN_UNDO
260
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_CAN_UNDO
261
+ int8_t uniffi_editor_core_fn_func_editor_can_undo(uint64_t id, RustCallStatus *_Nonnull out_status
262
+ );
263
+ #endif
264
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_CORE_VERSION
265
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_CORE_VERSION
266
+ RustBuffer uniffi_editor_core_fn_func_editor_core_version(RustCallStatus *_Nonnull out_status
267
+
268
+ );
269
+ #endif
270
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_CREATE
271
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_CREATE
272
+ uint64_t uniffi_editor_core_fn_func_editor_create(RustBuffer config_json, RustCallStatus *_Nonnull out_status
273
+ );
274
+ #endif
275
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DELETE_AND_SPLIT_SCALAR
276
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DELETE_AND_SPLIT_SCALAR
277
+ RustBuffer uniffi_editor_core_fn_func_editor_delete_and_split_scalar(uint64_t id, uint32_t scalar_from, uint32_t scalar_to, RustCallStatus *_Nonnull out_status
278
+ );
279
+ #endif
280
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DELETE_RANGE
281
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DELETE_RANGE
282
+ RustBuffer uniffi_editor_core_fn_func_editor_delete_range(uint64_t id, uint32_t from, uint32_t to, RustCallStatus *_Nonnull out_status
283
+ );
284
+ #endif
285
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DELETE_SCALAR_RANGE
286
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DELETE_SCALAR_RANGE
287
+ RustBuffer uniffi_editor_core_fn_func_editor_delete_scalar_range(uint64_t id, uint32_t scalar_from, uint32_t scalar_to, RustCallStatus *_Nonnull out_status
288
+ );
289
+ #endif
290
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DESTROY
291
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DESTROY
292
+ void uniffi_editor_core_fn_func_editor_destroy(uint64_t id, RustCallStatus *_Nonnull out_status
293
+ );
294
+ #endif
295
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DOC_TO_SCALAR
296
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DOC_TO_SCALAR
297
+ uint32_t uniffi_editor_core_fn_func_editor_doc_to_scalar(uint64_t id, uint32_t doc_pos, RustCallStatus *_Nonnull out_status
298
+ );
299
+ #endif
300
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_GET_CURRENT_STATE
301
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_GET_CURRENT_STATE
302
+ RustBuffer uniffi_editor_core_fn_func_editor_get_current_state(uint64_t id, RustCallStatus *_Nonnull out_status
303
+ );
304
+ #endif
305
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_GET_HTML
306
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_GET_HTML
307
+ RustBuffer uniffi_editor_core_fn_func_editor_get_html(uint64_t id, RustCallStatus *_Nonnull out_status
308
+ );
309
+ #endif
310
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_GET_JSON
311
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_GET_JSON
312
+ RustBuffer uniffi_editor_core_fn_func_editor_get_json(uint64_t id, RustCallStatus *_Nonnull out_status
313
+ );
314
+ #endif
315
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_GET_SELECTION
316
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_GET_SELECTION
317
+ RustBuffer uniffi_editor_core_fn_func_editor_get_selection(uint64_t id, RustCallStatus *_Nonnull out_status
318
+ );
319
+ #endif
320
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INDENT_LIST_ITEM
321
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INDENT_LIST_ITEM
322
+ RustBuffer uniffi_editor_core_fn_func_editor_indent_list_item(uint64_t id, RustCallStatus *_Nonnull out_status
323
+ );
324
+ #endif
325
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INDENT_LIST_ITEM_AT_SELECTION_SCALAR
326
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INDENT_LIST_ITEM_AT_SELECTION_SCALAR
327
+ RustBuffer uniffi_editor_core_fn_func_editor_indent_list_item_at_selection_scalar(uint64_t id, uint32_t scalar_anchor, uint32_t scalar_head, RustCallStatus *_Nonnull out_status
328
+ );
329
+ #endif
330
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_CONTENT_HTML
331
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_CONTENT_HTML
332
+ RustBuffer uniffi_editor_core_fn_func_editor_insert_content_html(uint64_t id, RustBuffer html, RustCallStatus *_Nonnull out_status
333
+ );
334
+ #endif
335
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_CONTENT_JSON
336
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_CONTENT_JSON
337
+ RustBuffer uniffi_editor_core_fn_func_editor_insert_content_json(uint64_t id, RustBuffer json, RustCallStatus *_Nonnull out_status
338
+ );
339
+ #endif
340
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_CONTENT_JSON_AT_SELECTION_SCALAR
341
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_CONTENT_JSON_AT_SELECTION_SCALAR
342
+ RustBuffer uniffi_editor_core_fn_func_editor_insert_content_json_at_selection_scalar(uint64_t id, uint32_t scalar_anchor, uint32_t scalar_head, RustBuffer json, RustCallStatus *_Nonnull out_status
343
+ );
344
+ #endif
345
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_NODE
346
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_NODE
347
+ RustBuffer uniffi_editor_core_fn_func_editor_insert_node(uint64_t id, RustBuffer node_type, RustCallStatus *_Nonnull out_status
348
+ );
349
+ #endif
350
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_NODE_AT_SELECTION_SCALAR
351
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_NODE_AT_SELECTION_SCALAR
352
+ RustBuffer uniffi_editor_core_fn_func_editor_insert_node_at_selection_scalar(uint64_t id, uint32_t scalar_anchor, uint32_t scalar_head, RustBuffer node_type, RustCallStatus *_Nonnull out_status
353
+ );
354
+ #endif
355
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_TEXT
356
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_TEXT
357
+ RustBuffer uniffi_editor_core_fn_func_editor_insert_text(uint64_t id, uint32_t pos, RustBuffer text, RustCallStatus *_Nonnull out_status
358
+ );
359
+ #endif
360
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_TEXT_SCALAR
361
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_TEXT_SCALAR
362
+ RustBuffer uniffi_editor_core_fn_func_editor_insert_text_scalar(uint64_t id, uint32_t scalar_pos, RustBuffer text, RustCallStatus *_Nonnull out_status
363
+ );
364
+ #endif
365
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_OUTDENT_LIST_ITEM
366
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_OUTDENT_LIST_ITEM
367
+ RustBuffer uniffi_editor_core_fn_func_editor_outdent_list_item(uint64_t id, RustCallStatus *_Nonnull out_status
368
+ );
369
+ #endif
370
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_OUTDENT_LIST_ITEM_AT_SELECTION_SCALAR
371
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_OUTDENT_LIST_ITEM_AT_SELECTION_SCALAR
372
+ RustBuffer uniffi_editor_core_fn_func_editor_outdent_list_item_at_selection_scalar(uint64_t id, uint32_t scalar_anchor, uint32_t scalar_head, RustCallStatus *_Nonnull out_status
373
+ );
374
+ #endif
375
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_REDO
376
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_REDO
377
+ RustBuffer uniffi_editor_core_fn_func_editor_redo(uint64_t id, RustCallStatus *_Nonnull out_status
378
+ );
379
+ #endif
380
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_REPLACE_HTML
381
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_REPLACE_HTML
382
+ RustBuffer uniffi_editor_core_fn_func_editor_replace_html(uint64_t id, RustBuffer html, RustCallStatus *_Nonnull out_status
383
+ );
384
+ #endif
385
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_REPLACE_JSON
386
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_REPLACE_JSON
387
+ RustBuffer uniffi_editor_core_fn_func_editor_replace_json(uint64_t id, RustBuffer json, RustCallStatus *_Nonnull out_status
388
+ );
389
+ #endif
390
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_REPLACE_SELECTION_TEXT
391
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_REPLACE_SELECTION_TEXT
392
+ RustBuffer uniffi_editor_core_fn_func_editor_replace_selection_text(uint64_t id, RustBuffer text, RustCallStatus *_Nonnull out_status
393
+ );
394
+ #endif
395
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_REPLACE_TEXT_SCALAR
396
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_REPLACE_TEXT_SCALAR
397
+ RustBuffer uniffi_editor_core_fn_func_editor_replace_text_scalar(uint64_t id, uint32_t scalar_from, uint32_t scalar_to, RustBuffer text, RustCallStatus *_Nonnull out_status
398
+ );
399
+ #endif
400
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SCALAR_TO_DOC
401
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SCALAR_TO_DOC
402
+ uint32_t uniffi_editor_core_fn_func_editor_scalar_to_doc(uint64_t id, uint32_t scalar, RustCallStatus *_Nonnull out_status
403
+ );
404
+ #endif
405
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_HTML
406
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_HTML
407
+ RustBuffer uniffi_editor_core_fn_func_editor_set_html(uint64_t id, RustBuffer html, RustCallStatus *_Nonnull out_status
408
+ );
409
+ #endif
410
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_JSON
411
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_JSON
412
+ RustBuffer uniffi_editor_core_fn_func_editor_set_json(uint64_t id, RustBuffer json, RustCallStatus *_Nonnull out_status
413
+ );
414
+ #endif
415
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_SELECTION
416
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_SELECTION
417
+ void uniffi_editor_core_fn_func_editor_set_selection(uint64_t id, uint32_t anchor, uint32_t head, RustCallStatus *_Nonnull out_status
418
+ );
419
+ #endif
420
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_SELECTION_SCALAR
421
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_SELECTION_SCALAR
422
+ void uniffi_editor_core_fn_func_editor_set_selection_scalar(uint64_t id, uint32_t scalar_anchor, uint32_t scalar_head, RustCallStatus *_Nonnull out_status
423
+ );
424
+ #endif
425
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SPLIT_BLOCK
426
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SPLIT_BLOCK
427
+ RustBuffer uniffi_editor_core_fn_func_editor_split_block(uint64_t id, uint32_t pos, RustCallStatus *_Nonnull out_status
428
+ );
429
+ #endif
430
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SPLIT_BLOCK_SCALAR
431
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SPLIT_BLOCK_SCALAR
432
+ RustBuffer uniffi_editor_core_fn_func_editor_split_block_scalar(uint64_t id, uint32_t scalar_pos, RustCallStatus *_Nonnull out_status
433
+ );
434
+ #endif
435
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_TOGGLE_MARK
436
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_TOGGLE_MARK
437
+ RustBuffer uniffi_editor_core_fn_func_editor_toggle_mark(uint64_t id, RustBuffer mark_name, RustCallStatus *_Nonnull out_status
438
+ );
439
+ #endif
440
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_TOGGLE_MARK_AT_SELECTION_SCALAR
441
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_TOGGLE_MARK_AT_SELECTION_SCALAR
442
+ RustBuffer uniffi_editor_core_fn_func_editor_toggle_mark_at_selection_scalar(uint64_t id, uint32_t scalar_anchor, uint32_t scalar_head, RustBuffer mark_name, RustCallStatus *_Nonnull out_status
443
+ );
444
+ #endif
445
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_UNDO
446
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_UNDO
447
+ RustBuffer uniffi_editor_core_fn_func_editor_undo(uint64_t id, RustCallStatus *_Nonnull out_status
448
+ );
449
+ #endif
450
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_UNWRAP_FROM_LIST
451
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_UNWRAP_FROM_LIST
452
+ RustBuffer uniffi_editor_core_fn_func_editor_unwrap_from_list(uint64_t id, RustCallStatus *_Nonnull out_status
453
+ );
454
+ #endif
455
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_UNWRAP_FROM_LIST_AT_SELECTION_SCALAR
456
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_UNWRAP_FROM_LIST_AT_SELECTION_SCALAR
457
+ RustBuffer uniffi_editor_core_fn_func_editor_unwrap_from_list_at_selection_scalar(uint64_t id, uint32_t scalar_anchor, uint32_t scalar_head, RustCallStatus *_Nonnull out_status
458
+ );
459
+ #endif
460
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_WRAP_IN_LIST
461
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_WRAP_IN_LIST
462
+ RustBuffer uniffi_editor_core_fn_func_editor_wrap_in_list(uint64_t id, RustBuffer list_type, RustCallStatus *_Nonnull out_status
463
+ );
464
+ #endif
465
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_WRAP_IN_LIST_AT_SELECTION_SCALAR
466
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_WRAP_IN_LIST_AT_SELECTION_SCALAR
467
+ RustBuffer uniffi_editor_core_fn_func_editor_wrap_in_list_at_selection_scalar(uint64_t id, uint32_t scalar_anchor, uint32_t scalar_head, RustBuffer list_type, RustCallStatus *_Nonnull out_status
468
+ );
469
+ #endif
470
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_ALLOC
471
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_ALLOC
472
+ RustBuffer ffi_editor_core_rustbuffer_alloc(uint64_t size, RustCallStatus *_Nonnull out_status
473
+ );
474
+ #endif
475
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_FROM_BYTES
476
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_FROM_BYTES
477
+ RustBuffer ffi_editor_core_rustbuffer_from_bytes(ForeignBytes bytes, RustCallStatus *_Nonnull out_status
478
+ );
479
+ #endif
480
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_FREE
481
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_FREE
482
+ void ffi_editor_core_rustbuffer_free(RustBuffer buf, RustCallStatus *_Nonnull out_status
483
+ );
484
+ #endif
485
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_RESERVE
486
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_RESERVE
487
+ RustBuffer ffi_editor_core_rustbuffer_reserve(RustBuffer buf, uint64_t additional, RustCallStatus *_Nonnull out_status
488
+ );
489
+ #endif
490
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U8
491
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U8
492
+ void ffi_editor_core_rust_future_poll_u8(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
493
+ );
494
+ #endif
495
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U8
496
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U8
497
+ void ffi_editor_core_rust_future_cancel_u8(uint64_t handle
498
+ );
499
+ #endif
500
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U8
501
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U8
502
+ void ffi_editor_core_rust_future_free_u8(uint64_t handle
503
+ );
504
+ #endif
505
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U8
506
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U8
507
+ uint8_t ffi_editor_core_rust_future_complete_u8(uint64_t handle, RustCallStatus *_Nonnull out_status
508
+ );
509
+ #endif
510
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I8
511
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I8
512
+ void ffi_editor_core_rust_future_poll_i8(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
513
+ );
514
+ #endif
515
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I8
516
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I8
517
+ void ffi_editor_core_rust_future_cancel_i8(uint64_t handle
518
+ );
519
+ #endif
520
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I8
521
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I8
522
+ void ffi_editor_core_rust_future_free_i8(uint64_t handle
523
+ );
524
+ #endif
525
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I8
526
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I8
527
+ int8_t ffi_editor_core_rust_future_complete_i8(uint64_t handle, RustCallStatus *_Nonnull out_status
528
+ );
529
+ #endif
530
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U16
531
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U16
532
+ void ffi_editor_core_rust_future_poll_u16(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
533
+ );
534
+ #endif
535
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U16
536
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U16
537
+ void ffi_editor_core_rust_future_cancel_u16(uint64_t handle
538
+ );
539
+ #endif
540
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U16
541
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U16
542
+ void ffi_editor_core_rust_future_free_u16(uint64_t handle
543
+ );
544
+ #endif
545
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U16
546
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U16
547
+ uint16_t ffi_editor_core_rust_future_complete_u16(uint64_t handle, RustCallStatus *_Nonnull out_status
548
+ );
549
+ #endif
550
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I16
551
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I16
552
+ void ffi_editor_core_rust_future_poll_i16(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
553
+ );
554
+ #endif
555
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I16
556
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I16
557
+ void ffi_editor_core_rust_future_cancel_i16(uint64_t handle
558
+ );
559
+ #endif
560
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I16
561
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I16
562
+ void ffi_editor_core_rust_future_free_i16(uint64_t handle
563
+ );
564
+ #endif
565
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I16
566
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I16
567
+ int16_t ffi_editor_core_rust_future_complete_i16(uint64_t handle, RustCallStatus *_Nonnull out_status
568
+ );
569
+ #endif
570
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U32
571
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U32
572
+ void ffi_editor_core_rust_future_poll_u32(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
573
+ );
574
+ #endif
575
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U32
576
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U32
577
+ void ffi_editor_core_rust_future_cancel_u32(uint64_t handle
578
+ );
579
+ #endif
580
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U32
581
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U32
582
+ void ffi_editor_core_rust_future_free_u32(uint64_t handle
583
+ );
584
+ #endif
585
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U32
586
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U32
587
+ uint32_t ffi_editor_core_rust_future_complete_u32(uint64_t handle, RustCallStatus *_Nonnull out_status
588
+ );
589
+ #endif
590
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I32
591
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I32
592
+ void ffi_editor_core_rust_future_poll_i32(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
593
+ );
594
+ #endif
595
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I32
596
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I32
597
+ void ffi_editor_core_rust_future_cancel_i32(uint64_t handle
598
+ );
599
+ #endif
600
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I32
601
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I32
602
+ void ffi_editor_core_rust_future_free_i32(uint64_t handle
603
+ );
604
+ #endif
605
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I32
606
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I32
607
+ int32_t ffi_editor_core_rust_future_complete_i32(uint64_t handle, RustCallStatus *_Nonnull out_status
608
+ );
609
+ #endif
610
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U64
611
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U64
612
+ void ffi_editor_core_rust_future_poll_u64(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
613
+ );
614
+ #endif
615
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U64
616
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U64
617
+ void ffi_editor_core_rust_future_cancel_u64(uint64_t handle
618
+ );
619
+ #endif
620
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U64
621
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U64
622
+ void ffi_editor_core_rust_future_free_u64(uint64_t handle
623
+ );
624
+ #endif
625
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U64
626
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U64
627
+ uint64_t ffi_editor_core_rust_future_complete_u64(uint64_t handle, RustCallStatus *_Nonnull out_status
628
+ );
629
+ #endif
630
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I64
631
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I64
632
+ void ffi_editor_core_rust_future_poll_i64(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
633
+ );
634
+ #endif
635
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I64
636
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I64
637
+ void ffi_editor_core_rust_future_cancel_i64(uint64_t handle
638
+ );
639
+ #endif
640
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I64
641
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I64
642
+ void ffi_editor_core_rust_future_free_i64(uint64_t handle
643
+ );
644
+ #endif
645
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I64
646
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I64
647
+ int64_t ffi_editor_core_rust_future_complete_i64(uint64_t handle, RustCallStatus *_Nonnull out_status
648
+ );
649
+ #endif
650
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_F32
651
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_F32
652
+ void ffi_editor_core_rust_future_poll_f32(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
653
+ );
654
+ #endif
655
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_F32
656
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_F32
657
+ void ffi_editor_core_rust_future_cancel_f32(uint64_t handle
658
+ );
659
+ #endif
660
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_F32
661
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_F32
662
+ void ffi_editor_core_rust_future_free_f32(uint64_t handle
663
+ );
664
+ #endif
665
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_F32
666
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_F32
667
+ float ffi_editor_core_rust_future_complete_f32(uint64_t handle, RustCallStatus *_Nonnull out_status
668
+ );
669
+ #endif
670
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_F64
671
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_F64
672
+ void ffi_editor_core_rust_future_poll_f64(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
673
+ );
674
+ #endif
675
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_F64
676
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_F64
677
+ void ffi_editor_core_rust_future_cancel_f64(uint64_t handle
678
+ );
679
+ #endif
680
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_F64
681
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_F64
682
+ void ffi_editor_core_rust_future_free_f64(uint64_t handle
683
+ );
684
+ #endif
685
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_F64
686
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_F64
687
+ double ffi_editor_core_rust_future_complete_f64(uint64_t handle, RustCallStatus *_Nonnull out_status
688
+ );
689
+ #endif
690
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_POINTER
691
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_POINTER
692
+ void ffi_editor_core_rust_future_poll_pointer(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
693
+ );
694
+ #endif
695
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_POINTER
696
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_POINTER
697
+ void ffi_editor_core_rust_future_cancel_pointer(uint64_t handle
698
+ );
699
+ #endif
700
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_POINTER
701
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_POINTER
702
+ void ffi_editor_core_rust_future_free_pointer(uint64_t handle
703
+ );
704
+ #endif
705
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_POINTER
706
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_POINTER
707
+ void*_Nonnull ffi_editor_core_rust_future_complete_pointer(uint64_t handle, RustCallStatus *_Nonnull out_status
708
+ );
709
+ #endif
710
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_RUST_BUFFER
711
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_RUST_BUFFER
712
+ void ffi_editor_core_rust_future_poll_rust_buffer(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
713
+ );
714
+ #endif
715
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_RUST_BUFFER
716
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_RUST_BUFFER
717
+ void ffi_editor_core_rust_future_cancel_rust_buffer(uint64_t handle
718
+ );
719
+ #endif
720
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_RUST_BUFFER
721
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_RUST_BUFFER
722
+ void ffi_editor_core_rust_future_free_rust_buffer(uint64_t handle
723
+ );
724
+ #endif
725
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_RUST_BUFFER
726
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_RUST_BUFFER
727
+ RustBuffer ffi_editor_core_rust_future_complete_rust_buffer(uint64_t handle, RustCallStatus *_Nonnull out_status
728
+ );
729
+ #endif
730
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_VOID
731
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_VOID
732
+ void ffi_editor_core_rust_future_poll_void(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
733
+ );
734
+ #endif
735
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_VOID
736
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_VOID
737
+ void ffi_editor_core_rust_future_cancel_void(uint64_t handle
738
+ );
739
+ #endif
740
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_VOID
741
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_VOID
742
+ void ffi_editor_core_rust_future_free_void(uint64_t handle
743
+ );
744
+ #endif
745
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_VOID
746
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_VOID
747
+ void ffi_editor_core_rust_future_complete_void(uint64_t handle, RustCallStatus *_Nonnull out_status
748
+ );
749
+ #endif
750
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CAN_REDO
751
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CAN_REDO
752
+ uint16_t uniffi_editor_core_checksum_func_editor_can_redo(void
753
+
754
+ );
755
+ #endif
756
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CAN_UNDO
757
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CAN_UNDO
758
+ uint16_t uniffi_editor_core_checksum_func_editor_can_undo(void
759
+
760
+ );
761
+ #endif
762
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CORE_VERSION
763
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CORE_VERSION
764
+ uint16_t uniffi_editor_core_checksum_func_editor_core_version(void
765
+
766
+ );
767
+ #endif
768
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CREATE
769
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CREATE
770
+ uint16_t uniffi_editor_core_checksum_func_editor_create(void
771
+
772
+ );
773
+ #endif
774
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_AND_SPLIT_SCALAR
775
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_AND_SPLIT_SCALAR
776
+ uint16_t uniffi_editor_core_checksum_func_editor_delete_and_split_scalar(void
777
+
778
+ );
779
+ #endif
780
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_RANGE
781
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_RANGE
782
+ uint16_t uniffi_editor_core_checksum_func_editor_delete_range(void
783
+
784
+ );
785
+ #endif
786
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_SCALAR_RANGE
787
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_SCALAR_RANGE
788
+ uint16_t uniffi_editor_core_checksum_func_editor_delete_scalar_range(void
789
+
790
+ );
791
+ #endif
792
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DESTROY
793
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DESTROY
794
+ uint16_t uniffi_editor_core_checksum_func_editor_destroy(void
795
+
796
+ );
797
+ #endif
798
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DOC_TO_SCALAR
799
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DOC_TO_SCALAR
800
+ uint16_t uniffi_editor_core_checksum_func_editor_doc_to_scalar(void
801
+
802
+ );
803
+ #endif
804
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_CURRENT_STATE
805
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_CURRENT_STATE
806
+ uint16_t uniffi_editor_core_checksum_func_editor_get_current_state(void
807
+
808
+ );
809
+ #endif
810
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_HTML
811
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_HTML
812
+ uint16_t uniffi_editor_core_checksum_func_editor_get_html(void
813
+
814
+ );
815
+ #endif
816
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_JSON
817
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_JSON
818
+ uint16_t uniffi_editor_core_checksum_func_editor_get_json(void
819
+
820
+ );
821
+ #endif
822
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_SELECTION
823
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_SELECTION
824
+ uint16_t uniffi_editor_core_checksum_func_editor_get_selection(void
825
+
826
+ );
827
+ #endif
828
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INDENT_LIST_ITEM
829
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INDENT_LIST_ITEM
830
+ uint16_t uniffi_editor_core_checksum_func_editor_indent_list_item(void
831
+
832
+ );
833
+ #endif
834
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INDENT_LIST_ITEM_AT_SELECTION_SCALAR
835
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INDENT_LIST_ITEM_AT_SELECTION_SCALAR
836
+ uint16_t uniffi_editor_core_checksum_func_editor_indent_list_item_at_selection_scalar(void
837
+
838
+ );
839
+ #endif
840
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_CONTENT_HTML
841
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_CONTENT_HTML
842
+ uint16_t uniffi_editor_core_checksum_func_editor_insert_content_html(void
843
+
844
+ );
845
+ #endif
846
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_CONTENT_JSON
847
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_CONTENT_JSON
848
+ uint16_t uniffi_editor_core_checksum_func_editor_insert_content_json(void
849
+
850
+ );
851
+ #endif
852
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_CONTENT_JSON_AT_SELECTION_SCALAR
853
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_CONTENT_JSON_AT_SELECTION_SCALAR
854
+ uint16_t uniffi_editor_core_checksum_func_editor_insert_content_json_at_selection_scalar(void
855
+
856
+ );
857
+ #endif
858
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_NODE
859
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_NODE
860
+ uint16_t uniffi_editor_core_checksum_func_editor_insert_node(void
861
+
862
+ );
863
+ #endif
864
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_NODE_AT_SELECTION_SCALAR
865
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_NODE_AT_SELECTION_SCALAR
866
+ uint16_t uniffi_editor_core_checksum_func_editor_insert_node_at_selection_scalar(void
867
+
868
+ );
869
+ #endif
870
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_TEXT
871
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_TEXT
872
+ uint16_t uniffi_editor_core_checksum_func_editor_insert_text(void
873
+
874
+ );
875
+ #endif
876
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_TEXT_SCALAR
877
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_TEXT_SCALAR
878
+ uint16_t uniffi_editor_core_checksum_func_editor_insert_text_scalar(void
879
+
880
+ );
881
+ #endif
882
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_OUTDENT_LIST_ITEM
883
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_OUTDENT_LIST_ITEM
884
+ uint16_t uniffi_editor_core_checksum_func_editor_outdent_list_item(void
885
+
886
+ );
887
+ #endif
888
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_OUTDENT_LIST_ITEM_AT_SELECTION_SCALAR
889
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_OUTDENT_LIST_ITEM_AT_SELECTION_SCALAR
890
+ uint16_t uniffi_editor_core_checksum_func_editor_outdent_list_item_at_selection_scalar(void
891
+
892
+ );
893
+ #endif
894
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REDO
895
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REDO
896
+ uint16_t uniffi_editor_core_checksum_func_editor_redo(void
897
+
898
+ );
899
+ #endif
900
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_HTML
901
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_HTML
902
+ uint16_t uniffi_editor_core_checksum_func_editor_replace_html(void
903
+
904
+ );
905
+ #endif
906
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_JSON
907
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_JSON
908
+ uint16_t uniffi_editor_core_checksum_func_editor_replace_json(void
909
+
910
+ );
911
+ #endif
912
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_SELECTION_TEXT
913
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_SELECTION_TEXT
914
+ uint16_t uniffi_editor_core_checksum_func_editor_replace_selection_text(void
915
+
916
+ );
917
+ #endif
918
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_TEXT_SCALAR
919
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_TEXT_SCALAR
920
+ uint16_t uniffi_editor_core_checksum_func_editor_replace_text_scalar(void
921
+
922
+ );
923
+ #endif
924
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SCALAR_TO_DOC
925
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SCALAR_TO_DOC
926
+ uint16_t uniffi_editor_core_checksum_func_editor_scalar_to_doc(void
927
+
928
+ );
929
+ #endif
930
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_HTML
931
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_HTML
932
+ uint16_t uniffi_editor_core_checksum_func_editor_set_html(void
933
+
934
+ );
935
+ #endif
936
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_JSON
937
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_JSON
938
+ uint16_t uniffi_editor_core_checksum_func_editor_set_json(void
939
+
940
+ );
941
+ #endif
942
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_SELECTION
943
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_SELECTION
944
+ uint16_t uniffi_editor_core_checksum_func_editor_set_selection(void
945
+
946
+ );
947
+ #endif
948
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_SELECTION_SCALAR
949
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_SELECTION_SCALAR
950
+ uint16_t uniffi_editor_core_checksum_func_editor_set_selection_scalar(void
951
+
952
+ );
953
+ #endif
954
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SPLIT_BLOCK
955
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SPLIT_BLOCK
956
+ uint16_t uniffi_editor_core_checksum_func_editor_split_block(void
957
+
958
+ );
959
+ #endif
960
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SPLIT_BLOCK_SCALAR
961
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SPLIT_BLOCK_SCALAR
962
+ uint16_t uniffi_editor_core_checksum_func_editor_split_block_scalar(void
963
+
964
+ );
965
+ #endif
966
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_MARK
967
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_MARK
968
+ uint16_t uniffi_editor_core_checksum_func_editor_toggle_mark(void
969
+
970
+ );
971
+ #endif
972
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_MARK_AT_SELECTION_SCALAR
973
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_MARK_AT_SELECTION_SCALAR
974
+ uint16_t uniffi_editor_core_checksum_func_editor_toggle_mark_at_selection_scalar(void
975
+
976
+ );
977
+ #endif
978
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNDO
979
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNDO
980
+ uint16_t uniffi_editor_core_checksum_func_editor_undo(void
981
+
982
+ );
983
+ #endif
984
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNWRAP_FROM_LIST
985
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNWRAP_FROM_LIST
986
+ uint16_t uniffi_editor_core_checksum_func_editor_unwrap_from_list(void
987
+
988
+ );
989
+ #endif
990
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNWRAP_FROM_LIST_AT_SELECTION_SCALAR
991
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNWRAP_FROM_LIST_AT_SELECTION_SCALAR
992
+ uint16_t uniffi_editor_core_checksum_func_editor_unwrap_from_list_at_selection_scalar(void
993
+
994
+ );
995
+ #endif
996
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_WRAP_IN_LIST
997
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_WRAP_IN_LIST
998
+ uint16_t uniffi_editor_core_checksum_func_editor_wrap_in_list(void
999
+
1000
+ );
1001
+ #endif
1002
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_WRAP_IN_LIST_AT_SELECTION_SCALAR
1003
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_WRAP_IN_LIST_AT_SELECTION_SCALAR
1004
+ uint16_t uniffi_editor_core_checksum_func_editor_wrap_in_list_at_selection_scalar(void
1005
+
1006
+ );
1007
+ #endif
1008
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_UNIFFI_CONTRACT_VERSION
1009
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_UNIFFI_CONTRACT_VERSION
1010
+ uint32_t ffi_editor_core_uniffi_contract_version(void
1011
+
1012
+ );
1013
+ #endif
1014
+