@apollohg/react-native-rich-text-editor 2.0.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 (494) hide show
  1. package/LICENSE +160 -0
  2. package/README.md +259 -0
  3. package/RUST-STANDARD-LIBRARY-NOTICES.html +8266 -0
  4. package/ReactNativeProseEditor.podspec +59 -0
  5. package/THIRD_PARTY_NOTICES.md +31155 -0
  6. package/android/build.gradle +188 -0
  7. package/android/consumer-rules.pro +18 -0
  8. package/android/expo/build.gradle +17 -0
  9. package/android/src/debug/java/com/apollohg/editor/viewer/PreparedProseDrawInstrumentation.kt +7 -0
  10. package/android/src/main/assets/editor-icons/MaterialIcons.json +2236 -0
  11. package/android/src/main/assets/editor-icons/MaterialIcons.ttf +0 -0
  12. package/android/src/main/java/com/apollohg/editor/AndroidApiCompat.kt +19 -0
  13. package/android/src/main/java/com/apollohg/editor/AndroidCollaborationTransport.kt +860 -0
  14. package/android/src/main/java/com/apollohg/editor/CaretGeometry.kt +91 -0
  15. package/android/src/main/java/com/apollohg/editor/CodeHighlighting.kt +141 -0
  16. package/android/src/main/java/com/apollohg/editor/DecodedBitmapBudget.kt +250 -0
  17. package/android/src/main/java/com/apollohg/editor/EditorAddons.kt +133 -0
  18. package/android/src/main/java/com/apollohg/editor/EditorBlockSpacing.kt +51 -0
  19. package/android/src/main/java/com/apollohg/editor/EditorBoxDrawable.kt +16 -0
  20. package/android/src/main/java/com/apollohg/editor/EditorBoxDrawing.kt +234 -0
  21. package/android/src/main/java/com/apollohg/editor/EditorCheckboxSpan.kt +87 -0
  22. package/android/src/main/java/com/apollohg/editor/EditorCodeHighlighting.kt +120 -0
  23. package/android/src/main/java/com/apollohg/editor/EditorDecorationLayer.java +18 -0
  24. package/android/src/main/java/com/apollohg/editor/EditorDocumentLayout.kt +626 -0
  25. package/android/src/main/java/com/apollohg/editor/EditorEditText.kt +1042 -0
  26. package/android/src/main/java/com/apollohg/editor/EditorEditTextAnnotations.kt +191 -0
  27. package/android/src/main/java/com/apollohg/editor/EditorEditTextCaret.kt +100 -0
  28. package/android/src/main/java/com/apollohg/editor/EditorEditTextClipboard.kt +101 -0
  29. package/android/src/main/java/com/apollohg/editor/EditorEditTextComposition.kt +220 -0
  30. package/android/src/main/java/com/apollohg/editor/EditorEditTextConfiguration.kt +316 -0
  31. package/android/src/main/java/com/apollohg/editor/EditorEditTextCorrection.kt +303 -0
  32. package/android/src/main/java/com/apollohg/editor/EditorEditTextDeferredUpdates.kt +327 -0
  33. package/android/src/main/java/com/apollohg/editor/EditorEditTextDeletion.kt +258 -0
  34. package/android/src/main/java/com/apollohg/editor/EditorEditTextDiagnostics.kt +83 -0
  35. package/android/src/main/java/com/apollohg/editor/EditorEditTextDragDrop.kt +67 -0
  36. package/android/src/main/java/com/apollohg/editor/EditorEditTextExternalComposition.kt +357 -0
  37. package/android/src/main/java/com/apollohg/editor/EditorEditTextHardwareInput.kt +277 -0
  38. package/android/src/main/java/com/apollohg/editor/EditorEditTextImages.kt +280 -0
  39. package/android/src/main/java/com/apollohg/editor/EditorEditTextInputLifecycle.kt +183 -0
  40. package/android/src/main/java/com/apollohg/editor/EditorEditTextInputPreparation.kt +79 -0
  41. package/android/src/main/java/com/apollohg/editor/EditorEditTextInputTraits.kt +384 -0
  42. package/android/src/main/java/com/apollohg/editor/EditorEditTextLayout.kt +100 -0
  43. package/android/src/main/java/com/apollohg/editor/EditorEditTextNativeMutation.kt +243 -0
  44. package/android/src/main/java/com/apollohg/editor/EditorEditTextPlaceholder.kt +154 -0
  45. package/android/src/main/java/com/apollohg/editor/EditorEditTextRenderPatch.kt +347 -0
  46. package/android/src/main/java/com/apollohg/editor/EditorEditTextRendering.kt +313 -0
  47. package/android/src/main/java/com/apollohg/editor/EditorEditTextRustCommands.kt +281 -0
  48. package/android/src/main/java/com/apollohg/editor/EditorEditTextSelection.kt +352 -0
  49. package/android/src/main/java/com/apollohg/editor/EditorEditTextState.kt +113 -0
  50. package/android/src/main/java/com/apollohg/editor/EditorEditTextTaskMarkers.kt +92 -0
  51. package/android/src/main/java/com/apollohg/editor/EditorEditTextTextCommit.kt +327 -0
  52. package/android/src/main/java/com/apollohg/editor/EditorEditTextToolbar.kt +84 -0
  53. package/android/src/main/java/com/apollohg/editor/EditorEditTextUpdates.kt +245 -0
  54. package/android/src/main/java/com/apollohg/editor/EditorGlyphHeightCursorDrawable.kt +42 -0
  55. package/android/src/main/java/com/apollohg/editor/EditorHeightBehavior.kt +13 -0
  56. package/android/src/main/java/com/apollohg/editor/EditorInputConnection.kt +923 -0
  57. package/android/src/main/java/com/apollohg/editor/EditorInputCoordinates.kt +191 -0
  58. package/android/src/main/java/com/apollohg/editor/EditorInputCorrection.kt +107 -0
  59. package/android/src/main/java/com/apollohg/editor/EditorInputCursorGeometry.kt +128 -0
  60. package/android/src/main/java/com/apollohg/editor/EditorInputSnapshots.kt +134 -0
  61. package/android/src/main/java/com/apollohg/editor/EditorInputSurroundingDeletion.kt +321 -0
  62. package/android/src/main/java/com/apollohg/editor/EditorKeyboardToolbarView.kt +851 -0
  63. package/android/src/main/java/com/apollohg/editor/EditorMentionStyle.kt +192 -0
  64. package/android/src/main/java/com/apollohg/editor/EditorReconciliationWatcher.kt +46 -0
  65. package/android/src/main/java/com/apollohg/editor/EditorStyleSheet.kt +303 -0
  66. package/android/src/main/java/com/apollohg/editor/EditorStyleSheetSpans.kt +253 -0
  67. package/android/src/main/java/com/apollohg/editor/EditorSurfaceInputConnection.kt +67 -0
  68. package/android/src/main/java/com/apollohg/editor/EditorTextDecorationDrawing.kt +143 -0
  69. package/android/src/main/java/com/apollohg/editor/EditorTextSurface.kt +712 -0
  70. package/android/src/main/java/com/apollohg/editor/EditorTextSurfaceDragDrop.kt +94 -0
  71. package/android/src/main/java/com/apollohg/editor/EditorTextSurfaceInteraction.kt +708 -0
  72. package/android/src/main/java/com/apollohg/editor/EditorTheme.kt +650 -0
  73. package/android/src/main/java/com/apollohg/editor/EditorV2Adapter.kt +912 -0
  74. package/android/src/main/java/com/apollohg/editor/EditorV2AdapterMutations.kt +402 -0
  75. package/android/src/main/java/com/apollohg/editor/EditorV2AdapterRendering.kt +123 -0
  76. package/android/src/main/java/com/apollohg/editor/EditorV2AdapterSelection.kt +203 -0
  77. package/android/src/main/java/com/apollohg/editor/EditorV2Backend.kt +120 -0
  78. package/android/src/main/java/com/apollohg/editor/EditorV2Driver.kt +87 -0
  79. package/android/src/main/java/com/apollohg/editor/EditorV2Registry.kt +97 -0
  80. package/android/src/main/java/com/apollohg/editor/EditorV2RenderValidation.kt +409 -0
  81. package/android/src/main/java/com/apollohg/editor/ExpoAutoGrowStyleSizePublisher.kt +34 -0
  82. package/android/src/main/java/com/apollohg/editor/ImageResizeOverlayView.kt +266 -0
  83. package/android/src/main/java/com/apollohg/editor/ImeTextCoordinateMapper.kt +102 -0
  84. package/android/src/main/java/com/apollohg/editor/KeyboardToolbarImeAnimationController.kt +101 -0
  85. package/android/src/main/java/com/apollohg/editor/MentionSuggestionChipView.kt +234 -0
  86. package/android/src/main/java/com/apollohg/editor/NativeCollaborationTransportRegistry.kt +493 -0
  87. package/android/src/main/java/com/apollohg/editor/NativeEditorExpoView.kt +813 -0
  88. package/android/src/main/java/com/apollohg/editor/NativeEditorExpoViewAtoms.kt +68 -0
  89. package/android/src/main/java/com/apollohg/editor/NativeEditorExpoViewBinding.kt +126 -0
  90. package/android/src/main/java/com/apollohg/editor/NativeEditorExpoViewDiagnostics.kt +208 -0
  91. package/android/src/main/java/com/apollohg/editor/NativeEditorExpoViewErrors.kt +146 -0
  92. package/android/src/main/java/com/apollohg/editor/NativeEditorExpoViewEvents.kt +150 -0
  93. package/android/src/main/java/com/apollohg/editor/NativeEditorExpoViewExternalComposition.kt +39 -0
  94. package/android/src/main/java/com/apollohg/editor/NativeEditorExpoViewFocus.kt +176 -0
  95. package/android/src/main/java/com/apollohg/editor/NativeEditorExpoViewLifecycle.kt +302 -0
  96. package/android/src/main/java/com/apollohg/editor/NativeEditorExpoViewMentions.kt +259 -0
  97. package/android/src/main/java/com/apollohg/editor/NativeEditorExpoViewNativeActions.kt +179 -0
  98. package/android/src/main/java/com/apollohg/editor/NativeEditorExpoViewOutsideTap.kt +214 -0
  99. package/android/src/main/java/com/apollohg/editor/NativeEditorExpoViewPendingUpdates.kt +376 -0
  100. package/android/src/main/java/com/apollohg/editor/NativeEditorExpoViewProperties.kt +234 -0
  101. package/android/src/main/java/com/apollohg/editor/NativeEditorExpoViewPropertyRetries.kt +197 -0
  102. package/android/src/main/java/com/apollohg/editor/NativeEditorExpoViewToolbar.kt +285 -0
  103. package/android/src/main/java/com/apollohg/editor/NativeEditorExpoViewTypes.kt +28 -0
  104. package/android/src/main/java/com/apollohg/editor/NativeEditorExpoViewUpdates.kt +271 -0
  105. package/android/src/main/java/com/apollohg/editor/NativeEditorModule.kt +687 -0
  106. package/android/src/main/java/com/apollohg/editor/NativeEditorOutsideTapDispatcher.kt +380 -0
  107. package/android/src/main/java/com/apollohg/editor/NativeEditorV2Numbers.kt +45 -0
  108. package/android/src/main/java/com/apollohg/editor/NativeEditorViewRegistry.kt +372 -0
  109. package/android/src/main/java/com/apollohg/editor/NativeImagePipeline.kt +22 -0
  110. package/android/src/main/java/com/apollohg/editor/NativeToolbar.kt +193 -0
  111. package/android/src/main/java/com/apollohg/editor/NativeToolbarIcons.kt +177 -0
  112. package/android/src/main/java/com/apollohg/editor/NativeToolbarItem.kt +274 -0
  113. package/android/src/main/java/com/apollohg/editor/OkHttpCollaborationSocket.kt +102 -0
  114. package/android/src/main/java/com/apollohg/editor/OrderedListMarkerFormatter.kt +130 -0
  115. package/android/src/main/java/com/apollohg/editor/PointerTransparentView.java +18 -0
  116. package/android/src/main/java/com/apollohg/editor/PositionBridge.kt +128 -0
  117. package/android/src/main/java/com/apollohg/editor/ProseViewerView.kt +854 -0
  118. package/android/src/main/java/com/apollohg/editor/RemoteSelectionOverlayView.kt +314 -0
  119. package/android/src/main/java/com/apollohg/editor/RenderBlockSpans.kt +314 -0
  120. package/android/src/main/java/com/apollohg/editor/RenderBridge.kt +224 -0
  121. package/android/src/main/java/com/apollohg/editor/RenderBridgeBlockStyles.kt +407 -0
  122. package/android/src/main/java/com/apollohg/editor/RenderBridgeElements.kt +544 -0
  123. package/android/src/main/java/com/apollohg/editor/RenderBridgeInlineAndAtoms.kt +631 -0
  124. package/android/src/main/java/com/apollohg/editor/RenderBridgeParagraphs.kt +215 -0
  125. package/android/src/main/java/com/apollohg/editor/RenderImageDecoder.kt +748 -0
  126. package/android/src/main/java/com/apollohg/editor/RenderImageLoader.kt +900 -0
  127. package/android/src/main/java/com/apollohg/editor/RenderLayoutConstants.kt +117 -0
  128. package/android/src/main/java/com/apollohg/editor/RenderMediaSpans.kt +337 -0
  129. package/android/src/main/java/com/apollohg/editor/RenderParagraphSpans.kt +182 -0
  130. package/android/src/main/java/com/apollohg/editor/RichTextEditorView.kt +951 -0
  131. package/android/src/main/java/com/apollohg/editor/SharedNativeImagePipeline.kt +78 -0
  132. package/android/src/main/java/com/apollohg/editor/UniffiEditorV2Backend.kt +261 -0
  133. package/android/src/main/java/com/apollohg/editor/viewer/AndroidProseLayoutEngine.kt +1656 -0
  134. package/android/src/main/java/com/apollohg/editor/viewer/FabricAttachmentSidecars.kt +80 -0
  135. package/android/src/main/java/com/apollohg/editor/viewer/FabricLeaseHandleBridge.kt +59 -0
  136. package/android/src/main/java/com/apollohg/editor/viewer/FallbackSelectionGeometry.kt +450 -0
  137. package/android/src/main/java/com/apollohg/editor/viewer/PreparedProseDrawingView.kt +678 -0
  138. package/android/src/main/java/com/apollohg/editor/viewer/PreparedProseInstrumentation.kt +608 -0
  139. package/android/src/main/java/com/apollohg/editor/viewer/PreparedProseLayout.kt +186 -0
  140. package/android/src/main/java/com/apollohg/editor/viewer/PreparedProseLayoutCache.kt +393 -0
  141. package/android/src/main/java/com/apollohg/editor/viewer/PreparedProseLayoutRegistry.kt +828 -0
  142. package/android/src/main/java/com/apollohg/editor/viewer/PreparedProseTheme.kt +316 -0
  143. package/android/src/main/java/com/apollohg/editor/viewer/PreparedProseViewerManager.kt +900 -0
  144. package/android/src/main/java/com/apollohg/editor/viewer/PreparedProseViewerPackage.kt +16 -0
  145. package/android/src/main/java/com/apollohg/editor/viewer/PreparedViewerAtoms.kt +89 -0
  146. package/android/src/main/java/com/apollohg/editor/viewer/ViewerCodeHighlighting.kt +91 -0
  147. package/android/src/main/java/com/apollohg/editor/viewer/ViewerDocument.kt +453 -0
  148. package/android/src/main/java/com/apollohg/editor/viewer/ViewerFontEnvironment.kt +282 -0
  149. package/android/src/main/java/com/apollohg/editor/viewer/ViewerImagePipeline.kt +460 -0
  150. package/android/src/main/jni/CMakeLists.txt +85 -0
  151. package/android/src/main/jni/PreparedProseViewerMeasurementsManager.cpp +334 -0
  152. package/android/src/main/jni/ReactNativeProseEditorSpec.h +17 -0
  153. package/android/src/main/jni/reactnativeproseeditor.h +6 -0
  154. package/android/src/main/res/values/attrs.xml +6 -0
  155. package/android/src/release/java/com/apollohg/editor/viewer/PreparedProseDrawInstrumentation.kt +9 -0
  156. package/app.plugin.js +62 -0
  157. package/common/cpp/react/renderer/components/PreparedProseViewer/PreparedProseMeasurementsManager.h +62 -0
  158. package/common/cpp/react/renderer/components/PreparedProseViewer/PreparedProseViewerComponentDescriptor.h +30 -0
  159. package/common/cpp/react/renderer/components/PreparedProseViewer/PreparedProseViewerShadowNode.cpp +192 -0
  160. package/common/cpp/react/renderer/components/PreparedProseViewer/PreparedProseViewerShadowNode.h +46 -0
  161. package/common/cpp/react/renderer/components/PreparedProseViewer/PreparedProseViewerState.h +145 -0
  162. package/dist/AtomHost.d.ts +17 -0
  163. package/dist/AtomHost.js +135 -0
  164. package/dist/DefaultAtomChip.d.ts +2 -0
  165. package/dist/DefaultAtomChip.js +22 -0
  166. package/dist/EditorAddon.d.ts +32 -0
  167. package/dist/EditorAddon.js +29 -0
  168. package/dist/EditorAddonNormalization.d.ts +6 -0
  169. package/dist/EditorAddonNormalization.js +48 -0
  170. package/dist/EditorMentionThemeNormalization.d.ts +8 -0
  171. package/dist/EditorMentionThemeNormalization.js +22 -0
  172. package/dist/EditorMentionThemeValidation.d.ts +12 -0
  173. package/dist/EditorMentionThemeValidation.js +95 -0
  174. package/dist/EditorStyleSheet.d.ts +4 -0
  175. package/dist/EditorStyleSheet.js +10 -0
  176. package/dist/EditorStyleSheetNormalization.d.ts +3 -0
  177. package/dist/EditorStyleSheetNormalization.js +226 -0
  178. package/dist/EditorStyleSheetTypes.d.ts +151 -0
  179. package/dist/EditorStyleSheetTypes.js +2 -0
  180. package/dist/EditorTheme.d.ts +117 -0
  181. package/dist/EditorTheme.js +41 -0
  182. package/dist/EditorToolbar.d.ts +4 -0
  183. package/dist/EditorToolbar.js +17 -0
  184. package/dist/EditorToolbarComponent.d.ts +13 -0
  185. package/dist/EditorToolbarComponent.js +24 -0
  186. package/dist/EditorToolbarItems.d.ts +9 -0
  187. package/dist/EditorToolbarItems.js +58 -0
  188. package/dist/EditorToolbarRegistry.d.ts +59 -0
  189. package/dist/EditorToolbarRegistry.js +175 -0
  190. package/dist/EditorToolbarTypes.d.ts +273 -0
  191. package/dist/EditorToolbarTypes.js +2 -0
  192. package/dist/EditorToolbarVisuals.d.ts +154 -0
  193. package/dist/EditorToolbarVisuals.js +228 -0
  194. package/dist/EditorUpdateRevision.d.ts +8 -0
  195. package/dist/EditorUpdateRevision.js +22 -0
  196. package/dist/ExternalTextComposition.d.ts +45 -0
  197. package/dist/ExternalTextComposition.js +537 -0
  198. package/dist/ImageLoadingPolicy.d.ts +54 -0
  199. package/dist/ImageLoadingPolicy.js +60 -0
  200. package/dist/NativeEditorBoundaryError.d.ts +111 -0
  201. package/dist/NativeEditorBoundaryError.js +268 -0
  202. package/dist/NativeEditorBridge.d.ts +9 -0
  203. package/dist/NativeEditorBridge.js +37 -0
  204. package/dist/NativeEditorCollaborationTransport.d.ts +154 -0
  205. package/dist/NativeEditorCollaborationTransport.js +275 -0
  206. package/dist/NativeEditorCreateConfig.d.ts +16 -0
  207. package/dist/NativeEditorCreateConfig.js +249 -0
  208. package/dist/NativeEditorCreateJson.d.ts +76 -0
  209. package/dist/NativeEditorCreateJson.js +474 -0
  210. package/dist/NativeEditorCreateValidation.d.ts +32 -0
  211. package/dist/NativeEditorCreateValidation.js +150 -0
  212. package/dist/NativeEditorDocumentBridge.d.ts +72 -0
  213. package/dist/NativeEditorDocumentBridge.js +305 -0
  214. package/dist/NativeEditorDocumentHandle.d.ts +70 -0
  215. package/dist/NativeEditorDocumentHandle.js +89 -0
  216. package/dist/NativeEditorLocalAwareness.d.ts +34 -0
  217. package/dist/NativeEditorLocalAwareness.js +153 -0
  218. package/dist/NativeEditorNativeModule.d.ts +48 -0
  219. package/dist/NativeEditorNativeModule.js +34 -0
  220. package/dist/NativeEditorRenderNormalization.d.ts +22 -0
  221. package/dist/NativeEditorRenderNormalization.js +274 -0
  222. package/dist/NativeEditorResultNormalization.d.ts +108 -0
  223. package/dist/NativeEditorResultNormalization.js +400 -0
  224. package/dist/NativeEditorTypes.d.ts +318 -0
  225. package/dist/NativeEditorTypes.js +15 -0
  226. package/dist/NativeEditorV2Decimal.d.ts +5 -0
  227. package/dist/NativeEditorV2Decimal.js +18 -0
  228. package/dist/NativeProseViewer.d.ts +122 -0
  229. package/dist/NativeProseViewer.js +130 -0
  230. package/dist/NativeRichTextEditor.d.ts +3 -0
  231. package/dist/NativeRichTextEditor.js +6 -0
  232. package/dist/ResourceLimits.d.ts +100 -0
  233. package/dist/ResourceLimits.js +80 -0
  234. package/dist/RichTextEditor.d.ts +4 -0
  235. package/dist/RichTextEditor.js +25 -0
  236. package/dist/RichTextEditorNativeTypes.d.ts +122 -0
  237. package/dist/RichTextEditorNativeTypes.js +2 -0
  238. package/dist/RichTextEditorNativeView.d.ts +12 -0
  239. package/dist/RichTextEditorNativeView.js +15 -0
  240. package/dist/RichTextEditorSerialization.d.ts +53 -0
  241. package/dist/RichTextEditorSerialization.js +283 -0
  242. package/dist/RichTextEditorTypes.d.ts +281 -0
  243. package/dist/RichTextEditorTypes.js +2 -0
  244. package/dist/ViewerConfiguration.d.ts +22 -0
  245. package/dist/ViewerConfiguration.js +6 -0
  246. package/dist/YjsCollaboration.d.ts +146 -0
  247. package/dist/YjsCollaboration.js +496 -0
  248. package/dist/addons.d.ts +193 -0
  249. package/dist/addons.js +122 -0
  250. package/dist/atomConstants.d.ts +3 -0
  251. package/dist/atomConstants.js +6 -0
  252. package/dist/atomInstances.d.ts +35 -0
  253. package/dist/atomInstances.js +79 -0
  254. package/dist/atomPolicy.d.ts +4 -0
  255. package/dist/atomPolicy.js +47 -0
  256. package/dist/atomUpdates.d.ts +2 -0
  257. package/dist/atomUpdates.js +38 -0
  258. package/dist/atoms.d.ts +92 -0
  259. package/dist/atoms.js +222 -0
  260. package/dist/attributeValidation.d.ts +4 -0
  261. package/dist/attributeValidation.js +97 -0
  262. package/dist/contentExpression.d.ts +6 -0
  263. package/dist/contentExpression.js +335 -0
  264. package/dist/index.d.ts +21 -0
  265. package/dist/index.js +78 -0
  266. package/dist/listMarkers.d.ts +15 -0
  267. package/dist/listMarkers.js +21 -0
  268. package/dist/schemaDefinition.d.ts +143 -0
  269. package/dist/schemaDefinition.js +206 -0
  270. package/dist/schemaDocument.d.ts +17 -0
  271. package/dist/schemaDocument.js +69 -0
  272. package/dist/schemaDocumentConstruction.d.ts +5 -0
  273. package/dist/schemaDocumentConstruction.js +125 -0
  274. package/dist/schemaNormalization.d.ts +29 -0
  275. package/dist/schemaNormalization.js +313 -0
  276. package/dist/schemaPresets.d.ts +68 -0
  277. package/dist/schemaPresets.js +198 -0
  278. package/dist/schemaResolution.d.ts +9 -0
  279. package/dist/schemaResolution.js +211 -0
  280. package/dist/schemas.d.ts +5 -0
  281. package/dist/schemas.js +28 -0
  282. package/dist/specs/PreparedProseViewerNativeComponent.d.ts +37 -0
  283. package/dist/specs/PreparedProseViewerNativeComponent.js +6 -0
  284. package/dist/useEditorToolbarInteractions.d.ts +12 -0
  285. package/dist/useEditorToolbarInteractions.js +218 -0
  286. package/dist/useEditorToolbarItems.d.ts +8 -0
  287. package/dist/useEditorToolbarItems.js +280 -0
  288. package/dist/useEditorToolbarPresentation.d.ts +4 -0
  289. package/dist/useEditorToolbarPresentation.js +203 -0
  290. package/dist/useEditorToolbarState.d.ts +63 -0
  291. package/dist/useEditorToolbarState.js +108 -0
  292. package/dist/useFocusPreservingFrames.d.ts +17 -0
  293. package/dist/useFocusPreservingFrames.js +108 -0
  294. package/dist/useNativeEditor.d.ts +66 -0
  295. package/dist/useNativeEditor.js +370 -0
  296. package/dist/useRichTextEditorCommands.d.ts +21 -0
  297. package/dist/useRichTextEditorCommands.js +299 -0
  298. package/dist/useRichTextEditorEvents.d.ts +18 -0
  299. package/dist/useRichTextEditorEvents.js +216 -0
  300. package/dist/useRichTextEditorMentions.d.ts +11 -0
  301. package/dist/useRichTextEditorMentions.js +316 -0
  302. package/dist/useRichTextEditorPresentation.d.ts +5 -0
  303. package/dist/useRichTextEditorPresentation.js +178 -0
  304. package/dist/useRichTextEditorState.d.ts +180 -0
  305. package/dist/useRichTextEditorState.js +405 -0
  306. package/dist/useRichTextEditorUpdates.d.ts +10 -0
  307. package/dist/useRichTextEditorUpdates.js +308 -0
  308. package/dist/useViewerAtoms.d.ts +38 -0
  309. package/dist/useViewerAtoms.js +288 -0
  310. package/expo-module.config.json +13 -0
  311. package/ios/EditorAddons.swift +354 -0
  312. package/ios/EditorCodeHighlighting.swift +184 -0
  313. package/ios/EditorCore.xcframework/Info.plist +44 -0
  314. package/ios/EditorCore.xcframework/ios-arm64/libeditor_core.a +0 -0
  315. package/ios/EditorCore.xcframework/ios-arm64_x86_64-simulator/libeditor_core.a +0 -0
  316. package/ios/EditorInteractionOverlays.swift +697 -0
  317. package/ios/EditorLayoutManager.swift +971 -0
  318. package/ios/EditorNodeTypes.swift +37 -0
  319. package/ios/EditorStyleSheet.swift +461 -0
  320. package/ios/EditorTextView+AttributedPatch.swift +305 -0
  321. package/ios/EditorTextView+Binding.swift +61 -0
  322. package/ios/EditorTextView+Caret.swift +333 -0
  323. package/ios/EditorTextView+Commands.swift +203 -0
  324. package/ios/EditorTextView+Delegate.swift +65 -0
  325. package/ios/EditorTextView+Diagnostics.swift +225 -0
  326. package/ios/EditorTextView+DragDrop.swift +290 -0
  327. package/ios/EditorTextView+ExternalComposition.swift +364 -0
  328. package/ios/EditorTextView+Images.swift +354 -0
  329. package/ios/EditorTextView+InputTraits.swift +200 -0
  330. package/ios/EditorTextView+KeyboardInput.swift +318 -0
  331. package/ios/EditorTextView+Layout.swift +245 -0
  332. package/ios/EditorTextView+MarkedText.swift +267 -0
  333. package/ios/EditorTextView+NativeInputLifecycle.swift +372 -0
  334. package/ios/EditorTextView+NativeMutation.swift +471 -0
  335. package/ios/EditorTextView+Reconciliation.swift +97 -0
  336. package/ios/EditorTextView+RenderPatch.swift +573 -0
  337. package/ios/EditorTextView+Rendering.swift +539 -0
  338. package/ios/EditorTextView+Selection.swift +542 -0
  339. package/ios/EditorTextView.swift +953 -0
  340. package/ios/EditorTheme.swift +626 -0
  341. package/ios/EditorV2Adapter+Commands.swift +204 -0
  342. package/ios/EditorV2Adapter+Envelope.swift +238 -0
  343. package/ios/EditorV2Adapter+Mutation.swift +392 -0
  344. package/ios/EditorV2Adapter+Registry.swift +185 -0
  345. package/ios/EditorV2Adapter+RenderState.swift +360 -0
  346. package/ios/EditorV2Adapter+RenderValidation.swift +420 -0
  347. package/ios/EditorV2Adapter+Selection.swift +329 -0
  348. package/ios/EditorV2Adapter+TextCommands.swift +430 -0
  349. package/ios/EditorV2Adapter.swift +376 -0
  350. package/ios/EditorV2Shadow.swift +353 -0
  351. package/ios/Generated_editor_core.swift +2378 -0
  352. package/ios/NativeCodeHighlighting.swift +159 -0
  353. package/ios/NativeCollaborationSocket.swift +144 -0
  354. package/ios/NativeCollaborationTransport+Protocol.swift +258 -0
  355. package/ios/NativeCollaborationTransport+Socket.swift +379 -0
  356. package/ios/NativeCollaborationTransport+Validation.swift +103 -0
  357. package/ios/NativeCollaborationTransport.swift +322 -0
  358. package/ios/NativeCollaborationTransportRegistry.swift +521 -0
  359. package/ios/NativeEditorExpoView+AccessoryRetry.swift +219 -0
  360. package/ios/NativeEditorExpoView+Binding.swift +268 -0
  361. package/ios/NativeEditorExpoView+Diagnostics.swift +66 -0
  362. package/ios/NativeEditorExpoView+Events.swift +131 -0
  363. package/ios/NativeEditorExpoView+Focus.swift +169 -0
  364. package/ios/NativeEditorExpoView+MentionRetry.swift +288 -0
  365. package/ios/NativeEditorExpoView+Mentions.swift +288 -0
  366. package/ios/NativeEditorExpoView+Properties.swift +300 -0
  367. package/ios/NativeEditorExpoView+Toolbar.swift +86 -0
  368. package/ios/NativeEditorExpoView+Updates.swift +312 -0
  369. package/ios/NativeEditorExpoView.swift +349 -0
  370. package/ios/NativeEditorModule.swift +856 -0
  371. package/ios/NativeEditorViewRegistry.swift +226 -0
  372. package/ios/NativeToolbar+ButtonStyle.swift +214 -0
  373. package/ios/NativeToolbar+Buttons.swift +228 -0
  374. package/ios/NativeToolbar+Diagnostics.swift +114 -0
  375. package/ios/NativeToolbar+Menu.swift +101 -0
  376. package/ios/NativeToolbar+Models.swift +519 -0
  377. package/ios/NativeToolbar+Placeholder.swift +39 -0
  378. package/ios/NativeToolbar.swift +612 -0
  379. package/ios/OrderedListMarkerFormatter.swift +103 -0
  380. package/ios/PositionBridge.swift +596 -0
  381. package/ios/ProseViewerView.swift +462 -0
  382. package/ios/RenderBridge+Atoms.swift +288 -0
  383. package/ios/RenderBridge+Attachments.swift +246 -0
  384. package/ios/RenderBridge+BlockBoundaries.swift +313 -0
  385. package/ios/RenderBridge+Style.swift +343 -0
  386. package/ios/RenderBridge.swift +704 -0
  387. package/ios/RichTextEditorView.swift +930 -0
  388. package/ios/SharedNativeImagePipeline+Cache.swift +189 -0
  389. package/ios/SharedNativeImagePipeline+Transport.swift +328 -0
  390. package/ios/SharedNativeImagePipeline.swift +533 -0
  391. package/ios/Viewer/CoreTextProseLayoutEngine+AttributedText.swift +436 -0
  392. package/ios/Viewer/CoreTextProseLayoutEngine+Models.swift +322 -0
  393. package/ios/Viewer/CoreTextProseLayoutEngine.swift +635 -0
  394. package/ios/Viewer/Fabric/PREPPreparedProseViewerComponentView.h +4 -0
  395. package/ios/Viewer/Fabric/PREPPreparedProseViewerComponentView.mm +767 -0
  396. package/ios/Viewer/Fabric/PreparedProseMeasurementsManager.mm +118 -0
  397. package/ios/Viewer/NativeSVGImageDecoder.h +9 -0
  398. package/ios/Viewer/NativeSVGImageDecoder.mm +106 -0
  399. package/ios/Viewer/NativeSVGPreflight.h +11 -0
  400. package/ios/Viewer/NativeSVGPreflight.mm +219 -0
  401. package/ios/Viewer/PreparedProseDrawingView.swift +639 -0
  402. package/ios/Viewer/PreparedProseInstrumentation.swift +387 -0
  403. package/ios/Viewer/PreparedProseLayout.swift +326 -0
  404. package/ios/Viewer/PreparedProseLayoutCache.swift +766 -0
  405. package/ios/Viewer/PreparedProseLayoutRegistry+Artifacts.swift +377 -0
  406. package/ios/Viewer/PreparedProseLayoutRegistry+Fabric.swift +582 -0
  407. package/ios/Viewer/PreparedProseLayoutRegistry+FabricOwnership.swift +128 -0
  408. package/ios/Viewer/PreparedProseLayoutRegistry.swift +381 -0
  409. package/ios/Viewer/ViewerDocument.swift +575 -0
  410. package/ios/Viewer/ViewerFontEnvironment.swift +283 -0
  411. package/ios/Viewer/ViewerImagePipeline.swift +478 -0
  412. package/ios/editor_coreFFI/editor_coreFFI.h +1023 -0
  413. package/ios/editor_coreFFI/module.modulemap +7 -0
  414. package/package.json +151 -0
  415. package/react-native.config.js +17 -0
  416. package/rust/android/arm64-v8a/libeditor_core.so +0 -0
  417. package/rust/android/armeabi-v7a/libeditor_core.so +0 -0
  418. package/rust/android/x86/libeditor_core.so +0 -0
  419. package/rust/android/x86_64/libeditor_core.so +0 -0
  420. package/rust/bindings/kotlin/uniffi/editor_core/editor_core.kt +3146 -0
  421. package/src/AtomHost.tsx +180 -0
  422. package/src/DefaultAtomChip.tsx +27 -0
  423. package/src/EditorAddon.ts +65 -0
  424. package/src/EditorAddonNormalization.ts +49 -0
  425. package/src/EditorMentionThemeNormalization.ts +25 -0
  426. package/src/EditorMentionThemeValidation.ts +133 -0
  427. package/src/EditorStyleSheet.ts +9 -0
  428. package/src/EditorStyleSheetNormalization.ts +219 -0
  429. package/src/EditorStyleSheetTypes.ts +189 -0
  430. package/src/EditorTheme.ts +196 -0
  431. package/src/EditorToolbar.tsx +31 -0
  432. package/src/EditorToolbarComponent.tsx +23 -0
  433. package/src/EditorToolbarItems.tsx +64 -0
  434. package/src/EditorToolbarRegistry.tsx +254 -0
  435. package/src/EditorToolbarTypes.tsx +322 -0
  436. package/src/EditorToolbarVisuals.tsx +270 -0
  437. package/src/EditorUpdateRevision.ts +26 -0
  438. package/src/ExternalTextComposition.ts +658 -0
  439. package/src/ImageLoadingPolicy.ts +125 -0
  440. package/src/NativeEditorBoundaryError.ts +345 -0
  441. package/src/NativeEditorBridge.ts +93 -0
  442. package/src/NativeEditorCollaborationTransport.ts +493 -0
  443. package/src/NativeEditorCreateConfig.ts +326 -0
  444. package/src/NativeEditorCreateJson.ts +579 -0
  445. package/src/NativeEditorCreateValidation.ts +178 -0
  446. package/src/NativeEditorDocumentBridge.ts +485 -0
  447. package/src/NativeEditorDocumentHandle.ts +168 -0
  448. package/src/NativeEditorLocalAwareness.ts +168 -0
  449. package/src/NativeEditorNativeModule.ts +97 -0
  450. package/src/NativeEditorRenderNormalization.ts +320 -0
  451. package/src/NativeEditorResultNormalization.ts +469 -0
  452. package/src/NativeEditorTypes.ts +366 -0
  453. package/src/NativeEditorV2Decimal.ts +13 -0
  454. package/src/NativeProseViewer.tsx +356 -0
  455. package/src/NativeRichTextEditor.tsx +33 -0
  456. package/src/ResourceLimits.ts +187 -0
  457. package/src/RichTextEditor.tsx +27 -0
  458. package/src/RichTextEditorNativeTypes.tsx +144 -0
  459. package/src/RichTextEditorNativeView.tsx +21 -0
  460. package/src/RichTextEditorSerialization.tsx +381 -0
  461. package/src/RichTextEditorTypes.tsx +327 -0
  462. package/src/ViewerConfiguration.ts +23 -0
  463. package/src/YjsCollaboration.ts +692 -0
  464. package/src/addons.ts +311 -0
  465. package/src/atomConstants.ts +3 -0
  466. package/src/atomInstances.ts +123 -0
  467. package/src/atomPolicy.ts +47 -0
  468. package/src/atomUpdates.ts +52 -0
  469. package/src/atoms.ts +379 -0
  470. package/src/attributeValidation.ts +116 -0
  471. package/src/contentExpression.ts +338 -0
  472. package/src/index.ts +295 -0
  473. package/src/listMarkers.ts +18 -0
  474. package/src/schemaDefinition.ts +395 -0
  475. package/src/schemaDocument.ts +92 -0
  476. package/src/schemaDocumentConstruction.ts +148 -0
  477. package/src/schemaNormalization.ts +367 -0
  478. package/src/schemaPresets.ts +250 -0
  479. package/src/schemaResolution.ts +242 -0
  480. package/src/schemas.ts +43 -0
  481. package/src/specs/PreparedProseViewerNativeComponent.ts +40 -0
  482. package/src/useEditorToolbarInteractions.tsx +329 -0
  483. package/src/useEditorToolbarItems.tsx +390 -0
  484. package/src/useEditorToolbarPresentation.tsx +483 -0
  485. package/src/useEditorToolbarState.tsx +172 -0
  486. package/src/useFocusPreservingFrames.ts +171 -0
  487. package/src/useNativeEditor.ts +534 -0
  488. package/src/useRichTextEditorCommands.tsx +478 -0
  489. package/src/useRichTextEditorEvents.tsx +342 -0
  490. package/src/useRichTextEditorMentions.tsx +441 -0
  491. package/src/useRichTextEditorPresentation.tsx +563 -0
  492. package/src/useRichTextEditorState.tsx +620 -0
  493. package/src/useRichTextEditorUpdates.tsx +403 -0
  494. package/src/useViewerAtoms.tsx +427 -0
@@ -0,0 +1,1023 @@
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_CLONE_VIEWERCOMPILEDDOCUMENT
255
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_CLONE_VIEWERCOMPILEDDOCUMENT
256
+ void*_Nonnull uniffi_editor_core_fn_clone_viewercompileddocument(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
257
+ );
258
+ #endif
259
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FREE_VIEWERCOMPILEDDOCUMENT
260
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FREE_VIEWERCOMPILEDDOCUMENT
261
+ void uniffi_editor_core_fn_free_viewercompileddocument(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
262
+ );
263
+ #endif
264
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_METHOD_VIEWERCOMPILEDDOCUMENT_ELEMENTS
265
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_METHOD_VIEWERCOMPILEDDOCUMENT_ELEMENTS
266
+ RustBuffer uniffi_editor_core_fn_method_viewercompileddocument_elements(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
267
+ );
268
+ #endif
269
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_METHOD_VIEWERCOMPILEDDOCUMENT_IS_EMPTY
270
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_METHOD_VIEWERCOMPILEDDOCUMENT_IS_EMPTY
271
+ int8_t uniffi_editor_core_fn_method_viewercompileddocument_is_empty(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
272
+ );
273
+ #endif
274
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_METHOD_VIEWERCOMPILEDDOCUMENT_PREFERRED_TEXT_BLOCK_NAME
275
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_METHOD_VIEWERCOMPILEDDOCUMENT_PREFERRED_TEXT_BLOCK_NAME
276
+ RustBuffer uniffi_editor_core_fn_method_viewercompileddocument_preferred_text_block_name(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
277
+ );
278
+ #endif
279
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_METHOD_VIEWERCOMPILEDDOCUMENT_RETAINED_BYTES_DECIMAL
280
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_METHOD_VIEWERCOMPILEDDOCUMENT_RETAINED_BYTES_DECIMAL
281
+ RustBuffer uniffi_editor_core_fn_method_viewercompileddocument_retained_bytes_decimal(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
282
+ );
283
+ #endif
284
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_METHOD_VIEWERCOMPILEDDOCUMENT_SEMANTIC_KEY
285
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_METHOD_VIEWERCOMPILEDDOCUMENT_SEMANTIC_KEY
286
+ RustBuffer uniffi_editor_core_fn_method_viewercompileddocument_semantic_key(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
287
+ );
288
+ #endif
289
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_METHOD_VIEWERCOMPILEDDOCUMENT_TRAILING_EMPTY_TEXT_BLOCK_COUNT
290
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_METHOD_VIEWERCOMPILEDDOCUMENT_TRAILING_EMPTY_TEXT_BLOCK_COUNT
291
+ uint32_t uniffi_editor_core_fn_method_viewercompileddocument_trailing_empty_text_block_count(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
292
+ );
293
+ #endif
294
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_CORE_VERSION
295
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_CORE_VERSION
296
+ RustBuffer uniffi_editor_core_fn_func_editor_core_version(RustCallStatus *_Nonnull out_status
297
+
298
+ );
299
+ #endif
300
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_APPLY_COMMAND
301
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_APPLY_COMMAND
302
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_apply_command(RustBuffer editor_id, RustBuffer request_json, RustCallStatus *_Nonnull out_status
303
+ );
304
+ #endif
305
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_APPLY_INPUT
306
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_APPLY_INPUT
307
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_apply_input(RustBuffer editor_id, RustBuffer request_json, RustCallStatus *_Nonnull out_status
308
+ );
309
+ #endif
310
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_APPLY_LOCAL_API
311
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_APPLY_LOCAL_API
312
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_apply_local_api(RustBuffer editor_id, RustBuffer request_json, RustCallStatus *_Nonnull out_status
313
+ );
314
+ #endif
315
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_APPLY_NATIVE_INTENT
316
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_APPLY_NATIVE_INTENT
317
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_apply_native_intent(RustBuffer editor_id, RustBuffer request_json, RustCallStatus *_Nonnull out_status
318
+ );
319
+ #endif
320
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_ACK_OUTBOUND
321
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_ACK_OUTBOUND
322
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_collaboration_ack_outbound(RustBuffer editor_id, RustBuffer generation, RustBuffer lease_id, RustCallStatus *_Nonnull out_status
323
+ );
324
+ #endif
325
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_DETACH
326
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_DETACH
327
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_collaboration_detach(RustBuffer editor_id, RustCallStatus *_Nonnull out_status
328
+ );
329
+ #endif
330
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_DRIVE
331
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_DRIVE
332
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_collaboration_drive(RustBuffer editor_id, RustBuffer now_millis, RustCallStatus *_Nonnull out_status
333
+ );
334
+ #endif
335
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_LEASE_OUTBOUND
336
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_LEASE_OUTBOUND
337
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_collaboration_lease_outbound(RustBuffer editor_id, RustBuffer generation, RustCallStatus *_Nonnull out_status
338
+ );
339
+ #endif
340
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_NACK_OUTBOUND
341
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_NACK_OUTBOUND
342
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_collaboration_nack_outbound(RustBuffer editor_id, RustBuffer generation, RustBuffer lease_id, RustCallStatus *_Nonnull out_status
343
+ );
344
+ #endif
345
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_PEERS
346
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_PEERS
347
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_collaboration_peers(RustBuffer editor_id, RustCallStatus *_Nonnull out_status
348
+ );
349
+ #endif
350
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_REATTACH
351
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_REATTACH
352
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_collaboration_reattach(RustBuffer editor_id, RustCallStatus *_Nonnull out_status
353
+ );
354
+ #endif
355
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_RECEIVE
356
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_RECEIVE
357
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_collaboration_receive(RustBuffer editor_id, RustBuffer generation, RustBuffer message, RustBuffer now_millis, RustCallStatus *_Nonnull out_status
358
+ );
359
+ #endif
360
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_SET_AWARENESS
361
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_SET_AWARENESS
362
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_collaboration_set_awareness(RustBuffer editor_id, RustBuffer awareness_json, RustCallStatus *_Nonnull out_status
363
+ );
364
+ #endif
365
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_SET_AWARENESS_SELECTION
366
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_SET_AWARENESS_SELECTION
367
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_collaboration_set_awareness_selection(RustBuffer editor_id, RustBuffer selection_json, RustCallStatus *_Nonnull out_status
368
+ );
369
+ #endif
370
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_SOCKET_CLOSE
371
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_SOCKET_CLOSE
372
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_collaboration_socket_close(RustBuffer editor_id, RustBuffer generation, RustBuffer code, RustBuffer reason, RustBuffer now_millis, RustCallStatus *_Nonnull out_status
373
+ );
374
+ #endif
375
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_SOCKET_OPEN
376
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_COLLABORATION_SOCKET_OPEN
377
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_collaboration_socket_open(RustBuffer editor_id, RustBuffer generation, RustBuffer now_millis, RustCallStatus *_Nonnull out_status
378
+ );
379
+ #endif
380
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_CREATE
381
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_CREATE
382
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_create(RustBuffer config_json, RustBuffer snapshot_state, RustCallStatus *_Nonnull out_status
383
+ );
384
+ #endif
385
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_DESTROY
386
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_DESTROY
387
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_destroy(RustBuffer editor_id, RustCallStatus *_Nonnull out_status
388
+ );
389
+ #endif
390
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_DOC_TO_SCALAR
391
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_DOC_TO_SCALAR
392
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_doc_to_scalar(RustBuffer editor_id, uint32_t doc_pos, RustCallStatus *_Nonnull out_status
393
+ );
394
+ #endif
395
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_GET_CONTENT_SNAPSHOT
396
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_GET_CONTENT_SNAPSHOT
397
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_get_content_snapshot(RustBuffer editor_id, RustCallStatus *_Nonnull out_status
398
+ );
399
+ #endif
400
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_GET_DOCUMENT_HTML
401
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_GET_DOCUMENT_HTML
402
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_get_document_html(RustBuffer editor_id, RustCallStatus *_Nonnull out_status
403
+ );
404
+ #endif
405
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_GET_DOCUMENT_JSON
406
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_GET_DOCUMENT_JSON
407
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_get_document_json(RustBuffer editor_id, RustCallStatus *_Nonnull out_status
408
+ );
409
+ #endif
410
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_GET_STATE
411
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_GET_STATE
412
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_get_state(RustBuffer editor_id, RustCallStatus *_Nonnull out_status
413
+ );
414
+ #endif
415
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_PIN_POSITION_EPOCH
416
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_PIN_POSITION_EPOCH
417
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_pin_position_epoch(RustBuffer editor_id, RustBuffer owner_id, RustBuffer document_revision, RustCallStatus *_Nonnull out_status
418
+ );
419
+ #endif
420
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_REDO
421
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_REDO
422
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_redo(RustBuffer editor_id, RustBuffer request_json, RustCallStatus *_Nonnull out_status
423
+ );
424
+ #endif
425
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_RELEASE_NATIVE_BINDING
426
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_RELEASE_NATIVE_BINDING
427
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_release_native_binding(RustBuffer editor_id, RustBuffer owner_id, RustCallStatus *_Nonnull out_status
428
+ );
429
+ #endif
430
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_RENDER_NATIVE
431
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_RENDER_NATIVE
432
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_render_native(RustBuffer editor_id, RustBuffer owner_id, RustBuffer mirror_scalar_anchor, RustBuffer mirror_scalar_head, RustCallStatus *_Nonnull out_status
433
+ );
434
+ #endif
435
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_RENDER_UPDATE
436
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_RENDER_UPDATE
437
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_render_update(RustBuffer editor_id, RustBuffer mirror_scalar_anchor, RustBuffer mirror_scalar_head, RustCallStatus *_Nonnull out_status
438
+ );
439
+ #endif
440
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_REPLACE_DOCUMENT
441
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_REPLACE_DOCUMENT
442
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_replace_document(RustBuffer editor_id, RustBuffer request_json, RustCallStatus *_Nonnull out_status
443
+ );
444
+ #endif
445
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_RESOLVE_SCALAR_SELECTION
446
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_RESOLVE_SCALAR_SELECTION
447
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_resolve_scalar_selection(RustBuffer editor_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_V2_SCALAR_TO_DOC
451
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_SCALAR_TO_DOC
452
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_scalar_to_doc(RustBuffer editor_id, uint32_t scalar, RustCallStatus *_Nonnull out_status
453
+ );
454
+ #endif
455
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_SET_SELECTION
456
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_SET_SELECTION
457
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_set_selection(RustBuffer editor_id, RustBuffer request_json, RustCallStatus *_Nonnull out_status
458
+ );
459
+ #endif
460
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_SNAPSHOT_EXPORT
461
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_SNAPSHOT_EXPORT
462
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_snapshot_export(RustBuffer editor_id, RustCallStatus *_Nonnull out_status
463
+ );
464
+ #endif
465
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_SNAPSHOT_RESTORE
466
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_SNAPSHOT_RESTORE
467
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_snapshot_restore(RustBuffer editor_id, RustBuffer metadata_json, RustBuffer encoded_state, RustCallStatus *_Nonnull out_status
468
+ );
469
+ #endif
470
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_UNDO
471
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_V2_UNDO
472
+ RustBuffer uniffi_editor_core_fn_func_editor_v2_undo(RustBuffer editor_id, RustBuffer request_json, RustCallStatus *_Nonnull out_status
473
+ );
474
+ #endif
475
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_VIEWER_COMPILE
476
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_VIEWER_COMPILE
477
+ RustBuffer uniffi_editor_core_fn_func_viewer_compile(RustBuffer request, RustCallStatus *_Nonnull out_status
478
+ );
479
+ #endif
480
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_ALLOC
481
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_ALLOC
482
+ RustBuffer ffi_editor_core_rustbuffer_alloc(uint64_t size, RustCallStatus *_Nonnull out_status
483
+ );
484
+ #endif
485
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_FROM_BYTES
486
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_FROM_BYTES
487
+ RustBuffer ffi_editor_core_rustbuffer_from_bytes(ForeignBytes bytes, RustCallStatus *_Nonnull out_status
488
+ );
489
+ #endif
490
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_FREE
491
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_FREE
492
+ void ffi_editor_core_rustbuffer_free(RustBuffer buf, RustCallStatus *_Nonnull out_status
493
+ );
494
+ #endif
495
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_RESERVE
496
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUSTBUFFER_RESERVE
497
+ RustBuffer ffi_editor_core_rustbuffer_reserve(RustBuffer buf, uint64_t additional, RustCallStatus *_Nonnull out_status
498
+ );
499
+ #endif
500
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U8
501
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U8
502
+ void ffi_editor_core_rust_future_poll_u8(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
503
+ );
504
+ #endif
505
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U8
506
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U8
507
+ void ffi_editor_core_rust_future_cancel_u8(uint64_t handle
508
+ );
509
+ #endif
510
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U8
511
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U8
512
+ void ffi_editor_core_rust_future_free_u8(uint64_t handle
513
+ );
514
+ #endif
515
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U8
516
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U8
517
+ uint8_t ffi_editor_core_rust_future_complete_u8(uint64_t handle, RustCallStatus *_Nonnull out_status
518
+ );
519
+ #endif
520
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I8
521
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I8
522
+ void ffi_editor_core_rust_future_poll_i8(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
523
+ );
524
+ #endif
525
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I8
526
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I8
527
+ void ffi_editor_core_rust_future_cancel_i8(uint64_t handle
528
+ );
529
+ #endif
530
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I8
531
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I8
532
+ void ffi_editor_core_rust_future_free_i8(uint64_t handle
533
+ );
534
+ #endif
535
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I8
536
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I8
537
+ int8_t ffi_editor_core_rust_future_complete_i8(uint64_t handle, RustCallStatus *_Nonnull out_status
538
+ );
539
+ #endif
540
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U16
541
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U16
542
+ void ffi_editor_core_rust_future_poll_u16(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
543
+ );
544
+ #endif
545
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U16
546
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U16
547
+ void ffi_editor_core_rust_future_cancel_u16(uint64_t handle
548
+ );
549
+ #endif
550
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U16
551
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U16
552
+ void ffi_editor_core_rust_future_free_u16(uint64_t handle
553
+ );
554
+ #endif
555
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U16
556
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U16
557
+ uint16_t ffi_editor_core_rust_future_complete_u16(uint64_t handle, RustCallStatus *_Nonnull out_status
558
+ );
559
+ #endif
560
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I16
561
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I16
562
+ void ffi_editor_core_rust_future_poll_i16(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
563
+ );
564
+ #endif
565
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I16
566
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I16
567
+ void ffi_editor_core_rust_future_cancel_i16(uint64_t handle
568
+ );
569
+ #endif
570
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I16
571
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I16
572
+ void ffi_editor_core_rust_future_free_i16(uint64_t handle
573
+ );
574
+ #endif
575
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I16
576
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I16
577
+ int16_t ffi_editor_core_rust_future_complete_i16(uint64_t handle, RustCallStatus *_Nonnull out_status
578
+ );
579
+ #endif
580
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U32
581
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U32
582
+ void ffi_editor_core_rust_future_poll_u32(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
583
+ );
584
+ #endif
585
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U32
586
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U32
587
+ void ffi_editor_core_rust_future_cancel_u32(uint64_t handle
588
+ );
589
+ #endif
590
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U32
591
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U32
592
+ void ffi_editor_core_rust_future_free_u32(uint64_t handle
593
+ );
594
+ #endif
595
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U32
596
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U32
597
+ uint32_t ffi_editor_core_rust_future_complete_u32(uint64_t handle, RustCallStatus *_Nonnull out_status
598
+ );
599
+ #endif
600
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I32
601
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I32
602
+ void ffi_editor_core_rust_future_poll_i32(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
603
+ );
604
+ #endif
605
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I32
606
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I32
607
+ void ffi_editor_core_rust_future_cancel_i32(uint64_t handle
608
+ );
609
+ #endif
610
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I32
611
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I32
612
+ void ffi_editor_core_rust_future_free_i32(uint64_t handle
613
+ );
614
+ #endif
615
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I32
616
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I32
617
+ int32_t ffi_editor_core_rust_future_complete_i32(uint64_t handle, RustCallStatus *_Nonnull out_status
618
+ );
619
+ #endif
620
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U64
621
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_U64
622
+ void ffi_editor_core_rust_future_poll_u64(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
623
+ );
624
+ #endif
625
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U64
626
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_U64
627
+ void ffi_editor_core_rust_future_cancel_u64(uint64_t handle
628
+ );
629
+ #endif
630
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U64
631
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_U64
632
+ void ffi_editor_core_rust_future_free_u64(uint64_t handle
633
+ );
634
+ #endif
635
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U64
636
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_U64
637
+ uint64_t ffi_editor_core_rust_future_complete_u64(uint64_t handle, RustCallStatus *_Nonnull out_status
638
+ );
639
+ #endif
640
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I64
641
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_I64
642
+ void ffi_editor_core_rust_future_poll_i64(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
643
+ );
644
+ #endif
645
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I64
646
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_I64
647
+ void ffi_editor_core_rust_future_cancel_i64(uint64_t handle
648
+ );
649
+ #endif
650
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I64
651
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_I64
652
+ void ffi_editor_core_rust_future_free_i64(uint64_t handle
653
+ );
654
+ #endif
655
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I64
656
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_I64
657
+ int64_t ffi_editor_core_rust_future_complete_i64(uint64_t handle, RustCallStatus *_Nonnull out_status
658
+ );
659
+ #endif
660
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_F32
661
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_F32
662
+ void ffi_editor_core_rust_future_poll_f32(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
663
+ );
664
+ #endif
665
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_F32
666
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_F32
667
+ void ffi_editor_core_rust_future_cancel_f32(uint64_t handle
668
+ );
669
+ #endif
670
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_F32
671
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_F32
672
+ void ffi_editor_core_rust_future_free_f32(uint64_t handle
673
+ );
674
+ #endif
675
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_F32
676
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_F32
677
+ float ffi_editor_core_rust_future_complete_f32(uint64_t handle, RustCallStatus *_Nonnull out_status
678
+ );
679
+ #endif
680
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_F64
681
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_F64
682
+ void ffi_editor_core_rust_future_poll_f64(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
683
+ );
684
+ #endif
685
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_F64
686
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_F64
687
+ void ffi_editor_core_rust_future_cancel_f64(uint64_t handle
688
+ );
689
+ #endif
690
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_F64
691
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_F64
692
+ void ffi_editor_core_rust_future_free_f64(uint64_t handle
693
+ );
694
+ #endif
695
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_F64
696
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_F64
697
+ double ffi_editor_core_rust_future_complete_f64(uint64_t handle, RustCallStatus *_Nonnull out_status
698
+ );
699
+ #endif
700
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_POINTER
701
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_POINTER
702
+ void ffi_editor_core_rust_future_poll_pointer(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
703
+ );
704
+ #endif
705
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_POINTER
706
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_POINTER
707
+ void ffi_editor_core_rust_future_cancel_pointer(uint64_t handle
708
+ );
709
+ #endif
710
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_POINTER
711
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_POINTER
712
+ void ffi_editor_core_rust_future_free_pointer(uint64_t handle
713
+ );
714
+ #endif
715
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_POINTER
716
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_POINTER
717
+ void*_Nonnull ffi_editor_core_rust_future_complete_pointer(uint64_t handle, RustCallStatus *_Nonnull out_status
718
+ );
719
+ #endif
720
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_RUST_BUFFER
721
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_RUST_BUFFER
722
+ void ffi_editor_core_rust_future_poll_rust_buffer(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
723
+ );
724
+ #endif
725
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_RUST_BUFFER
726
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_RUST_BUFFER
727
+ void ffi_editor_core_rust_future_cancel_rust_buffer(uint64_t handle
728
+ );
729
+ #endif
730
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_RUST_BUFFER
731
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_RUST_BUFFER
732
+ void ffi_editor_core_rust_future_free_rust_buffer(uint64_t handle
733
+ );
734
+ #endif
735
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_RUST_BUFFER
736
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_RUST_BUFFER
737
+ RustBuffer ffi_editor_core_rust_future_complete_rust_buffer(uint64_t handle, RustCallStatus *_Nonnull out_status
738
+ );
739
+ #endif
740
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_VOID
741
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_POLL_VOID
742
+ void ffi_editor_core_rust_future_poll_void(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
743
+ );
744
+ #endif
745
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_VOID
746
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_CANCEL_VOID
747
+ void ffi_editor_core_rust_future_cancel_void(uint64_t handle
748
+ );
749
+ #endif
750
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_VOID
751
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_FREE_VOID
752
+ void ffi_editor_core_rust_future_free_void(uint64_t handle
753
+ );
754
+ #endif
755
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_VOID
756
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_RUST_FUTURE_COMPLETE_VOID
757
+ void ffi_editor_core_rust_future_complete_void(uint64_t handle, RustCallStatus *_Nonnull out_status
758
+ );
759
+ #endif
760
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CORE_VERSION
761
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CORE_VERSION
762
+ uint16_t uniffi_editor_core_checksum_func_editor_core_version(void
763
+
764
+ );
765
+ #endif
766
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_APPLY_COMMAND
767
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_APPLY_COMMAND
768
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_apply_command(void
769
+
770
+ );
771
+ #endif
772
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_APPLY_INPUT
773
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_APPLY_INPUT
774
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_apply_input(void
775
+
776
+ );
777
+ #endif
778
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_APPLY_LOCAL_API
779
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_APPLY_LOCAL_API
780
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_apply_local_api(void
781
+
782
+ );
783
+ #endif
784
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_APPLY_NATIVE_INTENT
785
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_APPLY_NATIVE_INTENT
786
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_apply_native_intent(void
787
+
788
+ );
789
+ #endif
790
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_ACK_OUTBOUND
791
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_ACK_OUTBOUND
792
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_collaboration_ack_outbound(void
793
+
794
+ );
795
+ #endif
796
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_DETACH
797
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_DETACH
798
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_collaboration_detach(void
799
+
800
+ );
801
+ #endif
802
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_DRIVE
803
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_DRIVE
804
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_collaboration_drive(void
805
+
806
+ );
807
+ #endif
808
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_LEASE_OUTBOUND
809
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_LEASE_OUTBOUND
810
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_collaboration_lease_outbound(void
811
+
812
+ );
813
+ #endif
814
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_NACK_OUTBOUND
815
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_NACK_OUTBOUND
816
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_collaboration_nack_outbound(void
817
+
818
+ );
819
+ #endif
820
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_PEERS
821
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_PEERS
822
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_collaboration_peers(void
823
+
824
+ );
825
+ #endif
826
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_REATTACH
827
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_REATTACH
828
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_collaboration_reattach(void
829
+
830
+ );
831
+ #endif
832
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_RECEIVE
833
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_RECEIVE
834
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_collaboration_receive(void
835
+
836
+ );
837
+ #endif
838
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_SET_AWARENESS
839
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_SET_AWARENESS
840
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_collaboration_set_awareness(void
841
+
842
+ );
843
+ #endif
844
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_SET_AWARENESS_SELECTION
845
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_SET_AWARENESS_SELECTION
846
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_collaboration_set_awareness_selection(void
847
+
848
+ );
849
+ #endif
850
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_SOCKET_CLOSE
851
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_SOCKET_CLOSE
852
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_collaboration_socket_close(void
853
+
854
+ );
855
+ #endif
856
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_SOCKET_OPEN
857
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_COLLABORATION_SOCKET_OPEN
858
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_collaboration_socket_open(void
859
+
860
+ );
861
+ #endif
862
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_CREATE
863
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_CREATE
864
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_create(void
865
+
866
+ );
867
+ #endif
868
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_DESTROY
869
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_DESTROY
870
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_destroy(void
871
+
872
+ );
873
+ #endif
874
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_DOC_TO_SCALAR
875
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_DOC_TO_SCALAR
876
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_doc_to_scalar(void
877
+
878
+ );
879
+ #endif
880
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_GET_CONTENT_SNAPSHOT
881
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_GET_CONTENT_SNAPSHOT
882
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_get_content_snapshot(void
883
+
884
+ );
885
+ #endif
886
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_GET_DOCUMENT_HTML
887
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_GET_DOCUMENT_HTML
888
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_get_document_html(void
889
+
890
+ );
891
+ #endif
892
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_GET_DOCUMENT_JSON
893
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_GET_DOCUMENT_JSON
894
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_get_document_json(void
895
+
896
+ );
897
+ #endif
898
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_GET_STATE
899
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_GET_STATE
900
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_get_state(void
901
+
902
+ );
903
+ #endif
904
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_PIN_POSITION_EPOCH
905
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_PIN_POSITION_EPOCH
906
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_pin_position_epoch(void
907
+
908
+ );
909
+ #endif
910
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_REDO
911
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_REDO
912
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_redo(void
913
+
914
+ );
915
+ #endif
916
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_RELEASE_NATIVE_BINDING
917
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_RELEASE_NATIVE_BINDING
918
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_release_native_binding(void
919
+
920
+ );
921
+ #endif
922
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_RENDER_NATIVE
923
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_RENDER_NATIVE
924
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_render_native(void
925
+
926
+ );
927
+ #endif
928
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_RENDER_UPDATE
929
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_RENDER_UPDATE
930
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_render_update(void
931
+
932
+ );
933
+ #endif
934
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_REPLACE_DOCUMENT
935
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_REPLACE_DOCUMENT
936
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_replace_document(void
937
+
938
+ );
939
+ #endif
940
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_RESOLVE_SCALAR_SELECTION
941
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_RESOLVE_SCALAR_SELECTION
942
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_resolve_scalar_selection(void
943
+
944
+ );
945
+ #endif
946
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_SCALAR_TO_DOC
947
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_SCALAR_TO_DOC
948
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_scalar_to_doc(void
949
+
950
+ );
951
+ #endif
952
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_SET_SELECTION
953
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_SET_SELECTION
954
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_set_selection(void
955
+
956
+ );
957
+ #endif
958
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_SNAPSHOT_EXPORT
959
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_SNAPSHOT_EXPORT
960
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_snapshot_export(void
961
+
962
+ );
963
+ #endif
964
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_SNAPSHOT_RESTORE
965
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_SNAPSHOT_RESTORE
966
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_snapshot_restore(void
967
+
968
+ );
969
+ #endif
970
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_UNDO
971
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_V2_UNDO
972
+ uint16_t uniffi_editor_core_checksum_func_editor_v2_undo(void
973
+
974
+ );
975
+ #endif
976
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_VIEWER_COMPILE
977
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_VIEWER_COMPILE
978
+ uint16_t uniffi_editor_core_checksum_func_viewer_compile(void
979
+
980
+ );
981
+ #endif
982
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_METHOD_VIEWERCOMPILEDDOCUMENT_ELEMENTS
983
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_METHOD_VIEWERCOMPILEDDOCUMENT_ELEMENTS
984
+ uint16_t uniffi_editor_core_checksum_method_viewercompileddocument_elements(void
985
+
986
+ );
987
+ #endif
988
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_METHOD_VIEWERCOMPILEDDOCUMENT_IS_EMPTY
989
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_METHOD_VIEWERCOMPILEDDOCUMENT_IS_EMPTY
990
+ uint16_t uniffi_editor_core_checksum_method_viewercompileddocument_is_empty(void
991
+
992
+ );
993
+ #endif
994
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_METHOD_VIEWERCOMPILEDDOCUMENT_PREFERRED_TEXT_BLOCK_NAME
995
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_METHOD_VIEWERCOMPILEDDOCUMENT_PREFERRED_TEXT_BLOCK_NAME
996
+ uint16_t uniffi_editor_core_checksum_method_viewercompileddocument_preferred_text_block_name(void
997
+
998
+ );
999
+ #endif
1000
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_METHOD_VIEWERCOMPILEDDOCUMENT_RETAINED_BYTES_DECIMAL
1001
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_METHOD_VIEWERCOMPILEDDOCUMENT_RETAINED_BYTES_DECIMAL
1002
+ uint16_t uniffi_editor_core_checksum_method_viewercompileddocument_retained_bytes_decimal(void
1003
+
1004
+ );
1005
+ #endif
1006
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_METHOD_VIEWERCOMPILEDDOCUMENT_SEMANTIC_KEY
1007
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_METHOD_VIEWERCOMPILEDDOCUMENT_SEMANTIC_KEY
1008
+ uint16_t uniffi_editor_core_checksum_method_viewercompileddocument_semantic_key(void
1009
+
1010
+ );
1011
+ #endif
1012
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_METHOD_VIEWERCOMPILEDDOCUMENT_TRAILING_EMPTY_TEXT_BLOCK_COUNT
1013
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_METHOD_VIEWERCOMPILEDDOCUMENT_TRAILING_EMPTY_TEXT_BLOCK_COUNT
1014
+ uint16_t uniffi_editor_core_checksum_method_viewercompileddocument_trailing_empty_text_block_count(void
1015
+
1016
+ );
1017
+ #endif
1018
+ #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_UNIFFI_CONTRACT_VERSION
1019
+ #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_UNIFFI_CONTRACT_VERSION
1020
+ uint32_t ffi_editor_core_uniffi_contract_version(void
1021
+
1022
+ );
1023
+ #endif