@openeditor/react-native-prose-editor 0.0.2

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 (91) hide show
  1. package/LICENSE +160 -0
  2. package/README.md +180 -0
  3. package/android/build.gradle +69 -0
  4. package/android/consumer-rules.pro +18 -0
  5. package/android/src/androidTest/AndroidManifest.xml +8 -0
  6. package/android/src/androidTest/java/com/apollohg/editor/MeasureHeightInstrumentedTest.kt +53 -0
  7. package/android/src/androidTest/java/com/apollohg/editor/NativeDeviceCollaborationInitialSyncTest.kt +241 -0
  8. package/android/src/androidTest/java/com/apollohg/editor/NativeDeviceImeRegressionTest.kt +338 -0
  9. package/android/src/androidTest/java/com/apollohg/editor/NativeDeviceOutsideTapTest.kt +789 -0
  10. package/android/src/androidTest/java/com/apollohg/editor/NativeDevicePerformanceTest.kt +350 -0
  11. package/android/src/androidTest/java/com/apollohg/editor/NativeEditorOutsideTapActivity.kt +5 -0
  12. package/android/src/main/assets/editor-icons/MaterialIcons.json +2236 -0
  13. package/android/src/main/assets/editor-icons/MaterialIcons.ttf +0 -0
  14. package/android/src/main/java/com/apollohg/editor/CaretGeometry.kt +50 -0
  15. package/android/src/main/java/com/apollohg/editor/EditorAddons.kt +135 -0
  16. package/android/src/main/java/com/apollohg/editor/EditorEditText.kt +4527 -0
  17. package/android/src/main/java/com/apollohg/editor/EditorHeightBehavior.kt +14 -0
  18. package/android/src/main/java/com/apollohg/editor/EditorInputConnection.kt +999 -0
  19. package/android/src/main/java/com/apollohg/editor/EditorTheme.kt +474 -0
  20. package/android/src/main/java/com/apollohg/editor/ImageResizeOverlayView.kt +199 -0
  21. package/android/src/main/java/com/apollohg/editor/NativeEditorExpoView.kt +3137 -0
  22. package/android/src/main/java/com/apollohg/editor/NativeEditorModule.kt +561 -0
  23. package/android/src/main/java/com/apollohg/editor/NativeProseViewerExpoView.kt +315 -0
  24. package/android/src/main/java/com/apollohg/editor/NativeToolbar.kt +1413 -0
  25. package/android/src/main/java/com/apollohg/editor/PositionBridge.kt +133 -0
  26. package/android/src/main/java/com/apollohg/editor/RemoteSelectionOverlayView.kt +315 -0
  27. package/android/src/main/java/com/apollohg/editor/RenderBridge.kt +2172 -0
  28. package/android/src/main/java/com/apollohg/editor/RichTextEditorView.kt +399 -0
  29. package/android/src/sharedTest/java/com/apollohg/editor/NativePerformanceSupport.kt +482 -0
  30. package/android/src/test/java/com/apollohg/editor/CaretGeometryTest.kt +137 -0
  31. package/android/src/test/java/com/apollohg/editor/EditorEditTextHardwareKeyTest.kt +321 -0
  32. package/android/src/test/java/com/apollohg/editor/EditorInputConnectionTest.kt +4202 -0
  33. package/android/src/test/java/com/apollohg/editor/NativeEditorExpoViewTest.kt +2581 -0
  34. package/android/src/test/java/com/apollohg/editor/NativeEditorModuleTest.kt +27 -0
  35. package/android/src/test/java/com/apollohg/editor/NativePerformanceTest.kt +197 -0
  36. package/android/src/test/java/com/apollohg/editor/NativeProseViewerExpoViewTest.kt +84 -0
  37. package/android/src/test/java/com/apollohg/editor/NativeToolbarTest.kt +544 -0
  38. package/android/src/test/java/com/apollohg/editor/PositionBridgeTest.kt +461 -0
  39. package/android/src/test/java/com/apollohg/editor/RenderBridgeTest.kt +2054 -0
  40. package/android/src/test/java/com/apollohg/editor/RichTextEditorViewTest.kt +1367 -0
  41. package/app.plugin.js +62 -0
  42. package/dist/EditorTheme.d.ts +113 -0
  43. package/dist/EditorTheme.js +29 -0
  44. package/dist/EditorToolbar.d.ts +191 -0
  45. package/dist/EditorToolbar.js +1095 -0
  46. package/dist/NativeEditorBridge.d.ts +325 -0
  47. package/dist/NativeEditorBridge.js +933 -0
  48. package/dist/NativeProseViewer.d.ts +53 -0
  49. package/dist/NativeProseViewer.js +480 -0
  50. package/dist/NativeRichTextEditor.d.ts +183 -0
  51. package/dist/NativeRichTextEditor.js +2574 -0
  52. package/dist/YjsCollaboration.d.ts +90 -0
  53. package/dist/YjsCollaboration.js +743 -0
  54. package/dist/addons.d.ts +100 -0
  55. package/dist/addons.js +82 -0
  56. package/dist/heightCache.d.ts +6 -0
  57. package/dist/heightCache.js +45 -0
  58. package/dist/index.d.ts +10 -0
  59. package/dist/index.js +30 -0
  60. package/dist/schemas.d.ts +37 -0
  61. package/dist/schemas.js +263 -0
  62. package/dist/useNativeEditor.d.ts +42 -0
  63. package/dist/useNativeEditor.js +124 -0
  64. package/expo-module.config.json +9 -0
  65. package/ios/EditorAddons.swift +327 -0
  66. package/ios/EditorCore.xcframework/Info.plist +44 -0
  67. package/ios/EditorCore.xcframework/ios-arm64/libeditor_core.a +0 -0
  68. package/ios/EditorCore.xcframework/ios-arm64_x86_64-simulator/libeditor_core.a +0 -0
  69. package/ios/EditorLayoutManager.swift +774 -0
  70. package/ios/EditorTheme.swift +515 -0
  71. package/ios/Generated_editor_core.swift +1513 -0
  72. package/ios/NativeEditorExpoView.swift +3593 -0
  73. package/ios/NativeEditorModule.swift +624 -0
  74. package/ios/NativeProseViewerExpoView.swift +276 -0
  75. package/ios/PositionBridge.swift +558 -0
  76. package/ios/ReactNativeProseEditor.podspec +49 -0
  77. package/ios/RenderBridge.swift +1708 -0
  78. package/ios/RichTextEditorView.swift +6150 -0
  79. package/ios/Tests/NativePerformanceTests.swift +687 -0
  80. package/ios/Tests/PositionBridgeTests.swift +706 -0
  81. package/ios/Tests/RenderBridgeTests.swift +2236 -0
  82. package/ios/Tests/RichTextEditorViewTests.swift +6548 -0
  83. package/ios/editor_coreFFI/editor_coreFFI.h +1289 -0
  84. package/ios/editor_coreFFI/module.modulemap +7 -0
  85. package/ios/editor_coreFFI.h +904 -0
  86. package/ios/editor_coreFFI.modulemap +7 -0
  87. package/package.json +74 -0
  88. package/rust/android/arm64-v8a/libeditor_core.so +0 -0
  89. package/rust/android/armeabi-v7a/libeditor_core.so +0 -0
  90. package/rust/android/x86_64/libeditor_core.so +0 -0
  91. package/rust/bindings/kotlin/uniffi/editor_core/editor_core.kt +2563 -0
@@ -0,0 +1,1289 @@
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_COLLABORATION_SESSION_APPLY_ENCODED_STATE
255
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_APPLY_ENCODED_STATE
256
+ RustBuffer uniffi_editor_core_fn_func_collaboration_session_apply_encoded_state(uint64_t id, RustBuffer encoded_state_json, RustCallStatus *_Nonnull out_status
257
+ );
258
+ #endif
259
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_APPLY_LOCAL_DOCUMENT_JSON
260
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_APPLY_LOCAL_DOCUMENT_JSON
261
+ RustBuffer uniffi_editor_core_fn_func_collaboration_session_apply_local_document_json(uint64_t id, RustBuffer json, RustCallStatus *_Nonnull out_status
262
+ );
263
+ #endif
264
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_CLEAR_LOCAL_AWARENESS
265
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_CLEAR_LOCAL_AWARENESS
266
+ RustBuffer uniffi_editor_core_fn_func_collaboration_session_clear_local_awareness(uint64_t id, RustCallStatus *_Nonnull out_status
267
+ );
268
+ #endif
269
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_CREATE
270
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_CREATE
271
+ uint64_t uniffi_editor_core_fn_func_collaboration_session_create(RustBuffer config_json, RustCallStatus *_Nonnull out_status
272
+ );
273
+ #endif
274
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_DESTROY
275
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_DESTROY
276
+ void uniffi_editor_core_fn_func_collaboration_session_destroy(uint64_t id, RustCallStatus *_Nonnull out_status
277
+ );
278
+ #endif
279
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_GET_DOCUMENT_JSON
280
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_GET_DOCUMENT_JSON
281
+ RustBuffer uniffi_editor_core_fn_func_collaboration_session_get_document_json(uint64_t id, RustCallStatus *_Nonnull out_status
282
+ );
283
+ #endif
284
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_GET_ENCODED_STATE
285
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_GET_ENCODED_STATE
286
+ RustBuffer uniffi_editor_core_fn_func_collaboration_session_get_encoded_state(uint64_t id, RustCallStatus *_Nonnull out_status
287
+ );
288
+ #endif
289
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_GET_PEERS_JSON
290
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_GET_PEERS_JSON
291
+ RustBuffer uniffi_editor_core_fn_func_collaboration_session_get_peers_json(uint64_t id, RustCallStatus *_Nonnull out_status
292
+ );
293
+ #endif
294
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_HANDLE_MESSAGE
295
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_HANDLE_MESSAGE
296
+ RustBuffer uniffi_editor_core_fn_func_collaboration_session_handle_message(uint64_t id, RustBuffer message_json, RustCallStatus *_Nonnull out_status
297
+ );
298
+ #endif
299
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_REPLACE_ENCODED_STATE
300
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_REPLACE_ENCODED_STATE
301
+ RustBuffer uniffi_editor_core_fn_func_collaboration_session_replace_encoded_state(uint64_t id, RustBuffer encoded_state_json, RustCallStatus *_Nonnull out_status
302
+ );
303
+ #endif
304
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_SET_LOCAL_AWARENESS
305
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_SET_LOCAL_AWARENESS
306
+ RustBuffer uniffi_editor_core_fn_func_collaboration_session_set_local_awareness(uint64_t id, RustBuffer awareness_json, RustCallStatus *_Nonnull out_status
307
+ );
308
+ #endif
309
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_START
310
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_COLLABORATION_SESSION_START
311
+ RustBuffer uniffi_editor_core_fn_func_collaboration_session_start(uint64_t id, RustCallStatus *_Nonnull out_status
312
+ );
313
+ #endif
314
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_CAN_REDO
315
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_CAN_REDO
316
+ int8_t uniffi_editor_core_fn_func_editor_can_redo(uint64_t id, RustCallStatus *_Nonnull out_status
317
+ );
318
+ #endif
319
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_CAN_UNDO
320
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_CAN_UNDO
321
+ int8_t uniffi_editor_core_fn_func_editor_can_undo(uint64_t id, RustCallStatus *_Nonnull out_status
322
+ );
323
+ #endif
324
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_CORE_VERSION
325
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_CORE_VERSION
326
+ RustBuffer uniffi_editor_core_fn_func_editor_core_version(RustCallStatus *_Nonnull out_status
327
+
328
+ );
329
+ #endif
330
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_CREATE
331
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_CREATE
332
+ uint64_t uniffi_editor_core_fn_func_editor_create(RustBuffer config_json, RustCallStatus *_Nonnull out_status
333
+ );
334
+ #endif
335
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DELETE_AND_SPLIT_SCALAR
336
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DELETE_AND_SPLIT_SCALAR
337
+ 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
338
+ );
339
+ #endif
340
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DELETE_BACKWARD_AT_SELECTION_SCALAR
341
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DELETE_BACKWARD_AT_SELECTION_SCALAR
342
+ RustBuffer uniffi_editor_core_fn_func_editor_delete_backward_at_selection_scalar(uint64_t id, uint32_t scalar_anchor, uint32_t scalar_head, RustCallStatus *_Nonnull out_status
343
+ );
344
+ #endif
345
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DELETE_RANGE
346
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DELETE_RANGE
347
+ RustBuffer uniffi_editor_core_fn_func_editor_delete_range(uint64_t id, uint32_t from, uint32_t to, RustCallStatus *_Nonnull out_status
348
+ );
349
+ #endif
350
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DELETE_SCALAR_RANGE
351
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DELETE_SCALAR_RANGE
352
+ 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
353
+ );
354
+ #endif
355
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DESTROY
356
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DESTROY
357
+ void uniffi_editor_core_fn_func_editor_destroy(uint64_t id, RustCallStatus *_Nonnull out_status
358
+ );
359
+ #endif
360
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DOC_TO_SCALAR
361
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DOC_TO_SCALAR
362
+ uint32_t uniffi_editor_core_fn_func_editor_doc_to_scalar(uint64_t id, uint32_t doc_pos, RustCallStatus *_Nonnull out_status
363
+ );
364
+ #endif
365
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_GET_CONTENT_SNAPSHOT
366
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_GET_CONTENT_SNAPSHOT
367
+ RustBuffer uniffi_editor_core_fn_func_editor_get_content_snapshot(uint64_t id, RustCallStatus *_Nonnull out_status
368
+ );
369
+ #endif
370
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_GET_CURRENT_STATE
371
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_GET_CURRENT_STATE
372
+ RustBuffer uniffi_editor_core_fn_func_editor_get_current_state(uint64_t id, RustCallStatus *_Nonnull out_status
373
+ );
374
+ #endif
375
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_GET_HTML
376
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_GET_HTML
377
+ RustBuffer uniffi_editor_core_fn_func_editor_get_html(uint64_t id, RustCallStatus *_Nonnull out_status
378
+ );
379
+ #endif
380
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_GET_JSON
381
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_GET_JSON
382
+ RustBuffer uniffi_editor_core_fn_func_editor_get_json(uint64_t id, RustCallStatus *_Nonnull out_status
383
+ );
384
+ #endif
385
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_GET_SELECTION
386
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_GET_SELECTION
387
+ RustBuffer uniffi_editor_core_fn_func_editor_get_selection(uint64_t id, RustCallStatus *_Nonnull out_status
388
+ );
389
+ #endif
390
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_GET_SELECTION_STATE
391
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_GET_SELECTION_STATE
392
+ RustBuffer uniffi_editor_core_fn_func_editor_get_selection_state(uint64_t id, RustCallStatus *_Nonnull out_status
393
+ );
394
+ #endif
395
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INDENT_LIST_ITEM
396
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INDENT_LIST_ITEM
397
+ RustBuffer uniffi_editor_core_fn_func_editor_indent_list_item(uint64_t id, RustCallStatus *_Nonnull out_status
398
+ );
399
+ #endif
400
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INDENT_LIST_ITEM_AT_SELECTION_SCALAR
401
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INDENT_LIST_ITEM_AT_SELECTION_SCALAR
402
+ 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
403
+ );
404
+ #endif
405
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_CONTENT_HTML
406
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_CONTENT_HTML
407
+ RustBuffer uniffi_editor_core_fn_func_editor_insert_content_html(uint64_t id, RustBuffer html, RustCallStatus *_Nonnull out_status
408
+ );
409
+ #endif
410
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_CONTENT_JSON
411
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_CONTENT_JSON
412
+ RustBuffer uniffi_editor_core_fn_func_editor_insert_content_json(uint64_t id, RustBuffer json, RustCallStatus *_Nonnull out_status
413
+ );
414
+ #endif
415
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_CONTENT_JSON_AT_SELECTION_SCALAR
416
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_CONTENT_JSON_AT_SELECTION_SCALAR
417
+ 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
418
+ );
419
+ #endif
420
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_NODE
421
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_NODE
422
+ RustBuffer uniffi_editor_core_fn_func_editor_insert_node(uint64_t id, RustBuffer node_type, RustCallStatus *_Nonnull out_status
423
+ );
424
+ #endif
425
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_NODE_AT_SELECTION_SCALAR
426
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_NODE_AT_SELECTION_SCALAR
427
+ 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
428
+ );
429
+ #endif
430
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_TEXT
431
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_TEXT
432
+ RustBuffer uniffi_editor_core_fn_func_editor_insert_text(uint64_t id, uint32_t pos, RustBuffer text, RustCallStatus *_Nonnull out_status
433
+ );
434
+ #endif
435
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_TEXT_SCALAR
436
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_TEXT_SCALAR
437
+ RustBuffer uniffi_editor_core_fn_func_editor_insert_text_scalar(uint64_t id, uint32_t scalar_pos, RustBuffer text, RustCallStatus *_Nonnull out_status
438
+ );
439
+ #endif
440
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_OUTDENT_LIST_ITEM
441
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_OUTDENT_LIST_ITEM
442
+ RustBuffer uniffi_editor_core_fn_func_editor_outdent_list_item(uint64_t id, RustCallStatus *_Nonnull out_status
443
+ );
444
+ #endif
445
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_OUTDENT_LIST_ITEM_AT_SELECTION_SCALAR
446
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_OUTDENT_LIST_ITEM_AT_SELECTION_SCALAR
447
+ 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
448
+ );
449
+ #endif
450
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_REDO
451
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_REDO
452
+ RustBuffer uniffi_editor_core_fn_func_editor_redo(uint64_t id, RustCallStatus *_Nonnull out_status
453
+ );
454
+ #endif
455
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_REPLACE_HTML
456
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_REPLACE_HTML
457
+ RustBuffer uniffi_editor_core_fn_func_editor_replace_html(uint64_t id, RustBuffer html, RustCallStatus *_Nonnull out_status
458
+ );
459
+ #endif
460
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_REPLACE_JSON
461
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_REPLACE_JSON
462
+ RustBuffer uniffi_editor_core_fn_func_editor_replace_json(uint64_t id, RustBuffer json, RustCallStatus *_Nonnull out_status
463
+ );
464
+ #endif
465
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_REPLACE_SELECTION_TEXT
466
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_REPLACE_SELECTION_TEXT
467
+ RustBuffer uniffi_editor_core_fn_func_editor_replace_selection_text(uint64_t id, RustBuffer text, RustCallStatus *_Nonnull out_status
468
+ );
469
+ #endif
470
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_REPLACE_TEXT_SCALAR
471
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_REPLACE_TEXT_SCALAR
472
+ 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
473
+ );
474
+ #endif
475
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_RESIZE_IMAGE_AT_DOC_POS
476
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_RESIZE_IMAGE_AT_DOC_POS
477
+ RustBuffer uniffi_editor_core_fn_func_editor_resize_image_at_doc_pos(uint64_t id, uint32_t doc_pos, uint32_t width, uint32_t height, RustCallStatus *_Nonnull out_status
478
+ );
479
+ #endif
480
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SCALAR_TO_DOC
481
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SCALAR_TO_DOC
482
+ uint32_t uniffi_editor_core_fn_func_editor_scalar_to_doc(uint64_t id, uint32_t scalar, RustCallStatus *_Nonnull out_status
483
+ );
484
+ #endif
485
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_HTML
486
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_HTML
487
+ RustBuffer uniffi_editor_core_fn_func_editor_set_html(uint64_t id, RustBuffer html, RustCallStatus *_Nonnull out_status
488
+ );
489
+ #endif
490
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_JSON
491
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_JSON
492
+ RustBuffer uniffi_editor_core_fn_func_editor_set_json(uint64_t id, RustBuffer json, RustCallStatus *_Nonnull out_status
493
+ );
494
+ #endif
495
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_MARK
496
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_MARK
497
+ RustBuffer uniffi_editor_core_fn_func_editor_set_mark(uint64_t id, RustBuffer mark_name, RustBuffer attrs_json, RustCallStatus *_Nonnull out_status
498
+ );
499
+ #endif
500
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_MARK_AT_SELECTION_SCALAR
501
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_MARK_AT_SELECTION_SCALAR
502
+ RustBuffer uniffi_editor_core_fn_func_editor_set_mark_at_selection_scalar(uint64_t id, uint32_t scalar_anchor, uint32_t scalar_head, RustBuffer mark_name, RustBuffer attrs_json, RustCallStatus *_Nonnull out_status
503
+ );
504
+ #endif
505
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_SELECTION
506
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_SELECTION
507
+ void uniffi_editor_core_fn_func_editor_set_selection(uint64_t id, uint32_t anchor, uint32_t head, RustCallStatus *_Nonnull out_status
508
+ );
509
+ #endif
510
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_SELECTION_SCALAR
511
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_SELECTION_SCALAR
512
+ 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
513
+ );
514
+ #endif
515
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SPLIT_BLOCK
516
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SPLIT_BLOCK
517
+ RustBuffer uniffi_editor_core_fn_func_editor_split_block(uint64_t id, uint32_t pos, RustCallStatus *_Nonnull out_status
518
+ );
519
+ #endif
520
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SPLIT_BLOCK_SCALAR
521
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SPLIT_BLOCK_SCALAR
522
+ RustBuffer uniffi_editor_core_fn_func_editor_split_block_scalar(uint64_t id, uint32_t scalar_pos, RustCallStatus *_Nonnull out_status
523
+ );
524
+ #endif
525
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_TOGGLE_BLOCKQUOTE
526
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_TOGGLE_BLOCKQUOTE
527
+ RustBuffer uniffi_editor_core_fn_func_editor_toggle_blockquote(uint64_t id, RustCallStatus *_Nonnull out_status
528
+ );
529
+ #endif
530
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_TOGGLE_BLOCKQUOTE_AT_SELECTION_SCALAR
531
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_TOGGLE_BLOCKQUOTE_AT_SELECTION_SCALAR
532
+ RustBuffer uniffi_editor_core_fn_func_editor_toggle_blockquote_at_selection_scalar(uint64_t id, uint32_t scalar_anchor, uint32_t scalar_head, RustCallStatus *_Nonnull out_status
533
+ );
534
+ #endif
535
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_TOGGLE_HEADING
536
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_TOGGLE_HEADING
537
+ RustBuffer uniffi_editor_core_fn_func_editor_toggle_heading(uint64_t id, uint8_t level, RustCallStatus *_Nonnull out_status
538
+ );
539
+ #endif
540
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_TOGGLE_HEADING_AT_SELECTION_SCALAR
541
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_TOGGLE_HEADING_AT_SELECTION_SCALAR
542
+ RustBuffer uniffi_editor_core_fn_func_editor_toggle_heading_at_selection_scalar(uint64_t id, uint32_t scalar_anchor, uint32_t scalar_head, uint8_t level, RustCallStatus *_Nonnull out_status
543
+ );
544
+ #endif
545
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_TOGGLE_MARK
546
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_TOGGLE_MARK
547
+ RustBuffer uniffi_editor_core_fn_func_editor_toggle_mark(uint64_t id, RustBuffer mark_name, RustCallStatus *_Nonnull out_status
548
+ );
549
+ #endif
550
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_TOGGLE_MARK_AT_SELECTION_SCALAR
551
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_TOGGLE_MARK_AT_SELECTION_SCALAR
552
+ 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
553
+ );
554
+ #endif
555
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_TOGGLE_TASK_ITEM_CHECKED_AT_SELECTION_SCALAR
556
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_TOGGLE_TASK_ITEM_CHECKED_AT_SELECTION_SCALAR
557
+ RustBuffer uniffi_editor_core_fn_func_editor_toggle_task_item_checked_at_selection_scalar(uint64_t id, uint32_t scalar_anchor, uint32_t scalar_head, RustCallStatus *_Nonnull out_status
558
+ );
559
+ #endif
560
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_UNDO
561
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_UNDO
562
+ RustBuffer uniffi_editor_core_fn_func_editor_undo(uint64_t id, RustCallStatus *_Nonnull out_status
563
+ );
564
+ #endif
565
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_UNSET_MARK
566
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_UNSET_MARK
567
+ RustBuffer uniffi_editor_core_fn_func_editor_unset_mark(uint64_t id, RustBuffer mark_name, RustCallStatus *_Nonnull out_status
568
+ );
569
+ #endif
570
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_UNSET_MARK_AT_SELECTION_SCALAR
571
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_UNSET_MARK_AT_SELECTION_SCALAR
572
+ RustBuffer uniffi_editor_core_fn_func_editor_unset_mark_at_selection_scalar(uint64_t id, uint32_t scalar_anchor, uint32_t scalar_head, RustBuffer mark_name, RustCallStatus *_Nonnull out_status
573
+ );
574
+ #endif
575
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_UNWRAP_FROM_LIST
576
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_UNWRAP_FROM_LIST
577
+ RustBuffer uniffi_editor_core_fn_func_editor_unwrap_from_list(uint64_t id, RustCallStatus *_Nonnull out_status
578
+ );
579
+ #endif
580
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_UNWRAP_FROM_LIST_AT_SELECTION_SCALAR
581
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_UNWRAP_FROM_LIST_AT_SELECTION_SCALAR
582
+ 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
583
+ );
584
+ #endif
585
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_WRAP_IN_LIST
586
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_WRAP_IN_LIST
587
+ RustBuffer uniffi_editor_core_fn_func_editor_wrap_in_list(uint64_t id, RustBuffer list_type, RustCallStatus *_Nonnull out_status
588
+ );
589
+ #endif
590
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_WRAP_IN_LIST_AT_SELECTION_SCALAR
591
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_WRAP_IN_LIST_AT_SELECTION_SCALAR
592
+ 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
593
+ );
594
+ #endif
595
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_ALLOC
596
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_ALLOC
597
+ RustBuffer ffi_editor_core_rustbuffer_alloc(uint64_t size, RustCallStatus *_Nonnull out_status
598
+ );
599
+ #endif
600
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_FROM_BYTES
601
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_FROM_BYTES
602
+ RustBuffer ffi_editor_core_rustbuffer_from_bytes(ForeignBytes bytes, RustCallStatus *_Nonnull out_status
603
+ );
604
+ #endif
605
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_FREE
606
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_FREE
607
+ void ffi_editor_core_rustbuffer_free(RustBuffer buf, RustCallStatus *_Nonnull out_status
608
+ );
609
+ #endif
610
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_RESERVE
611
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_RESERVE
612
+ RustBuffer ffi_editor_core_rustbuffer_reserve(RustBuffer buf, uint64_t additional, RustCallStatus *_Nonnull out_status
613
+ );
614
+ #endif
615
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U8
616
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U8
617
+ void ffi_editor_core_rust_future_poll_u8(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
618
+ );
619
+ #endif
620
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U8
621
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U8
622
+ void ffi_editor_core_rust_future_cancel_u8(uint64_t handle
623
+ );
624
+ #endif
625
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U8
626
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U8
627
+ void ffi_editor_core_rust_future_free_u8(uint64_t handle
628
+ );
629
+ #endif
630
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U8
631
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U8
632
+ uint8_t ffi_editor_core_rust_future_complete_u8(uint64_t handle, RustCallStatus *_Nonnull out_status
633
+ );
634
+ #endif
635
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I8
636
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I8
637
+ void ffi_editor_core_rust_future_poll_i8(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
638
+ );
639
+ #endif
640
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I8
641
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I8
642
+ void ffi_editor_core_rust_future_cancel_i8(uint64_t handle
643
+ );
644
+ #endif
645
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I8
646
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I8
647
+ void ffi_editor_core_rust_future_free_i8(uint64_t handle
648
+ );
649
+ #endif
650
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I8
651
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I8
652
+ int8_t ffi_editor_core_rust_future_complete_i8(uint64_t handle, RustCallStatus *_Nonnull out_status
653
+ );
654
+ #endif
655
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U16
656
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U16
657
+ void ffi_editor_core_rust_future_poll_u16(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
658
+ );
659
+ #endif
660
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U16
661
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U16
662
+ void ffi_editor_core_rust_future_cancel_u16(uint64_t handle
663
+ );
664
+ #endif
665
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U16
666
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U16
667
+ void ffi_editor_core_rust_future_free_u16(uint64_t handle
668
+ );
669
+ #endif
670
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U16
671
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U16
672
+ uint16_t ffi_editor_core_rust_future_complete_u16(uint64_t handle, RustCallStatus *_Nonnull out_status
673
+ );
674
+ #endif
675
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I16
676
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I16
677
+ void ffi_editor_core_rust_future_poll_i16(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
678
+ );
679
+ #endif
680
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I16
681
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I16
682
+ void ffi_editor_core_rust_future_cancel_i16(uint64_t handle
683
+ );
684
+ #endif
685
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I16
686
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I16
687
+ void ffi_editor_core_rust_future_free_i16(uint64_t handle
688
+ );
689
+ #endif
690
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I16
691
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I16
692
+ int16_t ffi_editor_core_rust_future_complete_i16(uint64_t handle, RustCallStatus *_Nonnull out_status
693
+ );
694
+ #endif
695
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U32
696
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U32
697
+ void ffi_editor_core_rust_future_poll_u32(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
698
+ );
699
+ #endif
700
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U32
701
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U32
702
+ void ffi_editor_core_rust_future_cancel_u32(uint64_t handle
703
+ );
704
+ #endif
705
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U32
706
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U32
707
+ void ffi_editor_core_rust_future_free_u32(uint64_t handle
708
+ );
709
+ #endif
710
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U32
711
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U32
712
+ uint32_t ffi_editor_core_rust_future_complete_u32(uint64_t handle, RustCallStatus *_Nonnull out_status
713
+ );
714
+ #endif
715
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I32
716
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I32
717
+ void ffi_editor_core_rust_future_poll_i32(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
718
+ );
719
+ #endif
720
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I32
721
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I32
722
+ void ffi_editor_core_rust_future_cancel_i32(uint64_t handle
723
+ );
724
+ #endif
725
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I32
726
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I32
727
+ void ffi_editor_core_rust_future_free_i32(uint64_t handle
728
+ );
729
+ #endif
730
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I32
731
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I32
732
+ int32_t ffi_editor_core_rust_future_complete_i32(uint64_t handle, RustCallStatus *_Nonnull out_status
733
+ );
734
+ #endif
735
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U64
736
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U64
737
+ void ffi_editor_core_rust_future_poll_u64(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
738
+ );
739
+ #endif
740
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U64
741
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U64
742
+ void ffi_editor_core_rust_future_cancel_u64(uint64_t handle
743
+ );
744
+ #endif
745
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U64
746
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U64
747
+ void ffi_editor_core_rust_future_free_u64(uint64_t handle
748
+ );
749
+ #endif
750
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U64
751
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U64
752
+ uint64_t ffi_editor_core_rust_future_complete_u64(uint64_t handle, RustCallStatus *_Nonnull out_status
753
+ );
754
+ #endif
755
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I64
756
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I64
757
+ void ffi_editor_core_rust_future_poll_i64(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
758
+ );
759
+ #endif
760
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I64
761
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I64
762
+ void ffi_editor_core_rust_future_cancel_i64(uint64_t handle
763
+ );
764
+ #endif
765
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I64
766
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I64
767
+ void ffi_editor_core_rust_future_free_i64(uint64_t handle
768
+ );
769
+ #endif
770
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I64
771
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I64
772
+ int64_t ffi_editor_core_rust_future_complete_i64(uint64_t handle, RustCallStatus *_Nonnull out_status
773
+ );
774
+ #endif
775
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_F32
776
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_F32
777
+ void ffi_editor_core_rust_future_poll_f32(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
778
+ );
779
+ #endif
780
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_F32
781
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_F32
782
+ void ffi_editor_core_rust_future_cancel_f32(uint64_t handle
783
+ );
784
+ #endif
785
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_F32
786
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_F32
787
+ void ffi_editor_core_rust_future_free_f32(uint64_t handle
788
+ );
789
+ #endif
790
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_F32
791
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_F32
792
+ float ffi_editor_core_rust_future_complete_f32(uint64_t handle, RustCallStatus *_Nonnull out_status
793
+ );
794
+ #endif
795
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_F64
796
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_F64
797
+ void ffi_editor_core_rust_future_poll_f64(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
798
+ );
799
+ #endif
800
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_F64
801
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_F64
802
+ void ffi_editor_core_rust_future_cancel_f64(uint64_t handle
803
+ );
804
+ #endif
805
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_F64
806
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_F64
807
+ void ffi_editor_core_rust_future_free_f64(uint64_t handle
808
+ );
809
+ #endif
810
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_F64
811
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_F64
812
+ double ffi_editor_core_rust_future_complete_f64(uint64_t handle, RustCallStatus *_Nonnull out_status
813
+ );
814
+ #endif
815
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_POINTER
816
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_POINTER
817
+ void ffi_editor_core_rust_future_poll_pointer(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
818
+ );
819
+ #endif
820
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_POINTER
821
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_POINTER
822
+ void ffi_editor_core_rust_future_cancel_pointer(uint64_t handle
823
+ );
824
+ #endif
825
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_POINTER
826
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_POINTER
827
+ void ffi_editor_core_rust_future_free_pointer(uint64_t handle
828
+ );
829
+ #endif
830
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_POINTER
831
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_POINTER
832
+ void*_Nonnull ffi_editor_core_rust_future_complete_pointer(uint64_t handle, RustCallStatus *_Nonnull out_status
833
+ );
834
+ #endif
835
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_RUST_BUFFER
836
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_RUST_BUFFER
837
+ void ffi_editor_core_rust_future_poll_rust_buffer(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
838
+ );
839
+ #endif
840
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_RUST_BUFFER
841
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_RUST_BUFFER
842
+ void ffi_editor_core_rust_future_cancel_rust_buffer(uint64_t handle
843
+ );
844
+ #endif
845
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_RUST_BUFFER
846
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_RUST_BUFFER
847
+ void ffi_editor_core_rust_future_free_rust_buffer(uint64_t handle
848
+ );
849
+ #endif
850
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_RUST_BUFFER
851
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_RUST_BUFFER
852
+ RustBuffer ffi_editor_core_rust_future_complete_rust_buffer(uint64_t handle, RustCallStatus *_Nonnull out_status
853
+ );
854
+ #endif
855
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_VOID
856
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_VOID
857
+ void ffi_editor_core_rust_future_poll_void(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
858
+ );
859
+ #endif
860
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_VOID
861
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_VOID
862
+ void ffi_editor_core_rust_future_cancel_void(uint64_t handle
863
+ );
864
+ #endif
865
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_VOID
866
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_VOID
867
+ void ffi_editor_core_rust_future_free_void(uint64_t handle
868
+ );
869
+ #endif
870
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_VOID
871
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_VOID
872
+ void ffi_editor_core_rust_future_complete_void(uint64_t handle, RustCallStatus *_Nonnull out_status
873
+ );
874
+ #endif
875
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_APPLY_ENCODED_STATE
876
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_APPLY_ENCODED_STATE
877
+ uint16_t uniffi_editor_core_checksum_func_collaboration_session_apply_encoded_state(void
878
+
879
+ );
880
+ #endif
881
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_APPLY_LOCAL_DOCUMENT_JSON
882
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_APPLY_LOCAL_DOCUMENT_JSON
883
+ uint16_t uniffi_editor_core_checksum_func_collaboration_session_apply_local_document_json(void
884
+
885
+ );
886
+ #endif
887
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_CLEAR_LOCAL_AWARENESS
888
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_CLEAR_LOCAL_AWARENESS
889
+ uint16_t uniffi_editor_core_checksum_func_collaboration_session_clear_local_awareness(void
890
+
891
+ );
892
+ #endif
893
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_CREATE
894
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_CREATE
895
+ uint16_t uniffi_editor_core_checksum_func_collaboration_session_create(void
896
+
897
+ );
898
+ #endif
899
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_DESTROY
900
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_DESTROY
901
+ uint16_t uniffi_editor_core_checksum_func_collaboration_session_destroy(void
902
+
903
+ );
904
+ #endif
905
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_GET_DOCUMENT_JSON
906
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_GET_DOCUMENT_JSON
907
+ uint16_t uniffi_editor_core_checksum_func_collaboration_session_get_document_json(void
908
+
909
+ );
910
+ #endif
911
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_GET_ENCODED_STATE
912
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_GET_ENCODED_STATE
913
+ uint16_t uniffi_editor_core_checksum_func_collaboration_session_get_encoded_state(void
914
+
915
+ );
916
+ #endif
917
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_GET_PEERS_JSON
918
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_GET_PEERS_JSON
919
+ uint16_t uniffi_editor_core_checksum_func_collaboration_session_get_peers_json(void
920
+
921
+ );
922
+ #endif
923
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_HANDLE_MESSAGE
924
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_HANDLE_MESSAGE
925
+ uint16_t uniffi_editor_core_checksum_func_collaboration_session_handle_message(void
926
+
927
+ );
928
+ #endif
929
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_REPLACE_ENCODED_STATE
930
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_REPLACE_ENCODED_STATE
931
+ uint16_t uniffi_editor_core_checksum_func_collaboration_session_replace_encoded_state(void
932
+
933
+ );
934
+ #endif
935
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_SET_LOCAL_AWARENESS
936
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_SET_LOCAL_AWARENESS
937
+ uint16_t uniffi_editor_core_checksum_func_collaboration_session_set_local_awareness(void
938
+
939
+ );
940
+ #endif
941
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_START
942
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_START
943
+ uint16_t uniffi_editor_core_checksum_func_collaboration_session_start(void
944
+
945
+ );
946
+ #endif
947
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CAN_REDO
948
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CAN_REDO
949
+ uint16_t uniffi_editor_core_checksum_func_editor_can_redo(void
950
+
951
+ );
952
+ #endif
953
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CAN_UNDO
954
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CAN_UNDO
955
+ uint16_t uniffi_editor_core_checksum_func_editor_can_undo(void
956
+
957
+ );
958
+ #endif
959
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CORE_VERSION
960
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CORE_VERSION
961
+ uint16_t uniffi_editor_core_checksum_func_editor_core_version(void
962
+
963
+ );
964
+ #endif
965
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CREATE
966
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CREATE
967
+ uint16_t uniffi_editor_core_checksum_func_editor_create(void
968
+
969
+ );
970
+ #endif
971
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_AND_SPLIT_SCALAR
972
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_AND_SPLIT_SCALAR
973
+ uint16_t uniffi_editor_core_checksum_func_editor_delete_and_split_scalar(void
974
+
975
+ );
976
+ #endif
977
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_BACKWARD_AT_SELECTION_SCALAR
978
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_BACKWARD_AT_SELECTION_SCALAR
979
+ uint16_t uniffi_editor_core_checksum_func_editor_delete_backward_at_selection_scalar(void
980
+
981
+ );
982
+ #endif
983
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_RANGE
984
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_RANGE
985
+ uint16_t uniffi_editor_core_checksum_func_editor_delete_range(void
986
+
987
+ );
988
+ #endif
989
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_SCALAR_RANGE
990
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_SCALAR_RANGE
991
+ uint16_t uniffi_editor_core_checksum_func_editor_delete_scalar_range(void
992
+
993
+ );
994
+ #endif
995
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DESTROY
996
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DESTROY
997
+ uint16_t uniffi_editor_core_checksum_func_editor_destroy(void
998
+
999
+ );
1000
+ #endif
1001
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DOC_TO_SCALAR
1002
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DOC_TO_SCALAR
1003
+ uint16_t uniffi_editor_core_checksum_func_editor_doc_to_scalar(void
1004
+
1005
+ );
1006
+ #endif
1007
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_CONTENT_SNAPSHOT
1008
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_CONTENT_SNAPSHOT
1009
+ uint16_t uniffi_editor_core_checksum_func_editor_get_content_snapshot(void
1010
+
1011
+ );
1012
+ #endif
1013
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_CURRENT_STATE
1014
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_CURRENT_STATE
1015
+ uint16_t uniffi_editor_core_checksum_func_editor_get_current_state(void
1016
+
1017
+ );
1018
+ #endif
1019
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_HTML
1020
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_HTML
1021
+ uint16_t uniffi_editor_core_checksum_func_editor_get_html(void
1022
+
1023
+ );
1024
+ #endif
1025
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_JSON
1026
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_JSON
1027
+ uint16_t uniffi_editor_core_checksum_func_editor_get_json(void
1028
+
1029
+ );
1030
+ #endif
1031
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_SELECTION
1032
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_SELECTION
1033
+ uint16_t uniffi_editor_core_checksum_func_editor_get_selection(void
1034
+
1035
+ );
1036
+ #endif
1037
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_SELECTION_STATE
1038
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_SELECTION_STATE
1039
+ uint16_t uniffi_editor_core_checksum_func_editor_get_selection_state(void
1040
+
1041
+ );
1042
+ #endif
1043
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INDENT_LIST_ITEM
1044
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INDENT_LIST_ITEM
1045
+ uint16_t uniffi_editor_core_checksum_func_editor_indent_list_item(void
1046
+
1047
+ );
1048
+ #endif
1049
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INDENT_LIST_ITEM_AT_SELECTION_SCALAR
1050
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INDENT_LIST_ITEM_AT_SELECTION_SCALAR
1051
+ uint16_t uniffi_editor_core_checksum_func_editor_indent_list_item_at_selection_scalar(void
1052
+
1053
+ );
1054
+ #endif
1055
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_CONTENT_HTML
1056
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_CONTENT_HTML
1057
+ uint16_t uniffi_editor_core_checksum_func_editor_insert_content_html(void
1058
+
1059
+ );
1060
+ #endif
1061
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_CONTENT_JSON
1062
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_CONTENT_JSON
1063
+ uint16_t uniffi_editor_core_checksum_func_editor_insert_content_json(void
1064
+
1065
+ );
1066
+ #endif
1067
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_CONTENT_JSON_AT_SELECTION_SCALAR
1068
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_CONTENT_JSON_AT_SELECTION_SCALAR
1069
+ uint16_t uniffi_editor_core_checksum_func_editor_insert_content_json_at_selection_scalar(void
1070
+
1071
+ );
1072
+ #endif
1073
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_NODE
1074
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_NODE
1075
+ uint16_t uniffi_editor_core_checksum_func_editor_insert_node(void
1076
+
1077
+ );
1078
+ #endif
1079
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_NODE_AT_SELECTION_SCALAR
1080
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_NODE_AT_SELECTION_SCALAR
1081
+ uint16_t uniffi_editor_core_checksum_func_editor_insert_node_at_selection_scalar(void
1082
+
1083
+ );
1084
+ #endif
1085
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_TEXT
1086
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_TEXT
1087
+ uint16_t uniffi_editor_core_checksum_func_editor_insert_text(void
1088
+
1089
+ );
1090
+ #endif
1091
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_TEXT_SCALAR
1092
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_TEXT_SCALAR
1093
+ uint16_t uniffi_editor_core_checksum_func_editor_insert_text_scalar(void
1094
+
1095
+ );
1096
+ #endif
1097
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_OUTDENT_LIST_ITEM
1098
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_OUTDENT_LIST_ITEM
1099
+ uint16_t uniffi_editor_core_checksum_func_editor_outdent_list_item(void
1100
+
1101
+ );
1102
+ #endif
1103
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_OUTDENT_LIST_ITEM_AT_SELECTION_SCALAR
1104
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_OUTDENT_LIST_ITEM_AT_SELECTION_SCALAR
1105
+ uint16_t uniffi_editor_core_checksum_func_editor_outdent_list_item_at_selection_scalar(void
1106
+
1107
+ );
1108
+ #endif
1109
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REDO
1110
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REDO
1111
+ uint16_t uniffi_editor_core_checksum_func_editor_redo(void
1112
+
1113
+ );
1114
+ #endif
1115
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_HTML
1116
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_HTML
1117
+ uint16_t uniffi_editor_core_checksum_func_editor_replace_html(void
1118
+
1119
+ );
1120
+ #endif
1121
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_JSON
1122
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_JSON
1123
+ uint16_t uniffi_editor_core_checksum_func_editor_replace_json(void
1124
+
1125
+ );
1126
+ #endif
1127
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_SELECTION_TEXT
1128
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_SELECTION_TEXT
1129
+ uint16_t uniffi_editor_core_checksum_func_editor_replace_selection_text(void
1130
+
1131
+ );
1132
+ #endif
1133
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_TEXT_SCALAR
1134
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_TEXT_SCALAR
1135
+ uint16_t uniffi_editor_core_checksum_func_editor_replace_text_scalar(void
1136
+
1137
+ );
1138
+ #endif
1139
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_RESIZE_IMAGE_AT_DOC_POS
1140
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_RESIZE_IMAGE_AT_DOC_POS
1141
+ uint16_t uniffi_editor_core_checksum_func_editor_resize_image_at_doc_pos(void
1142
+
1143
+ );
1144
+ #endif
1145
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SCALAR_TO_DOC
1146
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SCALAR_TO_DOC
1147
+ uint16_t uniffi_editor_core_checksum_func_editor_scalar_to_doc(void
1148
+
1149
+ );
1150
+ #endif
1151
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_HTML
1152
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_HTML
1153
+ uint16_t uniffi_editor_core_checksum_func_editor_set_html(void
1154
+
1155
+ );
1156
+ #endif
1157
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_JSON
1158
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_JSON
1159
+ uint16_t uniffi_editor_core_checksum_func_editor_set_json(void
1160
+
1161
+ );
1162
+ #endif
1163
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_MARK
1164
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_MARK
1165
+ uint16_t uniffi_editor_core_checksum_func_editor_set_mark(void
1166
+
1167
+ );
1168
+ #endif
1169
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_MARK_AT_SELECTION_SCALAR
1170
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_MARK_AT_SELECTION_SCALAR
1171
+ uint16_t uniffi_editor_core_checksum_func_editor_set_mark_at_selection_scalar(void
1172
+
1173
+ );
1174
+ #endif
1175
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_SELECTION
1176
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_SELECTION
1177
+ uint16_t uniffi_editor_core_checksum_func_editor_set_selection(void
1178
+
1179
+ );
1180
+ #endif
1181
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_SELECTION_SCALAR
1182
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_SELECTION_SCALAR
1183
+ uint16_t uniffi_editor_core_checksum_func_editor_set_selection_scalar(void
1184
+
1185
+ );
1186
+ #endif
1187
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SPLIT_BLOCK
1188
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SPLIT_BLOCK
1189
+ uint16_t uniffi_editor_core_checksum_func_editor_split_block(void
1190
+
1191
+ );
1192
+ #endif
1193
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SPLIT_BLOCK_SCALAR
1194
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SPLIT_BLOCK_SCALAR
1195
+ uint16_t uniffi_editor_core_checksum_func_editor_split_block_scalar(void
1196
+
1197
+ );
1198
+ #endif
1199
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_BLOCKQUOTE
1200
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_BLOCKQUOTE
1201
+ uint16_t uniffi_editor_core_checksum_func_editor_toggle_blockquote(void
1202
+
1203
+ );
1204
+ #endif
1205
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_BLOCKQUOTE_AT_SELECTION_SCALAR
1206
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_BLOCKQUOTE_AT_SELECTION_SCALAR
1207
+ uint16_t uniffi_editor_core_checksum_func_editor_toggle_blockquote_at_selection_scalar(void
1208
+
1209
+ );
1210
+ #endif
1211
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_HEADING
1212
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_HEADING
1213
+ uint16_t uniffi_editor_core_checksum_func_editor_toggle_heading(void
1214
+
1215
+ );
1216
+ #endif
1217
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_HEADING_AT_SELECTION_SCALAR
1218
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_HEADING_AT_SELECTION_SCALAR
1219
+ uint16_t uniffi_editor_core_checksum_func_editor_toggle_heading_at_selection_scalar(void
1220
+
1221
+ );
1222
+ #endif
1223
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_MARK
1224
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_MARK
1225
+ uint16_t uniffi_editor_core_checksum_func_editor_toggle_mark(void
1226
+
1227
+ );
1228
+ #endif
1229
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_MARK_AT_SELECTION_SCALAR
1230
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_MARK_AT_SELECTION_SCALAR
1231
+ uint16_t uniffi_editor_core_checksum_func_editor_toggle_mark_at_selection_scalar(void
1232
+
1233
+ );
1234
+ #endif
1235
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_TASK_ITEM_CHECKED_AT_SELECTION_SCALAR
1236
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_TASK_ITEM_CHECKED_AT_SELECTION_SCALAR
1237
+ uint16_t uniffi_editor_core_checksum_func_editor_toggle_task_item_checked_at_selection_scalar(void
1238
+
1239
+ );
1240
+ #endif
1241
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNDO
1242
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNDO
1243
+ uint16_t uniffi_editor_core_checksum_func_editor_undo(void
1244
+
1245
+ );
1246
+ #endif
1247
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNSET_MARK
1248
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNSET_MARK
1249
+ uint16_t uniffi_editor_core_checksum_func_editor_unset_mark(void
1250
+
1251
+ );
1252
+ #endif
1253
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNSET_MARK_AT_SELECTION_SCALAR
1254
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNSET_MARK_AT_SELECTION_SCALAR
1255
+ uint16_t uniffi_editor_core_checksum_func_editor_unset_mark_at_selection_scalar(void
1256
+
1257
+ );
1258
+ #endif
1259
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNWRAP_FROM_LIST
1260
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNWRAP_FROM_LIST
1261
+ uint16_t uniffi_editor_core_checksum_func_editor_unwrap_from_list(void
1262
+
1263
+ );
1264
+ #endif
1265
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNWRAP_FROM_LIST_AT_SELECTION_SCALAR
1266
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNWRAP_FROM_LIST_AT_SELECTION_SCALAR
1267
+ uint16_t uniffi_editor_core_checksum_func_editor_unwrap_from_list_at_selection_scalar(void
1268
+
1269
+ );
1270
+ #endif
1271
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_WRAP_IN_LIST
1272
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_WRAP_IN_LIST
1273
+ uint16_t uniffi_editor_core_checksum_func_editor_wrap_in_list(void
1274
+
1275
+ );
1276
+ #endif
1277
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_WRAP_IN_LIST_AT_SELECTION_SCALAR
1278
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_WRAP_IN_LIST_AT_SELECTION_SCALAR
1279
+ uint16_t uniffi_editor_core_checksum_func_editor_wrap_in_list_at_selection_scalar(void
1280
+
1281
+ );
1282
+ #endif
1283
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_UNIFFI_CONTRACT_VERSION
1284
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_UNIFFI_CONTRACT_VERSION
1285
+ uint32_t ffi_editor_core_uniffi_contract_version(void
1286
+
1287
+ );
1288
+ #endif
1289
+