diff --git a/arkoala-arkts/arkui/sdk/generated/canvas.ets b/arkoala-arkts/arkui/sdk/generated/canvas.ets index 0b4bfa6f55d8782cd8b1a64ddcbac44117732aa2..13118bcb10c6b380765e2c4133e17d3a2f59bd82 100644 --- a/arkoala-arkts/arkui/sdk/generated/canvas.ets +++ b/arkoala-arkts/arkui/sdk/generated/canvas.ets @@ -93,52 +93,30 @@ export declare class ImageData { export declare class RenderingContextSettings { constructor(antialias: boolean | undefined) antialias: boolean | undefined; - // antialias: boolean | undefined; } export declare class CanvasRenderer extends CanvasPath { constructor() letterSpacing: LengthMetrics | string; - // letterSpacing: LengthMetrics | string; globalAlpha: number; - // globalAlpha: number; globalCompositeOperation: string; - // globalCompositeOperation: string; fillStyle: string | number | CanvasGradient | CanvasPattern; - // fillStyle: string | number | CanvasGradient | CanvasPattern; strokeStyle: string | number | CanvasGradient | CanvasPattern; - // strokeStyle: string | number | CanvasGradient | CanvasPattern; filter: string; - // filter: string; imageSmoothingEnabled: boolean; - // imageSmoothingEnabled: boolean; imageSmoothingQuality: ImageSmoothingQuality; - // imageSmoothingQuality: ImageSmoothingQuality; lineCap: CanvasLineCap; - // lineCap: CanvasLineCap; lineDashOffset: number; - // lineDashOffset: number; lineJoin: CanvasLineJoin; - // lineJoin: CanvasLineJoin; lineWidth: number; - // lineWidth: number; miterLimit: number; - // miterLimit: number; shadowBlur: number; - // shadowBlur: number; shadowColor: string; - // shadowColor: string; shadowOffsetX: number; - // shadowOffsetX: number; shadowOffsetY: number; - // shadowOffsetY: number; direction: CanvasDirection; - // direction: CanvasDirection; font: string; - // font: string; textAlign: CanvasTextAlign; - // textAlign: CanvasTextAlign; textBaseline: CanvasTextBaseline; - // textBaseline: CanvasTextBaseline; drawImage(image: ImageBitmap | image.PixelMap, dx_sx: number, dy_sy: number, sw_dw: number, sh_dh: number, dx: number, dy: number, dw: number, dh: number): void beginPath(): void clip(fillRule?: CanvasFillRule): void @@ -200,9 +178,7 @@ export declare class OffscreenCanvasRenderingContext2D extends CanvasRenderer { export declare class OffscreenCanvas { constructor(width: number, height: number, unit: LengthMetricsUnit | undefined) height: number; - // height: number; width: number; - // width: number; transferToImageBitmap(): ImageBitmap getContext2d(options?: RenderingContextSettings): OffscreenCanvasRenderingContext2D } diff --git a/arkoala-arkts/arkui/sdk/generated/common.ets b/arkoala-arkts/arkui/sdk/generated/common.ets index 0cbb883faac4c16a5c07a3b45c996e0c9a78b179..4bdf6cfb128f59a4397986a263bf688bee7119dd 100644 --- a/arkoala-arkts/arkui/sdk/generated/common.ets +++ b/arkoala-arkts/arkui/sdk/generated/common.ets @@ -343,10 +343,10 @@ export declare interface AsymmetricTransitionOption { export declare class DrawModifier { constructor() drawBehind_callback: ((drawContext: DrawContext) => void); - drawContent_callback: ((drawContext: DrawContext) => void); - drawFront_callback: ((drawContext: DrawContext) => void); drawBehind(drawContext: DrawContext): void + drawContent_callback: ((drawContext: DrawContext) => void); drawContent(drawContext: DrawContext): void + drawFront_callback: ((drawContext: DrawContext) => void); drawFront(drawContext: DrawContext): void invalidate(): void } diff --git a/arkoala-arkts/arkui/src/ets/generated/GlobalScope.ets b/arkoala-arkts/arkui/src/ets/generated/GlobalScope.ets index 7429aa831e25ec92cdb8ee3fcbde93979c685cc6..d832ff68d7f65cbd73738e667678e98a8588074c 100644 --- a/arkoala-arkts/arkui/src/ets/generated/GlobalScope.ets +++ b/arkoala-arkts/arkui/src/ets/generated/GlobalScope.ets @@ -17,7 +17,7 @@ // WARNING! THIS FILE IS AUTO-GENERATED, DO NOT MAKE CHANGES, THEY WILL BE LOST ON NEXT GENERATION! import { Edges_serializer, BorderRadiuses_serializer, Edges, Dimension, BorderRadiuses, Length } from "./units" -import { SerializerBase, DeserializerBase, Finalizable, runtimeType, RuntimeType, registerCallback, wrapCallback, KPointer, toPeerPtr, MaterializedBase, NativeBuffer } from "@koalaui/interop" +import { SerializerBase, DeserializerBase, NativeBuffer, Finalizable, runtimeType, RuntimeType, registerCallback, wrapCallback, KPointer, toPeerPtr, MaterializedBase } from "@koalaui/interop" import { Resource_serializer, Resource } from "./resource" import { AnimateParam_serializer, AnimateParam, ICurve, FinishCallbackType, ExpectedFrameRateRange } from "./common" import { ComponentInfo_serializer, ComponentInfo, Offset_componentutils, TranslateResult, ScaleResult, RotateResult, Matrix4Result } from "./arkui-componentutils" @@ -29,7 +29,7 @@ import { BorderStyle, Curve, PlayMode } from "./enums" import { InteropComponent } from "./interop" import { Size } from "./arkui.Graphics" import { pointer } from "./ohos.multimodalInput.pointer" -import { unsafeCast, int32, float32 } from "@koalaui/common" +import { int32, int64, float32, unsafeCast } from "@koalaui/common" import { CallbackKind } from "./peers/CallbackKind" import { CallbackTransformer } from "./../CallbackTransformer" export class GlobalScope { diff --git a/arkoala-arkts/arkui/src/ets/generated/inspector.ets b/arkoala-arkts/arkui/src/ets/generated/inspector.ets index 3d7c51aa49ea1df9b8502701e2b19b386dc42251..144c05f62290d44e72dd75036a7b539ec8121fbf 100644 --- a/arkoala-arkts/arkui/src/ets/generated/inspector.ets +++ b/arkoala-arkts/arkui/src/ets/generated/inspector.ets @@ -16,9 +16,9 @@ // WARNING! THIS FILE IS AUTO-GENERATED, DO NOT MAKE CHANGES, THEY WILL BE LOST ON NEXT GENERATION! -import { GlobalScope } from "./GlobalScope" import { int32, int64, float32 } from "@koalaui/common" -import { KInt, KPointer, KBoolean, NativeBuffer, KStringPtr, wrapCallback } from "@koalaui/interop" +import { NativeBuffer, KInt, KPointer, KBoolean, KStringPtr, wrapCallback } from "@koalaui/interop" +import { GlobalScope } from "./GlobalScope" import { memo, memo_stable } from "@koalaui/runtime/annotations" import { BuilderLambda } from "@koalaui/builderLambda" export function setAppBgColor(value: string): void { diff --git a/arkoala-arkts/framework/native/src/generated/Serializers.h b/arkoala-arkts/framework/native/src/generated/Serializers.h index 8376b02b8b3b7ad2f71f3af7c5cba22c11bd9f4d..a6bb395841fe010d71f8c3620fb66b88c17b37c4 100644 --- a/arkoala-arkts/framework/native/src/generated/Serializers.h +++ b/arkoala-arkts/framework/native/src/generated/Serializers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Huawei Device Co., Ltd. + * Copyright (c) 2024-2025 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/arkoala-arkts/framework/native/src/generated/bridge_generated.cc b/arkoala-arkts/framework/native/src/generated/bridge_generated.cc index 0d16cb52f35e8d953fe2b5c36b06eb3ea6a1bf96..8a7247686f340064de60b87b75bc1029d6a06d7f 100644 --- a/arkoala-arkts/framework/native/src/generated/bridge_generated.cc +++ b/arkoala-arkts/framework/native/src/generated/bridge_generated.cc @@ -45,7 +45,7 @@ void impl_AlphabetIndexerInterface_setAlphabetIndexerOptions(Ark_NativePointer t Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_AlphabetIndexerOptions options_value = AlphabetIndexerOptions_serializer::read(thisDeserializer);; - GetNodeModifiers()->getAlphabetIndexerModifier()->setAlphabetIndexerOptions(self, (const Ark_AlphabetIndexerOptions*)&options_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setAlphabetIndexerOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerInterface_setAlphabetIndexerOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_color(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -81,7 +81,7 @@ void impl_AlphabetIndexerAttribute_color(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_color, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_selectedColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -117,7 +117,7 @@ void impl_AlphabetIndexerAttribute_selectedColor(Ark_NativePointer thisPtr, KSer value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setSelectedColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setSelectedColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_selectedColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_popupColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -153,7 +153,7 @@ void impl_AlphabetIndexerAttribute_popupColor(Ark_NativePointer thisPtr, KSerial value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setPopupColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setPopupColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_popupColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_selectedBackgroundColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -189,7 +189,7 @@ void impl_AlphabetIndexerAttribute_selectedBackgroundColor(Ark_NativePointer thi value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setSelectedBackgroundColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setSelectedBackgroundColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_selectedBackgroundColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_popupBackground(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -225,7 +225,7 @@ void impl_AlphabetIndexerAttribute_popupBackground(Ark_NativePointer thisPtr, KS value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setPopupBackground(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setPopupBackground(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_popupBackground, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_popupSelectedColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -261,7 +261,7 @@ void impl_AlphabetIndexerAttribute_popupSelectedColor(Ark_NativePointer thisPtr, value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setPopupSelectedColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setPopupSelectedColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_popupSelectedColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_popupUnselectedColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -297,7 +297,7 @@ void impl_AlphabetIndexerAttribute_popupUnselectedColor(Ark_NativePointer thisPt value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setPopupUnselectedColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setPopupUnselectedColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_popupUnselectedColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_popupItemBackgroundColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -333,7 +333,7 @@ void impl_AlphabetIndexerAttribute_popupItemBackgroundColor(Ark_NativePointer th value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setPopupItemBackgroundColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setPopupItemBackgroundColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_popupItemBackgroundColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_usingPopup(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -347,7 +347,7 @@ void impl_AlphabetIndexerAttribute_usingPopup(Ark_NativePointer thisPtr, KSerial value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setUsingPopup(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setUsingPopup(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_usingPopup, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_selectedFont(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -361,7 +361,7 @@ void impl_AlphabetIndexerAttribute_selectedFont(Ark_NativePointer thisPtr, KSeri value_value_buf.value = Font_serializer::read(thisDeserializer); } Opt_Font value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setSelectedFont(self, (const Opt_Font*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setSelectedFont(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_selectedFont, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_popupFont(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -375,7 +375,7 @@ void impl_AlphabetIndexerAttribute_popupFont(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = Font_serializer::read(thisDeserializer); } Opt_Font value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setPopupFont(self, (const Opt_Font*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setPopupFont(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_popupFont, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_popupItemFont(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -389,7 +389,7 @@ void impl_AlphabetIndexerAttribute_popupItemFont(Ark_NativePointer thisPtr, KSer value_value_buf.value = Font_serializer::read(thisDeserializer); } Opt_Font value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setPopupItemFont(self, (const Opt_Font*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setPopupItemFont(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_popupItemFont, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_itemSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -417,7 +417,7 @@ void impl_AlphabetIndexerAttribute_itemSize(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_String_Number value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setItemSize(self, (const Opt_Union_String_Number*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setItemSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_itemSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_font(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -431,7 +431,7 @@ void impl_AlphabetIndexerAttribute_font(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = Font_serializer::read(thisDeserializer); } Opt_Font value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setFont(self, (const Opt_Font*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setFont(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_font, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_onSelect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -445,7 +445,7 @@ void impl_AlphabetIndexerAttribute_onSelect(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnAlphabetIndexerSelectCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnAlphabetIndexerSelectCallback))))}; } Opt_OnAlphabetIndexerSelectCallback value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setOnSelect(self, (const Opt_OnAlphabetIndexerSelectCallback*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setOnSelect(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_onSelect, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_onRequestPopupData(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -459,7 +459,7 @@ void impl_AlphabetIndexerAttribute_onRequestPopupData(Ark_NativePointer thisPtr, value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnAlphabetIndexerRequestPopupDataCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnAlphabetIndexerRequestPopupDataCallback))))}; } Opt_OnAlphabetIndexerRequestPopupDataCallback value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setOnRequestPopupData(self, (const Opt_OnAlphabetIndexerRequestPopupDataCallback*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setOnRequestPopupData(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_onRequestPopupData, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_onPopupSelect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -473,7 +473,7 @@ void impl_AlphabetIndexerAttribute_onPopupSelect(Ark_NativePointer thisPtr, KSer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnAlphabetIndexerPopupSelectCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnAlphabetIndexerPopupSelectCallback))))}; } Opt_OnAlphabetIndexerPopupSelectCallback value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setOnPopupSelect(self, (const Opt_OnAlphabetIndexerPopupSelectCallback*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setOnPopupSelect(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_onPopupSelect, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_selected(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -487,7 +487,7 @@ void impl_AlphabetIndexerAttribute_selected(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setSelected(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setSelected(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_selected, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_popupPosition(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -501,7 +501,7 @@ void impl_AlphabetIndexerAttribute_popupPosition(Ark_NativePointer thisPtr, KSer value_value_buf.value = Position_serializer::read(thisDeserializer); } Opt_Position value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setPopupPosition(self, (const Opt_Position*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setPopupPosition(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_popupPosition, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_autoCollapse(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -515,7 +515,7 @@ void impl_AlphabetIndexerAttribute_autoCollapse(Ark_NativePointer thisPtr, KSeri value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setAutoCollapse(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setAutoCollapse(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_autoCollapse, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_popupItemBorderRadius(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -529,7 +529,7 @@ void impl_AlphabetIndexerAttribute_popupItemBorderRadius(Ark_NativePointer thisP value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setPopupItemBorderRadius(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setPopupItemBorderRadius(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_popupItemBorderRadius, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_itemBorderRadius(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -543,7 +543,7 @@ void impl_AlphabetIndexerAttribute_itemBorderRadius(Ark_NativePointer thisPtr, K value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setItemBorderRadius(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setItemBorderRadius(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_itemBorderRadius, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_popupBackgroundBlurStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -557,7 +557,7 @@ void impl_AlphabetIndexerAttribute_popupBackgroundBlurStyle(Ark_NativePointer th value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_BlurStyle value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setPopupBackgroundBlurStyle(self, (const Opt_BlurStyle*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setPopupBackgroundBlurStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_popupBackgroundBlurStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_popupTitleBackground(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -593,7 +593,7 @@ void impl_AlphabetIndexerAttribute_popupTitleBackground(Ark_NativePointer thisPt value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setPopupTitleBackground(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setPopupTitleBackground(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_popupTitleBackground, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_enableHapticFeedback(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -607,7 +607,7 @@ void impl_AlphabetIndexerAttribute_enableHapticFeedback(Ark_NativePointer thisPt value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setEnableHapticFeedback(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setEnableHapticFeedback(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_enableHapticFeedback, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AlphabetIndexerAttribute_alignStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -647,7 +647,7 @@ void impl_AlphabetIndexerAttribute_alignStyle(Ark_NativePointer thisPtr, KSerial offset_value_buf.value = static_cast(offset_value_buf_); } Opt_Length offset_value = offset_value_buf;; - GetNodeModifiers()->getAlphabetIndexerModifier()->setAlignStyle(self, (const Opt_IndexerAlign*)&value_value, (const Opt_Length*)&offset_value); + GetNodeModifiers()->getAlphabetIndexerModifier()->setAlignStyle(self, reinterpret_cast(&value_value), reinterpret_cast(&offset_value)); } KOALA_INTEROP_DIRECT_V3(AlphabetIndexerAttribute_alignStyle, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Animator_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -670,7 +670,7 @@ void impl_AnimatorAttribute_state(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_AnimationStatus value_value = value_value_buf;; - GetNodeModifiers()->getAnimatorModifier()->setState(self, (const Opt_AnimationStatus*)&value_value); + GetNodeModifiers()->getAnimatorModifier()->setState(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AnimatorAttribute_state, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AnimatorAttribute_duration(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -684,7 +684,7 @@ void impl_AnimatorAttribute_duration(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getAnimatorModifier()->setDuration(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getAnimatorModifier()->setDuration(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AnimatorAttribute_duration, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AnimatorAttribute_curve(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -698,7 +698,7 @@ void impl_AnimatorAttribute_curve(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_Curve value_value = value_value_buf;; - GetNodeModifiers()->getAnimatorModifier()->setCurve(self, (const Opt_Curve*)&value_value); + GetNodeModifiers()->getAnimatorModifier()->setCurve(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AnimatorAttribute_curve, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AnimatorAttribute_delay(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -712,7 +712,7 @@ void impl_AnimatorAttribute_delay(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getAnimatorModifier()->setDelay(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getAnimatorModifier()->setDelay(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AnimatorAttribute_delay, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AnimatorAttribute_fillMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -726,7 +726,7 @@ void impl_AnimatorAttribute_fillMode(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_FillMode value_value = value_value_buf;; - GetNodeModifiers()->getAnimatorModifier()->setFillMode(self, (const Opt_FillMode*)&value_value); + GetNodeModifiers()->getAnimatorModifier()->setFillMode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AnimatorAttribute_fillMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AnimatorAttribute_iterations(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -740,7 +740,7 @@ void impl_AnimatorAttribute_iterations(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getAnimatorModifier()->setIterations(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getAnimatorModifier()->setIterations(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AnimatorAttribute_iterations, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AnimatorAttribute_playMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -754,7 +754,7 @@ void impl_AnimatorAttribute_playMode(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_PlayMode value_value = value_value_buf;; - GetNodeModifiers()->getAnimatorModifier()->setPlayMode(self, (const Opt_PlayMode*)&value_value); + GetNodeModifiers()->getAnimatorModifier()->setPlayMode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AnimatorAttribute_playMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AnimatorAttribute_motion(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -786,7 +786,7 @@ void impl_AnimatorAttribute_motion(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_SpringMotion_FrictionMotion_ScrollMotion value_value = value_value_buf;; - GetNodeModifiers()->getAnimatorModifier()->setMotion(self, (const Opt_Union_SpringMotion_FrictionMotion_ScrollMotion*)&value_value); + GetNodeModifiers()->getAnimatorModifier()->setMotion(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AnimatorAttribute_motion, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AnimatorAttribute_onStart(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -800,7 +800,7 @@ void impl_AnimatorAttribute_onStart(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getAnimatorModifier()->setOnStart(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getAnimatorModifier()->setOnStart(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AnimatorAttribute_onStart, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AnimatorAttribute_onPause(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -814,7 +814,7 @@ void impl_AnimatorAttribute_onPause(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getAnimatorModifier()->setOnPause(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getAnimatorModifier()->setOnPause(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AnimatorAttribute_onPause, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AnimatorAttribute_onRepeat(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -828,7 +828,7 @@ void impl_AnimatorAttribute_onRepeat(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getAnimatorModifier()->setOnRepeat(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getAnimatorModifier()->setOnRepeat(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AnimatorAttribute_onRepeat, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AnimatorAttribute_onCancel(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -842,7 +842,7 @@ void impl_AnimatorAttribute_onCancel(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getAnimatorModifier()->setOnCancel(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getAnimatorModifier()->setOnCancel(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AnimatorAttribute_onCancel, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AnimatorAttribute_onFinish(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -856,7 +856,7 @@ void impl_AnimatorAttribute_onFinish(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getAnimatorModifier()->setOnFinish(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getAnimatorModifier()->setOnFinish(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AnimatorAttribute_onFinish, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AnimatorAttribute_onFrame(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -870,7 +870,7 @@ void impl_AnimatorAttribute_onFrame(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Void))))}; } Opt_Callback_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getAnimatorModifier()->setOnFrame(self, (const Opt_Callback_Number_Void*)&value_value); + GetNodeModifiers()->getAnimatorModifier()->setOnFrame(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(AnimatorAttribute_onFrame, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Badge_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -881,14 +881,14 @@ void impl_BadgeInterface_setBadgeOptions0(Ark_NativePointer thisPtr, KSerializer Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_BadgeParamWithNumber value_value = BadgeParamWithNumber_serializer::read(thisDeserializer);; - GetNodeModifiers()->getBadgeModifier()->setBadgeOptions0(self, (const Ark_BadgeParamWithNumber*)&value_value); + GetNodeModifiers()->getBadgeModifier()->setBadgeOptions0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(BadgeInterface_setBadgeOptions0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_BadgeInterface_setBadgeOptions1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_BadgeParamWithString value_value = BadgeParamWithString_serializer::read(thisDeserializer);; - GetNodeModifiers()->getBadgeModifier()->setBadgeOptions1(self, (const Ark_BadgeParamWithString*)&value_value); + GetNodeModifiers()->getBadgeModifier()->setBadgeOptions1(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(BadgeInterface_setBadgeOptions1, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Blank_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -920,7 +920,7 @@ void impl_BlankInterface_setBlankOptions(Ark_NativePointer thisPtr, KSerializerB min_value_buf.value = static_cast(min_value_buf_); } Opt_Union_Number_String min_value = min_value_buf;; - GetNodeModifiers()->getBlankModifier()->setBlankOptions(self, (const Opt_Union_Number_String*)&min_value); + GetNodeModifiers()->getBlankModifier()->setBlankOptions(self, reinterpret_cast(&min_value)); } KOALA_INTEROP_DIRECT_V3(BlankInterface_setBlankOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_BlankAttribute_color(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -956,7 +956,7 @@ void impl_BlankAttribute_color(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getBlankModifier()->setColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getBlankModifier()->setColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(BlankAttribute_color, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Button_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -972,7 +972,7 @@ void impl_ButtonInterface_setButtonOptions1(Ark_NativePointer thisPtr, KSerializ Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_ButtonOptions options_value = ButtonOptions_serializer::read(thisDeserializer);; - GetNodeModifiers()->getButtonModifier()->setButtonOptions1(self, (const Ark_ButtonOptions*)&options_value); + GetNodeModifiers()->getButtonModifier()->setButtonOptions1(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(ButtonInterface_setButtonOptions1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ButtonInterface_setButtonOptions2(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1001,7 +1001,7 @@ void impl_ButtonInterface_setButtonOptions2(Ark_NativePointer thisPtr, KSerializ options_value_buf.value = ButtonOptions_serializer::read(thisDeserializer); } Opt_ButtonOptions options_value = options_value_buf;; - GetNodeModifiers()->getButtonModifier()->setButtonOptions2(self, (const Ark_ResourceStr*)&label_value, (const Opt_ButtonOptions*)&options_value); + GetNodeModifiers()->getButtonModifier()->setButtonOptions2(self, reinterpret_cast(&label_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(ButtonInterface_setButtonOptions2, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ButtonAttribute_type(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1015,7 +1015,7 @@ void impl_ButtonAttribute_type(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ButtonType value_value = value_value_buf;; - GetNodeModifiers()->getButtonModifier()->setType(self, (const Opt_ButtonType*)&value_value); + GetNodeModifiers()->getButtonModifier()->setType(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ButtonAttribute_type, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ButtonAttribute_stateEffect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1029,7 +1029,7 @@ void impl_ButtonAttribute_stateEffect(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getButtonModifier()->setStateEffect(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getButtonModifier()->setStateEffect(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ButtonAttribute_stateEffect, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ButtonAttribute_buttonStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1043,7 +1043,7 @@ void impl_ButtonAttribute_buttonStyle(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ButtonStyleMode value_value = value_value_buf;; - GetNodeModifiers()->getButtonModifier()->setButtonStyle(self, (const Opt_ButtonStyleMode*)&value_value); + GetNodeModifiers()->getButtonModifier()->setButtonStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ButtonAttribute_buttonStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ButtonAttribute_controlSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1057,7 +1057,7 @@ void impl_ButtonAttribute_controlSize(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ControlSize value_value = value_value_buf;; - GetNodeModifiers()->getButtonModifier()->setControlSize(self, (const Opt_ControlSize*)&value_value); + GetNodeModifiers()->getButtonModifier()->setControlSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ButtonAttribute_controlSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ButtonAttribute_role(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1071,7 +1071,7 @@ void impl_ButtonAttribute_role(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ButtonRole value_value = value_value_buf;; - GetNodeModifiers()->getButtonModifier()->setRole(self, (const Opt_ButtonRole*)&value_value); + GetNodeModifiers()->getButtonModifier()->setRole(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ButtonAttribute_role, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ButtonAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1107,7 +1107,7 @@ void impl_ButtonAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getButtonModifier()->setFontColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getButtonModifier()->setFontColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ButtonAttribute_fontColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ButtonAttribute_fontSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1139,7 +1139,7 @@ void impl_ButtonAttribute_fontSize(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getButtonModifier()->setFontSize(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getButtonModifier()->setFontSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ButtonAttribute_fontSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ButtonAttribute_fontWeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1171,7 +1171,7 @@ void impl_ButtonAttribute_fontWeight(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_FontWeight_String value_value = value_value_buf;; - GetNodeModifiers()->getButtonModifier()->setFontWeight(self, (const Opt_Union_Number_FontWeight_String*)&value_value); + GetNodeModifiers()->getButtonModifier()->setFontWeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ButtonAttribute_fontWeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ButtonAttribute_fontStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1185,7 +1185,7 @@ void impl_ButtonAttribute_fontStyle(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_FontStyle value_value = value_value_buf;; - GetNodeModifiers()->getButtonModifier()->setFontStyle(self, (const Opt_FontStyle*)&value_value); + GetNodeModifiers()->getButtonModifier()->setFontStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ButtonAttribute_fontStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ButtonAttribute_fontFamily(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1213,7 +1213,7 @@ void impl_ButtonAttribute_fontFamily(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getButtonModifier()->setFontFamily(self, (const Opt_Union_String_Resource*)&value_value); + GetNodeModifiers()->getButtonModifier()->setFontFamily(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ButtonAttribute_fontFamily, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ButtonAttribute_contentModifier(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1227,7 +1227,7 @@ void impl_ButtonAttribute_contentModifier(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(thisDeserializer.readObject()); } Opt_ContentModifier value_value = value_value_buf;; - GetNodeModifiers()->getButtonModifier()->setContentModifier(self, (const Opt_ContentModifier*)&value_value); + GetNodeModifiers()->getButtonModifier()->setContentModifier(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ButtonAttribute_contentModifier, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ButtonAttribute_labelStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1241,7 +1241,7 @@ void impl_ButtonAttribute_labelStyle(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = ButtonLabelStyle_serializer::read(thisDeserializer); } Opt_ButtonLabelStyle value_value = value_value_buf;; - GetNodeModifiers()->getButtonModifier()->setLabelStyle(self, (const Opt_ButtonLabelStyle*)&value_value); + GetNodeModifiers()->getButtonModifier()->setLabelStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ButtonAttribute_labelStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ButtonAttribute_minFontScale(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1269,7 +1269,7 @@ void impl_ButtonAttribute_minFontScale(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_Resource value_value = value_value_buf;; - GetNodeModifiers()->getButtonModifier()->setMinFontScale(self, (const Opt_Union_Number_Resource*)&value_value); + GetNodeModifiers()->getButtonModifier()->setMinFontScale(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ButtonAttribute_minFontScale, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ButtonAttribute_maxFontScale(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1297,7 +1297,7 @@ void impl_ButtonAttribute_maxFontScale(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_Resource value_value = value_value_buf;; - GetNodeModifiers()->getButtonModifier()->setMaxFontScale(self, (const Opt_Union_Number_Resource*)&value_value); + GetNodeModifiers()->getButtonModifier()->setMaxFontScale(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ButtonAttribute_maxFontScale, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Calendar_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -1308,7 +1308,7 @@ void impl_CalendarInterface_setCalendarOptions(Ark_NativePointer thisPtr, KSeria Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_CalendarRequestedMonths value_value = CalendarRequestedMonths_serializer::read(thisDeserializer);; - GetNodeModifiers()->getCalendarModifier()->setCalendarOptions(self, (const Ark_CalendarRequestedMonths*)&value_value); + GetNodeModifiers()->getCalendarModifier()->setCalendarOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CalendarInterface_setCalendarOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CalendarAttribute_showLunar(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1322,7 +1322,7 @@ void impl_CalendarAttribute_showLunar(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCalendarModifier()->setShowLunar(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCalendarModifier()->setShowLunar(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CalendarAttribute_showLunar, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CalendarAttribute_showHoliday(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1336,7 +1336,7 @@ void impl_CalendarAttribute_showHoliday(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCalendarModifier()->setShowHoliday(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCalendarModifier()->setShowHoliday(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CalendarAttribute_showHoliday, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CalendarAttribute_needSlide(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1350,7 +1350,7 @@ void impl_CalendarAttribute_needSlide(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCalendarModifier()->setNeedSlide(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCalendarModifier()->setNeedSlide(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CalendarAttribute_needSlide, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CalendarAttribute_startOfWeek(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1364,7 +1364,7 @@ void impl_CalendarAttribute_startOfWeek(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getCalendarModifier()->setStartOfWeek(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getCalendarModifier()->setStartOfWeek(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CalendarAttribute_startOfWeek, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CalendarAttribute_offDays(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1378,7 +1378,7 @@ void impl_CalendarAttribute_offDays(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getCalendarModifier()->setOffDays(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getCalendarModifier()->setOffDays(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CalendarAttribute_offDays, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CalendarAttribute_direction(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1392,7 +1392,7 @@ void impl_CalendarAttribute_direction(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_Axis value_value = value_value_buf;; - GetNodeModifiers()->getCalendarModifier()->setDirection(self, (const Opt_Axis*)&value_value); + GetNodeModifiers()->getCalendarModifier()->setDirection(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CalendarAttribute_direction, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CalendarAttribute_currentDayStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1406,7 +1406,7 @@ void impl_CalendarAttribute_currentDayStyle(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = CurrentDayStyle_serializer::read(thisDeserializer); } Opt_CurrentDayStyle value_value = value_value_buf;; - GetNodeModifiers()->getCalendarModifier()->setCurrentDayStyle(self, (const Opt_CurrentDayStyle*)&value_value); + GetNodeModifiers()->getCalendarModifier()->setCurrentDayStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CalendarAttribute_currentDayStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CalendarAttribute_nonCurrentDayStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1420,7 +1420,7 @@ void impl_CalendarAttribute_nonCurrentDayStyle(Ark_NativePointer thisPtr, KSeria value_value_buf.value = NonCurrentDayStyle_serializer::read(thisDeserializer); } Opt_NonCurrentDayStyle value_value = value_value_buf;; - GetNodeModifiers()->getCalendarModifier()->setNonCurrentDayStyle(self, (const Opt_NonCurrentDayStyle*)&value_value); + GetNodeModifiers()->getCalendarModifier()->setNonCurrentDayStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CalendarAttribute_nonCurrentDayStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CalendarAttribute_todayStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1434,7 +1434,7 @@ void impl_CalendarAttribute_todayStyle(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = TodayStyle_serializer::read(thisDeserializer); } Opt_TodayStyle value_value = value_value_buf;; - GetNodeModifiers()->getCalendarModifier()->setTodayStyle(self, (const Opt_TodayStyle*)&value_value); + GetNodeModifiers()->getCalendarModifier()->setTodayStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CalendarAttribute_todayStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CalendarAttribute_weekStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1448,7 +1448,7 @@ void impl_CalendarAttribute_weekStyle(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = WeekStyle_serializer::read(thisDeserializer); } Opt_WeekStyle value_value = value_value_buf;; - GetNodeModifiers()->getCalendarModifier()->setWeekStyle(self, (const Opt_WeekStyle*)&value_value); + GetNodeModifiers()->getCalendarModifier()->setWeekStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CalendarAttribute_weekStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CalendarAttribute_workStateStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1462,7 +1462,7 @@ void impl_CalendarAttribute_workStateStyle(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = WorkStateStyle_serializer::read(thisDeserializer); } Opt_WorkStateStyle value_value = value_value_buf;; - GetNodeModifiers()->getCalendarModifier()->setWorkStateStyle(self, (const Opt_WorkStateStyle*)&value_value); + GetNodeModifiers()->getCalendarModifier()->setWorkStateStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CalendarAttribute_workStateStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CalendarAttribute_onSelectChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1476,7 +1476,7 @@ void impl_CalendarAttribute_onSelectChange(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_CalendarSelectedDate_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_CalendarSelectedDate_Void))))}; } Opt_Callback_CalendarSelectedDate_Void value_value = value_value_buf;; - GetNodeModifiers()->getCalendarModifier()->setOnSelectChange(self, (const Opt_Callback_CalendarSelectedDate_Void*)&value_value); + GetNodeModifiers()->getCalendarModifier()->setOnSelectChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CalendarAttribute_onSelectChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CalendarAttribute_onRequestData(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1490,7 +1490,7 @@ void impl_CalendarAttribute_onRequestData(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_CalendarRequestedData_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_CalendarRequestedData_Void))))}; } Opt_Callback_CalendarRequestedData_Void value_value = value_value_buf;; - GetNodeModifiers()->getCalendarModifier()->setOnRequestData(self, (const Opt_Callback_CalendarRequestedData_Void*)&value_value); + GetNodeModifiers()->getCalendarModifier()->setOnRequestData(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CalendarAttribute_onRequestData, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_CalendarPicker_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -1508,7 +1508,7 @@ void impl_CalendarPickerInterface_setCalendarPickerOptions(Ark_NativePointer thi options_value_buf.value = CalendarOptions_serializer::read(thisDeserializer); } Opt_CalendarOptions options_value = options_value_buf;; - GetNodeModifiers()->getCalendarPickerModifier()->setCalendarPickerOptions(self, (const Opt_CalendarOptions*)&options_value); + GetNodeModifiers()->getCalendarPickerModifier()->setCalendarPickerOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(CalendarPickerInterface_setCalendarPickerOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CalendarPickerAttribute_textStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1522,7 +1522,7 @@ void impl_CalendarPickerAttribute_textStyle(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = PickerTextStyle_serializer::read(thisDeserializer); } Opt_PickerTextStyle value_value = value_value_buf;; - GetNodeModifiers()->getCalendarPickerModifier()->setTextStyle(self, (const Opt_PickerTextStyle*)&value_value); + GetNodeModifiers()->getCalendarPickerModifier()->setTextStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CalendarPickerAttribute_textStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CalendarPickerAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1536,7 +1536,7 @@ void impl_CalendarPickerAttribute_onChange(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Date_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Date_Void))))}; } Opt_Callback_Date_Void value_value = value_value_buf;; - GetNodeModifiers()->getCalendarPickerModifier()->setOnChange(self, (const Opt_Callback_Date_Void*)&value_value); + GetNodeModifiers()->getCalendarPickerModifier()->setOnChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CalendarPickerAttribute_onChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CalendarPickerAttribute_markToday(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1550,7 +1550,7 @@ void impl_CalendarPickerAttribute_markToday(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCalendarPickerModifier()->setMarkToday(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCalendarPickerModifier()->setMarkToday(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CalendarPickerAttribute_markToday, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CalendarPickerAttribute_edgeAlign(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1572,7 +1572,7 @@ void impl_CalendarPickerAttribute_edgeAlign(Ark_NativePointer thisPtr, KSerializ offset_value_buf.value = Offset_serializer::read(thisDeserializer); } Opt_Offset offset_value = offset_value_buf;; - GetNodeModifiers()->getCalendarPickerModifier()->setEdgeAlign(self, (const Opt_CalendarAlign*)&alignType_value, (const Opt_Offset*)&offset_value); + GetNodeModifiers()->getCalendarPickerModifier()->setEdgeAlign(self, reinterpret_cast(&alignType_value), reinterpret_cast(&offset_value)); } KOALA_INTEROP_DIRECT_V3(CalendarPickerAttribute_edgeAlign, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Canvas_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -1604,7 +1604,7 @@ void impl_CanvasInterface_setCanvasOptions0(Ark_NativePointer thisPtr, KSerializ context_value_buf.value = static_cast(context_value_buf_); } Opt_Union_CanvasRenderingContext2D_DrawingRenderingContext context_value = context_value_buf;; - GetNodeModifiers()->getCanvasModifier()->setCanvasOptions0(self, (const Opt_Union_CanvasRenderingContext2D_DrawingRenderingContext*)&context_value); + GetNodeModifiers()->getCanvasModifier()->setCanvasOptions0(self, reinterpret_cast(&context_value)); } KOALA_INTEROP_DIRECT_V3(CanvasInterface_setCanvasOptions0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CanvasInterface_setCanvasOptions1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1626,7 +1626,7 @@ void impl_CanvasInterface_setCanvasOptions1(Ark_NativePointer thisPtr, KSerializ } Ark_Union_CanvasRenderingContext2D_DrawingRenderingContext context_value = static_cast(context_value_buf);; Ark_ImageAIOptions imageAIOptions_value = ImageAIOptions_serializer::read(thisDeserializer);; - GetNodeModifiers()->getCanvasModifier()->setCanvasOptions1(self, (const Ark_Union_CanvasRenderingContext2D_DrawingRenderingContext*)&context_value, (const Ark_ImageAIOptions*)&imageAIOptions_value); + GetNodeModifiers()->getCanvasModifier()->setCanvasOptions1(self, reinterpret_cast(&context_value), reinterpret_cast(&imageAIOptions_value)); } KOALA_INTEROP_DIRECT_V3(CanvasInterface_setCanvasOptions1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CanvasAttribute_onReady(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1640,7 +1640,7 @@ void impl_CanvasAttribute_onReady(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_VoidCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_VoidCallback))))}; } Opt_VoidCallback value_value = value_value_buf;; - GetNodeModifiers()->getCanvasModifier()->setOnReady(self, (const Opt_VoidCallback*)&value_value); + GetNodeModifiers()->getCanvasModifier()->setOnReady(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CanvasAttribute_onReady, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CanvasAttribute_enableAnalyzer(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1654,7 +1654,7 @@ void impl_CanvasAttribute_enableAnalyzer(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCanvasModifier()->setEnableAnalyzer(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCanvasModifier()->setEnableAnalyzer(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CanvasAttribute_enableAnalyzer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Checkbox_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -1672,7 +1672,7 @@ void impl_CheckboxInterface_setCheckboxOptions(Ark_NativePointer thisPtr, KSeria options_value_buf.value = CheckboxOptions_serializer::read(thisDeserializer); } Opt_CheckboxOptions options_value = options_value_buf;; - GetNodeModifiers()->getCheckboxModifier()->setCheckboxOptions(self, (const Opt_CheckboxOptions*)&options_value); + GetNodeModifiers()->getCheckboxModifier()->setCheckboxOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(CheckboxInterface_setCheckboxOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CheckboxAttribute_select(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1686,7 +1686,7 @@ void impl_CheckboxAttribute_select(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCheckboxModifier()->setSelect(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCheckboxModifier()->setSelect(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CheckboxAttribute_select, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CheckboxAttribute_selectedColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1722,7 +1722,7 @@ void impl_CheckboxAttribute_selectedColor(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getCheckboxModifier()->setSelectedColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getCheckboxModifier()->setSelectedColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CheckboxAttribute_selectedColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CheckboxAttribute_shape(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1736,7 +1736,7 @@ void impl_CheckboxAttribute_shape(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_CheckBoxShape value_value = value_value_buf;; - GetNodeModifiers()->getCheckboxModifier()->setShape(self, (const Opt_CheckBoxShape*)&value_value); + GetNodeModifiers()->getCheckboxModifier()->setShape(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CheckboxAttribute_shape, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CheckboxAttribute_unselectedColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1772,7 +1772,7 @@ void impl_CheckboxAttribute_unselectedColor(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getCheckboxModifier()->setUnselectedColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getCheckboxModifier()->setUnselectedColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CheckboxAttribute_unselectedColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CheckboxAttribute_mark(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1786,7 +1786,7 @@ void impl_CheckboxAttribute_mark(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = MarkStyle_serializer::read(thisDeserializer); } Opt_MarkStyle value_value = value_value_buf;; - GetNodeModifiers()->getCheckboxModifier()->setMark(self, (const Opt_MarkStyle*)&value_value); + GetNodeModifiers()->getCheckboxModifier()->setMark(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CheckboxAttribute_mark, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CheckboxAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1800,7 +1800,7 @@ void impl_CheckboxAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnCheckboxChangeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnCheckboxChangeCallback))))}; } Opt_OnCheckboxChangeCallback value_value = value_value_buf;; - GetNodeModifiers()->getCheckboxModifier()->setOnChange(self, (const Opt_OnCheckboxChangeCallback*)&value_value); + GetNodeModifiers()->getCheckboxModifier()->setOnChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CheckboxAttribute_onChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CheckboxAttribute_contentModifier(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1814,7 +1814,7 @@ void impl_CheckboxAttribute_contentModifier(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = static_cast(thisDeserializer.readObject()); } Opt_ContentModifier value_value = value_value_buf;; - GetNodeModifiers()->getCheckboxModifier()->setContentModifier(self, (const Opt_ContentModifier*)&value_value); + GetNodeModifiers()->getCheckboxModifier()->setContentModifier(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CheckboxAttribute_contentModifier, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_CheckboxGroup_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -1832,7 +1832,7 @@ void impl_CheckboxGroupInterface_setCheckboxGroupOptions(Ark_NativePointer thisP options_value_buf.value = CheckboxGroupOptions_serializer::read(thisDeserializer); } Opt_CheckboxGroupOptions options_value = options_value_buf;; - GetNodeModifiers()->getCheckboxGroupModifier()->setCheckboxGroupOptions(self, (const Opt_CheckboxGroupOptions*)&options_value); + GetNodeModifiers()->getCheckboxGroupModifier()->setCheckboxGroupOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(CheckboxGroupInterface_setCheckboxGroupOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CheckboxGroupAttribute_selectAll(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1846,7 +1846,7 @@ void impl_CheckboxGroupAttribute_selectAll(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCheckboxGroupModifier()->setSelectAll(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCheckboxGroupModifier()->setSelectAll(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CheckboxGroupAttribute_selectAll, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CheckboxGroupAttribute_selectedColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1882,7 +1882,7 @@ void impl_CheckboxGroupAttribute_selectedColor(Ark_NativePointer thisPtr, KSeria value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getCheckboxGroupModifier()->setSelectedColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getCheckboxGroupModifier()->setSelectedColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CheckboxGroupAttribute_selectedColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CheckboxGroupAttribute_unselectedColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1918,7 +1918,7 @@ void impl_CheckboxGroupAttribute_unselectedColor(Ark_NativePointer thisPtr, KSer value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getCheckboxGroupModifier()->setUnselectedColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getCheckboxGroupModifier()->setUnselectedColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CheckboxGroupAttribute_unselectedColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CheckboxGroupAttribute_mark(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1932,7 +1932,7 @@ void impl_CheckboxGroupAttribute_mark(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = MarkStyle_serializer::read(thisDeserializer); } Opt_MarkStyle value_value = value_value_buf;; - GetNodeModifiers()->getCheckboxGroupModifier()->setMark(self, (const Opt_MarkStyle*)&value_value); + GetNodeModifiers()->getCheckboxGroupModifier()->setMark(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CheckboxGroupAttribute_mark, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CheckboxGroupAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1946,7 +1946,7 @@ void impl_CheckboxGroupAttribute_onChange(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnCheckboxGroupChangeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnCheckboxGroupChangeCallback))))}; } Opt_OnCheckboxGroupChangeCallback value_value = value_value_buf;; - GetNodeModifiers()->getCheckboxGroupModifier()->setOnChange(self, (const Opt_OnCheckboxGroupChangeCallback*)&value_value); + GetNodeModifiers()->getCheckboxGroupModifier()->setOnChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CheckboxGroupAttribute_onChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CheckboxGroupAttribute_checkboxShape(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -1960,7 +1960,7 @@ void impl_CheckboxGroupAttribute_checkboxShape(Ark_NativePointer thisPtr, KSeria value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_CheckBoxShape value_value = value_value_buf;; - GetNodeModifiers()->getCheckboxGroupModifier()->setCheckboxShape(self, (const Opt_CheckBoxShape*)&value_value); + GetNodeModifiers()->getCheckboxGroupModifier()->setCheckboxShape(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CheckboxGroupAttribute_checkboxShape, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Circle_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -1978,7 +1978,7 @@ void impl_CircleInterface_setCircleOptions(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = CircleOptions_serializer::read(thisDeserializer); } Opt_CircleOptions value_value = value_value_buf;; - GetNodeModifiers()->getCircleModifier()->setCircleOptions(self, (const Opt_CircleOptions*)&value_value); + GetNodeModifiers()->getCircleModifier()->setCircleOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CircleInterface_setCircleOptions, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Column_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -1996,7 +1996,7 @@ void impl_ColumnInterface_setColumnOptions(Ark_NativePointer thisPtr, KSerialize options_value_buf.value = ColumnOptions_serializer::read(thisDeserializer); } Opt_ColumnOptions options_value = options_value_buf;; - GetNodeModifiers()->getColumnModifier()->setColumnOptions(self, (const Opt_ColumnOptions*)&options_value); + GetNodeModifiers()->getColumnModifier()->setColumnOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(ColumnInterface_setColumnOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ColumnAttribute_alignItems(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2010,7 +2010,7 @@ void impl_ColumnAttribute_alignItems(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_HorizontalAlign value_value = value_value_buf;; - GetNodeModifiers()->getColumnModifier()->setAlignItems(self, (const Opt_HorizontalAlign*)&value_value); + GetNodeModifiers()->getColumnModifier()->setAlignItems(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ColumnAttribute_alignItems, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ColumnAttribute_justifyContent(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2024,7 +2024,7 @@ void impl_ColumnAttribute_justifyContent(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_FlexAlign value_value = value_value_buf;; - GetNodeModifiers()->getColumnModifier()->setJustifyContent(self, (const Opt_FlexAlign*)&value_value); + GetNodeModifiers()->getColumnModifier()->setJustifyContent(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ColumnAttribute_justifyContent, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ColumnAttribute_pointLight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2038,7 +2038,7 @@ void impl_ColumnAttribute_pointLight(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = PointLightStyle_serializer::read(thisDeserializer); } Opt_PointLightStyle value_value = value_value_buf;; - GetNodeModifiers()->getColumnModifier()->setPointLight(self, (const Opt_PointLightStyle*)&value_value); + GetNodeModifiers()->getColumnModifier()->setPointLight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ColumnAttribute_pointLight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ColumnAttribute_reverse(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2052,7 +2052,7 @@ void impl_ColumnAttribute_reverse(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getColumnModifier()->setReverse(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getColumnModifier()->setReverse(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ColumnAttribute_reverse, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_ColumnSplit_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -2075,7 +2075,7 @@ void impl_ColumnSplitAttribute_resizeable(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getColumnSplitModifier()->setResizeable(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getColumnSplitModifier()->setResizeable(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ColumnSplitAttribute_resizeable, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ColumnSplitAttribute_divider(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2089,7 +2089,7 @@ void impl_ColumnSplitAttribute_divider(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = ColumnSplitDividerStyle_serializer::read(thisDeserializer); } Opt_ColumnSplitDividerStyle value_value = value_value_buf;; - GetNodeModifiers()->getColumnSplitModifier()->setDivider(self, (const Opt_ColumnSplitDividerStyle*)&value_value); + GetNodeModifiers()->getColumnSplitModifier()->setDivider(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ColumnSplitAttribute_divider, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_CommonMethod_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -2139,7 +2139,7 @@ void impl_CommonMethod_width(Ark_NativePointer thisPtr, KSerializerBuffer thisAr value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Length_LayoutPolicy value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setWidth(self, (const Opt_Union_Length_LayoutPolicy*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setWidth(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_width, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_height(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2185,7 +2185,7 @@ void impl_CommonMethod_height(Ark_NativePointer thisPtr, KSerializerBuffer thisA value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Length_LayoutPolicy value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setHeight(self, (const Opt_Union_Length_LayoutPolicy*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setHeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_height, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_drawModifier(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2199,7 +2199,7 @@ void impl_CommonMethod_drawModifier(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(DrawModifier_serializer::read(thisDeserializer)); } Opt_DrawModifier value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setDrawModifier(self, (const Opt_DrawModifier*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setDrawModifier(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_drawModifier, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_responseRegion(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2234,7 +2234,7 @@ void impl_CommonMethod_responseRegion(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Array_Rectangle_Rectangle value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setResponseRegion(self, (const Opt_Union_Array_Rectangle_Rectangle*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setResponseRegion(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_responseRegion, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_mouseResponseRegion(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2269,7 +2269,7 @@ void impl_CommonMethod_mouseResponseRegion(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Array_Rectangle_Rectangle value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setMouseResponseRegion(self, (const Opt_Union_Array_Rectangle_Rectangle*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setMouseResponseRegion(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_mouseResponseRegion, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_size(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2283,7 +2283,7 @@ void impl_CommonMethod_size(Ark_NativePointer thisPtr, KSerializerBuffer thisArr value_value_buf.value = SizeOptions_serializer::read(thisDeserializer); } Opt_SizeOptions value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setSize(self, (const Opt_SizeOptions*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_size, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_constraintSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2297,7 +2297,7 @@ void impl_CommonMethod_constraintSize(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = ConstraintSizeOptions_serializer::read(thisDeserializer); } Opt_ConstraintSizeOptions value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setConstraintSize(self, (const Opt_ConstraintSizeOptions*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setConstraintSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_constraintSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_hitTestBehavior(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2311,7 +2311,7 @@ void impl_CommonMethod_hitTestBehavior(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_HitTestMode value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setHitTestBehavior(self, (const Opt_HitTestMode*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setHitTestBehavior(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_hitTestBehavior, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onChildTouchTest(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2325,7 +2325,7 @@ void impl_CommonMethod_onChildTouchTest(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Array_TouchTestInfo_TouchResult)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Array_TouchTestInfo_TouchResult))))}; } Opt_Callback_Array_TouchTestInfo_TouchResult value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnChildTouchTest(self, (const Opt_Callback_Array_TouchTestInfo_TouchResult*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnChildTouchTest(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onChildTouchTest, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_layoutWeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2353,7 +2353,7 @@ void impl_CommonMethod_layoutWeight(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setLayoutWeight(self, (const Opt_Union_Number_String*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setLayoutWeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_layoutWeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_chainWeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2367,7 +2367,7 @@ void impl_CommonMethod_chainWeight(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = ChainWeightOptions_serializer::read(thisDeserializer); } Opt_ChainWeightOptions value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setChainWeight(self, (const Opt_ChainWeightOptions*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setChainWeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_chainWeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_padding(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2417,7 +2417,7 @@ void impl_CommonMethod_padding(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Padding_Length_LocalizedPadding value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setPadding(self, (const Opt_Union_Padding_Length_LocalizedPadding*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setPadding(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_padding, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_safeAreaPadding(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2449,7 +2449,7 @@ void impl_CommonMethod_safeAreaPadding(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Padding_LengthMetrics_LocalizedPadding value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setSafeAreaPadding(self, (const Opt_Union_Padding_LengthMetrics_LocalizedPadding*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setSafeAreaPadding(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_safeAreaPadding, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_margin(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2499,7 +2499,7 @@ void impl_CommonMethod_margin(Ark_NativePointer thisPtr, KSerializerBuffer thisA value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Margin_Length_LocalizedMargin value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setMargin(self, (const Opt_Union_Margin_Length_LocalizedMargin*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setMargin(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_margin, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_backgroundColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2535,7 +2535,7 @@ void impl_CommonMethod_backgroundColor(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBackgroundColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setBackgroundColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_backgroundColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_pixelRound(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2549,7 +2549,7 @@ void impl_CommonMethod_pixelRound(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = PixelRoundPolicy_serializer::read(thisDeserializer); } Opt_PixelRoundPolicy value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setPixelRound(self, (const Opt_PixelRoundPolicy*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setPixelRound(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_pixelRound, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_backgroundImageSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2577,7 +2577,7 @@ void impl_CommonMethod_backgroundImageSize(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_SizeOptions_ImageSize value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBackgroundImageSize(self, (const Opt_Union_SizeOptions_ImageSize*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setBackgroundImageSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_backgroundImageSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_backgroundImagePosition(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2605,7 +2605,7 @@ void impl_CommonMethod_backgroundImagePosition(Ark_NativePointer thisPtr, KSeria value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Position_Alignment value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBackgroundImagePosition(self, (const Opt_Union_Position_Alignment*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setBackgroundImagePosition(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_backgroundImagePosition, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_backgroundEffect0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2619,7 +2619,7 @@ void impl_CommonMethod_backgroundEffect0(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = BackgroundEffectOptions_serializer::read(thisDeserializer); } Opt_BackgroundEffectOptions value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBackgroundEffect0(self, (const Opt_BackgroundEffectOptions*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setBackgroundEffect0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_backgroundEffect0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_backgroundEffect1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2641,7 +2641,7 @@ void impl_CommonMethod_backgroundEffect1(Ark_NativePointer thisPtr, KSerializerB sysOptions_value_buf.value = SystemAdaptiveOptions_serializer::read(thisDeserializer); } Opt_SystemAdaptiveOptions sysOptions_value = sysOptions_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBackgroundEffect1(self, (const Opt_BackgroundEffectOptions*)&options_value, (const Opt_SystemAdaptiveOptions*)&sysOptions_value); + GetNodeModifiers()->getCommonMethodModifier()->setBackgroundEffect1(self, reinterpret_cast(&options_value), reinterpret_cast(&sysOptions_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_backgroundEffect1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_backgroundImageResizable(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2655,7 +2655,7 @@ void impl_CommonMethod_backgroundImageResizable(Ark_NativePointer thisPtr, KSeri value_value_buf.value = ResizableOptions_serializer::read(thisDeserializer); } Opt_ResizableOptions value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBackgroundImageResizable(self, (const Opt_ResizableOptions*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setBackgroundImageResizable(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_backgroundImageResizable, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_foregroundEffect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2669,7 +2669,7 @@ void impl_CommonMethod_foregroundEffect(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = ForegroundEffectOptions_serializer::read(thisDeserializer); } Opt_ForegroundEffectOptions value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setForegroundEffect(self, (const Opt_ForegroundEffectOptions*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setForegroundEffect(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_foregroundEffect, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_visualEffect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2683,7 +2683,7 @@ void impl_CommonMethod_visualEffect(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(uiEffect_VisualEffect_serializer::read(thisDeserializer)); } Opt_uiEffect_VisualEffect value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setVisualEffect(self, (const Opt_uiEffect_VisualEffect*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setVisualEffect(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_visualEffect, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_backgroundFilter(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2697,7 +2697,7 @@ void impl_CommonMethod_backgroundFilter(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = uiEffect_Filter_serializer::read(thisDeserializer); } Opt_uiEffect_Filter value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBackgroundFilter(self, (const Opt_uiEffect_Filter*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setBackgroundFilter(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_backgroundFilter, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_foregroundFilter(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2711,7 +2711,7 @@ void impl_CommonMethod_foregroundFilter(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = uiEffect_Filter_serializer::read(thisDeserializer); } Opt_uiEffect_Filter value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setForegroundFilter(self, (const Opt_uiEffect_Filter*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setForegroundFilter(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_foregroundFilter, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_compositingFilter(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2725,7 +2725,7 @@ void impl_CommonMethod_compositingFilter(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = uiEffect_Filter_serializer::read(thisDeserializer); } Opt_uiEffect_Filter value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setCompositingFilter(self, (const Opt_uiEffect_Filter*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setCompositingFilter(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_compositingFilter, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_opacity(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2753,7 +2753,7 @@ void impl_CommonMethod_opacity(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_Resource value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOpacity(self, (const Opt_Union_Number_Resource*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOpacity(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_opacity, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_border(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2767,7 +2767,7 @@ void impl_CommonMethod_border(Ark_NativePointer thisPtr, KSerializerBuffer thisA value_value_buf.value = BorderOptions_serializer::read(thisDeserializer); } Opt_BorderOptions value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBorder(self, (const Opt_BorderOptions*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setBorder(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_border, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_borderStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2795,7 +2795,7 @@ void impl_CommonMethod_borderStyle(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_BorderStyle_EdgeStyles value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBorderStyle(self, (const Opt_Union_BorderStyle_EdgeStyles*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setBorderStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_borderStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_borderWidth(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2845,7 +2845,7 @@ void impl_CommonMethod_borderWidth(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Length_EdgeWidths_LocalizedEdgeWidths value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBorderWidth(self, (const Opt_Union_Length_EdgeWidths_LocalizedEdgeWidths*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setBorderWidth(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_borderWidth, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_borderColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2899,7 +2899,7 @@ void impl_CommonMethod_borderColor(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_ResourceColor_EdgeColors_LocalizedEdgeColors value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBorderColor(self, (const Opt_Union_ResourceColor_EdgeColors_LocalizedEdgeColors*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setBorderColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_borderColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_borderRadius(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2949,7 +2949,7 @@ void impl_CommonMethod_borderRadius(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Length_BorderRadiuses_LocalizedBorderRadiuses value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBorderRadius(self, (const Opt_Union_Length_BorderRadiuses_LocalizedBorderRadiuses*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setBorderRadius(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_borderRadius, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_borderImage(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2963,7 +2963,7 @@ void impl_CommonMethod_borderImage(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = BorderImageOption_serializer::read(thisDeserializer); } Opt_BorderImageOption value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBorderImage(self, (const Opt_BorderImageOption*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setBorderImage(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_borderImage, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_outline(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -2977,7 +2977,7 @@ void impl_CommonMethod_outline(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = OutlineOptions_serializer::read(thisDeserializer); } Opt_OutlineOptions value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOutline(self, (const Opt_OutlineOptions*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOutline(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_outline, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_outlineStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3005,7 +3005,7 @@ void impl_CommonMethod_outlineStyle(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_OutlineStyle_EdgeOutlineStyles value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOutlineStyle(self, (const Opt_Union_OutlineStyle_EdgeOutlineStyles*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOutlineStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_outlineStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_outlineWidth(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3051,7 +3051,7 @@ void impl_CommonMethod_outlineWidth(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Dimension_EdgeOutlineWidths value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOutlineWidth(self, (const Opt_Union_Dimension_EdgeOutlineWidths*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOutlineWidth(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_outlineWidth, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_outlineColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3105,7 +3105,7 @@ void impl_CommonMethod_outlineColor(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_ResourceColor_EdgeColors_LocalizedEdgeColors value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOutlineColor(self, (const Opt_Union_ResourceColor_EdgeColors_LocalizedEdgeColors*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOutlineColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_outlineColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_outlineRadius(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3151,7 +3151,7 @@ void impl_CommonMethod_outlineRadius(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Dimension_OutlineRadiuses value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOutlineRadius(self, (const Opt_Union_Dimension_OutlineRadiuses*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOutlineRadius(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_outlineRadius, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_foregroundColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3201,7 +3201,7 @@ void impl_CommonMethod_foregroundColor(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_ResourceColor_ColoringStrategy value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setForegroundColor(self, (const Opt_Union_ResourceColor_ColoringStrategy*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setForegroundColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_foregroundColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onClick0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3215,7 +3215,7 @@ void impl_CommonMethod_onClick0(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_ClickEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_ClickEvent_Void))))}; } Opt_Callback_ClickEvent_Void value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnClick0(self, (const Opt_Callback_ClickEvent_Void*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnClick0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onClick0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onClick1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3237,7 +3237,7 @@ void impl_CommonMethod_onClick1(Ark_NativePointer thisPtr, KSerializerBuffer thi distanceThreshold_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number distanceThreshold_value = distanceThreshold_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnClick1(self, (const Opt_Callback_ClickEvent_Void*)&event_value, (const Opt_Number*)&distanceThreshold_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnClick1(self, reinterpret_cast(&event_value), reinterpret_cast(&distanceThreshold_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onClick1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onHover(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3251,7 +3251,7 @@ void impl_CommonMethod_onHover(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Boolean_HoverEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Boolean_HoverEvent_Void))))}; } Opt_Callback_Boolean_HoverEvent_Void value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnHover(self, (const Opt_Callback_Boolean_HoverEvent_Void*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnHover(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onHover, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onHoverMove(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3265,7 +3265,7 @@ void impl_CommonMethod_onHoverMove(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_HoverEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_HoverEvent_Void))))}; } Opt_Callback_HoverEvent_Void value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnHoverMove(self, (const Opt_Callback_HoverEvent_Void*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnHoverMove(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onHoverMove, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onAccessibilityHover(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3279,7 +3279,7 @@ void impl_CommonMethod_onAccessibilityHover(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_AccessibilityCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_AccessibilityCallback))))}; } Opt_AccessibilityCallback value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnAccessibilityHover(self, (const Opt_AccessibilityCallback*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnAccessibilityHover(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onAccessibilityHover, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_hoverEffect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3293,7 +3293,7 @@ void impl_CommonMethod_hoverEffect(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_HoverEffect value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setHoverEffect(self, (const Opt_HoverEffect*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setHoverEffect(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_hoverEffect, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onMouse(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3307,7 +3307,7 @@ void impl_CommonMethod_onMouse(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_MouseEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_MouseEvent_Void))))}; } Opt_Callback_MouseEvent_Void value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnMouse(self, (const Opt_Callback_MouseEvent_Void*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnMouse(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onMouse, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onTouch(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3321,7 +3321,7 @@ void impl_CommonMethod_onTouch(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_TouchEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_TouchEvent_Void))))}; } Opt_Callback_TouchEvent_Void value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnTouch(self, (const Opt_Callback_TouchEvent_Void*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnTouch(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onTouch, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onKeyEvent0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3335,7 +3335,7 @@ void impl_CommonMethod_onKeyEvent0(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_KeyEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_KeyEvent_Void))))}; } Opt_Callback_KeyEvent_Void value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnKeyEvent0(self, (const Opt_Callback_KeyEvent_Void*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnKeyEvent0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onKeyEvent0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onKeyEvent1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3349,7 +3349,7 @@ void impl_CommonMethod_onKeyEvent1(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_KeyEvent_Boolean)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_KeyEvent_Boolean))))}; } Opt_Callback_KeyEvent_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnKeyEvent1(self, (const Opt_Callback_KeyEvent_Boolean*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnKeyEvent1(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onKeyEvent1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onDigitalCrown(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3363,7 +3363,7 @@ void impl_CommonMethod_onDigitalCrown(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_CrownEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_CrownEvent_Void))))}; } Opt_Callback_CrownEvent_Void value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnDigitalCrown(self, (const Opt_Callback_CrownEvent_Void*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnDigitalCrown(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onDigitalCrown, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onKeyPreIme(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3377,7 +3377,7 @@ void impl_CommonMethod_onKeyPreIme(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_KeyEvent_Boolean)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_KeyEvent_Boolean))))}; } Opt_Callback_KeyEvent_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnKeyPreIme(self, (const Opt_Callback_KeyEvent_Boolean*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnKeyPreIme(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onKeyPreIme, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onKeyEventDispatch(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3391,7 +3391,7 @@ void impl_CommonMethod_onKeyEventDispatch(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_KeyEvent_Boolean)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_KeyEvent_Boolean))))}; } Opt_Callback_KeyEvent_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnKeyEventDispatch(self, (const Opt_Callback_KeyEvent_Boolean*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnKeyEventDispatch(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onKeyEventDispatch, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onFocusAxisEvent(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3405,7 +3405,7 @@ void impl_CommonMethod_onFocusAxisEvent(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_FocusAxisEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_FocusAxisEvent_Void))))}; } Opt_Callback_FocusAxisEvent_Void value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnFocusAxisEvent(self, (const Opt_Callback_FocusAxisEvent_Void*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnFocusAxisEvent(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onFocusAxisEvent, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onAxisEvent(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3419,7 +3419,7 @@ void impl_CommonMethod_onAxisEvent(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_AxisEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_AxisEvent_Void))))}; } Opt_Callback_AxisEvent_Void value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnAxisEvent(self, (const Opt_Callback_AxisEvent_Void*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnAxisEvent(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onAxisEvent, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_focusable(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3433,7 +3433,7 @@ void impl_CommonMethod_focusable(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setFocusable(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setFocusable(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_focusable, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_nextFocus(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3447,7 +3447,7 @@ void impl_CommonMethod_nextFocus(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = FocusMovement_serializer::read(thisDeserializer); } Opt_FocusMovement value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setNextFocus(self, (const Opt_FocusMovement*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setNextFocus(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_nextFocus, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_tabStop(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3461,7 +3461,7 @@ void impl_CommonMethod_tabStop(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setTabStop(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setTabStop(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_tabStop, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onFocus(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3475,7 +3475,7 @@ void impl_CommonMethod_onFocus(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnFocus(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnFocus(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onFocus, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onBlur(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3489,7 +3489,7 @@ void impl_CommonMethod_onBlur(Ark_NativePointer thisPtr, KSerializerBuffer thisA value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnBlur(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnBlur(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onBlur, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_tabIndex(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3503,7 +3503,7 @@ void impl_CommonMethod_tabIndex(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setTabIndex(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setTabIndex(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_tabIndex, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_defaultFocus(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3517,7 +3517,7 @@ void impl_CommonMethod_defaultFocus(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setDefaultFocus(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setDefaultFocus(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_defaultFocus, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_groupDefaultFocus(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3531,7 +3531,7 @@ void impl_CommonMethod_groupDefaultFocus(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setGroupDefaultFocus(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setGroupDefaultFocus(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_groupDefaultFocus, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_focusOnTouch(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3545,7 +3545,7 @@ void impl_CommonMethod_focusOnTouch(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setFocusOnTouch(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setFocusOnTouch(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_focusOnTouch, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_focusBox(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3559,7 +3559,7 @@ void impl_CommonMethod_focusBox(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = FocusBoxStyle_serializer::read(thisDeserializer); } Opt_FocusBoxStyle value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setFocusBox(self, (const Opt_FocusBoxStyle*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setFocusBox(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_focusBox, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_animation(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3573,7 +3573,7 @@ void impl_CommonMethod_animation(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = AnimateParam_serializer::read(thisDeserializer); } Opt_AnimateParam value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAnimation(self, (const Opt_AnimateParam*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAnimation(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_animation, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_transition0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3587,7 +3587,7 @@ void impl_CommonMethod_transition0(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(TransitionEffect_serializer::read(thisDeserializer)); } Opt_TransitionEffect value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setTransition0(self, (const Opt_TransitionEffect*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setTransition0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_transition0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_transition1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3609,7 +3609,7 @@ void impl_CommonMethod_transition1(Ark_NativePointer thisPtr, KSerializerBuffer onFinish_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_TransitionFinishCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_TransitionFinishCallback))))}; } Opt_TransitionFinishCallback onFinish_value = onFinish_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setTransition1(self, (const Opt_TransitionEffect*)&effect_value, (const Opt_TransitionFinishCallback*)&onFinish_value); + GetNodeModifiers()->getCommonMethodModifier()->setTransition1(self, reinterpret_cast(&effect_value), reinterpret_cast(&onFinish_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_transition1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_motionBlur(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3623,7 +3623,7 @@ void impl_CommonMethod_motionBlur(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = MotionBlurOptions_serializer::read(thisDeserializer); } Opt_MotionBlurOptions value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setMotionBlur(self, (const Opt_MotionBlurOptions*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setMotionBlur(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_motionBlur, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_brightness(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3637,7 +3637,7 @@ void impl_CommonMethod_brightness(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBrightness(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setBrightness(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_brightness, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_contrast(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3651,7 +3651,7 @@ void impl_CommonMethod_contrast(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setContrast(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setContrast(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_contrast, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_grayscale(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3665,7 +3665,7 @@ void impl_CommonMethod_grayscale(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setGrayscale(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setGrayscale(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_grayscale, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_colorBlend(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3697,7 +3697,7 @@ void impl_CommonMethod_colorBlend(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Color_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setColorBlend(self, (const Opt_Union_Color_String_Resource*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setColorBlend(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_colorBlend, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_saturate(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3711,7 +3711,7 @@ void impl_CommonMethod_saturate(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setSaturate(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setSaturate(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_saturate, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_sepia(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3725,7 +3725,7 @@ void impl_CommonMethod_sepia(Ark_NativePointer thisPtr, KSerializerBuffer thisAr value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setSepia(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setSepia(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_sepia, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_invert(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3753,7 +3753,7 @@ void impl_CommonMethod_invert(Ark_NativePointer thisPtr, KSerializerBuffer thisA value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_InvertOptions value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setInvert(self, (const Opt_Union_Number_InvertOptions*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setInvert(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_invert, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_hueRotate(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3781,7 +3781,7 @@ void impl_CommonMethod_hueRotate(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setHueRotate(self, (const Opt_Union_Number_String*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setHueRotate(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_hueRotate, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_useShadowBatching(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3795,7 +3795,7 @@ void impl_CommonMethod_useShadowBatching(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setUseShadowBatching(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setUseShadowBatching(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_useShadowBatching, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_useEffect0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3809,7 +3809,7 @@ void impl_CommonMethod_useEffect0(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setUseEffect0(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setUseEffect0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_useEffect0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_useEffect1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3831,7 +3831,7 @@ void impl_CommonMethod_useEffect1(Ark_NativePointer thisPtr, KSerializerBuffer t effectType_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EffectType effectType_value = effectType_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setUseEffect1(self, (const Opt_Boolean*)&useEffect_value, (const Opt_EffectType*)&effectType_value); + GetNodeModifiers()->getCommonMethodModifier()->setUseEffect1(self, reinterpret_cast(&useEffect_value), reinterpret_cast(&effectType_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_useEffect1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_renderGroup(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3845,7 +3845,7 @@ void impl_CommonMethod_renderGroup(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setRenderGroup(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setRenderGroup(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_renderGroup, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_freeze(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3859,7 +3859,7 @@ void impl_CommonMethod_freeze(Ark_NativePointer thisPtr, KSerializerBuffer thisA value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setFreeze(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setFreeze(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_freeze, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_translate(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3873,7 +3873,7 @@ void impl_CommonMethod_translate(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = TranslateOptions_serializer::read(thisDeserializer); } Opt_TranslateOptions value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setTranslate(self, (const Opt_TranslateOptions*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setTranslate(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_translate, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_scale(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3887,7 +3887,7 @@ void impl_CommonMethod_scale(Ark_NativePointer thisPtr, KSerializerBuffer thisAr value_value_buf.value = ScaleOptions_serializer::read(thisDeserializer); } Opt_ScaleOptions value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setScale(self, (const Opt_ScaleOptions*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setScale(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_scale, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_rotate(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3901,7 +3901,7 @@ void impl_CommonMethod_rotate(Ark_NativePointer thisPtr, KSerializerBuffer thisA value_value_buf.value = RotateOptions_serializer::read(thisDeserializer); } Opt_RotateOptions value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setRotate(self, (const Opt_RotateOptions*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setRotate(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_rotate, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_transform(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3915,7 +3915,7 @@ void impl_CommonMethod_transform(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(thisDeserializer.readObject()); } Opt_Object value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setTransform(self, (const Opt_Object*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setTransform(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_transform, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onAppear(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3929,7 +3929,7 @@ void impl_CommonMethod_onAppear(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnAppear(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnAppear(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onAppear, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onDisAppear(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3943,7 +3943,7 @@ void impl_CommonMethod_onDisAppear(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnDisAppear(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnDisAppear(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onDisAppear, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onAttach(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3957,7 +3957,7 @@ void impl_CommonMethod_onAttach(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_VoidCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_VoidCallback))))}; } Opt_VoidCallback value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnAttach(self, (const Opt_VoidCallback*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnAttach(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onAttach, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onDetach(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3971,7 +3971,7 @@ void impl_CommonMethod_onDetach(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_VoidCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_VoidCallback))))}; } Opt_VoidCallback value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnDetach(self, (const Opt_VoidCallback*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnDetach(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onDetach, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onAreaChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3985,7 +3985,7 @@ void impl_CommonMethod_onAreaChange(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Area_Area_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Area_Area_Void))))}; } Opt_Callback_Area_Area_Void value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnAreaChange(self, (const Opt_Callback_Area_Area_Void*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnAreaChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onAreaChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_visibility(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -3999,7 +3999,7 @@ void impl_CommonMethod_visibility(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_Visibility value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setVisibility(self, (const Opt_Visibility*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setVisibility(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_visibility, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_flexGrow(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4013,7 +4013,7 @@ void impl_CommonMethod_flexGrow(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setFlexGrow(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setFlexGrow(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_flexGrow, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_flexShrink(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4027,7 +4027,7 @@ void impl_CommonMethod_flexShrink(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setFlexShrink(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setFlexShrink(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_flexShrink, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_flexBasis(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4055,7 +4055,7 @@ void impl_CommonMethod_flexBasis(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setFlexBasis(self, (const Opt_Union_Number_String*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setFlexBasis(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_flexBasis, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_alignSelf(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4069,7 +4069,7 @@ void impl_CommonMethod_alignSelf(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ItemAlign value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAlignSelf(self, (const Opt_ItemAlign*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAlignSelf(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_alignSelf, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_displayPriority(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4083,7 +4083,7 @@ void impl_CommonMethod_displayPriority(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setDisplayPriority(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setDisplayPriority(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_displayPriority, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_zIndex(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4097,7 +4097,7 @@ void impl_CommonMethod_zIndex(Ark_NativePointer thisPtr, KSerializerBuffer thisA value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setZIndex(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setZIndex(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_zIndex, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_direction(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4111,7 +4111,7 @@ void impl_CommonMethod_direction(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_Direction value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setDirection(self, (const Opt_Direction*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setDirection(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_direction, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_align(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4125,7 +4125,7 @@ void impl_CommonMethod_align(Ark_NativePointer thisPtr, KSerializerBuffer thisAr value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_Alignment value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAlign(self, (const Opt_Alignment*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAlign(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_align, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_position(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4157,7 +4157,7 @@ void impl_CommonMethod_position(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Position_Edges_LocalizedEdges value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setPosition(self, (const Opt_Union_Position_Edges_LocalizedEdges*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setPosition(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_position, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_markAnchor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4185,7 +4185,7 @@ void impl_CommonMethod_markAnchor(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Position_LocalizedPosition value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setMarkAnchor(self, (const Opt_Union_Position_LocalizedPosition*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setMarkAnchor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_markAnchor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_offset(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4217,7 +4217,7 @@ void impl_CommonMethod_offset(Ark_NativePointer thisPtr, KSerializerBuffer thisA value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Position_Edges_LocalizedEdges value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOffset(self, (const Opt_Union_Position_Edges_LocalizedEdges*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOffset(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_offset, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_enabled(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4231,7 +4231,7 @@ void impl_CommonMethod_enabled(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setEnabled(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setEnabled(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_enabled, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_alignRules0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4245,7 +4245,7 @@ void impl_CommonMethod_alignRules0(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = AlignRuleOption_serializer::read(thisDeserializer); } Opt_AlignRuleOption value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAlignRules0(self, (const Opt_AlignRuleOption*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAlignRules0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_alignRules0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_alignRules1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4259,7 +4259,7 @@ void impl_CommonMethod_alignRules1(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = LocalizedAlignRuleOptions_serializer::read(thisDeserializer); } Opt_LocalizedAlignRuleOptions value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAlignRules1(self, (const Opt_LocalizedAlignRuleOptions*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAlignRules1(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_alignRules1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_aspectRatio(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4273,7 +4273,7 @@ void impl_CommonMethod_aspectRatio(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAspectRatio(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAspectRatio(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_aspectRatio, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_clickEffect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4287,7 +4287,7 @@ void impl_CommonMethod_clickEffect(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = ClickEffect_serializer::read(thisDeserializer); } Opt_ClickEffect value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setClickEffect(self, (const Opt_ClickEffect*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setClickEffect(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_clickEffect, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onDragStart(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4301,7 +4301,7 @@ void impl_CommonMethod_onDragStart(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Type_CommonMethod_onDragStart)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Type_CommonMethod_onDragStart))))}; } Opt_Type_CommonMethod_onDragStart value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnDragStart(self, (const Opt_Type_CommonMethod_onDragStart*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnDragStart(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onDragStart, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onDragEnter(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4315,7 +4315,7 @@ void impl_CommonMethod_onDragEnter(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_DragEvent_Opt_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_DragEvent_Opt_String_Void))))}; } Opt_Callback_DragEvent_Opt_String_Void value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnDragEnter(self, (const Opt_Callback_DragEvent_Opt_String_Void*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnDragEnter(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onDragEnter, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onDragMove(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4329,7 +4329,7 @@ void impl_CommonMethod_onDragMove(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_DragEvent_Opt_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_DragEvent_Opt_String_Void))))}; } Opt_Callback_DragEvent_Opt_String_Void value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnDragMove(self, (const Opt_Callback_DragEvent_Opt_String_Void*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnDragMove(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onDragMove, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onDragLeave(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4343,7 +4343,7 @@ void impl_CommonMethod_onDragLeave(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_DragEvent_Opt_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_DragEvent_Opt_String_Void))))}; } Opt_Callback_DragEvent_Opt_String_Void value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnDragLeave(self, (const Opt_Callback_DragEvent_Opt_String_Void*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnDragLeave(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onDragLeave, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onDrop0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4357,7 +4357,7 @@ void impl_CommonMethod_onDrop0(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_DragEvent_Opt_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_DragEvent_Opt_String_Void))))}; } Opt_Callback_DragEvent_Opt_String_Void value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnDrop0(self, (const Opt_Callback_DragEvent_Opt_String_Void*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnDrop0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onDrop0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onDrop1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4379,7 +4379,7 @@ void impl_CommonMethod_onDrop1(Ark_NativePointer thisPtr, KSerializerBuffer this dropOptions_value_buf.value = DropOptions_serializer::read(thisDeserializer); } Opt_DropOptions dropOptions_value = dropOptions_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnDrop1(self, (const Opt_OnDragEventCallback*)&eventCallback_value, (const Opt_DropOptions*)&dropOptions_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnDrop1(self, reinterpret_cast(&eventCallback_value), reinterpret_cast(&dropOptions_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onDrop1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onDragEnd(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4393,7 +4393,7 @@ void impl_CommonMethod_onDragEnd(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_DragEvent_Opt_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_DragEvent_Opt_String_Void))))}; } Opt_Callback_DragEvent_Opt_String_Void value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnDragEnd(self, (const Opt_Callback_DragEvent_Opt_String_Void*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnDragEnd(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onDragEnd, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_allowDrop(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4414,7 +4414,7 @@ void impl_CommonMethod_allowDrop(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = value_value_buf_; } Opt_Array_uniformTypeDescriptor_UniformDataType value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAllowDrop(self, (const Opt_Array_uniformTypeDescriptor_UniformDataType*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAllowDrop(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_allowDrop, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_draggable(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4428,7 +4428,7 @@ void impl_CommonMethod_draggable(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setDraggable(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setDraggable(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_draggable, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_dragPreview0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4460,7 +4460,7 @@ void impl_CommonMethod_dragPreview0(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_CustomBuilder_DragItemInfo_String value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setDragPreview0(self, (const Opt_Union_CustomBuilder_DragItemInfo_String*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setDragPreview0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_dragPreview0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_dragPreview1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4500,7 +4500,7 @@ void impl_CommonMethod_dragPreview1(Ark_NativePointer thisPtr, KSerializerBuffer config_value_buf.value = PreviewConfiguration_serializer::read(thisDeserializer); } Opt_PreviewConfiguration config_value = config_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setDragPreview1(self, (const Opt_Union_CustomBuilder_DragItemInfo_String*)&preview_value, (const Opt_PreviewConfiguration*)&config_value); + GetNodeModifiers()->getCommonMethodModifier()->setDragPreview1(self, reinterpret_cast(&preview_value), reinterpret_cast(&config_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_dragPreview1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onPreDrag(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4514,7 +4514,7 @@ void impl_CommonMethod_onPreDrag(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_PreDragStatus_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_PreDragStatus_Void))))}; } Opt_Callback_PreDragStatus_Void value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnPreDrag(self, (const Opt_Callback_PreDragStatus_Void*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnPreDrag(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onPreDrag, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_linearGradient(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4528,7 +4528,7 @@ void impl_CommonMethod_linearGradient(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = LinearGradientOptions_serializer::read(thisDeserializer); } Opt_LinearGradientOptions value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setLinearGradient(self, (const Opt_LinearGradientOptions*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setLinearGradient(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_linearGradient, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_sweepGradient(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4542,7 +4542,7 @@ void impl_CommonMethod_sweepGradient(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = SweepGradientOptions_serializer::read(thisDeserializer); } Opt_SweepGradientOptions value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setSweepGradient(self, (const Opt_SweepGradientOptions*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setSweepGradient(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_sweepGradient, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_radialGradient(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4556,7 +4556,7 @@ void impl_CommonMethod_radialGradient(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = RadialGradientOptions_serializer::read(thisDeserializer); } Opt_RadialGradientOptions value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setRadialGradient(self, (const Opt_RadialGradientOptions*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setRadialGradient(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_radialGradient, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_motionPath(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4570,7 +4570,7 @@ void impl_CommonMethod_motionPath(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = MotionPathOptions_serializer::read(thisDeserializer); } Opt_MotionPathOptions value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setMotionPath(self, (const Opt_MotionPathOptions*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setMotionPath(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_motionPath, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_shadow(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4598,7 +4598,7 @@ void impl_CommonMethod_shadow(Ark_NativePointer thisPtr, KSerializerBuffer thisA value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_ShadowOptions_ShadowStyle value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setShadow(self, (const Opt_Union_ShadowOptions_ShadowStyle*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setShadow(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_shadow, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_clip(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4612,7 +4612,7 @@ void impl_CommonMethod_clip(Ark_NativePointer thisPtr, KSerializerBuffer thisArr value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setClip(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setClip(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_clip, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_clipShape(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4648,7 +4648,7 @@ void impl_CommonMethod_clipShape(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_CircleShape_EllipseShape_PathShape_RectShape value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setClipShape(self, (const Opt_Union_CircleShape_EllipseShape_PathShape_RectShape*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setClipShape(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_clipShape, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_mask(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4662,7 +4662,7 @@ void impl_CommonMethod_mask(Ark_NativePointer thisPtr, KSerializerBuffer thisArr value_value_buf.value = static_cast(ProgressMask_serializer::read(thisDeserializer)); } Opt_ProgressMask value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setMask(self, (const Opt_ProgressMask*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setMask(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_mask, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_maskShape(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4698,7 +4698,7 @@ void impl_CommonMethod_maskShape(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_CircleShape_EllipseShape_PathShape_RectShape value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setMaskShape(self, (const Opt_Union_CircleShape_EllipseShape_PathShape_RectShape*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setMaskShape(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_maskShape, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_key(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4712,7 +4712,7 @@ void impl_CommonMethod_key(Ark_NativePointer thisPtr, KSerializerBuffer thisArra value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setKey(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setKey(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_key, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_id(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4726,7 +4726,7 @@ void impl_CommonMethod_id(Ark_NativePointer thisPtr, KSerializerBuffer thisArray value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setId(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setId(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_id, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_geometryTransition0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4740,7 +4740,7 @@ void impl_CommonMethod_geometryTransition0(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setGeometryTransition0(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setGeometryTransition0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_geometryTransition0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_geometryTransition1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4762,7 +4762,7 @@ void impl_CommonMethod_geometryTransition1(Ark_NativePointer thisPtr, KSerialize options_value_buf.value = GeometryTransitionOptions_serializer::read(thisDeserializer); } Opt_GeometryTransitionOptions options_value = options_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setGeometryTransition1(self, (const Opt_String*)&id_value, (const Opt_GeometryTransitionOptions*)&options_value); + GetNodeModifiers()->getCommonMethodModifier()->setGeometryTransition1(self, reinterpret_cast(&id_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_geometryTransition1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_stateStyles(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4776,7 +4776,7 @@ void impl_CommonMethod_stateStyles(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = StateStyles_serializer::read(thisDeserializer); } Opt_StateStyles value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setStateStyles(self, (const Opt_StateStyles*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setStateStyles(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_stateStyles, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_restoreId(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4790,7 +4790,7 @@ void impl_CommonMethod_restoreId(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setRestoreId(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setRestoreId(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_restoreId, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_sphericalEffect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4804,7 +4804,7 @@ void impl_CommonMethod_sphericalEffect(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setSphericalEffect(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setSphericalEffect(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_sphericalEffect, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_lightUpEffect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4818,7 +4818,7 @@ void impl_CommonMethod_lightUpEffect(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setLightUpEffect(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setLightUpEffect(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_lightUpEffect, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_pixelStretchEffect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4832,7 +4832,7 @@ void impl_CommonMethod_pixelStretchEffect(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = PixelStretchEffectOptions_serializer::read(thisDeserializer); } Opt_PixelStretchEffectOptions value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setPixelStretchEffect(self, (const Opt_PixelStretchEffectOptions*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setPixelStretchEffect(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_pixelStretchEffect, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_accessibilityGroup0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4846,7 +4846,7 @@ void impl_CommonMethod_accessibilityGroup0(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityGroup0(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityGroup0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_accessibilityGroup0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_accessibilityGroup1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4868,7 +4868,7 @@ void impl_CommonMethod_accessibilityGroup1(Ark_NativePointer thisPtr, KSerialize accessibilityOptions_value_buf.value = AccessibilityOptions_serializer::read(thisDeserializer); } Opt_AccessibilityOptions accessibilityOptions_value = accessibilityOptions_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityGroup1(self, (const Opt_Boolean*)&isGroup_value, (const Opt_AccessibilityOptions*)&accessibilityOptions_value); + GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityGroup1(self, reinterpret_cast(&isGroup_value), reinterpret_cast(&accessibilityOptions_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_accessibilityGroup1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_accessibilityText0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4882,7 +4882,7 @@ void impl_CommonMethod_accessibilityText0(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityText0(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityText0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_accessibilityText0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_accessibilityText1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4896,7 +4896,7 @@ void impl_CommonMethod_accessibilityText1(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = Resource_serializer::read(thisDeserializer); } Opt_Resource value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityText1(self, (const Opt_Resource*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityText1(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_accessibilityText1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_accessibilityNextFocusId(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4910,7 +4910,7 @@ void impl_CommonMethod_accessibilityNextFocusId(Ark_NativePointer thisPtr, KSeri value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityNextFocusId(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityNextFocusId(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_accessibilityNextFocusId, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_accessibilityDefaultFocus(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4924,7 +4924,7 @@ void impl_CommonMethod_accessibilityDefaultFocus(Ark_NativePointer thisPtr, KSer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityDefaultFocus(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityDefaultFocus(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_accessibilityDefaultFocus, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_accessibilityUseSamePage(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4938,7 +4938,7 @@ void impl_CommonMethod_accessibilityUseSamePage(Ark_NativePointer thisPtr, KSeri value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_AccessibilitySamePageMode value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityUseSamePage(self, (const Opt_AccessibilitySamePageMode*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityUseSamePage(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_accessibilityUseSamePage, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_accessibilityScrollTriggerable(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4952,7 +4952,7 @@ void impl_CommonMethod_accessibilityScrollTriggerable(Ark_NativePointer thisPtr, value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityScrollTriggerable(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityScrollTriggerable(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_accessibilityScrollTriggerable, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_accessibilityRole(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4966,7 +4966,7 @@ void impl_CommonMethod_accessibilityRole(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_AccessibilityRoleType value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityRole(self, (const Opt_AccessibilityRoleType*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityRole(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_accessibilityRole, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onAccessibilityFocus(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4980,7 +4980,7 @@ void impl_CommonMethod_onAccessibilityFocus(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_AccessibilityFocusCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_AccessibilityFocusCallback))))}; } Opt_AccessibilityFocusCallback value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnAccessibilityFocus(self, (const Opt_AccessibilityFocusCallback*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnAccessibilityFocus(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onAccessibilityFocus, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_accessibilityTextHint(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -4994,7 +4994,7 @@ void impl_CommonMethod_accessibilityTextHint(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityTextHint(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityTextHint(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_accessibilityTextHint, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_accessibilityDescription0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5008,7 +5008,7 @@ void impl_CommonMethod_accessibilityDescription0(Ark_NativePointer thisPtr, KSer value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityDescription0(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityDescription0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_accessibilityDescription0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_accessibilityDescription1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5022,7 +5022,7 @@ void impl_CommonMethod_accessibilityDescription1(Ark_NativePointer thisPtr, KSer value_value_buf.value = Resource_serializer::read(thisDeserializer); } Opt_Resource value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityDescription1(self, (const Opt_Resource*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityDescription1(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_accessibilityDescription1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_accessibilityLevel(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5036,7 +5036,7 @@ void impl_CommonMethod_accessibilityLevel(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityLevel(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityLevel(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_accessibilityLevel, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_accessibilityVirtualNode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5050,7 +5050,7 @@ void impl_CommonMethod_accessibilityVirtualNode(Ark_NativePointer thisPtr, KSeri value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_CustomNodeBuilder)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_CustomNodeBuilder))))}; } Opt_CustomNodeBuilder value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityVirtualNode(self, (const Opt_CustomNodeBuilder*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityVirtualNode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_accessibilityVirtualNode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_accessibilityChecked(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5064,7 +5064,7 @@ void impl_CommonMethod_accessibilityChecked(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityChecked(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityChecked(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_accessibilityChecked, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_accessibilitySelected(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5078,7 +5078,7 @@ void impl_CommonMethod_accessibilitySelected(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAccessibilitySelected(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAccessibilitySelected(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_accessibilitySelected, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_obscured(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5099,7 +5099,7 @@ void impl_CommonMethod_obscured(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = value_value_buf_; } Opt_Array_ObscuredReasons value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setObscured(self, (const Opt_Array_ObscuredReasons*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setObscured(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_obscured, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_reuseId(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5113,7 +5113,7 @@ void impl_CommonMethod_reuseId(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setReuseId(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setReuseId(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_reuseId, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_reuse(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5127,7 +5127,7 @@ void impl_CommonMethod_reuse(Ark_NativePointer thisPtr, KSerializerBuffer thisAr value_value_buf.value = ReuseOptions_serializer::read(thisDeserializer); } Opt_ReuseOptions value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setReuse(self, (const Opt_ReuseOptions*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setReuse(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_reuse, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_renderFit(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5141,7 +5141,7 @@ void impl_CommonMethod_renderFit(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_RenderFit value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setRenderFit(self, (const Opt_RenderFit*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setRenderFit(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_renderFit, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_gestureModifier(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5155,7 +5155,7 @@ void impl_CommonMethod_gestureModifier(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(GestureModifier_serializer::read(thisDeserializer)); } Opt_GestureModifier value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setGestureModifier(self, (const Opt_GestureModifier*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setGestureModifier(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_gestureModifier, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_backgroundBrightness(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5169,7 +5169,7 @@ void impl_CommonMethod_backgroundBrightness(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = BackgroundBrightnessOptions_serializer::read(thisDeserializer); } Opt_BackgroundBrightnessOptions value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBackgroundBrightness(self, (const Opt_BackgroundBrightnessOptions*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setBackgroundBrightness(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_backgroundBrightness, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onGestureJudgeBegin(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5183,7 +5183,7 @@ void impl_CommonMethod_onGestureJudgeBegin(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_GestureInfo_BaseGestureEvent_GestureJudgeResult)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_GestureInfo_BaseGestureEvent_GestureJudgeResult))))}; } Opt_Callback_GestureInfo_BaseGestureEvent_GestureJudgeResult value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnGestureJudgeBegin(self, (const Opt_Callback_GestureInfo_BaseGestureEvent_GestureJudgeResult*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnGestureJudgeBegin(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onGestureJudgeBegin, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onGestureRecognizerJudgeBegin0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5197,7 +5197,7 @@ void impl_CommonMethod_onGestureRecognizerJudgeBegin0(Ark_NativePointer thisPtr, value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_GestureRecognizerJudgeBeginCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_GestureRecognizerJudgeBeginCallback))))}; } Opt_GestureRecognizerJudgeBeginCallback value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnGestureRecognizerJudgeBegin0(self, (const Opt_GestureRecognizerJudgeBeginCallback*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnGestureRecognizerJudgeBegin0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onGestureRecognizerJudgeBegin0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onGestureRecognizerJudgeBegin1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5219,7 +5219,7 @@ void impl_CommonMethod_onGestureRecognizerJudgeBegin1(Ark_NativePointer thisPtr, exposeInnerGesture_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean exposeInnerGesture_value = exposeInnerGesture_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnGestureRecognizerJudgeBegin1(self, (const Opt_GestureRecognizerJudgeBeginCallback*)&callback__value, (const Opt_Boolean*)&exposeInnerGesture_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnGestureRecognizerJudgeBegin1(self, reinterpret_cast(&callback__value), reinterpret_cast(&exposeInnerGesture_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onGestureRecognizerJudgeBegin1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_shouldBuiltInRecognizerParallelWith(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5233,7 +5233,7 @@ void impl_CommonMethod_shouldBuiltInRecognizerParallelWith(Ark_NativePointer thi value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_ShouldBuiltInRecognizerParallelWithCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_ShouldBuiltInRecognizerParallelWithCallback))))}; } Opt_ShouldBuiltInRecognizerParallelWithCallback value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setShouldBuiltInRecognizerParallelWith(self, (const Opt_ShouldBuiltInRecognizerParallelWithCallback*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setShouldBuiltInRecognizerParallelWith(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_shouldBuiltInRecognizerParallelWith, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_monopolizeEvents(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5247,7 +5247,7 @@ void impl_CommonMethod_monopolizeEvents(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setMonopolizeEvents(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setMonopolizeEvents(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_monopolizeEvents, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onTouchIntercept(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5261,7 +5261,7 @@ void impl_CommonMethod_onTouchIntercept(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_TouchEvent_HitTestMode)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_TouchEvent_HitTestMode))))}; } Opt_Callback_TouchEvent_HitTestMode value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnTouchIntercept(self, (const Opt_Callback_TouchEvent_HitTestMode*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnTouchIntercept(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onTouchIntercept, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onSizeChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5275,7 +5275,7 @@ void impl_CommonMethod_onSizeChange(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_SizeChangeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_SizeChangeCallback))))}; } Opt_SizeChangeCallback value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnSizeChange(self, (const Opt_SizeChangeCallback*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnSizeChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onSizeChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_accessibilityFocusDrawLevel(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5289,7 +5289,7 @@ void impl_CommonMethod_accessibilityFocusDrawLevel(Ark_NativePointer thisPtr, KS value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_FocusDrawLevel value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityFocusDrawLevel(self, (const Opt_FocusDrawLevel*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setAccessibilityFocusDrawLevel(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_accessibilityFocusDrawLevel, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_customProperty(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5311,7 +5311,7 @@ void impl_CommonMethod_customProperty(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readObject()); } Opt_Object value_value = value_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setCustomProperty(self, (const Opt_String*)&name_value, (const Opt_Object*)&value_value); + GetNodeModifiers()->getCommonMethodModifier()->setCustomProperty(self, reinterpret_cast(&name_value), reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_customProperty, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_expandSafeArea(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5347,7 +5347,7 @@ void impl_CommonMethod_expandSafeArea(Ark_NativePointer thisPtr, KSerializerBuff edges_value_buf.value = edges_value_buf_; } Opt_Array_SafeAreaEdge edges_value = edges_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setExpandSafeArea(self, (const Opt_Array_SafeAreaType*)&types_value, (const Opt_Array_SafeAreaEdge*)&edges_value); + GetNodeModifiers()->getCommonMethodModifier()->setExpandSafeArea(self, reinterpret_cast(&types_value), reinterpret_cast(&edges_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_expandSafeArea, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_background(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5369,7 +5369,7 @@ void impl_CommonMethod_background(Ark_NativePointer thisPtr, KSerializerBuffer t options_value_buf.value = BackgroundOptions_serializer::read(thisDeserializer); } Opt_BackgroundOptions options_value = options_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBackground(self, (const Opt_CustomNodeBuilder*)&builder_value, (const Opt_BackgroundOptions*)&options_value); + GetNodeModifiers()->getCommonMethodModifier()->setBackground(self, reinterpret_cast(&builder_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_background, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_backgroundImage0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5419,7 +5419,7 @@ void impl_CommonMethod_backgroundImage0(Ark_NativePointer thisPtr, KSerializerBu repeat_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ImageRepeat repeat_value = repeat_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBackgroundImage0(self, (const Opt_Union_ResourceStr_PixelMap*)&src_value, (const Opt_ImageRepeat*)&repeat_value); + GetNodeModifiers()->getCommonMethodModifier()->setBackgroundImage0(self, reinterpret_cast(&src_value), reinterpret_cast(&repeat_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_backgroundImage0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_backgroundImage1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5469,7 +5469,7 @@ void impl_CommonMethod_backgroundImage1(Ark_NativePointer thisPtr, KSerializerBu options_value_buf.value = BackgroundImageOptions_serializer::read(thisDeserializer); } Opt_BackgroundImageOptions options_value = options_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBackgroundImage1(self, (const Opt_Union_ResourceStr_PixelMap*)&src_value, (const Opt_BackgroundImageOptions*)&options_value); + GetNodeModifiers()->getCommonMethodModifier()->setBackgroundImage1(self, reinterpret_cast(&src_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_backgroundImage1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_backgroundBlurStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5499,7 +5499,7 @@ void impl_CommonMethod_backgroundBlurStyle(Ark_NativePointer thisPtr, KSerialize sysOptions_value_buf.value = SystemAdaptiveOptions_serializer::read(thisDeserializer); } Opt_SystemAdaptiveOptions sysOptions_value = sysOptions_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBackgroundBlurStyle(self, (const Opt_BlurStyle*)&style_value, (const Opt_BackgroundBlurStyleOptions*)&options_value, (const Opt_SystemAdaptiveOptions*)&sysOptions_value); + GetNodeModifiers()->getCommonMethodModifier()->setBackgroundBlurStyle(self, reinterpret_cast(&style_value), reinterpret_cast(&options_value), reinterpret_cast(&sysOptions_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_backgroundBlurStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_foregroundBlurStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5529,7 +5529,7 @@ void impl_CommonMethod_foregroundBlurStyle(Ark_NativePointer thisPtr, KSerialize sysOptions_value_buf.value = SystemAdaptiveOptions_serializer::read(thisDeserializer); } Opt_SystemAdaptiveOptions sysOptions_value = sysOptions_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setForegroundBlurStyle(self, (const Opt_BlurStyle*)&style_value, (const Opt_ForegroundBlurStyleOptions*)&options_value, (const Opt_SystemAdaptiveOptions*)&sysOptions_value); + GetNodeModifiers()->getCommonMethodModifier()->setForegroundBlurStyle(self, reinterpret_cast(&style_value), reinterpret_cast(&options_value), reinterpret_cast(&sysOptions_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_foregroundBlurStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_focusScopeId(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5559,7 +5559,7 @@ void impl_CommonMethod_focusScopeId(Ark_NativePointer thisPtr, KSerializerBuffer arrowStepOut_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean arrowStepOut_value = arrowStepOut_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setFocusScopeId(self, (const Opt_String*)&id_value, (const Opt_Boolean*)&isGroup_value, (const Opt_Boolean*)&arrowStepOut_value); + GetNodeModifiers()->getCommonMethodModifier()->setFocusScopeId(self, reinterpret_cast(&id_value), reinterpret_cast(&isGroup_value), reinterpret_cast(&arrowStepOut_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_focusScopeId, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_focusScopePriority(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5581,7 +5581,7 @@ void impl_CommonMethod_focusScopePriority(Ark_NativePointer thisPtr, KSerializer priority_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_FocusPriority priority_value = priority_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setFocusScopePriority(self, (const Opt_String*)&scopeId_value, (const Opt_FocusPriority*)&priority_value); + GetNodeModifiers()->getCommonMethodModifier()->setFocusScopePriority(self, reinterpret_cast(&scopeId_value), reinterpret_cast(&priority_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_focusScopePriority, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_gesture(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5617,7 +5617,7 @@ void impl_CommonMethod_gesture(Ark_NativePointer thisPtr, KSerializerBuffer this mask_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_GestureMask mask_value = mask_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setGesture(self, (const Opt_GestureType*)&gesture_value, (const Opt_GestureMask*)&mask_value); + GetNodeModifiers()->getCommonMethodModifier()->setGesture(self, reinterpret_cast(&gesture_value), reinterpret_cast(&mask_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_gesture, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_priorityGesture(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5653,7 +5653,7 @@ void impl_CommonMethod_priorityGesture(Ark_NativePointer thisPtr, KSerializerBuf mask_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_GestureMask mask_value = mask_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setPriorityGesture(self, (const Opt_GestureType*)&gesture_value, (const Opt_GestureMask*)&mask_value); + GetNodeModifiers()->getCommonMethodModifier()->setPriorityGesture(self, reinterpret_cast(&gesture_value), reinterpret_cast(&mask_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_priorityGesture, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_parallelGesture(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5689,7 +5689,7 @@ void impl_CommonMethod_parallelGesture(Ark_NativePointer thisPtr, KSerializerBuf mask_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_GestureMask mask_value = mask_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setParallelGesture(self, (const Opt_GestureType*)&gesture_value, (const Opt_GestureMask*)&mask_value); + GetNodeModifiers()->getCommonMethodModifier()->setParallelGesture(self, reinterpret_cast(&gesture_value), reinterpret_cast(&mask_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_parallelGesture, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_blur(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5719,7 +5719,7 @@ void impl_CommonMethod_blur(Ark_NativePointer thisPtr, KSerializerBuffer thisArr sysOptions_value_buf.value = SystemAdaptiveOptions_serializer::read(thisDeserializer); } Opt_SystemAdaptiveOptions sysOptions_value = sysOptions_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBlur(self, (const Opt_Number*)&blurRadius_value, (const Opt_BlurOptions*)&options_value, (const Opt_SystemAdaptiveOptions*)&sysOptions_value); + GetNodeModifiers()->getCommonMethodModifier()->setBlur(self, reinterpret_cast(&blurRadius_value), reinterpret_cast(&options_value), reinterpret_cast(&sysOptions_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_blur, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_linearGradientBlur(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5741,7 +5741,7 @@ void impl_CommonMethod_linearGradientBlur(Ark_NativePointer thisPtr, KSerializer options_value_buf.value = LinearGradientBlurOptions_serializer::read(thisDeserializer); } Opt_LinearGradientBlurOptions options_value = options_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setLinearGradientBlur(self, (const Opt_Number*)&value_value, (const Opt_LinearGradientBlurOptions*)&options_value); + GetNodeModifiers()->getCommonMethodModifier()->setLinearGradientBlur(self, reinterpret_cast(&value_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_linearGradientBlur, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_systemBarEffect(Ark_NativePointer thisPtr) { @@ -5776,7 +5776,7 @@ void impl_CommonMethod_backdropBlur(Ark_NativePointer thisPtr, KSerializerBuffer sysOptions_value_buf.value = SystemAdaptiveOptions_serializer::read(thisDeserializer); } Opt_SystemAdaptiveOptions sysOptions_value = sysOptions_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBackdropBlur(self, (const Opt_Number*)&radius_value, (const Opt_BlurOptions*)&options_value, (const Opt_SystemAdaptiveOptions*)&sysOptions_value); + GetNodeModifiers()->getCommonMethodModifier()->setBackdropBlur(self, reinterpret_cast(&radius_value), reinterpret_cast(&options_value), reinterpret_cast(&sysOptions_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_backdropBlur, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_sharedTransition(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5798,7 +5798,7 @@ void impl_CommonMethod_sharedTransition(Ark_NativePointer thisPtr, KSerializerBu options_value_buf.value = sharedTransitionOptions_serializer::read(thisDeserializer); } Opt_sharedTransitionOptions options_value = options_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setSharedTransition(self, (const Opt_String*)&id_value, (const Opt_sharedTransitionOptions*)&options_value); + GetNodeModifiers()->getCommonMethodModifier()->setSharedTransition(self, reinterpret_cast(&id_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_sharedTransition, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_chainMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5820,7 +5820,7 @@ void impl_CommonMethod_chainMode(Ark_NativePointer thisPtr, KSerializerBuffer th style_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ChainStyle style_value = style_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setChainMode(self, (const Opt_Axis*)&direction_value, (const Opt_ChainStyle*)&style_value); + GetNodeModifiers()->getCommonMethodModifier()->setChainMode(self, reinterpret_cast(&direction_value), reinterpret_cast(&style_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_chainMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_dragPreviewOptions(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5842,7 +5842,7 @@ void impl_CommonMethod_dragPreviewOptions(Ark_NativePointer thisPtr, KSerializer options_value_buf.value = DragInteractionOptions_serializer::read(thisDeserializer); } Opt_DragInteractionOptions options_value = options_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setDragPreviewOptions(self, (const Opt_DragPreviewOptions*)&value_value, (const Opt_DragInteractionOptions*)&options_value); + GetNodeModifiers()->getCommonMethodModifier()->setDragPreviewOptions(self, reinterpret_cast(&value_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_dragPreviewOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_overlay(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5882,7 +5882,7 @@ void impl_CommonMethod_overlay(Ark_NativePointer thisPtr, KSerializerBuffer this options_value_buf.value = OverlayOptions_serializer::read(thisDeserializer); } Opt_OverlayOptions options_value = options_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOverlay(self, (const Opt_Union_String_CustomBuilder_ComponentContent*)&value_value, (const Opt_OverlayOptions*)&options_value); + GetNodeModifiers()->getCommonMethodModifier()->setOverlay(self, reinterpret_cast(&value_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_overlay, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_blendMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5904,7 +5904,7 @@ void impl_CommonMethod_blendMode(Ark_NativePointer thisPtr, KSerializerBuffer th type_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_BlendApplyType type_value = type_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBlendMode(self, (const Opt_BlendMode*)&value_value, (const Opt_BlendApplyType*)&type_value); + GetNodeModifiers()->getCommonMethodModifier()->setBlendMode(self, reinterpret_cast(&value_value), reinterpret_cast(&type_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_blendMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_advancedBlendMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5940,7 +5940,7 @@ void impl_CommonMethod_advancedBlendMode(Ark_NativePointer thisPtr, KSerializerB type_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_BlendApplyType type_value = type_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setAdvancedBlendMode(self, (const Opt_Union_BlendMode_Blender*)&effect_value, (const Opt_BlendApplyType*)&type_value); + GetNodeModifiers()->getCommonMethodModifier()->setAdvancedBlendMode(self, reinterpret_cast(&effect_value), reinterpret_cast(&type_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_advancedBlendMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_bindTips(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -5990,7 +5990,7 @@ void impl_CommonMethod_bindTips(Ark_NativePointer thisPtr, KSerializerBuffer thi options_value_buf.value = TipsOptions_serializer::read(thisDeserializer); } Opt_TipsOptions options_value = options_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBindTips(self, (const Opt_TipsMessageType*)&message_value, (const Opt_TipsOptions*)&options_value); + GetNodeModifiers()->getCommonMethodModifier()->setBindTips(self, reinterpret_cast(&message_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_bindTips, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_bindPopup(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6026,7 +6026,7 @@ void impl_CommonMethod_bindPopup(Ark_NativePointer thisPtr, KSerializerBuffer th popup_value_buf.value = static_cast(popup_value_buf_); } Opt_Union_PopupOptions_CustomPopupOptions popup_value = popup_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBindPopup(self, (const Opt_Boolean*)&show_value, (const Opt_Union_PopupOptions_CustomPopupOptions*)&popup_value); + GetNodeModifiers()->getCommonMethodModifier()->setBindPopup(self, reinterpret_cast(&show_value), reinterpret_cast(&popup_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_bindPopup, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_bindMenu0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6069,7 +6069,7 @@ void impl_CommonMethod_bindMenu0(Ark_NativePointer thisPtr, KSerializerBuffer th options_value_buf.value = MenuOptions_serializer::read(thisDeserializer); } Opt_MenuOptions options_value = options_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBindMenu0(self, (const Opt_Union_Array_MenuElement_CustomBuilder*)&content_value, (const Opt_MenuOptions*)&options_value); + GetNodeModifiers()->getCommonMethodModifier()->setBindMenu0(self, reinterpret_cast(&content_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_bindMenu0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_bindMenu1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6120,7 +6120,7 @@ void impl_CommonMethod_bindMenu1(Ark_NativePointer thisPtr, KSerializerBuffer th options_value_buf.value = MenuOptions_serializer::read(thisDeserializer); } Opt_MenuOptions options_value = options_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBindMenu1(self, (const Opt_Boolean*)&isShow_value, (const Opt_Union_Array_MenuElement_CustomBuilder*)&content_value, (const Opt_MenuOptions*)&options_value); + GetNodeModifiers()->getCommonMethodModifier()->setBindMenu1(self, reinterpret_cast(&isShow_value), reinterpret_cast(&content_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_bindMenu1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_bindContextMenu0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6150,7 +6150,7 @@ void impl_CommonMethod_bindContextMenu0(Ark_NativePointer thisPtr, KSerializerBu options_value_buf.value = ContextMenuOptions_serializer::read(thisDeserializer); } Opt_ContextMenuOptions options_value = options_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBindContextMenu0(self, (const Opt_CustomNodeBuilder*)&content_value, (const Opt_ResponseType*)&responseType_value, (const Opt_ContextMenuOptions*)&options_value); + GetNodeModifiers()->getCommonMethodModifier()->setBindContextMenu0(self, reinterpret_cast(&content_value), reinterpret_cast(&responseType_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_bindContextMenu0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_bindContextMenu1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6180,7 +6180,7 @@ void impl_CommonMethod_bindContextMenu1(Ark_NativePointer thisPtr, KSerializerBu options_value_buf.value = ContextMenuOptions_serializer::read(thisDeserializer); } Opt_ContextMenuOptions options_value = options_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBindContextMenu1(self, (const Opt_Boolean*)&isShown_value, (const Opt_CustomNodeBuilder*)&content_value, (const Opt_ContextMenuOptions*)&options_value); + GetNodeModifiers()->getCommonMethodModifier()->setBindContextMenu1(self, reinterpret_cast(&isShown_value), reinterpret_cast(&content_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_bindContextMenu1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_bindContentCover0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6210,7 +6210,7 @@ void impl_CommonMethod_bindContentCover0(Ark_NativePointer thisPtr, KSerializerB type_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ModalTransition type_value = type_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBindContentCover0(self, (const Opt_Boolean*)&isShow_value, (const Opt_CustomNodeBuilder*)&builder_value, (const Opt_ModalTransition*)&type_value); + GetNodeModifiers()->getCommonMethodModifier()->setBindContentCover0(self, reinterpret_cast(&isShow_value), reinterpret_cast(&builder_value), reinterpret_cast(&type_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_bindContentCover0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_bindContentCover1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6240,7 +6240,7 @@ void impl_CommonMethod_bindContentCover1(Ark_NativePointer thisPtr, KSerializerB options_value_buf.value = ContentCoverOptions_serializer::read(thisDeserializer); } Opt_ContentCoverOptions options_value = options_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBindContentCover1(self, (const Opt_Boolean*)&isShow_value, (const Opt_CustomNodeBuilder*)&builder_value, (const Opt_ContentCoverOptions*)&options_value); + GetNodeModifiers()->getCommonMethodModifier()->setBindContentCover1(self, reinterpret_cast(&isShow_value), reinterpret_cast(&builder_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_bindContentCover1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_bindSheet(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6270,7 +6270,7 @@ void impl_CommonMethod_bindSheet(Ark_NativePointer thisPtr, KSerializerBuffer th options_value_buf.value = SheetOptions_serializer::read(thisDeserializer); } Opt_SheetOptions options_value = options_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setBindSheet(self, (const Opt_Boolean*)&isShow_value, (const Opt_CustomNodeBuilder*)&builder_value, (const Opt_SheetOptions*)&options_value); + GetNodeModifiers()->getCommonMethodModifier()->setBindSheet(self, reinterpret_cast(&isShow_value), reinterpret_cast(&builder_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_bindSheet, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onVisibleAreaChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6299,7 +6299,7 @@ void impl_CommonMethod_onVisibleAreaChange(Ark_NativePointer thisPtr, KSerialize event_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_VisibleAreaChangeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_VisibleAreaChangeCallback))))}; } Opt_VisibleAreaChangeCallback event_value = event_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnVisibleAreaChange(self, (const Opt_Array_Number*)&ratios_value, (const Opt_VisibleAreaChangeCallback*)&event_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnVisibleAreaChange(self, reinterpret_cast(&ratios_value), reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onVisibleAreaChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_onVisibleAreaApproximateChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6321,7 +6321,7 @@ void impl_CommonMethod_onVisibleAreaApproximateChange(Ark_NativePointer thisPtr, event_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_VisibleAreaChangeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_VisibleAreaChangeCallback))))}; } Opt_VisibleAreaChangeCallback event_value = event_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setOnVisibleAreaApproximateChange(self, (const Opt_VisibleAreaEventOptions*)&options_value, (const Opt_VisibleAreaChangeCallback*)&event_value); + GetNodeModifiers()->getCommonMethodModifier()->setOnVisibleAreaApproximateChange(self, reinterpret_cast(&options_value), reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_onVisibleAreaApproximateChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonMethod_keyboardShortcut(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6372,7 +6372,7 @@ void impl_CommonMethod_keyboardShortcut(Ark_NativePointer thisPtr, KSerializerBu action_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void action_value = action_value_buf;; - GetNodeModifiers()->getCommonMethodModifier()->setKeyboardShortcut(self, (const Opt_Union_String_FunctionKey*)&value_value, (const Opt_Array_ModifierKey*)&keys_value, (const Opt_Callback_Void*)&action_value); + GetNodeModifiers()->getCommonMethodModifier()->setKeyboardShortcut(self, reinterpret_cast(&value_value), reinterpret_cast(&keys_value), reinterpret_cast(&action_value)); } KOALA_INTEROP_DIRECT_V3(CommonMethod_keyboardShortcut, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_CommonShapeMethod_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -6412,7 +6412,7 @@ void impl_CommonShapeMethod_stroke(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getCommonShapeMethodModifier()->setStroke(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getCommonShapeMethodModifier()->setStroke(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonShapeMethod_stroke, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonShapeMethod_fill(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6448,7 +6448,7 @@ void impl_CommonShapeMethod_fill(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getCommonShapeMethodModifier()->setFill(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getCommonShapeMethodModifier()->setFill(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonShapeMethod_fill, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonShapeMethod_strokeDashOffset(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6476,7 +6476,7 @@ void impl_CommonShapeMethod_strokeDashOffset(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String value_value = value_value_buf;; - GetNodeModifiers()->getCommonShapeMethodModifier()->setStrokeDashOffset(self, (const Opt_Union_Number_String*)&value_value); + GetNodeModifiers()->getCommonShapeMethodModifier()->setStrokeDashOffset(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonShapeMethod_strokeDashOffset, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonShapeMethod_strokeLineCap(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6490,7 +6490,7 @@ void impl_CommonShapeMethod_strokeLineCap(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_LineCapStyle value_value = value_value_buf;; - GetNodeModifiers()->getCommonShapeMethodModifier()->setStrokeLineCap(self, (const Opt_LineCapStyle*)&value_value); + GetNodeModifiers()->getCommonShapeMethodModifier()->setStrokeLineCap(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonShapeMethod_strokeLineCap, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonShapeMethod_strokeLineJoin(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6504,7 +6504,7 @@ void impl_CommonShapeMethod_strokeLineJoin(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_LineJoinStyle value_value = value_value_buf;; - GetNodeModifiers()->getCommonShapeMethodModifier()->setStrokeLineJoin(self, (const Opt_LineJoinStyle*)&value_value); + GetNodeModifiers()->getCommonShapeMethodModifier()->setStrokeLineJoin(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonShapeMethod_strokeLineJoin, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonShapeMethod_strokeMiterLimit(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6532,7 +6532,7 @@ void impl_CommonShapeMethod_strokeMiterLimit(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String value_value = value_value_buf;; - GetNodeModifiers()->getCommonShapeMethodModifier()->setStrokeMiterLimit(self, (const Opt_Union_Number_String*)&value_value); + GetNodeModifiers()->getCommonShapeMethodModifier()->setStrokeMiterLimit(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonShapeMethod_strokeMiterLimit, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonShapeMethod_strokeOpacity(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6564,7 +6564,7 @@ void impl_CommonShapeMethod_strokeOpacity(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getCommonShapeMethodModifier()->setStrokeOpacity(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getCommonShapeMethodModifier()->setStrokeOpacity(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonShapeMethod_strokeOpacity, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonShapeMethod_fillOpacity(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6596,7 +6596,7 @@ void impl_CommonShapeMethod_fillOpacity(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getCommonShapeMethodModifier()->setFillOpacity(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getCommonShapeMethodModifier()->setFillOpacity(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonShapeMethod_fillOpacity, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonShapeMethod_strokeWidth(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6628,7 +6628,7 @@ void impl_CommonShapeMethod_strokeWidth(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getCommonShapeMethodModifier()->setStrokeWidth(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getCommonShapeMethodModifier()->setStrokeWidth(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonShapeMethod_strokeWidth, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonShapeMethod_antiAlias(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6642,7 +6642,7 @@ void impl_CommonShapeMethod_antiAlias(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCommonShapeMethodModifier()->setAntiAlias(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCommonShapeMethodModifier()->setAntiAlias(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonShapeMethod_antiAlias, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CommonShapeMethod_strokeDashArray(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6681,7 +6681,7 @@ void impl_CommonShapeMethod_strokeDashArray(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = value_value_buf_; } Opt_Array_Length value_value = value_value_buf;; - GetNodeModifiers()->getCommonShapeMethodModifier()->setStrokeDashArray(self, (const Opt_Array_Length*)&value_value); + GetNodeModifiers()->getCommonShapeMethodModifier()->setStrokeDashArray(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CommonShapeMethod_strokeDashArray, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_ScrollableCommonMethod_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -6699,7 +6699,7 @@ void impl_ScrollableCommonMethod_scrollBar(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_BarState value_value = value_value_buf;; - GetNodeModifiers()->getScrollableCommonMethodModifier()->setScrollBar(self, (const Opt_BarState*)&value_value); + GetNodeModifiers()->getScrollableCommonMethodModifier()->setScrollBar(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollableCommonMethod_scrollBar, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollableCommonMethod_scrollBarColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6731,7 +6731,7 @@ void impl_ScrollableCommonMethod_scrollBarColor(Ark_NativePointer thisPtr, KSeri value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Color_Number_String value_value = value_value_buf;; - GetNodeModifiers()->getScrollableCommonMethodModifier()->setScrollBarColor(self, (const Opt_Union_Color_Number_String*)&value_value); + GetNodeModifiers()->getScrollableCommonMethodModifier()->setScrollBarColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollableCommonMethod_scrollBarColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollableCommonMethod_scrollBarWidth(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6759,7 +6759,7 @@ void impl_ScrollableCommonMethod_scrollBarWidth(Ark_NativePointer thisPtr, KSeri value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String value_value = value_value_buf;; - GetNodeModifiers()->getScrollableCommonMethodModifier()->setScrollBarWidth(self, (const Opt_Union_Number_String*)&value_value); + GetNodeModifiers()->getScrollableCommonMethodModifier()->setScrollBarWidth(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollableCommonMethod_scrollBarWidth, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollableCommonMethod_nestedScroll(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6773,7 +6773,7 @@ void impl_ScrollableCommonMethod_nestedScroll(Ark_NativePointer thisPtr, KSerial value_value_buf.value = NestedScrollOptions_serializer::read(thisDeserializer); } Opt_NestedScrollOptions value_value = value_value_buf;; - GetNodeModifiers()->getScrollableCommonMethodModifier()->setNestedScroll(self, (const Opt_NestedScrollOptions*)&value_value); + GetNodeModifiers()->getScrollableCommonMethodModifier()->setNestedScroll(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollableCommonMethod_nestedScroll, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollableCommonMethod_enableScrollInteraction(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6787,7 +6787,7 @@ void impl_ScrollableCommonMethod_enableScrollInteraction(Ark_NativePointer thisP value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getScrollableCommonMethodModifier()->setEnableScrollInteraction(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getScrollableCommonMethodModifier()->setEnableScrollInteraction(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollableCommonMethod_enableScrollInteraction, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollableCommonMethod_friction(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6815,7 +6815,7 @@ void impl_ScrollableCommonMethod_friction(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_Resource value_value = value_value_buf;; - GetNodeModifiers()->getScrollableCommonMethodModifier()->setFriction(self, (const Opt_Union_Number_Resource*)&value_value); + GetNodeModifiers()->getScrollableCommonMethodModifier()->setFriction(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollableCommonMethod_friction, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollableCommonMethod_onReachStart(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6829,7 +6829,7 @@ void impl_ScrollableCommonMethod_onReachStart(Ark_NativePointer thisPtr, KSerial value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getScrollableCommonMethodModifier()->setOnReachStart(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getScrollableCommonMethodModifier()->setOnReachStart(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollableCommonMethod_onReachStart, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollableCommonMethod_onReachEnd(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6843,7 +6843,7 @@ void impl_ScrollableCommonMethod_onReachEnd(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getScrollableCommonMethodModifier()->setOnReachEnd(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getScrollableCommonMethodModifier()->setOnReachEnd(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollableCommonMethod_onReachEnd, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollableCommonMethod_onScrollStart(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6857,7 +6857,7 @@ void impl_ScrollableCommonMethod_onScrollStart(Ark_NativePointer thisPtr, KSeria value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getScrollableCommonMethodModifier()->setOnScrollStart(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getScrollableCommonMethodModifier()->setOnScrollStart(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollableCommonMethod_onScrollStart, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollableCommonMethod_onScrollStop(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6871,7 +6871,7 @@ void impl_ScrollableCommonMethod_onScrollStop(Ark_NativePointer thisPtr, KSerial value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getScrollableCommonMethodModifier()->setOnScrollStop(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getScrollableCommonMethodModifier()->setOnScrollStop(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollableCommonMethod_onScrollStop, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollableCommonMethod_flingSpeedLimit(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6885,7 +6885,7 @@ void impl_ScrollableCommonMethod_flingSpeedLimit(Ark_NativePointer thisPtr, KSer value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getScrollableCommonMethodModifier()->setFlingSpeedLimit(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getScrollableCommonMethodModifier()->setFlingSpeedLimit(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollableCommonMethod_flingSpeedLimit, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollableCommonMethod_clipContent(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6913,7 +6913,7 @@ void impl_ScrollableCommonMethod_clipContent(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_ContentClipMode_RectShape value_value = value_value_buf;; - GetNodeModifiers()->getScrollableCommonMethodModifier()->setClipContent(self, (const Opt_Union_ContentClipMode_RectShape*)&value_value); + GetNodeModifiers()->getScrollableCommonMethodModifier()->setClipContent(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollableCommonMethod_clipContent, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollableCommonMethod_digitalCrownSensitivity(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6927,7 +6927,7 @@ void impl_ScrollableCommonMethod_digitalCrownSensitivity(Ark_NativePointer thisP value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_CrownSensitivity value_value = value_value_buf;; - GetNodeModifiers()->getScrollableCommonMethodModifier()->setDigitalCrownSensitivity(self, (const Opt_CrownSensitivity*)&value_value); + GetNodeModifiers()->getScrollableCommonMethodModifier()->setDigitalCrownSensitivity(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollableCommonMethod_digitalCrownSensitivity, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollableCommonMethod_backToTop(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6941,7 +6941,7 @@ void impl_ScrollableCommonMethod_backToTop(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getScrollableCommonMethodModifier()->setBackToTop(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getScrollableCommonMethodModifier()->setBackToTop(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollableCommonMethod_backToTop, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollableCommonMethod_edgeEffect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6963,7 +6963,7 @@ void impl_ScrollableCommonMethod_edgeEffect(Ark_NativePointer thisPtr, KSerializ options_value_buf.value = EdgeEffectOptions_serializer::read(thisDeserializer); } Opt_EdgeEffectOptions options_value = options_value_buf;; - GetNodeModifiers()->getScrollableCommonMethodModifier()->setEdgeEffect(self, (const Opt_EdgeEffect*)&edgeEffect_value, (const Opt_EdgeEffectOptions*)&options_value); + GetNodeModifiers()->getScrollableCommonMethodModifier()->setEdgeEffect(self, reinterpret_cast(&edgeEffect_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(ScrollableCommonMethod_edgeEffect, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollableCommonMethod_fadingEdge(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -6985,7 +6985,7 @@ void impl_ScrollableCommonMethod_fadingEdge(Ark_NativePointer thisPtr, KSerializ options_value_buf.value = FadingEdgeOptions_serializer::read(thisDeserializer); } Opt_FadingEdgeOptions options_value = options_value_buf;; - GetNodeModifiers()->getScrollableCommonMethodModifier()->setFadingEdge(self, (const Opt_Boolean*)&enabled_value, (const Opt_FadingEdgeOptions*)&options_value); + GetNodeModifiers()->getScrollableCommonMethodModifier()->setFadingEdge(self, reinterpret_cast(&enabled_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(ScrollableCommonMethod_fadingEdge, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_ContainerSpan_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -7008,7 +7008,7 @@ void impl_ContainerSpanAttribute_textBackgroundStyle(Ark_NativePointer thisPtr, value_value_buf.value = TextBackgroundStyle_serializer::read(thisDeserializer); } Opt_TextBackgroundStyle value_value = value_value_buf;; - GetNodeModifiers()->getContainerSpanModifier()->setTextBackgroundStyle(self, (const Opt_TextBackgroundStyle*)&value_value); + GetNodeModifiers()->getContainerSpanModifier()->setTextBackgroundStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ContainerSpanAttribute_textBackgroundStyle, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Counter_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -7031,7 +7031,7 @@ void impl_CounterAttribute_onInc(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_VoidCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_VoidCallback))))}; } Opt_VoidCallback value_value = value_value_buf;; - GetNodeModifiers()->getCounterModifier()->setOnInc(self, (const Opt_VoidCallback*)&value_value); + GetNodeModifiers()->getCounterModifier()->setOnInc(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CounterAttribute_onInc, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CounterAttribute_onDec(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7045,7 +7045,7 @@ void impl_CounterAttribute_onDec(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_VoidCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_VoidCallback))))}; } Opt_VoidCallback value_value = value_value_buf;; - GetNodeModifiers()->getCounterModifier()->setOnDec(self, (const Opt_VoidCallback*)&value_value); + GetNodeModifiers()->getCounterModifier()->setOnDec(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CounterAttribute_onDec, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CounterAttribute_enableDec(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7059,7 +7059,7 @@ void impl_CounterAttribute_enableDec(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCounterModifier()->setEnableDec(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCounterModifier()->setEnableDec(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CounterAttribute_enableDec, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CounterAttribute_enableInc(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7073,7 +7073,7 @@ void impl_CounterAttribute_enableInc(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getCounterModifier()->setEnableInc(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getCounterModifier()->setEnableInc(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CounterAttribute_enableInc, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_DataPanel_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -7084,7 +7084,7 @@ void impl_DataPanelInterface_setDataPanelOptions(Ark_NativePointer thisPtr, KSer Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_DataPanelOptions options_value = DataPanelOptions_serializer::read(thisDeserializer);; - GetNodeModifiers()->getDataPanelModifier()->setDataPanelOptions(self, (const Ark_DataPanelOptions*)&options_value); + GetNodeModifiers()->getDataPanelModifier()->setDataPanelOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(DataPanelInterface_setDataPanelOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_DataPanelAttribute_closeEffect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7098,7 +7098,7 @@ void impl_DataPanelAttribute_closeEffect(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getDataPanelModifier()->setCloseEffect(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getDataPanelModifier()->setCloseEffect(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(DataPanelAttribute_closeEffect, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_DataPanelAttribute_valueColors(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7155,7 +7155,7 @@ void impl_DataPanelAttribute_valueColors(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = value_value_buf_; } Opt_Array_Union_ResourceColor_LinearGradient value_value = value_value_buf;; - GetNodeModifiers()->getDataPanelModifier()->setValueColors(self, (const Opt_Array_Union_ResourceColor_LinearGradient*)&value_value); + GetNodeModifiers()->getDataPanelModifier()->setValueColors(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(DataPanelAttribute_valueColors, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_DataPanelAttribute_trackBackgroundColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7191,7 +7191,7 @@ void impl_DataPanelAttribute_trackBackgroundColor(Ark_NativePointer thisPtr, KSe value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getDataPanelModifier()->setTrackBackgroundColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getDataPanelModifier()->setTrackBackgroundColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(DataPanelAttribute_trackBackgroundColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_DataPanelAttribute_strokeWidth(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7223,7 +7223,7 @@ void impl_DataPanelAttribute_strokeWidth(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getDataPanelModifier()->setStrokeWidth(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getDataPanelModifier()->setStrokeWidth(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(DataPanelAttribute_strokeWidth, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_DataPanelAttribute_trackShadow(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7237,7 +7237,7 @@ void impl_DataPanelAttribute_trackShadow(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = DataPanelShadowOptions_serializer::read(thisDeserializer); } Opt_DataPanelShadowOptions value_value = value_value_buf;; - GetNodeModifiers()->getDataPanelModifier()->setTrackShadow(self, (const Opt_DataPanelShadowOptions*)&value_value); + GetNodeModifiers()->getDataPanelModifier()->setTrackShadow(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(DataPanelAttribute_trackShadow, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_DataPanelAttribute_contentModifier(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7251,7 +7251,7 @@ void impl_DataPanelAttribute_contentModifier(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = static_cast(thisDeserializer.readObject()); } Opt_ContentModifier value_value = value_value_buf;; - GetNodeModifiers()->getDataPanelModifier()->setContentModifier(self, (const Opt_ContentModifier*)&value_value); + GetNodeModifiers()->getDataPanelModifier()->setContentModifier(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(DataPanelAttribute_contentModifier, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_DatePicker_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -7269,7 +7269,7 @@ void impl_DatePickerInterface_setDatePickerOptions(Ark_NativePointer thisPtr, KS options_value_buf.value = DatePickerOptions_serializer::read(thisDeserializer); } Opt_DatePickerOptions options_value = options_value_buf;; - GetNodeModifiers()->getDatePickerModifier()->setDatePickerOptions(self, (const Opt_DatePickerOptions*)&options_value); + GetNodeModifiers()->getDatePickerModifier()->setDatePickerOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(DatePickerInterface_setDatePickerOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_DatePickerAttribute_lunar(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7283,7 +7283,7 @@ void impl_DatePickerAttribute_lunar(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getDatePickerModifier()->setLunar(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getDatePickerModifier()->setLunar(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(DatePickerAttribute_lunar, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_DatePickerAttribute_disappearTextStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7297,7 +7297,7 @@ void impl_DatePickerAttribute_disappearTextStyle(Ark_NativePointer thisPtr, KSer value_value_buf.value = PickerTextStyle_serializer::read(thisDeserializer); } Opt_PickerTextStyle value_value = value_value_buf;; - GetNodeModifiers()->getDatePickerModifier()->setDisappearTextStyle(self, (const Opt_PickerTextStyle*)&value_value); + GetNodeModifiers()->getDatePickerModifier()->setDisappearTextStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(DatePickerAttribute_disappearTextStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_DatePickerAttribute_textStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7311,7 +7311,7 @@ void impl_DatePickerAttribute_textStyle(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = PickerTextStyle_serializer::read(thisDeserializer); } Opt_PickerTextStyle value_value = value_value_buf;; - GetNodeModifiers()->getDatePickerModifier()->setTextStyle(self, (const Opt_PickerTextStyle*)&value_value); + GetNodeModifiers()->getDatePickerModifier()->setTextStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(DatePickerAttribute_textStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_DatePickerAttribute_selectedTextStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7325,7 +7325,7 @@ void impl_DatePickerAttribute_selectedTextStyle(Ark_NativePointer thisPtr, KSeri value_value_buf.value = PickerTextStyle_serializer::read(thisDeserializer); } Opt_PickerTextStyle value_value = value_value_buf;; - GetNodeModifiers()->getDatePickerModifier()->setSelectedTextStyle(self, (const Opt_PickerTextStyle*)&value_value); + GetNodeModifiers()->getDatePickerModifier()->setSelectedTextStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(DatePickerAttribute_selectedTextStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_DatePickerAttribute_onDateChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7339,7 +7339,7 @@ void impl_DatePickerAttribute_onDateChange(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Date_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Date_Void))))}; } Opt_Callback_Date_Void value_value = value_value_buf;; - GetNodeModifiers()->getDatePickerModifier()->setOnDateChange(self, (const Opt_Callback_Date_Void*)&value_value); + GetNodeModifiers()->getDatePickerModifier()->setOnDateChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(DatePickerAttribute_onDateChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_DatePickerAttribute_digitalCrownSensitivity(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7353,7 +7353,7 @@ void impl_DatePickerAttribute_digitalCrownSensitivity(Ark_NativePointer thisPtr, value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_CrownSensitivity value_value = value_value_buf;; - GetNodeModifiers()->getDatePickerModifier()->setDigitalCrownSensitivity(self, (const Opt_CrownSensitivity*)&value_value); + GetNodeModifiers()->getDatePickerModifier()->setDigitalCrownSensitivity(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(DatePickerAttribute_digitalCrownSensitivity, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_DatePickerAttribute_enableHapticFeedback(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7367,7 +7367,7 @@ void impl_DatePickerAttribute_enableHapticFeedback(Ark_NativePointer thisPtr, KS value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getDatePickerModifier()->setEnableHapticFeedback(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getDatePickerModifier()->setEnableHapticFeedback(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(DatePickerAttribute_enableHapticFeedback, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Divider_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -7390,7 +7390,7 @@ void impl_DividerAttribute_vertical(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getDividerModifier()->setVertical(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getDividerModifier()->setVertical(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(DividerAttribute_vertical, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_DividerAttribute_color(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7426,7 +7426,7 @@ void impl_DividerAttribute_color(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getDividerModifier()->setColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getDividerModifier()->setColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(DividerAttribute_color, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_DividerAttribute_strokeWidth(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7454,7 +7454,7 @@ void impl_DividerAttribute_strokeWidth(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String value_value = value_value_buf;; - GetNodeModifiers()->getDividerModifier()->setStrokeWidth(self, (const Opt_Union_Number_String*)&value_value); + GetNodeModifiers()->getDividerModifier()->setStrokeWidth(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(DividerAttribute_strokeWidth, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_DividerAttribute_lineCap(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7468,7 +7468,7 @@ void impl_DividerAttribute_lineCap(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_LineCapStyle value_value = value_value_buf;; - GetNodeModifiers()->getDividerModifier()->setLineCap(self, (const Opt_LineCapStyle*)&value_value); + GetNodeModifiers()->getDividerModifier()->setLineCap(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(DividerAttribute_lineCap, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_EffectComponent_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -7495,7 +7495,7 @@ void impl_EllipseInterface_setEllipseOptions(Ark_NativePointer thisPtr, KSeriali options_value_buf.value = EllipseOptions_serializer::read(thisDeserializer); } Opt_EllipseOptions options_value = options_value_buf;; - GetNodeModifiers()->getEllipseModifier()->setEllipseOptions(self, (const Opt_EllipseOptions*)&options_value); + GetNodeModifiers()->getEllipseModifier()->setEllipseOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(EllipseInterface_setEllipseOptions, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_EmbeddedComponent_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -7506,7 +7506,7 @@ void impl_EmbeddedComponentInterface_setEmbeddedComponentOptions(Ark_NativePoint Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Want loader_value = Want_serializer::read(thisDeserializer);; - GetNodeModifiers()->getEmbeddedComponentModifier()->setEmbeddedComponentOptions(self, (const Ark_Want*)&loader_value, static_cast(type)); + GetNodeModifiers()->getEmbeddedComponentModifier()->setEmbeddedComponentOptions(self, reinterpret_cast(&loader_value), static_cast(type)); } KOALA_INTEROP_DIRECT_V4(EmbeddedComponentInterface_setEmbeddedComponentOptions, Ark_NativePointer, KSerializerBuffer, int32_t, Ark_Int32) void impl_EmbeddedComponentAttribute_onTerminated(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7520,7 +7520,7 @@ void impl_EmbeddedComponentAttribute_onTerminated(Ark_NativePointer thisPtr, KSe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_TerminationInfo_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_TerminationInfo_Void))))}; } Opt_Callback_TerminationInfo_Void value_value = value_value_buf;; - GetNodeModifiers()->getEmbeddedComponentModifier()->setOnTerminated(self, (const Opt_Callback_TerminationInfo_Void*)&value_value); + GetNodeModifiers()->getEmbeddedComponentModifier()->setOnTerminated(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(EmbeddedComponentAttribute_onTerminated, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_EmbeddedComponentAttribute_onError(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7534,7 +7534,7 @@ void impl_EmbeddedComponentAttribute_onError(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_ErrorCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_ErrorCallback))))}; } Opt_ErrorCallback value_value = value_value_buf;; - GetNodeModifiers()->getEmbeddedComponentModifier()->setOnError(self, (const Opt_ErrorCallback*)&value_value); + GetNodeModifiers()->getEmbeddedComponentModifier()->setOnError(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(EmbeddedComponentAttribute_onError, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Flex_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -7552,7 +7552,7 @@ void impl_FlexInterface_setFlexOptions(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = FlexOptions_serializer::read(thisDeserializer); } Opt_FlexOptions value_value = value_value_buf;; - GetNodeModifiers()->getFlexModifier()->setFlexOptions(self, (const Opt_FlexOptions*)&value_value); + GetNodeModifiers()->getFlexModifier()->setFlexOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(FlexInterface_setFlexOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_FlexAttribute_pointLight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7566,7 +7566,7 @@ void impl_FlexAttribute_pointLight(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = PointLightStyle_serializer::read(thisDeserializer); } Opt_PointLightStyle value_value = value_value_buf;; - GetNodeModifiers()->getFlexModifier()->setPointLight(self, (const Opt_PointLightStyle*)&value_value); + GetNodeModifiers()->getFlexModifier()->setPointLight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(FlexAttribute_pointLight, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_FlowItem_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -7593,7 +7593,7 @@ void impl_FolderStackInterface_setFolderStackOptions(Ark_NativePointer thisPtr, options_value_buf.value = FolderStackOptions_serializer::read(thisDeserializer); } Opt_FolderStackOptions options_value = options_value_buf;; - GetNodeModifiers()->getFolderStackModifier()->setFolderStackOptions(self, (const Opt_FolderStackOptions*)&options_value); + GetNodeModifiers()->getFolderStackModifier()->setFolderStackOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(FolderStackInterface_setFolderStackOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_FolderStackAttribute_alignContent(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7607,7 +7607,7 @@ void impl_FolderStackAttribute_alignContent(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_Alignment value_value = value_value_buf;; - GetNodeModifiers()->getFolderStackModifier()->setAlignContent(self, (const Opt_Alignment*)&value_value); + GetNodeModifiers()->getFolderStackModifier()->setAlignContent(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(FolderStackAttribute_alignContent, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_FolderStackAttribute_onFolderStateChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7621,7 +7621,7 @@ void impl_FolderStackAttribute_onFolderStateChange(Ark_NativePointer thisPtr, KS value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnFoldStatusChangeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnFoldStatusChangeCallback))))}; } Opt_OnFoldStatusChangeCallback value_value = value_value_buf;; - GetNodeModifiers()->getFolderStackModifier()->setOnFolderStateChange(self, (const Opt_OnFoldStatusChangeCallback*)&value_value); + GetNodeModifiers()->getFolderStackModifier()->setOnFolderStateChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(FolderStackAttribute_onFolderStateChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_FolderStackAttribute_onHoverStatusChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7635,7 +7635,7 @@ void impl_FolderStackAttribute_onHoverStatusChange(Ark_NativePointer thisPtr, KS value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnHoverStatusChangeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnHoverStatusChangeCallback))))}; } Opt_OnHoverStatusChangeCallback value_value = value_value_buf;; - GetNodeModifiers()->getFolderStackModifier()->setOnHoverStatusChange(self, (const Opt_OnHoverStatusChangeCallback*)&value_value); + GetNodeModifiers()->getFolderStackModifier()->setOnHoverStatusChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(FolderStackAttribute_onHoverStatusChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_FolderStackAttribute_enableAnimation(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7649,7 +7649,7 @@ void impl_FolderStackAttribute_enableAnimation(Ark_NativePointer thisPtr, KSeria value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getFolderStackModifier()->setEnableAnimation(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getFolderStackModifier()->setEnableAnimation(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(FolderStackAttribute_enableAnimation, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_FolderStackAttribute_autoHalfFold(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7663,7 +7663,7 @@ void impl_FolderStackAttribute_autoHalfFold(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getFolderStackModifier()->setAutoHalfFold(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getFolderStackModifier()->setAutoHalfFold(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(FolderStackAttribute_autoHalfFold, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_FormComponent_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -7674,7 +7674,7 @@ void impl_FormComponentInterface_setFormComponentOptions(Ark_NativePointer thisP Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_FormInfo value_value = FormInfo_serializer::read(thisDeserializer);; - GetNodeModifiers()->getFormComponentModifier()->setFormComponentOptions(self, (const Ark_FormInfo*)&value_value); + GetNodeModifiers()->getFormComponentModifier()->setFormComponentOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(FormComponentInterface_setFormComponentOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_FormComponentAttribute_size(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7688,7 +7688,7 @@ void impl_FormComponentAttribute_size(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = FormSize_serializer::read(thisDeserializer); } Opt_FormSize value_value = value_value_buf;; - GetNodeModifiers()->getFormComponentModifier()->setSize(self, (const Opt_FormSize*)&value_value); + GetNodeModifiers()->getFormComponentModifier()->setSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(FormComponentAttribute_size, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_FormComponentAttribute_moduleName(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7702,7 +7702,7 @@ void impl_FormComponentAttribute_moduleName(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getFormComponentModifier()->setModuleName(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getFormComponentModifier()->setModuleName(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(FormComponentAttribute_moduleName, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_FormComponentAttribute_dimension(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7716,7 +7716,7 @@ void impl_FormComponentAttribute_dimension(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_FormDimension value_value = value_value_buf;; - GetNodeModifiers()->getFormComponentModifier()->setDimension(self, (const Opt_FormDimension*)&value_value); + GetNodeModifiers()->getFormComponentModifier()->setDimension(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(FormComponentAttribute_dimension, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_FormComponentAttribute_allowUpdate(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7730,7 +7730,7 @@ void impl_FormComponentAttribute_allowUpdate(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getFormComponentModifier()->setAllowUpdate(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getFormComponentModifier()->setAllowUpdate(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(FormComponentAttribute_allowUpdate, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_FormComponentAttribute_visibility(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7744,7 +7744,7 @@ void impl_FormComponentAttribute_visibility(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_Visibility value_value = value_value_buf;; - GetNodeModifiers()->getFormComponentModifier()->setVisibility(self, (const Opt_Visibility*)&value_value); + GetNodeModifiers()->getFormComponentModifier()->setVisibility(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(FormComponentAttribute_visibility, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_FormComponentAttribute_onAcquired(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7758,7 +7758,7 @@ void impl_FormComponentAttribute_onAcquired(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_FormCallbackInfo_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_FormCallbackInfo_Void))))}; } Opt_Callback_FormCallbackInfo_Void value_value = value_value_buf;; - GetNodeModifiers()->getFormComponentModifier()->setOnAcquired(self, (const Opt_Callback_FormCallbackInfo_Void*)&value_value); + GetNodeModifiers()->getFormComponentModifier()->setOnAcquired(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(FormComponentAttribute_onAcquired, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_FormComponentAttribute_onError(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7772,7 +7772,7 @@ void impl_FormComponentAttribute_onError(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_FormError_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_FormError_Void))))}; } Opt_Callback_FormError_Void value_value = value_value_buf;; - GetNodeModifiers()->getFormComponentModifier()->setOnError(self, (const Opt_Callback_FormError_Void*)&value_value); + GetNodeModifiers()->getFormComponentModifier()->setOnError(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(FormComponentAttribute_onError, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_FormComponentAttribute_onRouter(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7786,7 +7786,7 @@ void impl_FormComponentAttribute_onRouter(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Union_Object_Undefined_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Union_Object_Undefined_Void))))}; } Opt_Callback_Union_Object_Undefined_Void value_value = value_value_buf;; - GetNodeModifiers()->getFormComponentModifier()->setOnRouter(self, (const Opt_Callback_Union_Object_Undefined_Void*)&value_value); + GetNodeModifiers()->getFormComponentModifier()->setOnRouter(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(FormComponentAttribute_onRouter, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_FormComponentAttribute_onUninstall(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7800,7 +7800,7 @@ void impl_FormComponentAttribute_onUninstall(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_FormCallbackInfo_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_FormCallbackInfo_Void))))}; } Opt_Callback_FormCallbackInfo_Void value_value = value_value_buf;; - GetNodeModifiers()->getFormComponentModifier()->setOnUninstall(self, (const Opt_Callback_FormCallbackInfo_Void*)&value_value); + GetNodeModifiers()->getFormComponentModifier()->setOnUninstall(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(FormComponentAttribute_onUninstall, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_FormComponentAttribute_onLoad(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7814,7 +7814,7 @@ void impl_FormComponentAttribute_onLoad(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getFormComponentModifier()->setOnLoad(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getFormComponentModifier()->setOnLoad(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(FormComponentAttribute_onLoad, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_FormLink_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -7825,7 +7825,7 @@ void impl_FormLinkInterface_setFormLinkOptions(Ark_NativePointer thisPtr, KSeria Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_FormLinkOptions options_value = FormLinkOptions_serializer::read(thisDeserializer);; - GetNodeModifiers()->getFormLinkModifier()->setFormLinkOptions(self, (const Ark_FormLinkOptions*)&options_value); + GetNodeModifiers()->getFormLinkModifier()->setFormLinkOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(FormLinkInterface_setFormLinkOptions, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Gauge_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -7836,7 +7836,7 @@ void impl_GaugeInterface_setGaugeOptions(Ark_NativePointer thisPtr, KSerializerB Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_GaugeOptions options_value = GaugeOptions_serializer::read(thisDeserializer);; - GetNodeModifiers()->getGaugeModifier()->setGaugeOptions(self, (const Ark_GaugeOptions*)&options_value); + GetNodeModifiers()->getGaugeModifier()->setGaugeOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(GaugeInterface_setGaugeOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GaugeAttribute_value(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7850,7 +7850,7 @@ void impl_GaugeAttribute_value(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getGaugeModifier()->setValue(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getGaugeModifier()->setValue(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GaugeAttribute_value, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GaugeAttribute_startAngle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7864,7 +7864,7 @@ void impl_GaugeAttribute_startAngle(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getGaugeModifier()->setStartAngle(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getGaugeModifier()->setStartAngle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GaugeAttribute_startAngle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GaugeAttribute_endAngle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7878,7 +7878,7 @@ void impl_GaugeAttribute_endAngle(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getGaugeModifier()->setEndAngle(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getGaugeModifier()->setEndAngle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GaugeAttribute_endAngle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GaugeAttribute_colors(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -7978,7 +7978,7 @@ void impl_GaugeAttribute_colors(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_ResourceColor_LinearGradient_Array_Tuple_Union_ResourceColor_LinearGradient_Number value_value = value_value_buf;; - GetNodeModifiers()->getGaugeModifier()->setColors(self, (const Opt_Union_ResourceColor_LinearGradient_Array_Tuple_Union_ResourceColor_LinearGradient_Number*)&value_value); + GetNodeModifiers()->getGaugeModifier()->setColors(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GaugeAttribute_colors, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GaugeAttribute_strokeWidth(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8010,7 +8010,7 @@ void impl_GaugeAttribute_strokeWidth(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getGaugeModifier()->setStrokeWidth(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getGaugeModifier()->setStrokeWidth(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GaugeAttribute_strokeWidth, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GaugeAttribute_description(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8024,7 +8024,7 @@ void impl_GaugeAttribute_description(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_CustomNodeBuilder)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_CustomNodeBuilder))))}; } Opt_CustomNodeBuilder value_value = value_value_buf;; - GetNodeModifiers()->getGaugeModifier()->setDescription(self, (const Opt_CustomNodeBuilder*)&value_value); + GetNodeModifiers()->getGaugeModifier()->setDescription(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GaugeAttribute_description, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GaugeAttribute_trackShadow(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8038,7 +8038,7 @@ void impl_GaugeAttribute_trackShadow(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = GaugeShadowOptions_serializer::read(thisDeserializer); } Opt_GaugeShadowOptions value_value = value_value_buf;; - GetNodeModifiers()->getGaugeModifier()->setTrackShadow(self, (const Opt_GaugeShadowOptions*)&value_value); + GetNodeModifiers()->getGaugeModifier()->setTrackShadow(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GaugeAttribute_trackShadow, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GaugeAttribute_indicator(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8052,7 +8052,7 @@ void impl_GaugeAttribute_indicator(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = GaugeIndicatorOptions_serializer::read(thisDeserializer); } Opt_GaugeIndicatorOptions value_value = value_value_buf;; - GetNodeModifiers()->getGaugeModifier()->setIndicator(self, (const Opt_GaugeIndicatorOptions*)&value_value); + GetNodeModifiers()->getGaugeModifier()->setIndicator(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GaugeAttribute_indicator, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GaugeAttribute_privacySensitive(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8066,7 +8066,7 @@ void impl_GaugeAttribute_privacySensitive(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getGaugeModifier()->setPrivacySensitive(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getGaugeModifier()->setPrivacySensitive(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GaugeAttribute_privacySensitive, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GaugeAttribute_contentModifier(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8080,7 +8080,7 @@ void impl_GaugeAttribute_contentModifier(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(thisDeserializer.readObject()); } Opt_ContentModifier value_value = value_value_buf;; - GetNodeModifiers()->getGaugeModifier()->setContentModifier(self, (const Opt_ContentModifier*)&value_value); + GetNodeModifiers()->getGaugeModifier()->setContentModifier(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GaugeAttribute_contentModifier, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Grid_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -8106,7 +8106,7 @@ void impl_GridInterface_setGridOptions(Ark_NativePointer thisPtr, KSerializerBuf layoutOptions_value_buf.value = GridLayoutOptions_serializer::read(thisDeserializer); } Opt_GridLayoutOptions layoutOptions_value = layoutOptions_value_buf;; - GetNodeModifiers()->getGridModifier()->setGridOptions(self, (const Opt_Scroller*)&scroller_value, (const Opt_GridLayoutOptions*)&layoutOptions_value); + GetNodeModifiers()->getGridModifier()->setGridOptions(self, reinterpret_cast(&scroller_value), reinterpret_cast(&layoutOptions_value)); } KOALA_INTEROP_DIRECT_V3(GridInterface_setGridOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_columnsTemplate(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8120,7 +8120,7 @@ void impl_GridAttribute_columnsTemplate(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setColumnsTemplate(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getGridModifier()->setColumnsTemplate(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_columnsTemplate, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_rowsTemplate(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8134,7 +8134,7 @@ void impl_GridAttribute_rowsTemplate(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setRowsTemplate(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getGridModifier()->setRowsTemplate(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_rowsTemplate, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_columnsGap(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8166,7 +8166,7 @@ void impl_GridAttribute_columnsGap(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setColumnsGap(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getGridModifier()->setColumnsGap(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_columnsGap, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_rowsGap(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8198,7 +8198,7 @@ void impl_GridAttribute_rowsGap(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setRowsGap(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getGridModifier()->setRowsGap(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_rowsGap, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_onScrollBarUpdate(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8212,7 +8212,7 @@ void impl_GridAttribute_onScrollBarUpdate(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Number_ComputedBarAttribute)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Number_ComputedBarAttribute))))}; } Opt_Callback_Number_Number_ComputedBarAttribute value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setOnScrollBarUpdate(self, (const Opt_Callback_Number_Number_ComputedBarAttribute*)&value_value); + GetNodeModifiers()->getGridModifier()->setOnScrollBarUpdate(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_onScrollBarUpdate, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_onScrollIndex(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8226,7 +8226,7 @@ void impl_GridAttribute_onScrollIndex(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Number_Void))))}; } Opt_Callback_Number_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setOnScrollIndex(self, (const Opt_Callback_Number_Number_Void*)&value_value); + GetNodeModifiers()->getGridModifier()->setOnScrollIndex(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_onScrollIndex, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_cachedCount0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8240,7 +8240,7 @@ void impl_GridAttribute_cachedCount0(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setCachedCount0(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getGridModifier()->setCachedCount0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_cachedCount0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_cachedCount1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8262,7 +8262,7 @@ void impl_GridAttribute_cachedCount1(Ark_NativePointer thisPtr, KSerializerBuffe show_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean show_value = show_value_buf;; - GetNodeModifiers()->getGridModifier()->setCachedCount1(self, (const Opt_Number*)&count_value, (const Opt_Boolean*)&show_value); + GetNodeModifiers()->getGridModifier()->setCachedCount1(self, reinterpret_cast(&count_value), reinterpret_cast(&show_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_cachedCount1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_editMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8276,7 +8276,7 @@ void impl_GridAttribute_editMode(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setEditMode(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getGridModifier()->setEditMode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_editMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_multiSelectable(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8290,7 +8290,7 @@ void impl_GridAttribute_multiSelectable(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setMultiSelectable(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getGridModifier()->setMultiSelectable(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_multiSelectable, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_maxCount(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8304,7 +8304,7 @@ void impl_GridAttribute_maxCount(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setMaxCount(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getGridModifier()->setMaxCount(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_maxCount, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_minCount(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8318,7 +8318,7 @@ void impl_GridAttribute_minCount(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setMinCount(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getGridModifier()->setMinCount(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_minCount, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_cellLength(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8332,7 +8332,7 @@ void impl_GridAttribute_cellLength(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setCellLength(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getGridModifier()->setCellLength(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_cellLength, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_layoutDirection(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8346,7 +8346,7 @@ void impl_GridAttribute_layoutDirection(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_GridDirection value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setLayoutDirection(self, (const Opt_GridDirection*)&value_value); + GetNodeModifiers()->getGridModifier()->setLayoutDirection(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_layoutDirection, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_supportAnimation(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8360,7 +8360,7 @@ void impl_GridAttribute_supportAnimation(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setSupportAnimation(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getGridModifier()->setSupportAnimation(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_supportAnimation, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_onItemDragStart(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8374,7 +8374,7 @@ void impl_GridAttribute_onItemDragStart(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnItemDragStartCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnItemDragStartCallback))))}; } Opt_OnItemDragStartCallback value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setOnItemDragStart(self, (const Opt_OnItemDragStartCallback*)&value_value); + GetNodeModifiers()->getGridModifier()->setOnItemDragStart(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_onItemDragStart, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_onItemDragEnter(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8388,7 +8388,7 @@ void impl_GridAttribute_onItemDragEnter(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_ItemDragInfo_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_ItemDragInfo_Void))))}; } Opt_Callback_ItemDragInfo_Void value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setOnItemDragEnter(self, (const Opt_Callback_ItemDragInfo_Void*)&value_value); + GetNodeModifiers()->getGridModifier()->setOnItemDragEnter(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_onItemDragEnter, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_onItemDragMove(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8402,7 +8402,7 @@ void impl_GridAttribute_onItemDragMove(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_ItemDragInfo_Number_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_ItemDragInfo_Number_Number_Void))))}; } Opt_Callback_ItemDragInfo_Number_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setOnItemDragMove(self, (const Opt_Callback_ItemDragInfo_Number_Number_Void*)&value_value); + GetNodeModifiers()->getGridModifier()->setOnItemDragMove(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_onItemDragMove, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_onItemDragLeave(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8416,7 +8416,7 @@ void impl_GridAttribute_onItemDragLeave(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_ItemDragInfo_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_ItemDragInfo_Number_Void))))}; } Opt_Callback_ItemDragInfo_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setOnItemDragLeave(self, (const Opt_Callback_ItemDragInfo_Number_Void*)&value_value); + GetNodeModifiers()->getGridModifier()->setOnItemDragLeave(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_onItemDragLeave, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_onItemDrop(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8430,7 +8430,7 @@ void impl_GridAttribute_onItemDrop(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_ItemDragInfo_Number_Number_Boolean_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_ItemDragInfo_Number_Number_Boolean_Void))))}; } Opt_Callback_ItemDragInfo_Number_Number_Boolean_Void value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setOnItemDrop(self, (const Opt_Callback_ItemDragInfo_Number_Number_Boolean_Void*)&value_value); + GetNodeModifiers()->getGridModifier()->setOnItemDrop(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_onItemDrop, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_alignItems(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8444,7 +8444,7 @@ void impl_GridAttribute_alignItems(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_GridItemAlignment value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setAlignItems(self, (const Opt_GridItemAlignment*)&value_value); + GetNodeModifiers()->getGridModifier()->setAlignItems(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_alignItems, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_onScrollFrameBegin(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8458,7 +8458,7 @@ void impl_GridAttribute_onScrollFrameBegin(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnScrollFrameBeginCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnScrollFrameBeginCallback))))}; } Opt_OnScrollFrameBeginCallback value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setOnScrollFrameBegin(self, (const Opt_OnScrollFrameBeginCallback*)&value_value); + GetNodeModifiers()->getGridModifier()->setOnScrollFrameBegin(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_onScrollFrameBegin, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_onWillScroll(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8472,7 +8472,7 @@ void impl_GridAttribute_onWillScroll(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnWillScrollCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnWillScrollCallback))))}; } Opt_OnWillScrollCallback value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setOnWillScroll(self, (const Opt_OnWillScrollCallback*)&value_value); + GetNodeModifiers()->getGridModifier()->setOnWillScroll(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_onWillScroll, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridAttribute_onDidScroll(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8486,7 +8486,7 @@ void impl_GridAttribute_onDidScroll(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnScrollCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnScrollCallback))))}; } Opt_OnScrollCallback value_value = value_value_buf;; - GetNodeModifiers()->getGridModifier()->setOnDidScroll(self, (const Opt_OnScrollCallback*)&value_value); + GetNodeModifiers()->getGridModifier()->setOnDidScroll(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridAttribute_onDidScroll, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_GridCol_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -8504,7 +8504,7 @@ void impl_GridColInterface_setGridColOptions(Ark_NativePointer thisPtr, KSeriali option_value_buf.value = GridColOptions_serializer::read(thisDeserializer); } Opt_GridColOptions option_value = option_value_buf;; - GetNodeModifiers()->getGridColModifier()->setGridColOptions(self, (const Opt_GridColOptions*)&option_value); + GetNodeModifiers()->getGridColModifier()->setGridColOptions(self, reinterpret_cast(&option_value)); } KOALA_INTEROP_DIRECT_V3(GridColInterface_setGridColOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridColAttribute_span(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8532,7 +8532,7 @@ void impl_GridColAttribute_span(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_GridColColumnOption value_value = value_value_buf;; - GetNodeModifiers()->getGridColModifier()->setSpan(self, (const Opt_Union_Number_GridColColumnOption*)&value_value); + GetNodeModifiers()->getGridColModifier()->setSpan(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridColAttribute_span, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridColAttribute_gridColOffset(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8560,7 +8560,7 @@ void impl_GridColAttribute_gridColOffset(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_GridColColumnOption value_value = value_value_buf;; - GetNodeModifiers()->getGridColModifier()->setGridColOffset(self, (const Opt_Union_Number_GridColColumnOption*)&value_value); + GetNodeModifiers()->getGridColModifier()->setGridColOffset(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridColAttribute_gridColOffset, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridColAttribute_order(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8588,7 +8588,7 @@ void impl_GridColAttribute_order(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_GridColColumnOption value_value = value_value_buf;; - GetNodeModifiers()->getGridColModifier()->setOrder(self, (const Opt_Union_Number_GridColColumnOption*)&value_value); + GetNodeModifiers()->getGridColModifier()->setOrder(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridColAttribute_order, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_GridItem_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -8606,7 +8606,7 @@ void impl_GridItemInterface_setGridItemOptions(Ark_NativePointer thisPtr, KSeria value_value_buf.value = GridItemOptions_serializer::read(thisDeserializer); } Opt_GridItemOptions value_value = value_value_buf;; - GetNodeModifiers()->getGridItemModifier()->setGridItemOptions(self, (const Opt_GridItemOptions*)&value_value); + GetNodeModifiers()->getGridItemModifier()->setGridItemOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridItemInterface_setGridItemOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridItemAttribute_rowStart(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8620,7 +8620,7 @@ void impl_GridItemAttribute_rowStart(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getGridItemModifier()->setRowStart(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getGridItemModifier()->setRowStart(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridItemAttribute_rowStart, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridItemAttribute_rowEnd(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8634,7 +8634,7 @@ void impl_GridItemAttribute_rowEnd(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getGridItemModifier()->setRowEnd(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getGridItemModifier()->setRowEnd(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridItemAttribute_rowEnd, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridItemAttribute_columnStart(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8648,7 +8648,7 @@ void impl_GridItemAttribute_columnStart(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getGridItemModifier()->setColumnStart(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getGridItemModifier()->setColumnStart(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridItemAttribute_columnStart, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridItemAttribute_columnEnd(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8662,7 +8662,7 @@ void impl_GridItemAttribute_columnEnd(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getGridItemModifier()->setColumnEnd(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getGridItemModifier()->setColumnEnd(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridItemAttribute_columnEnd, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridItemAttribute_selectable(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8676,7 +8676,7 @@ void impl_GridItemAttribute_selectable(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getGridItemModifier()->setSelectable(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getGridItemModifier()->setSelectable(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridItemAttribute_selectable, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridItemAttribute_selected(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8690,7 +8690,7 @@ void impl_GridItemAttribute_selected(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getGridItemModifier()->setSelected(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getGridItemModifier()->setSelected(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridItemAttribute_selected, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridItemAttribute_onSelect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8704,7 +8704,7 @@ void impl_GridItemAttribute_onSelect(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Boolean_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Boolean_Void))))}; } Opt_Callback_Boolean_Void value_value = value_value_buf;; - GetNodeModifiers()->getGridItemModifier()->setOnSelect(self, (const Opt_Callback_Boolean_Void*)&value_value); + GetNodeModifiers()->getGridItemModifier()->setOnSelect(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridItemAttribute_onSelect, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_GridRow_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -8722,7 +8722,7 @@ void impl_GridRowInterface_setGridRowOptions(Ark_NativePointer thisPtr, KSeriali option_value_buf.value = GridRowOptions_serializer::read(thisDeserializer); } Opt_GridRowOptions option_value = option_value_buf;; - GetNodeModifiers()->getGridRowModifier()->setGridRowOptions(self, (const Opt_GridRowOptions*)&option_value); + GetNodeModifiers()->getGridRowModifier()->setGridRowOptions(self, reinterpret_cast(&option_value)); } KOALA_INTEROP_DIRECT_V3(GridRowInterface_setGridRowOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridRowAttribute_onBreakpointChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8736,7 +8736,7 @@ void impl_GridRowAttribute_onBreakpointChange(Ark_NativePointer thisPtr, KSerial value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_String_Void))))}; } Opt_Callback_String_Void value_value = value_value_buf;; - GetNodeModifiers()->getGridRowModifier()->setOnBreakpointChange(self, (const Opt_Callback_String_Void*)&value_value); + GetNodeModifiers()->getGridRowModifier()->setOnBreakpointChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridRowAttribute_onBreakpointChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_GridRowAttribute_alignItems(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8750,7 +8750,7 @@ void impl_GridRowAttribute_alignItems(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ItemAlign value_value = value_value_buf;; - GetNodeModifiers()->getGridRowModifier()->setAlignItems(self, (const Opt_ItemAlign*)&value_value); + GetNodeModifiers()->getGridRowModifier()->setAlignItems(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(GridRowAttribute_alignItems, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Hyperlink_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -8797,7 +8797,7 @@ void impl_HyperlinkInterface_setHyperlinkOptions(Ark_NativePointer thisPtr, KSer content_value_buf.value = static_cast(content_value_buf_); } Opt_Union_String_Resource content_value = content_value_buf;; - GetNodeModifiers()->getHyperlinkModifier()->setHyperlinkOptions(self, (const Ark_Union_String_Resource*)&address_value, (const Opt_Union_String_Resource*)&content_value); + GetNodeModifiers()->getHyperlinkModifier()->setHyperlinkOptions(self, reinterpret_cast(&address_value), reinterpret_cast(&content_value)); } KOALA_INTEROP_DIRECT_V3(HyperlinkInterface_setHyperlinkOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_HyperlinkAttribute_color(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8833,7 +8833,7 @@ void impl_HyperlinkAttribute_color(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Color_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getHyperlinkModifier()->setColor(self, (const Opt_Union_Color_Number_String_Resource*)&value_value); + GetNodeModifiers()->getHyperlinkModifier()->setColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(HyperlinkAttribute_color, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Image_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -8880,7 +8880,7 @@ void impl_ImageInterface_setImageOptions0(Ark_NativePointer thisPtr, KSerializer INTEROP_FATAL("One of the branches for src_value_buf has to be chosen through deserialisation."); } Ark_Union_PixelMap_ResourceStr_DrawableDescriptor_ImageContent src_value = static_cast(src_value_buf);; - GetNodeModifiers()->getImageModifier()->setImageOptions0(self, (const Ark_Union_PixelMap_ResourceStr_DrawableDescriptor_ImageContent*)&src_value); + GetNodeModifiers()->getImageModifier()->setImageOptions0(self, reinterpret_cast(&src_value)); } KOALA_INTEROP_DIRECT_V3(ImageInterface_setImageOptions0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageInterface_setImageOptions1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8920,7 +8920,7 @@ void impl_ImageInterface_setImageOptions1(Ark_NativePointer thisPtr, KSerializer } Ark_Union_PixelMap_ResourceStr_DrawableDescriptor src_value = static_cast(src_value_buf);; Ark_ImageAIOptions imageAIOptions_value = ImageAIOptions_serializer::read(thisDeserializer);; - GetNodeModifiers()->getImageModifier()->setImageOptions1(self, (const Ark_Union_PixelMap_ResourceStr_DrawableDescriptor*)&src_value, (const Ark_ImageAIOptions*)&imageAIOptions_value); + GetNodeModifiers()->getImageModifier()->setImageOptions1(self, reinterpret_cast(&src_value), reinterpret_cast(&imageAIOptions_value)); } KOALA_INTEROP_DIRECT_V3(ImageInterface_setImageOptions1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_alt(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8952,7 +8952,7 @@ void impl_ImageAttribute_alt(Ark_NativePointer thisPtr, KSerializerBuffer thisAr value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_String_Resource_PixelMap value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setAlt(self, (const Opt_Union_String_Resource_PixelMap*)&value_value); + GetNodeModifiers()->getImageModifier()->setAlt(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_alt, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_matchTextDirection(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8966,7 +8966,7 @@ void impl_ImageAttribute_matchTextDirection(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setMatchTextDirection(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getImageModifier()->setMatchTextDirection(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_matchTextDirection, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_fitOriginalSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -8980,7 +8980,7 @@ void impl_ImageAttribute_fitOriginalSize(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setFitOriginalSize(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getImageModifier()->setFitOriginalSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_fitOriginalSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_fillColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9034,7 +9034,7 @@ void impl_ImageAttribute_fillColor(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_ResourceColor_ColorContent_ColorMetrics value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setFillColor(self, (const Opt_Union_ResourceColor_ColorContent_ColorMetrics*)&value_value); + GetNodeModifiers()->getImageModifier()->setFillColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_fillColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_objectFit(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9048,7 +9048,7 @@ void impl_ImageAttribute_objectFit(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ImageFit value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setObjectFit(self, (const Opt_ImageFit*)&value_value); + GetNodeModifiers()->getImageModifier()->setObjectFit(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_objectFit, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_imageMatrix(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9062,7 +9062,7 @@ void impl_ImageAttribute_imageMatrix(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(matrix4_Matrix4Transit_serializer::read(thisDeserializer)); } Opt_matrix4_Matrix4Transit value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setImageMatrix(self, (const Opt_matrix4_Matrix4Transit*)&value_value); + GetNodeModifiers()->getImageModifier()->setImageMatrix(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_imageMatrix, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_objectRepeat(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9076,7 +9076,7 @@ void impl_ImageAttribute_objectRepeat(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ImageRepeat value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setObjectRepeat(self, (const Opt_ImageRepeat*)&value_value); + GetNodeModifiers()->getImageModifier()->setObjectRepeat(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_objectRepeat, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_autoResize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9090,7 +9090,7 @@ void impl_ImageAttribute_autoResize(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setAutoResize(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getImageModifier()->setAutoResize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_autoResize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_renderMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9104,7 +9104,7 @@ void impl_ImageAttribute_renderMode(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ImageRenderMode value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setRenderMode(self, (const Opt_ImageRenderMode*)&value_value); + GetNodeModifiers()->getImageModifier()->setRenderMode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_renderMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_dynamicRangeMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9118,7 +9118,7 @@ void impl_ImageAttribute_dynamicRangeMode(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_DynamicRangeMode value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setDynamicRangeMode(self, (const Opt_DynamicRangeMode*)&value_value); + GetNodeModifiers()->getImageModifier()->setDynamicRangeMode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_dynamicRangeMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_interpolation(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9132,7 +9132,7 @@ void impl_ImageAttribute_interpolation(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ImageInterpolation value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setInterpolation(self, (const Opt_ImageInterpolation*)&value_value); + GetNodeModifiers()->getImageModifier()->setInterpolation(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_interpolation, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_sourceSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9146,7 +9146,7 @@ void impl_ImageAttribute_sourceSize(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = ImageSourceSize_serializer::read(thisDeserializer); } Opt_ImageSourceSize value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setSourceSize(self, (const Opt_ImageSourceSize*)&value_value); + GetNodeModifiers()->getImageModifier()->setSourceSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_sourceSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_syncLoad(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9160,7 +9160,7 @@ void impl_ImageAttribute_syncLoad(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setSyncLoad(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getImageModifier()->setSyncLoad(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_syncLoad, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_colorFilter(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9188,7 +9188,7 @@ void impl_ImageAttribute_colorFilter(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_ColorFilter_DrawingColorFilter value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setColorFilter(self, (const Opt_Union_ColorFilter_DrawingColorFilter*)&value_value); + GetNodeModifiers()->getImageModifier()->setColorFilter(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_colorFilter, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_copyOption(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9202,7 +9202,7 @@ void impl_ImageAttribute_copyOption(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_CopyOptions value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setCopyOption(self, (const Opt_CopyOptions*)&value_value); + GetNodeModifiers()->getImageModifier()->setCopyOption(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_copyOption, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_draggable(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9216,7 +9216,7 @@ void impl_ImageAttribute_draggable(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setDraggable(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getImageModifier()->setDraggable(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_draggable, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_pointLight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9230,7 +9230,7 @@ void impl_ImageAttribute_pointLight(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = PointLightStyle_serializer::read(thisDeserializer); } Opt_PointLightStyle value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setPointLight(self, (const Opt_PointLightStyle*)&value_value); + GetNodeModifiers()->getImageModifier()->setPointLight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_pointLight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_edgeAntialiasing(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9244,7 +9244,7 @@ void impl_ImageAttribute_edgeAntialiasing(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setEdgeAntialiasing(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getImageModifier()->setEdgeAntialiasing(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_edgeAntialiasing, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_onComplete(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9258,7 +9258,7 @@ void impl_ImageAttribute_onComplete(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_ImageOnCompleteCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_ImageOnCompleteCallback))))}; } Opt_ImageOnCompleteCallback value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setOnComplete(self, (const Opt_ImageOnCompleteCallback*)&value_value); + GetNodeModifiers()->getImageModifier()->setOnComplete(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_onComplete, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_onError(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9272,7 +9272,7 @@ void impl_ImageAttribute_onError(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_ImageErrorCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_ImageErrorCallback))))}; } Opt_ImageErrorCallback value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setOnError(self, (const Opt_ImageErrorCallback*)&value_value); + GetNodeModifiers()->getImageModifier()->setOnError(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_onError, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_onFinish(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9286,7 +9286,7 @@ void impl_ImageAttribute_onFinish(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setOnFinish(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getImageModifier()->setOnFinish(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_onFinish, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_enableAnalyzer(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9300,7 +9300,7 @@ void impl_ImageAttribute_enableAnalyzer(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setEnableAnalyzer(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getImageModifier()->setEnableAnalyzer(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_enableAnalyzer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_analyzerConfig(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9314,7 +9314,7 @@ void impl_ImageAttribute_analyzerConfig(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = ImageAnalyzerConfig_serializer::read(thisDeserializer); } Opt_ImageAnalyzerConfig value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setAnalyzerConfig(self, (const Opt_ImageAnalyzerConfig*)&value_value); + GetNodeModifiers()->getImageModifier()->setAnalyzerConfig(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_analyzerConfig, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_resizable(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9328,7 +9328,7 @@ void impl_ImageAttribute_resizable(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = ResizableOptions_serializer::read(thisDeserializer); } Opt_ResizableOptions value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setResizable(self, (const Opt_ResizableOptions*)&value_value); + GetNodeModifiers()->getImageModifier()->setResizable(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_resizable, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_privacySensitive(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9342,7 +9342,7 @@ void impl_ImageAttribute_privacySensitive(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setPrivacySensitive(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getImageModifier()->setPrivacySensitive(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_privacySensitive, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_enhancedImageQuality(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9356,7 +9356,7 @@ void impl_ImageAttribute_enhancedImageQuality(Ark_NativePointer thisPtr, KSerial value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_image_ResolutionQuality value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setEnhancedImageQuality(self, (const Opt_image_ResolutionQuality*)&value_value); + GetNodeModifiers()->getImageModifier()->setEnhancedImageQuality(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_enhancedImageQuality, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAttribute_orientation(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9370,7 +9370,7 @@ void impl_ImageAttribute_orientation(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ImageRotateOrientation value_value = value_value_buf;; - GetNodeModifiers()->getImageModifier()->setOrientation(self, (const Opt_ImageRotateOrientation*)&value_value); + GetNodeModifiers()->getImageModifier()->setOrientation(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAttribute_orientation, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_ImageAnimator_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -9400,7 +9400,7 @@ void impl_ImageAnimatorAttribute_images(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = value_value_buf_; } Opt_Array_ImageFrameInfo value_value = value_value_buf;; - GetNodeModifiers()->getImageAnimatorModifier()->setImages(self, (const Opt_Array_ImageFrameInfo*)&value_value); + GetNodeModifiers()->getImageAnimatorModifier()->setImages(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAnimatorAttribute_images, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAnimatorAttribute_state(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9414,7 +9414,7 @@ void impl_ImageAnimatorAttribute_state(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_AnimationStatus value_value = value_value_buf;; - GetNodeModifiers()->getImageAnimatorModifier()->setState(self, (const Opt_AnimationStatus*)&value_value); + GetNodeModifiers()->getImageAnimatorModifier()->setState(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAnimatorAttribute_state, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAnimatorAttribute_duration(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9428,7 +9428,7 @@ void impl_ImageAnimatorAttribute_duration(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getImageAnimatorModifier()->setDuration(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getImageAnimatorModifier()->setDuration(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAnimatorAttribute_duration, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAnimatorAttribute_reverse(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9442,7 +9442,7 @@ void impl_ImageAnimatorAttribute_reverse(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getImageAnimatorModifier()->setReverse(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getImageAnimatorModifier()->setReverse(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAnimatorAttribute_reverse, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAnimatorAttribute_fixedSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9456,7 +9456,7 @@ void impl_ImageAnimatorAttribute_fixedSize(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getImageAnimatorModifier()->setFixedSize(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getImageAnimatorModifier()->setFixedSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAnimatorAttribute_fixedSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAnimatorAttribute_fillMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9470,7 +9470,7 @@ void impl_ImageAnimatorAttribute_fillMode(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_FillMode value_value = value_value_buf;; - GetNodeModifiers()->getImageAnimatorModifier()->setFillMode(self, (const Opt_FillMode*)&value_value); + GetNodeModifiers()->getImageAnimatorModifier()->setFillMode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAnimatorAttribute_fillMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAnimatorAttribute_iterations(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9484,7 +9484,7 @@ void impl_ImageAnimatorAttribute_iterations(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getImageAnimatorModifier()->setIterations(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getImageAnimatorModifier()->setIterations(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAnimatorAttribute_iterations, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAnimatorAttribute_monitorInvisibleArea(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9498,7 +9498,7 @@ void impl_ImageAnimatorAttribute_monitorInvisibleArea(Ark_NativePointer thisPtr, value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getImageAnimatorModifier()->setMonitorInvisibleArea(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getImageAnimatorModifier()->setMonitorInvisibleArea(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAnimatorAttribute_monitorInvisibleArea, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAnimatorAttribute_onStart(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9512,7 +9512,7 @@ void impl_ImageAnimatorAttribute_onStart(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getImageAnimatorModifier()->setOnStart(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getImageAnimatorModifier()->setOnStart(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAnimatorAttribute_onStart, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAnimatorAttribute_onPause(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9526,7 +9526,7 @@ void impl_ImageAnimatorAttribute_onPause(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getImageAnimatorModifier()->setOnPause(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getImageAnimatorModifier()->setOnPause(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAnimatorAttribute_onPause, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAnimatorAttribute_onRepeat(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9540,7 +9540,7 @@ void impl_ImageAnimatorAttribute_onRepeat(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getImageAnimatorModifier()->setOnRepeat(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getImageAnimatorModifier()->setOnRepeat(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAnimatorAttribute_onRepeat, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAnimatorAttribute_onCancel(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9554,7 +9554,7 @@ void impl_ImageAnimatorAttribute_onCancel(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getImageAnimatorModifier()->setOnCancel(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getImageAnimatorModifier()->setOnCancel(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAnimatorAttribute_onCancel, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageAnimatorAttribute_onFinish(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9568,7 +9568,7 @@ void impl_ImageAnimatorAttribute_onFinish(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getImageAnimatorModifier()->setOnFinish(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getImageAnimatorModifier()->setOnFinish(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageAnimatorAttribute_onFinish, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_ImageSpan_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -9607,7 +9607,7 @@ void impl_ImageSpanInterface_setImageSpanOptions(Ark_NativePointer thisPtr, KSer INTEROP_FATAL("One of the branches for value_value_buf has to be chosen through deserialisation."); } Ark_Union_ResourceStr_PixelMap value_value = static_cast(value_value_buf);; - GetNodeModifiers()->getImageSpanModifier()->setImageSpanOptions(self, (const Ark_Union_ResourceStr_PixelMap*)&value_value); + GetNodeModifiers()->getImageSpanModifier()->setImageSpanOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageSpanInterface_setImageSpanOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageSpanAttribute_verticalAlign(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9621,7 +9621,7 @@ void impl_ImageSpanAttribute_verticalAlign(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ImageSpanAlignment value_value = value_value_buf;; - GetNodeModifiers()->getImageSpanModifier()->setVerticalAlign(self, (const Opt_ImageSpanAlignment*)&value_value); + GetNodeModifiers()->getImageSpanModifier()->setVerticalAlign(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageSpanAttribute_verticalAlign, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageSpanAttribute_objectFit(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9635,7 +9635,7 @@ void impl_ImageSpanAttribute_objectFit(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ImageFit value_value = value_value_buf;; - GetNodeModifiers()->getImageSpanModifier()->setObjectFit(self, (const Opt_ImageFit*)&value_value); + GetNodeModifiers()->getImageSpanModifier()->setObjectFit(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageSpanAttribute_objectFit, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageSpanAttribute_onComplete(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9649,7 +9649,7 @@ void impl_ImageSpanAttribute_onComplete(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_ImageCompleteCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_ImageCompleteCallback))))}; } Opt_ImageCompleteCallback value_value = value_value_buf;; - GetNodeModifiers()->getImageSpanModifier()->setOnComplete(self, (const Opt_ImageCompleteCallback*)&value_value); + GetNodeModifiers()->getImageSpanModifier()->setOnComplete(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageSpanAttribute_onComplete, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageSpanAttribute_onError(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9663,7 +9663,7 @@ void impl_ImageSpanAttribute_onError(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_ImageErrorCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_ImageErrorCallback))))}; } Opt_ImageErrorCallback value_value = value_value_buf;; - GetNodeModifiers()->getImageSpanModifier()->setOnError(self, (const Opt_ImageErrorCallback*)&value_value); + GetNodeModifiers()->getImageSpanModifier()->setOnError(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageSpanAttribute_onError, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ImageSpanAttribute_alt(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9677,7 +9677,7 @@ void impl_ImageSpanAttribute_alt(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(image_PixelMap_serializer::read(thisDeserializer)); } Opt_image_PixelMap value_value = value_value_buf;; - GetNodeModifiers()->getImageSpanModifier()->setAlt(self, (const Opt_image_PixelMap*)&value_value); + GetNodeModifiers()->getImageSpanModifier()->setAlt(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ImageSpanAttribute_alt, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_IndicatorComponent_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -9695,7 +9695,7 @@ void impl_IndicatorComponentInterface_setIndicatorComponentOptions(Ark_NativePoi controller_value_buf.value = static_cast(IndicatorComponentController_serializer::read(thisDeserializer)); } Opt_IndicatorComponentController controller_value = controller_value_buf;; - GetNodeModifiers()->getIndicatorComponentModifier()->setIndicatorComponentOptions(self, (const Opt_IndicatorComponentController*)&controller_value); + GetNodeModifiers()->getIndicatorComponentModifier()->setIndicatorComponentOptions(self, reinterpret_cast(&controller_value)); } KOALA_INTEROP_DIRECT_V3(IndicatorComponentInterface_setIndicatorComponentOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_IndicatorComponentAttribute_initialIndex(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9709,7 +9709,7 @@ void impl_IndicatorComponentAttribute_initialIndex(Ark_NativePointer thisPtr, KS value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getIndicatorComponentModifier()->setInitialIndex(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getIndicatorComponentModifier()->setInitialIndex(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(IndicatorComponentAttribute_initialIndex, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_IndicatorComponentAttribute_count(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9723,7 +9723,7 @@ void impl_IndicatorComponentAttribute_count(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getIndicatorComponentModifier()->setCount(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getIndicatorComponentModifier()->setCount(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(IndicatorComponentAttribute_count, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_IndicatorComponentAttribute_style(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9751,7 +9751,7 @@ void impl_IndicatorComponentAttribute_style(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_DotIndicator_DigitIndicator value_value = value_value_buf;; - GetNodeModifiers()->getIndicatorComponentModifier()->setStyle(self, (const Opt_Union_DotIndicator_DigitIndicator*)&value_value); + GetNodeModifiers()->getIndicatorComponentModifier()->setStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(IndicatorComponentAttribute_style, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_IndicatorComponentAttribute_loop(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9765,7 +9765,7 @@ void impl_IndicatorComponentAttribute_loop(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getIndicatorComponentModifier()->setLoop(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getIndicatorComponentModifier()->setLoop(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(IndicatorComponentAttribute_loop, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_IndicatorComponentAttribute_vertical(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9779,7 +9779,7 @@ void impl_IndicatorComponentAttribute_vertical(Ark_NativePointer thisPtr, KSeria value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getIndicatorComponentModifier()->setVertical(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getIndicatorComponentModifier()->setVertical(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(IndicatorComponentAttribute_vertical, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_IndicatorComponentAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9793,7 +9793,7 @@ void impl_IndicatorComponentAttribute_onChange(Ark_NativePointer thisPtr, KSeria value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Void))))}; } Opt_Callback_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getIndicatorComponentModifier()->setOnChange(self, (const Opt_Callback_Number_Void*)&value_value); + GetNodeModifiers()->getIndicatorComponentModifier()->setOnChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(IndicatorComponentAttribute_onChange, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Line_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -9811,7 +9811,7 @@ void impl_LineInterface_setLineOptions(Ark_NativePointer thisPtr, KSerializerBuf options_value_buf.value = LineOptions_serializer::read(thisDeserializer); } Opt_LineOptions options_value = options_value_buf;; - GetNodeModifiers()->getLineModifier()->setLineOptions(self, (const Opt_LineOptions*)&options_value); + GetNodeModifiers()->getLineModifier()->setLineOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(LineInterface_setLineOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_LineAttribute_startPoint(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9864,7 +9864,7 @@ void impl_LineAttribute_startPoint(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = value_value_buf_; } Opt_ShapePoint value_value = value_value_buf;; - GetNodeModifiers()->getLineModifier()->setStartPoint(self, (const Opt_ShapePoint*)&value_value); + GetNodeModifiers()->getLineModifier()->setStartPoint(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(LineAttribute_startPoint, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_LineAttribute_endPoint(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9917,7 +9917,7 @@ void impl_LineAttribute_endPoint(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = value_value_buf_; } Opt_ShapePoint value_value = value_value_buf;; - GetNodeModifiers()->getLineModifier()->setEndPoint(self, (const Opt_ShapePoint*)&value_value); + GetNodeModifiers()->getLineModifier()->setEndPoint(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(LineAttribute_endPoint, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_LinearIndicator_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -9943,7 +9943,7 @@ void impl_LinearIndicatorInterface_setLinearIndicatorOptions(Ark_NativePointer t controller_value_buf.value = static_cast(LinearIndicatorController_serializer::read(thisDeserializer)); } Opt_LinearIndicatorController controller_value = controller_value_buf;; - GetNodeModifiers()->getLinearIndicatorModifier()->setLinearIndicatorOptions(self, (const Opt_Number*)&count_value, (const Opt_LinearIndicatorController*)&controller_value); + GetNodeModifiers()->getLinearIndicatorModifier()->setLinearIndicatorOptions(self, reinterpret_cast(&count_value), reinterpret_cast(&controller_value)); } KOALA_INTEROP_DIRECT_V3(LinearIndicatorInterface_setLinearIndicatorOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_LinearIndicatorAttribute_indicatorStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9957,7 +9957,7 @@ void impl_LinearIndicatorAttribute_indicatorStyle(Ark_NativePointer thisPtr, KSe value_value_buf.value = LinearIndicatorStyle_serializer::read(thisDeserializer); } Opt_LinearIndicatorStyle value_value = value_value_buf;; - GetNodeModifiers()->getLinearIndicatorModifier()->setIndicatorStyle(self, (const Opt_LinearIndicatorStyle*)&value_value); + GetNodeModifiers()->getLinearIndicatorModifier()->setIndicatorStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(LinearIndicatorAttribute_indicatorStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_LinearIndicatorAttribute_indicatorLoop(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9971,7 +9971,7 @@ void impl_LinearIndicatorAttribute_indicatorLoop(Ark_NativePointer thisPtr, KSer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getLinearIndicatorModifier()->setIndicatorLoop(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getLinearIndicatorModifier()->setIndicatorLoop(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(LinearIndicatorAttribute_indicatorLoop, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_LinearIndicatorAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -9985,7 +9985,7 @@ void impl_LinearIndicatorAttribute_onChange(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnLinearIndicatorChangeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnLinearIndicatorChangeCallback))))}; } Opt_OnLinearIndicatorChangeCallback value_value = value_value_buf;; - GetNodeModifiers()->getLinearIndicatorModifier()->setOnChange(self, (const Opt_OnLinearIndicatorChangeCallback*)&value_value); + GetNodeModifiers()->getLinearIndicatorModifier()->setOnChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(LinearIndicatorAttribute_onChange, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_List_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -10003,7 +10003,7 @@ void impl_ListInterface_setListOptions(Ark_NativePointer thisPtr, KSerializerBuf options_value_buf.value = ListOptions_serializer::read(thisDeserializer); } Opt_ListOptions options_value = options_value_buf;; - GetNodeModifiers()->getListModifier()->setListOptions(self, (const Opt_ListOptions*)&options_value); + GetNodeModifiers()->getListModifier()->setListOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(ListInterface_setListOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_alignListItem(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10017,7 +10017,7 @@ void impl_ListAttribute_alignListItem(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ListItemAlign value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setAlignListItem(self, (const Opt_ListItemAlign*)&value_value); + GetNodeModifiers()->getListModifier()->setAlignListItem(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_alignListItem, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_listDirection(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10031,7 +10031,7 @@ void impl_ListAttribute_listDirection(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_Axis value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setListDirection(self, (const Opt_Axis*)&value_value); + GetNodeModifiers()->getListModifier()->setListDirection(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_listDirection, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_contentStartOffset(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10045,7 +10045,7 @@ void impl_ListAttribute_contentStartOffset(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setContentStartOffset(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getListModifier()->setContentStartOffset(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_contentStartOffset, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_contentEndOffset(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10059,7 +10059,7 @@ void impl_ListAttribute_contentEndOffset(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setContentEndOffset(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getListModifier()->setContentEndOffset(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_contentEndOffset, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_divider(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10073,7 +10073,7 @@ void impl_ListAttribute_divider(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = ListDividerOptions_serializer::read(thisDeserializer); } Opt_ListDividerOptions value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setDivider(self, (const Opt_ListDividerOptions*)&value_value); + GetNodeModifiers()->getListModifier()->setDivider(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_divider, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_multiSelectable(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10087,7 +10087,7 @@ void impl_ListAttribute_multiSelectable(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setMultiSelectable(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getListModifier()->setMultiSelectable(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_multiSelectable, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_cachedCount0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10101,7 +10101,7 @@ void impl_ListAttribute_cachedCount0(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setCachedCount0(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getListModifier()->setCachedCount0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_cachedCount0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_cachedCount1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10123,7 +10123,7 @@ void impl_ListAttribute_cachedCount1(Ark_NativePointer thisPtr, KSerializerBuffe show_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean show_value = show_value_buf;; - GetNodeModifiers()->getListModifier()->setCachedCount1(self, (const Opt_Number*)&count_value, (const Opt_Boolean*)&show_value); + GetNodeModifiers()->getListModifier()->setCachedCount1(self, reinterpret_cast(&count_value), reinterpret_cast(&show_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_cachedCount1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_chainAnimation(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10137,7 +10137,7 @@ void impl_ListAttribute_chainAnimation(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setChainAnimation(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getListModifier()->setChainAnimation(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_chainAnimation, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_chainAnimationOptions(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10151,7 +10151,7 @@ void impl_ListAttribute_chainAnimationOptions(Ark_NativePointer thisPtr, KSerial value_value_buf.value = ChainAnimationOptions_serializer::read(thisDeserializer); } Opt_ChainAnimationOptions value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setChainAnimationOptions(self, (const Opt_ChainAnimationOptions*)&value_value); + GetNodeModifiers()->getListModifier()->setChainAnimationOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_chainAnimationOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_sticky(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10165,7 +10165,7 @@ void impl_ListAttribute_sticky(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_StickyStyle value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setSticky(self, (const Opt_StickyStyle*)&value_value); + GetNodeModifiers()->getListModifier()->setSticky(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_sticky, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_scrollSnapAlign(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10179,7 +10179,7 @@ void impl_ListAttribute_scrollSnapAlign(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ScrollSnapAlign value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setScrollSnapAlign(self, (const Opt_ScrollSnapAlign*)&value_value); + GetNodeModifiers()->getListModifier()->setScrollSnapAlign(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_scrollSnapAlign, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_childrenMainSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10193,7 +10193,7 @@ void impl_ListAttribute_childrenMainSize(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(ChildrenMainSize_serializer::read(thisDeserializer)); } Opt_ChildrenMainSize value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setChildrenMainSize(self, (const Opt_ChildrenMainSize*)&value_value); + GetNodeModifiers()->getListModifier()->setChildrenMainSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_childrenMainSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_maintainVisibleContentPosition(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10207,7 +10207,7 @@ void impl_ListAttribute_maintainVisibleContentPosition(Ark_NativePointer thisPtr value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setMaintainVisibleContentPosition(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getListModifier()->setMaintainVisibleContentPosition(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_maintainVisibleContentPosition, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_stackFromEnd(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10221,7 +10221,7 @@ void impl_ListAttribute_stackFromEnd(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setStackFromEnd(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getListModifier()->setStackFromEnd(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_stackFromEnd, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_onScrollIndex(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10235,7 +10235,7 @@ void impl_ListAttribute_onScrollIndex(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Number_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Number_Number_Void))))}; } Opt_Callback_Number_Number_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setOnScrollIndex(self, (const Opt_Callback_Number_Number_Number_Void*)&value_value); + GetNodeModifiers()->getListModifier()->setOnScrollIndex(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_onScrollIndex, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_onScrollVisibleContentChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10249,7 +10249,7 @@ void impl_ListAttribute_onScrollVisibleContentChange(Ark_NativePointer thisPtr, value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnScrollVisibleContentChangeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnScrollVisibleContentChangeCallback))))}; } Opt_OnScrollVisibleContentChangeCallback value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setOnScrollVisibleContentChange(self, (const Opt_OnScrollVisibleContentChangeCallback*)&value_value); + GetNodeModifiers()->getListModifier()->setOnScrollVisibleContentChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_onScrollVisibleContentChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_onItemMove(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10263,7 +10263,7 @@ void impl_ListAttribute_onItemMove(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Number_Boolean)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Number_Boolean))))}; } Opt_Callback_Number_Number_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setOnItemMove(self, (const Opt_Callback_Number_Number_Boolean*)&value_value); + GetNodeModifiers()->getListModifier()->setOnItemMove(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_onItemMove, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_onItemDragStart(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10277,7 +10277,7 @@ void impl_ListAttribute_onItemDragStart(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnItemDragStartCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnItemDragStartCallback))))}; } Opt_OnItemDragStartCallback value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setOnItemDragStart(self, (const Opt_OnItemDragStartCallback*)&value_value); + GetNodeModifiers()->getListModifier()->setOnItemDragStart(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_onItemDragStart, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_onItemDragEnter(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10291,7 +10291,7 @@ void impl_ListAttribute_onItemDragEnter(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_ItemDragInfo_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_ItemDragInfo_Void))))}; } Opt_Callback_ItemDragInfo_Void value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setOnItemDragEnter(self, (const Opt_Callback_ItemDragInfo_Void*)&value_value); + GetNodeModifiers()->getListModifier()->setOnItemDragEnter(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_onItemDragEnter, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_onItemDragMove(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10305,7 +10305,7 @@ void impl_ListAttribute_onItemDragMove(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_ItemDragInfo_Number_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_ItemDragInfo_Number_Number_Void))))}; } Opt_Callback_ItemDragInfo_Number_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setOnItemDragMove(self, (const Opt_Callback_ItemDragInfo_Number_Number_Void*)&value_value); + GetNodeModifiers()->getListModifier()->setOnItemDragMove(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_onItemDragMove, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_onItemDragLeave(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10319,7 +10319,7 @@ void impl_ListAttribute_onItemDragLeave(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_ItemDragInfo_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_ItemDragInfo_Number_Void))))}; } Opt_Callback_ItemDragInfo_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setOnItemDragLeave(self, (const Opt_Callback_ItemDragInfo_Number_Void*)&value_value); + GetNodeModifiers()->getListModifier()->setOnItemDragLeave(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_onItemDragLeave, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_onItemDrop(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10333,7 +10333,7 @@ void impl_ListAttribute_onItemDrop(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_ItemDragInfo_Number_Number_Boolean_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_ItemDragInfo_Number_Number_Boolean_Void))))}; } Opt_Callback_ItemDragInfo_Number_Number_Boolean_Void value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setOnItemDrop(self, (const Opt_Callback_ItemDragInfo_Number_Number_Boolean_Void*)&value_value); + GetNodeModifiers()->getListModifier()->setOnItemDrop(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_onItemDrop, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_onScrollFrameBegin(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10347,7 +10347,7 @@ void impl_ListAttribute_onScrollFrameBegin(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnScrollFrameBeginCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnScrollFrameBeginCallback))))}; } Opt_OnScrollFrameBeginCallback value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setOnScrollFrameBegin(self, (const Opt_OnScrollFrameBeginCallback*)&value_value); + GetNodeModifiers()->getListModifier()->setOnScrollFrameBegin(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_onScrollFrameBegin, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_onWillScroll(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10361,7 +10361,7 @@ void impl_ListAttribute_onWillScroll(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnWillScrollCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnWillScrollCallback))))}; } Opt_OnWillScrollCallback value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setOnWillScroll(self, (const Opt_OnWillScrollCallback*)&value_value); + GetNodeModifiers()->getListModifier()->setOnWillScroll(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_onWillScroll, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_onDidScroll(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10375,7 +10375,7 @@ void impl_ListAttribute_onDidScroll(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnScrollCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnScrollCallback))))}; } Opt_OnScrollCallback value_value = value_value_buf;; - GetNodeModifiers()->getListModifier()->setOnDidScroll(self, (const Opt_OnScrollCallback*)&value_value); + GetNodeModifiers()->getListModifier()->setOnDidScroll(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_onDidScroll, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListAttribute_lanes(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10429,7 +10429,7 @@ void impl_ListAttribute_lanes(Ark_NativePointer thisPtr, KSerializerBuffer thisA gutter_value_buf.value = static_cast(gutter_value_buf_); } Opt_Dimension gutter_value = gutter_value_buf;; - GetNodeModifiers()->getListModifier()->setLanes(self, (const Opt_Union_Number_LengthConstrain*)&value_value, (const Opt_Dimension*)&gutter_value); + GetNodeModifiers()->getListModifier()->setLanes(self, reinterpret_cast(&value_value), reinterpret_cast(&gutter_value)); } KOALA_INTEROP_DIRECT_V3(ListAttribute_lanes, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_ListItem_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -10447,7 +10447,7 @@ void impl_ListItemInterface_setListItemOptions(Ark_NativePointer thisPtr, KSeria value_value_buf.value = ListItemOptions_serializer::read(thisDeserializer); } Opt_ListItemOptions value_value = value_value_buf;; - GetNodeModifiers()->getListItemModifier()->setListItemOptions(self, (const Opt_ListItemOptions*)&value_value); + GetNodeModifiers()->getListItemModifier()->setListItemOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListItemInterface_setListItemOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListItemAttribute_selectable(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10461,7 +10461,7 @@ void impl_ListItemAttribute_selectable(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getListItemModifier()->setSelectable(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getListItemModifier()->setSelectable(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListItemAttribute_selectable, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListItemAttribute_selected(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10475,7 +10475,7 @@ void impl_ListItemAttribute_selected(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getListItemModifier()->setSelected(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getListItemModifier()->setSelected(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListItemAttribute_selected, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListItemAttribute_swipeAction(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10489,7 +10489,7 @@ void impl_ListItemAttribute_swipeAction(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = SwipeActionOptions_serializer::read(thisDeserializer); } Opt_SwipeActionOptions value_value = value_value_buf;; - GetNodeModifiers()->getListItemModifier()->setSwipeAction(self, (const Opt_SwipeActionOptions*)&value_value); + GetNodeModifiers()->getListItemModifier()->setSwipeAction(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListItemAttribute_swipeAction, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListItemAttribute_onSelect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10503,7 +10503,7 @@ void impl_ListItemAttribute_onSelect(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Boolean_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Boolean_Void))))}; } Opt_Callback_Boolean_Void value_value = value_value_buf;; - GetNodeModifiers()->getListItemModifier()->setOnSelect(self, (const Opt_Callback_Boolean_Void*)&value_value); + GetNodeModifiers()->getListItemModifier()->setOnSelect(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListItemAttribute_onSelect, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_ListItemGroup_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -10521,7 +10521,7 @@ void impl_ListItemGroupInterface_setListItemGroupOptions(Ark_NativePointer thisP options_value_buf.value = ListItemGroupOptions_serializer::read(thisDeserializer); } Opt_ListItemGroupOptions options_value = options_value_buf;; - GetNodeModifiers()->getListItemGroupModifier()->setListItemGroupOptions(self, (const Opt_ListItemGroupOptions*)&options_value); + GetNodeModifiers()->getListItemGroupModifier()->setListItemGroupOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(ListItemGroupInterface_setListItemGroupOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListItemGroupAttribute_divider(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10535,7 +10535,7 @@ void impl_ListItemGroupAttribute_divider(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = ListDividerOptions_serializer::read(thisDeserializer); } Opt_ListDividerOptions value_value = value_value_buf;; - GetNodeModifiers()->getListItemGroupModifier()->setDivider(self, (const Opt_ListDividerOptions*)&value_value); + GetNodeModifiers()->getListItemGroupModifier()->setDivider(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListItemGroupAttribute_divider, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ListItemGroupAttribute_childrenMainSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10549,7 +10549,7 @@ void impl_ListItemGroupAttribute_childrenMainSize(Ark_NativePointer thisPtr, KSe value_value_buf.value = static_cast(ChildrenMainSize_serializer::read(thisDeserializer)); } Opt_ChildrenMainSize value_value = value_value_buf;; - GetNodeModifiers()->getListItemGroupModifier()->setChildrenMainSize(self, (const Opt_ChildrenMainSize*)&value_value); + GetNodeModifiers()->getListItemGroupModifier()->setChildrenMainSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ListItemGroupAttribute_childrenMainSize, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_LoadingProgress_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -10594,7 +10594,7 @@ void impl_LoadingProgressAttribute_color(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getLoadingProgressModifier()->setColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getLoadingProgressModifier()->setColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(LoadingProgressAttribute_color, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_LoadingProgressAttribute_enableLoading(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10608,7 +10608,7 @@ void impl_LoadingProgressAttribute_enableLoading(Ark_NativePointer thisPtr, KSer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getLoadingProgressModifier()->setEnableLoading(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getLoadingProgressModifier()->setEnableLoading(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(LoadingProgressAttribute_enableLoading, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_LoadingProgressAttribute_contentModifier(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10622,7 +10622,7 @@ void impl_LoadingProgressAttribute_contentModifier(Ark_NativePointer thisPtr, KS value_value_buf.value = static_cast(thisDeserializer.readObject()); } Opt_ContentModifier value_value = value_value_buf;; - GetNodeModifiers()->getLoadingProgressModifier()->setContentModifier(self, (const Opt_ContentModifier*)&value_value); + GetNodeModifiers()->getLoadingProgressModifier()->setContentModifier(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(LoadingProgressAttribute_contentModifier, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Marquee_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -10633,7 +10633,7 @@ void impl_MarqueeInterface_setMarqueeOptions(Ark_NativePointer thisPtr, KSeriali Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_MarqueeOptions options_value = MarqueeOptions_serializer::read(thisDeserializer);; - GetNodeModifiers()->getMarqueeModifier()->setMarqueeOptions(self, (const Ark_MarqueeOptions*)&options_value); + GetNodeModifiers()->getMarqueeModifier()->setMarqueeOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(MarqueeInterface_setMarqueeOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MarqueeAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10669,7 +10669,7 @@ void impl_MarqueeAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getMarqueeModifier()->setFontColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getMarqueeModifier()->setFontColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MarqueeAttribute_fontColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MarqueeAttribute_fontSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10701,7 +10701,7 @@ void impl_MarqueeAttribute_fontSize(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getMarqueeModifier()->setFontSize(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getMarqueeModifier()->setFontSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MarqueeAttribute_fontSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MarqueeAttribute_allowScale(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10715,7 +10715,7 @@ void impl_MarqueeAttribute_allowScale(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getMarqueeModifier()->setAllowScale(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getMarqueeModifier()->setAllowScale(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MarqueeAttribute_allowScale, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MarqueeAttribute_fontWeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10747,7 +10747,7 @@ void impl_MarqueeAttribute_fontWeight(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_FontWeight_String value_value = value_value_buf;; - GetNodeModifiers()->getMarqueeModifier()->setFontWeight(self, (const Opt_Union_Number_FontWeight_String*)&value_value); + GetNodeModifiers()->getMarqueeModifier()->setFontWeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MarqueeAttribute_fontWeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MarqueeAttribute_fontFamily(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10775,7 +10775,7 @@ void impl_MarqueeAttribute_fontFamily(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getMarqueeModifier()->setFontFamily(self, (const Opt_Union_String_Resource*)&value_value); + GetNodeModifiers()->getMarqueeModifier()->setFontFamily(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MarqueeAttribute_fontFamily, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MarqueeAttribute_marqueeUpdateStrategy(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10789,7 +10789,7 @@ void impl_MarqueeAttribute_marqueeUpdateStrategy(Ark_NativePointer thisPtr, KSer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_MarqueeUpdateStrategy value_value = value_value_buf;; - GetNodeModifiers()->getMarqueeModifier()->setMarqueeUpdateStrategy(self, (const Opt_MarqueeUpdateStrategy*)&value_value); + GetNodeModifiers()->getMarqueeModifier()->setMarqueeUpdateStrategy(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MarqueeAttribute_marqueeUpdateStrategy, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MarqueeAttribute_onStart(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10803,7 +10803,7 @@ void impl_MarqueeAttribute_onStart(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getMarqueeModifier()->setOnStart(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getMarqueeModifier()->setOnStart(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MarqueeAttribute_onStart, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MarqueeAttribute_onBounce(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10817,7 +10817,7 @@ void impl_MarqueeAttribute_onBounce(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getMarqueeModifier()->setOnBounce(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getMarqueeModifier()->setOnBounce(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MarqueeAttribute_onBounce, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MarqueeAttribute_onFinish(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10831,7 +10831,7 @@ void impl_MarqueeAttribute_onFinish(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getMarqueeModifier()->setOnFinish(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getMarqueeModifier()->setOnFinish(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MarqueeAttribute_onFinish, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_MediaCachedImage_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -10878,7 +10878,7 @@ void impl_MediaCachedImageInterface_setMediaCachedImageOptions(Ark_NativePointer INTEROP_FATAL("One of the branches for src_value_buf has to be chosen through deserialisation."); } Ark_Union_Image_PixelMap_ResourceStr_DrawableDescriptor_ASTCResource src_value = static_cast(src_value_buf);; - GetNodeModifiers()->getMediaCachedImageModifier()->setMediaCachedImageOptions(self, (const Ark_Union_Image_PixelMap_ResourceStr_DrawableDescriptor_ASTCResource*)&src_value); + GetNodeModifiers()->getMediaCachedImageModifier()->setMediaCachedImageOptions(self, reinterpret_cast(&src_value)); } KOALA_INTEROP_DIRECT_V3(MediaCachedImageInterface_setMediaCachedImageOptions, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Menu_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -10901,7 +10901,7 @@ void impl_MenuAttribute_font(Ark_NativePointer thisPtr, KSerializerBuffer thisAr value_value_buf.value = Font_serializer::read(thisDeserializer); } Opt_Font value_value = value_value_buf;; - GetNodeModifiers()->getMenuModifier()->setFont(self, (const Opt_Font*)&value_value); + GetNodeModifiers()->getMenuModifier()->setFont(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MenuAttribute_font, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MenuAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10937,7 +10937,7 @@ void impl_MenuAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getMenuModifier()->setFontColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getMenuModifier()->setFontColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MenuAttribute_fontColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MenuAttribute_radius(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10983,7 +10983,7 @@ void impl_MenuAttribute_radius(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Dimension_BorderRadiuses value_value = value_value_buf;; - GetNodeModifiers()->getMenuModifier()->setRadius(self, (const Opt_Union_Dimension_BorderRadiuses*)&value_value); + GetNodeModifiers()->getMenuModifier()->setRadius(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MenuAttribute_radius, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MenuAttribute_menuItemDivider(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -10997,7 +10997,7 @@ void impl_MenuAttribute_menuItemDivider(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = DividerStyleOptions_serializer::read(thisDeserializer); } Opt_DividerStyleOptions value_value = value_value_buf;; - GetNodeModifiers()->getMenuModifier()->setMenuItemDivider(self, (const Opt_DividerStyleOptions*)&value_value); + GetNodeModifiers()->getMenuModifier()->setMenuItemDivider(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MenuAttribute_menuItemDivider, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MenuAttribute_menuItemGroupDivider(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11011,7 +11011,7 @@ void impl_MenuAttribute_menuItemGroupDivider(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = DividerStyleOptions_serializer::read(thisDeserializer); } Opt_DividerStyleOptions value_value = value_value_buf;; - GetNodeModifiers()->getMenuModifier()->setMenuItemGroupDivider(self, (const Opt_DividerStyleOptions*)&value_value); + GetNodeModifiers()->getMenuModifier()->setMenuItemGroupDivider(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MenuAttribute_menuItemGroupDivider, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MenuAttribute_subMenuExpandingMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11025,7 +11025,7 @@ void impl_MenuAttribute_subMenuExpandingMode(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_SubMenuExpandingMode value_value = value_value_buf;; - GetNodeModifiers()->getMenuModifier()->setSubMenuExpandingMode(self, (const Opt_SubMenuExpandingMode*)&value_value); + GetNodeModifiers()->getMenuModifier()->setSubMenuExpandingMode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MenuAttribute_subMenuExpandingMode, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_MenuItem_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -11057,7 +11057,7 @@ void impl_MenuItemInterface_setMenuItemOptions(Ark_NativePointer thisPtr, KSeria value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_MenuItemOptions_CustomBuilder value_value = value_value_buf;; - GetNodeModifiers()->getMenuItemModifier()->setMenuItemOptions(self, (const Opt_Union_MenuItemOptions_CustomBuilder*)&value_value); + GetNodeModifiers()->getMenuItemModifier()->setMenuItemOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MenuItemInterface_setMenuItemOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MenuItemAttribute_selected(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11071,7 +11071,7 @@ void impl_MenuItemAttribute_selected(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getMenuItemModifier()->setSelected(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getMenuItemModifier()->setSelected(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MenuItemAttribute_selected, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MenuItemAttribute_selectIcon(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11117,7 +11117,7 @@ void impl_MenuItemAttribute_selectIcon(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Boolean_ResourceStr_SymbolGlyphModifier value_value = value_value_buf;; - GetNodeModifiers()->getMenuItemModifier()->setSelectIcon(self, (const Opt_Union_Boolean_ResourceStr_SymbolGlyphModifier*)&value_value); + GetNodeModifiers()->getMenuItemModifier()->setSelectIcon(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MenuItemAttribute_selectIcon, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MenuItemAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11131,7 +11131,7 @@ void impl_MenuItemAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Boolean_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Boolean_Void))))}; } Opt_Callback_Boolean_Void value_value = value_value_buf;; - GetNodeModifiers()->getMenuItemModifier()->setOnChange(self, (const Opt_Callback_Boolean_Void*)&value_value); + GetNodeModifiers()->getMenuItemModifier()->setOnChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MenuItemAttribute_onChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MenuItemAttribute_contentFont(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11145,7 +11145,7 @@ void impl_MenuItemAttribute_contentFont(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = Font_serializer::read(thisDeserializer); } Opt_Font value_value = value_value_buf;; - GetNodeModifiers()->getMenuItemModifier()->setContentFont(self, (const Opt_Font*)&value_value); + GetNodeModifiers()->getMenuItemModifier()->setContentFont(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MenuItemAttribute_contentFont, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MenuItemAttribute_contentFontColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11181,7 +11181,7 @@ void impl_MenuItemAttribute_contentFontColor(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getMenuItemModifier()->setContentFontColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getMenuItemModifier()->setContentFontColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MenuItemAttribute_contentFontColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MenuItemAttribute_labelFont(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11195,7 +11195,7 @@ void impl_MenuItemAttribute_labelFont(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = Font_serializer::read(thisDeserializer); } Opt_Font value_value = value_value_buf;; - GetNodeModifiers()->getMenuItemModifier()->setLabelFont(self, (const Opt_Font*)&value_value); + GetNodeModifiers()->getMenuItemModifier()->setLabelFont(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MenuItemAttribute_labelFont, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MenuItemAttribute_labelFontColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11231,7 +11231,7 @@ void impl_MenuItemAttribute_labelFontColor(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getMenuItemModifier()->setLabelFontColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getMenuItemModifier()->setLabelFontColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MenuItemAttribute_labelFontColor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_MenuItemGroup_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -11249,7 +11249,7 @@ void impl_MenuItemGroupInterface_setMenuItemGroupOptions(Ark_NativePointer thisP value_value_buf.value = MenuItemGroupOptions_serializer::read(thisDeserializer); } Opt_MenuItemGroupOptions value_value = value_value_buf;; - GetNodeModifiers()->getMenuItemGroupModifier()->setMenuItemGroupOptions(self, (const Opt_MenuItemGroupOptions*)&value_value); + GetNodeModifiers()->getMenuItemGroupModifier()->setMenuItemGroupOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(MenuItemGroupInterface_setMenuItemGroupOptions, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_NavDestination_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -11272,7 +11272,7 @@ void impl_NavDestinationAttribute_hideTitleBar0(Ark_NativePointer thisPtr, KSeri value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setHideTitleBar0(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setHideTitleBar0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_hideTitleBar0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_hideTitleBar1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11294,7 +11294,7 @@ void impl_NavDestinationAttribute_hideTitleBar1(Ark_NativePointer thisPtr, KSeri animated_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean animated_value = animated_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setHideTitleBar1(self, (const Opt_Boolean*)&hide_value, (const Opt_Boolean*)&animated_value); + GetNodeModifiers()->getNavDestinationModifier()->setHideTitleBar1(self, reinterpret_cast(&hide_value), reinterpret_cast(&animated_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_hideTitleBar1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_hideBackButton(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11308,7 +11308,7 @@ void impl_NavDestinationAttribute_hideBackButton(Ark_NativePointer thisPtr, KSer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setHideBackButton(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setHideBackButton(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_hideBackButton, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_onShown(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11322,7 +11322,7 @@ void impl_NavDestinationAttribute_onShown(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setOnShown(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setOnShown(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_onShown, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_onHidden(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11336,7 +11336,7 @@ void impl_NavDestinationAttribute_onHidden(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setOnHidden(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setOnHidden(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_onHidden, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_onBackPressed(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11350,7 +11350,7 @@ void impl_NavDestinationAttribute_onBackPressed(Ark_NativePointer thisPtr, KSeri value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Boolean)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Boolean))))}; } Opt_Callback_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setOnBackPressed(self, (const Opt_Callback_Boolean*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setOnBackPressed(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_onBackPressed, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_mode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11364,7 +11364,7 @@ void impl_NavDestinationAttribute_mode(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_NavDestinationMode value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setMode(self, (const Opt_NavDestinationMode*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setMode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_mode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_backButtonIcon0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11410,7 +11410,7 @@ void impl_NavDestinationAttribute_backButtonIcon0(Ark_NativePointer thisPtr, KSe value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_ResourceStr_PixelMap_SymbolGlyphModifier value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setBackButtonIcon0(self, (const Opt_Union_ResourceStr_PixelMap_SymbolGlyphModifier*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setBackButtonIcon0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_backButtonIcon0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_backButtonIcon1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11478,7 +11478,7 @@ void impl_NavDestinationAttribute_backButtonIcon1(Ark_NativePointer thisPtr, KSe accessibilityText_value_buf.value = static_cast(accessibilityText_value_buf_); } Opt_ResourceStr accessibilityText_value = accessibilityText_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setBackButtonIcon1(self, (const Opt_Union_ResourceStr_PixelMap_SymbolGlyphModifier*)&icon_value, (const Opt_ResourceStr*)&accessibilityText_value); + GetNodeModifiers()->getNavDestinationModifier()->setBackButtonIcon1(self, reinterpret_cast(&icon_value), reinterpret_cast(&accessibilityText_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_backButtonIcon1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_menus0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11513,7 +11513,7 @@ void impl_NavDestinationAttribute_menus0(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Array_NavigationMenuItem_CustomBuilder value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setMenus0(self, (const Opt_Union_Array_NavigationMenuItem_CustomBuilder*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setMenus0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_menus0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_menus1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11556,7 +11556,7 @@ void impl_NavDestinationAttribute_menus1(Ark_NativePointer thisPtr, KSerializerB options_value_buf.value = NavigationMenuOptions_serializer::read(thisDeserializer); } Opt_NavigationMenuOptions options_value = options_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setMenus1(self, (const Opt_Union_Array_NavigationMenuItem_CustomBuilder*)&items_value, (const Opt_NavigationMenuOptions*)&options_value); + GetNodeModifiers()->getNavDestinationModifier()->setMenus1(self, reinterpret_cast(&items_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_menus1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_onReady(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11570,7 +11570,7 @@ void impl_NavDestinationAttribute_onReady(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_NavDestinationContext_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_NavDestinationContext_Void))))}; } Opt_Callback_NavDestinationContext_Void value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setOnReady(self, (const Opt_Callback_NavDestinationContext_Void*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setOnReady(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_onReady, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_onWillAppear(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11584,7 +11584,7 @@ void impl_NavDestinationAttribute_onWillAppear(Ark_NativePointer thisPtr, KSeria value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setOnWillAppear(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setOnWillAppear(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_onWillAppear, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_onWillDisappear(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11598,7 +11598,7 @@ void impl_NavDestinationAttribute_onWillDisappear(Ark_NativePointer thisPtr, KSe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setOnWillDisappear(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setOnWillDisappear(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_onWillDisappear, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_onWillShow(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11612,7 +11612,7 @@ void impl_NavDestinationAttribute_onWillShow(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setOnWillShow(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setOnWillShow(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_onWillShow, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_onWillHide(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11626,7 +11626,7 @@ void impl_NavDestinationAttribute_onWillHide(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setOnWillHide(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setOnWillHide(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_onWillHide, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_systemBarStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11640,7 +11640,7 @@ void impl_NavDestinationAttribute_systemBarStyle(Ark_NativePointer thisPtr, KSer value_value_buf.value = window_SystemBarStyle_serializer::read(thisDeserializer); } Opt_window_SystemBarStyle value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setSystemBarStyle(self, (const Opt_window_SystemBarStyle*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setSystemBarStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_systemBarStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_recoverable(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11654,7 +11654,7 @@ void impl_NavDestinationAttribute_recoverable(Ark_NativePointer thisPtr, KSerial value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setRecoverable(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setRecoverable(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_recoverable, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_systemTransition(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11668,7 +11668,7 @@ void impl_NavDestinationAttribute_systemTransition(Ark_NativePointer thisPtr, KS value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_NavigationSystemTransitionType value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setSystemTransition(self, (const Opt_NavigationSystemTransitionType*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setSystemTransition(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_systemTransition, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_bindToScrollable(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11689,7 +11689,7 @@ void impl_NavDestinationAttribute_bindToScrollable(Ark_NativePointer thisPtr, KS value_value_buf.value = value_value_buf_; } Opt_Array_Scroller value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setBindToScrollable(self, (const Opt_Array_Scroller*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setBindToScrollable(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_bindToScrollable, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_bindToNestedScrollable(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11710,7 +11710,7 @@ void impl_NavDestinationAttribute_bindToNestedScrollable(Ark_NativePointer thisP value_value_buf.value = value_value_buf_; } Opt_Array_NestedScrollInfo value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setBindToNestedScrollable(self, (const Opt_Array_NestedScrollInfo*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setBindToNestedScrollable(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_bindToNestedScrollable, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_onActive(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11724,7 +11724,7 @@ void impl_NavDestinationAttribute_onActive(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_NavDestinationActiveReason_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_NavDestinationActiveReason_Void))))}; } Opt_Callback_NavDestinationActiveReason_Void value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setOnActive(self, (const Opt_Callback_NavDestinationActiveReason_Void*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setOnActive(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_onActive, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_onInactive(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11738,7 +11738,7 @@ void impl_NavDestinationAttribute_onInactive(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_NavDestinationActiveReason_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_NavDestinationActiveReason_Void))))}; } Opt_Callback_NavDestinationActiveReason_Void value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setOnInactive(self, (const Opt_Callback_NavDestinationActiveReason_Void*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setOnInactive(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_onInactive, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_customTransition(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11752,7 +11752,7 @@ void impl_NavDestinationAttribute_customTransition(Ark_NativePointer thisPtr, KS value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_NavDestinationTransitionDelegate)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_NavDestinationTransitionDelegate))))}; } Opt_NavDestinationTransitionDelegate value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setCustomTransition(self, (const Opt_NavDestinationTransitionDelegate*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setCustomTransition(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_customTransition, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_onNewParam(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11766,7 +11766,7 @@ void impl_NavDestinationAttribute_onNewParam(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Union_Object_Undefined_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Union_Object_Undefined_Void))))}; } Opt_Callback_Union_Object_Undefined_Void value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setOnNewParam(self, (const Opt_Callback_Union_Object_Undefined_Void*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setOnNewParam(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_onNewParam, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_preferredOrientation(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11780,7 +11780,7 @@ void impl_NavDestinationAttribute_preferredOrientation(Ark_NativePointer thisPtr value_value_buf.value = static_cast(thisDeserializer.readCustomObject("object")); } Opt_CustomObject value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setPreferredOrientation(self, (const Opt_CustomObject*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setPreferredOrientation(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_preferredOrientation, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_enableNavigationIndicator(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11794,7 +11794,7 @@ void impl_NavDestinationAttribute_enableNavigationIndicator(Ark_NativePointer th value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setEnableNavigationIndicator(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getNavDestinationModifier()->setEnableNavigationIndicator(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_enableNavigationIndicator, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_title(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11842,7 +11842,7 @@ void impl_NavDestinationAttribute_title(Ark_NativePointer thisPtr, KSerializerBu options_value_buf.value = NavigationTitleOptions_serializer::read(thisDeserializer); } Opt_NavigationTitleOptions options_value = options_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setTitle(self, (const Opt_Union_String_CustomBuilder_NavDestinationCommonTitle_NavDestinationCustomTitle_Resource*)&value_value, (const Opt_NavigationTitleOptions*)&options_value); + GetNodeModifiers()->getNavDestinationModifier()->setTitle(self, reinterpret_cast(&value_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_title, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_toolbarConfiguration(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11885,7 +11885,7 @@ void impl_NavDestinationAttribute_toolbarConfiguration(Ark_NativePointer thisPtr options_value_buf.value = NavigationToolbarOptions_serializer::read(thisDeserializer); } Opt_NavigationToolbarOptions options_value = options_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setToolbarConfiguration(self, (const Opt_Union_Array_ToolbarItem_CustomBuilder*)&toolbarParam_value, (const Opt_NavigationToolbarOptions*)&options_value); + GetNodeModifiers()->getNavDestinationModifier()->setToolbarConfiguration(self, reinterpret_cast(&toolbarParam_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_toolbarConfiguration, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_hideToolBar(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11907,7 +11907,7 @@ void impl_NavDestinationAttribute_hideToolBar(Ark_NativePointer thisPtr, KSerial animated_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean animated_value = animated_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setHideToolBar(self, (const Opt_Boolean*)&hide_value, (const Opt_Boolean*)&animated_value); + GetNodeModifiers()->getNavDestinationModifier()->setHideToolBar(self, reinterpret_cast(&hide_value), reinterpret_cast(&animated_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_hideToolBar, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_ignoreLayoutSafeArea(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11943,7 +11943,7 @@ void impl_NavDestinationAttribute_ignoreLayoutSafeArea(Ark_NativePointer thisPtr edges_value_buf.value = edges_value_buf_; } Opt_Array_LayoutSafeAreaEdge edges_value = edges_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setIgnoreLayoutSafeArea(self, (const Opt_Array_LayoutSafeAreaType*)&types_value, (const Opt_Array_LayoutSafeAreaEdge*)&edges_value); + GetNodeModifiers()->getNavDestinationModifier()->setIgnoreLayoutSafeArea(self, reinterpret_cast(&types_value), reinterpret_cast(&edges_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_ignoreLayoutSafeArea, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavDestinationAttribute_enableStatusBar(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -11965,7 +11965,7 @@ void impl_NavDestinationAttribute_enableStatusBar(Ark_NativePointer thisPtr, KSe animated_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean animated_value = animated_value_buf;; - GetNodeModifiers()->getNavDestinationModifier()->setEnableStatusBar(self, (const Opt_Boolean*)&enabled_value, (const Opt_Boolean*)&animated_value); + GetNodeModifiers()->getNavDestinationModifier()->setEnableStatusBar(self, reinterpret_cast(&enabled_value), reinterpret_cast(&animated_value)); } KOALA_INTEROP_DIRECT_V3(NavDestinationAttribute_enableStatusBar, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Navigation_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -12011,7 +12011,7 @@ void impl_NavigationAttribute_navBarWidth(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setNavBarWidth(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getNavigationModifier()->setNavBarWidth(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_navBarWidth, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_navBarPosition(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12025,7 +12025,7 @@ void impl_NavigationAttribute_navBarPosition(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_NavBarPosition value_value = value_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setNavBarPosition(self, (const Opt_NavBarPosition*)&value_value); + GetNodeModifiers()->getNavigationModifier()->setNavBarPosition(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_navBarPosition, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_navBarWidthRange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12078,7 +12078,7 @@ void impl_NavigationAttribute_navBarWidthRange(Ark_NativePointer thisPtr, KSeria value_value_buf.value = value_value_buf_; } Opt_Tuple_Dimension_Dimension value_value = value_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setNavBarWidthRange(self, (const Opt_Tuple_Dimension_Dimension*)&value_value); + GetNodeModifiers()->getNavigationModifier()->setNavBarWidthRange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_navBarWidthRange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_minContentWidth(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12110,7 +12110,7 @@ void impl_NavigationAttribute_minContentWidth(Ark_NativePointer thisPtr, KSerial value_value_buf.value = static_cast(value_value_buf_); } Opt_Dimension value_value = value_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setMinContentWidth(self, (const Opt_Dimension*)&value_value); + GetNodeModifiers()->getNavigationModifier()->setMinContentWidth(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_minContentWidth, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_mode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12124,7 +12124,7 @@ void impl_NavigationAttribute_mode(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_NavigationMode value_value = value_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setMode(self, (const Opt_NavigationMode*)&value_value); + GetNodeModifiers()->getNavigationModifier()->setMode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_mode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_backButtonIcon0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12160,7 +12160,7 @@ void impl_NavigationAttribute_backButtonIcon0(Ark_NativePointer thisPtr, KSerial value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_String_PixelMap_Resource_SymbolGlyphModifier value_value = value_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setBackButtonIcon0(self, (const Opt_Union_String_PixelMap_Resource_SymbolGlyphModifier*)&value_value); + GetNodeModifiers()->getNavigationModifier()->setBackButtonIcon0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_backButtonIcon0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_backButtonIcon1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12218,7 +12218,7 @@ void impl_NavigationAttribute_backButtonIcon1(Ark_NativePointer thisPtr, KSerial accessibilityText_value_buf.value = static_cast(accessibilityText_value_buf_); } Opt_ResourceStr accessibilityText_value = accessibilityText_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setBackButtonIcon1(self, (const Opt_Union_String_PixelMap_Resource_SymbolGlyphModifier*)&icon_value, (const Opt_ResourceStr*)&accessibilityText_value); + GetNodeModifiers()->getNavigationModifier()->setBackButtonIcon1(self, reinterpret_cast(&icon_value), reinterpret_cast(&accessibilityText_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_backButtonIcon1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_hideNavBar(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12232,7 +12232,7 @@ void impl_NavigationAttribute_hideNavBar(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setHideNavBar(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getNavigationModifier()->setHideNavBar(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_hideNavBar, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_hideTitleBar0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12246,7 +12246,7 @@ void impl_NavigationAttribute_hideTitleBar0(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setHideTitleBar0(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getNavigationModifier()->setHideTitleBar0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_hideTitleBar0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_hideTitleBar1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12268,7 +12268,7 @@ void impl_NavigationAttribute_hideTitleBar1(Ark_NativePointer thisPtr, KSerializ animated_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean animated_value = animated_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setHideTitleBar1(self, (const Opt_Boolean*)&hide_value, (const Opt_Boolean*)&animated_value); + GetNodeModifiers()->getNavigationModifier()->setHideTitleBar1(self, reinterpret_cast(&hide_value), reinterpret_cast(&animated_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_hideTitleBar1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_hideBackButton(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12282,7 +12282,7 @@ void impl_NavigationAttribute_hideBackButton(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setHideBackButton(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getNavigationModifier()->setHideBackButton(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_hideBackButton, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_titleMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12296,7 +12296,7 @@ void impl_NavigationAttribute_titleMode(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_NavigationTitleMode value_value = value_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setTitleMode(self, (const Opt_NavigationTitleMode*)&value_value); + GetNodeModifiers()->getNavigationModifier()->setTitleMode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_titleMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_menus0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12331,7 +12331,7 @@ void impl_NavigationAttribute_menus0(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Array_NavigationMenuItem_CustomBuilder value_value = value_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setMenus0(self, (const Opt_Union_Array_NavigationMenuItem_CustomBuilder*)&value_value); + GetNodeModifiers()->getNavigationModifier()->setMenus0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_menus0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_menus1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12374,7 +12374,7 @@ void impl_NavigationAttribute_menus1(Ark_NativePointer thisPtr, KSerializerBuffe options_value_buf.value = NavigationMenuOptions_serializer::read(thisDeserializer); } Opt_NavigationMenuOptions options_value = options_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setMenus1(self, (const Opt_Union_Array_NavigationMenuItem_CustomBuilder*)&items_value, (const Opt_NavigationMenuOptions*)&options_value); + GetNodeModifiers()->getNavigationModifier()->setMenus1(self, reinterpret_cast(&items_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_menus1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_hideToolBar0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12388,7 +12388,7 @@ void impl_NavigationAttribute_hideToolBar0(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setHideToolBar0(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getNavigationModifier()->setHideToolBar0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_hideToolBar0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_hideToolBar1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12410,7 +12410,7 @@ void impl_NavigationAttribute_hideToolBar1(Ark_NativePointer thisPtr, KSerialize animated_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean animated_value = animated_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setHideToolBar1(self, (const Opt_Boolean*)&hide_value, (const Opt_Boolean*)&animated_value); + GetNodeModifiers()->getNavigationModifier()->setHideToolBar1(self, reinterpret_cast(&hide_value), reinterpret_cast(&animated_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_hideToolBar1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_enableToolBarAdaptation(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12424,7 +12424,7 @@ void impl_NavigationAttribute_enableToolBarAdaptation(Ark_NativePointer thisPtr, value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setEnableToolBarAdaptation(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getNavigationModifier()->setEnableToolBarAdaptation(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_enableToolBarAdaptation, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_onTitleModeChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12438,7 +12438,7 @@ void impl_NavigationAttribute_onTitleModeChange(Ark_NativePointer thisPtr, KSeri value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_NavigationTitleMode_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_NavigationTitleMode_Void))))}; } Opt_Callback_NavigationTitleMode_Void value_value = value_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setOnTitleModeChange(self, (const Opt_Callback_NavigationTitleMode_Void*)&value_value); + GetNodeModifiers()->getNavigationModifier()->setOnTitleModeChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_onTitleModeChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_onNavBarStateChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12452,7 +12452,7 @@ void impl_NavigationAttribute_onNavBarStateChange(Ark_NativePointer thisPtr, KSe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Boolean_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Boolean_Void))))}; } Opt_Callback_Boolean_Void value_value = value_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setOnNavBarStateChange(self, (const Opt_Callback_Boolean_Void*)&value_value); + GetNodeModifiers()->getNavigationModifier()->setOnNavBarStateChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_onNavBarStateChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_onNavigationModeChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12466,7 +12466,7 @@ void impl_NavigationAttribute_onNavigationModeChange(Ark_NativePointer thisPtr, value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_NavigationMode_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_NavigationMode_Void))))}; } Opt_Callback_NavigationMode_Void value_value = value_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setOnNavigationModeChange(self, (const Opt_Callback_NavigationMode_Void*)&value_value); + GetNodeModifiers()->getNavigationModifier()->setOnNavigationModeChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_onNavigationModeChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_navDestination(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12480,7 +12480,7 @@ void impl_NavigationAttribute_navDestination(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_PageMapBuilder)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_PageMapBuilder))))}; } Opt_PageMapBuilder value_value = value_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setNavDestination(self, (const Opt_PageMapBuilder*)&value_value); + GetNodeModifiers()->getNavigationModifier()->setNavDestination(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_navDestination, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_customNavContentTransition(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12494,7 +12494,7 @@ void impl_NavigationAttribute_customNavContentTransition(Ark_NativePointer thisP value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Type_NavigationAttribute_customNavContentTransition)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Type_NavigationAttribute_customNavContentTransition))))}; } Opt_Type_NavigationAttribute_customNavContentTransition value_value = value_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setCustomNavContentTransition(self, (const Opt_Type_NavigationAttribute_customNavContentTransition*)&value_value); + GetNodeModifiers()->getNavigationModifier()->setCustomNavContentTransition(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_customNavContentTransition, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_systemBarStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12508,7 +12508,7 @@ void impl_NavigationAttribute_systemBarStyle(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = window_SystemBarStyle_serializer::read(thisDeserializer); } Opt_window_SystemBarStyle value_value = value_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setSystemBarStyle(self, (const Opt_window_SystemBarStyle*)&value_value); + GetNodeModifiers()->getNavigationModifier()->setSystemBarStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_systemBarStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_recoverable(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12522,7 +12522,7 @@ void impl_NavigationAttribute_recoverable(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setRecoverable(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getNavigationModifier()->setRecoverable(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_recoverable, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_enableDragBar(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12536,7 +12536,7 @@ void impl_NavigationAttribute_enableDragBar(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setEnableDragBar(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getNavigationModifier()->setEnableDragBar(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_enableDragBar, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_enableModeChangeAnimation(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12550,7 +12550,7 @@ void impl_NavigationAttribute_enableModeChangeAnimation(Ark_NativePointer thisPt value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setEnableModeChangeAnimation(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getNavigationModifier()->setEnableModeChangeAnimation(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_enableModeChangeAnimation, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_title(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12608,7 +12608,7 @@ void impl_NavigationAttribute_title(Ark_NativePointer thisPtr, KSerializerBuffer options_value_buf.value = NavigationTitleOptions_serializer::read(thisDeserializer); } Opt_NavigationTitleOptions options_value = options_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setTitle(self, (const Opt_Union_ResourceStr_CustomBuilder_NavigationCommonTitle_NavigationCustomTitle*)&value_value, (const Opt_NavigationTitleOptions*)&options_value); + GetNodeModifiers()->getNavigationModifier()->setTitle(self, reinterpret_cast(&value_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_title, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_toolbarConfiguration(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12651,7 +12651,7 @@ void impl_NavigationAttribute_toolbarConfiguration(Ark_NativePointer thisPtr, KS options_value_buf.value = NavigationToolbarOptions_serializer::read(thisDeserializer); } Opt_NavigationToolbarOptions options_value = options_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setToolbarConfiguration(self, (const Opt_Union_Array_ToolbarItem_CustomBuilder*)&value_value, (const Opt_NavigationToolbarOptions*)&options_value); + GetNodeModifiers()->getNavigationModifier()->setToolbarConfiguration(self, reinterpret_cast(&value_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_toolbarConfiguration, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavigationAttribute_ignoreLayoutSafeArea(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12687,7 +12687,7 @@ void impl_NavigationAttribute_ignoreLayoutSafeArea(Ark_NativePointer thisPtr, KS edges_value_buf.value = edges_value_buf_; } Opt_Array_LayoutSafeAreaEdge edges_value = edges_value_buf;; - GetNodeModifiers()->getNavigationModifier()->setIgnoreLayoutSafeArea(self, (const Opt_Array_LayoutSafeAreaType*)&types_value, (const Opt_Array_LayoutSafeAreaEdge*)&edges_value); + GetNodeModifiers()->getNavigationModifier()->setIgnoreLayoutSafeArea(self, reinterpret_cast(&types_value), reinterpret_cast(&edges_value)); } KOALA_INTEROP_DIRECT_V3(NavigationAttribute_ignoreLayoutSafeArea, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_NodeContainer_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -12698,7 +12698,7 @@ void impl_NodeContainerInterface_setNodeContainerOptions(Ark_NativePointer thisP Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_NodeController controller_value = NodeController_serializer::read(thisDeserializer);; - GetNodeModifiers()->getNodeContainerModifier()->setNodeContainerOptions(self, (const Ark_NodeController*)&controller_value); + GetNodeModifiers()->getNodeContainerModifier()->setNodeContainerOptions(self, reinterpret_cast(&controller_value)); } KOALA_INTEROP_DIRECT_V3(NodeContainerInterface_setNodeContainerOptions, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_PasteButton_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -12714,7 +12714,7 @@ void impl_PasteButtonInterface_setPasteButtonOptions1(Ark_NativePointer thisPtr, Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_PasteButtonOptions options_value = PasteButtonOptions_serializer::read(thisDeserializer);; - GetNodeModifiers()->getPasteButtonModifier()->setPasteButtonOptions1(self, (const Ark_PasteButtonOptions*)&options_value); + GetNodeModifiers()->getPasteButtonModifier()->setPasteButtonOptions1(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(PasteButtonInterface_setPasteButtonOptions1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_PasteButtonAttribute_onClick(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12728,7 +12728,7 @@ void impl_PasteButtonAttribute_onClick(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_PasteButtonCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_PasteButtonCallback))))}; } Opt_PasteButtonCallback value_value = value_value_buf;; - GetNodeModifiers()->getPasteButtonModifier()->setOnClick(self, (const Opt_PasteButtonCallback*)&value_value); + GetNodeModifiers()->getPasteButtonModifier()->setOnClick(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(PasteButtonAttribute_onClick, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Path_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -12746,7 +12746,7 @@ void impl_PathInterface_setPathOptions(Ark_NativePointer thisPtr, KSerializerBuf options_value_buf.value = PathOptions_serializer::read(thisDeserializer); } Opt_PathOptions options_value = options_value_buf;; - GetNodeModifiers()->getPathModifier()->setPathOptions(self, (const Opt_PathOptions*)&options_value); + GetNodeModifiers()->getPathModifier()->setPathOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(PathInterface_setPathOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_PathAttribute_commands(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12760,7 +12760,7 @@ void impl_PathAttribute_commands(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getPathModifier()->setCommands(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getPathModifier()->setCommands(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(PathAttribute_commands, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_PatternLock_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -12778,7 +12778,7 @@ void impl_PatternLockInterface_setPatternLockOptions(Ark_NativePointer thisPtr, controller_value_buf.value = static_cast(PatternLockController_serializer::read(thisDeserializer)); } Opt_PatternLockController controller_value = controller_value_buf;; - GetNodeModifiers()->getPatternLockModifier()->setPatternLockOptions(self, (const Opt_PatternLockController*)&controller_value); + GetNodeModifiers()->getPatternLockModifier()->setPatternLockOptions(self, reinterpret_cast(&controller_value)); } KOALA_INTEROP_DIRECT_V3(PatternLockInterface_setPatternLockOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_PatternLockAttribute_sideLength(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12810,7 +12810,7 @@ void impl_PatternLockAttribute_sideLength(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getPatternLockModifier()->setSideLength(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getPatternLockModifier()->setSideLength(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(PatternLockAttribute_sideLength, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_PatternLockAttribute_circleRadius(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12842,7 +12842,7 @@ void impl_PatternLockAttribute_circleRadius(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getPatternLockModifier()->setCircleRadius(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getPatternLockModifier()->setCircleRadius(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(PatternLockAttribute_circleRadius, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_PatternLockAttribute_backgroundColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12878,7 +12878,7 @@ void impl_PatternLockAttribute_backgroundColor(Ark_NativePointer thisPtr, KSeria value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getPatternLockModifier()->setBackgroundColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getPatternLockModifier()->setBackgroundColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(PatternLockAttribute_backgroundColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_PatternLockAttribute_regularColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12914,7 +12914,7 @@ void impl_PatternLockAttribute_regularColor(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getPatternLockModifier()->setRegularColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getPatternLockModifier()->setRegularColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(PatternLockAttribute_regularColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_PatternLockAttribute_selectedColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12950,7 +12950,7 @@ void impl_PatternLockAttribute_selectedColor(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getPatternLockModifier()->setSelectedColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getPatternLockModifier()->setSelectedColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(PatternLockAttribute_selectedColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_PatternLockAttribute_activeColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -12986,7 +12986,7 @@ void impl_PatternLockAttribute_activeColor(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getPatternLockModifier()->setActiveColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getPatternLockModifier()->setActiveColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(PatternLockAttribute_activeColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_PatternLockAttribute_pathColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13022,7 +13022,7 @@ void impl_PatternLockAttribute_pathColor(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getPatternLockModifier()->setPathColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getPatternLockModifier()->setPathColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(PatternLockAttribute_pathColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_PatternLockAttribute_pathStrokeWidth(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13050,7 +13050,7 @@ void impl_PatternLockAttribute_pathStrokeWidth(Ark_NativePointer thisPtr, KSeria value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String value_value = value_value_buf;; - GetNodeModifiers()->getPatternLockModifier()->setPathStrokeWidth(self, (const Opt_Union_Number_String*)&value_value); + GetNodeModifiers()->getPatternLockModifier()->setPathStrokeWidth(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(PatternLockAttribute_pathStrokeWidth, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_PatternLockAttribute_onPatternComplete(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13064,7 +13064,7 @@ void impl_PatternLockAttribute_onPatternComplete(Ark_NativePointer thisPtr, KSer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Array_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Array_Number_Void))))}; } Opt_Callback_Array_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getPatternLockModifier()->setOnPatternComplete(self, (const Opt_Callback_Array_Number_Void*)&value_value); + GetNodeModifiers()->getPatternLockModifier()->setOnPatternComplete(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(PatternLockAttribute_onPatternComplete, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_PatternLockAttribute_autoReset(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13078,7 +13078,7 @@ void impl_PatternLockAttribute_autoReset(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getPatternLockModifier()->setAutoReset(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getPatternLockModifier()->setAutoReset(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(PatternLockAttribute_autoReset, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_PatternLockAttribute_onDotConnect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13092,7 +13092,7 @@ void impl_PatternLockAttribute_onDotConnect(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Void))))}; } Opt_Callback_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getPatternLockModifier()->setOnDotConnect(self, (const Opt_Callback_Number_Void*)&value_value); + GetNodeModifiers()->getPatternLockModifier()->setOnDotConnect(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(PatternLockAttribute_onDotConnect, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_PatternLockAttribute_activateCircleStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13106,7 +13106,7 @@ void impl_PatternLockAttribute_activateCircleStyle(Ark_NativePointer thisPtr, KS value_value_buf.value = CircleStyleOptions_serializer::read(thisDeserializer); } Opt_CircleStyleOptions value_value = value_value_buf;; - GetNodeModifiers()->getPatternLockModifier()->setActivateCircleStyle(self, (const Opt_CircleStyleOptions*)&value_value); + GetNodeModifiers()->getPatternLockModifier()->setActivateCircleStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(PatternLockAttribute_activateCircleStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_PatternLockAttribute_skipUnselectedPoint(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13120,7 +13120,7 @@ void impl_PatternLockAttribute_skipUnselectedPoint(Ark_NativePointer thisPtr, KS value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getPatternLockModifier()->setSkipUnselectedPoint(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getPatternLockModifier()->setSkipUnselectedPoint(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(PatternLockAttribute_skipUnselectedPoint, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_PluginComponent_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -13131,7 +13131,7 @@ void impl_PluginComponentInterface_setPluginComponentOptions(Ark_NativePointer t Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_PluginComponentOptions options_value = PluginComponentOptions_serializer::read(thisDeserializer);; - GetNodeModifiers()->getPluginComponentModifier()->setPluginComponentOptions(self, (const Ark_PluginComponentOptions*)&options_value); + GetNodeModifiers()->getPluginComponentModifier()->setPluginComponentOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(PluginComponentInterface_setPluginComponentOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_PluginComponentAttribute_onComplete(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13145,7 +13145,7 @@ void impl_PluginComponentAttribute_onComplete(Ark_NativePointer thisPtr, KSerial value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_VoidCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_VoidCallback))))}; } Opt_VoidCallback value_value = value_value_buf;; - GetNodeModifiers()->getPluginComponentModifier()->setOnComplete(self, (const Opt_VoidCallback*)&value_value); + GetNodeModifiers()->getPluginComponentModifier()->setOnComplete(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(PluginComponentAttribute_onComplete, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_PluginComponentAttribute_onError(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13159,7 +13159,7 @@ void impl_PluginComponentAttribute_onError(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_PluginErrorCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_PluginErrorCallback))))}; } Opt_PluginErrorCallback value_value = value_value_buf;; - GetNodeModifiers()->getPluginComponentModifier()->setOnError(self, (const Opt_PluginErrorCallback*)&value_value); + GetNodeModifiers()->getPluginComponentModifier()->setOnError(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(PluginComponentAttribute_onError, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Polygon_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -13177,7 +13177,7 @@ void impl_PolygonInterface_setPolygonOptions(Ark_NativePointer thisPtr, KSeriali options_value_buf.value = PolygonOptions_serializer::read(thisDeserializer); } Opt_PolygonOptions options_value = options_value_buf;; - GetNodeModifiers()->getPolygonModifier()->setPolygonOptions(self, (const Opt_PolygonOptions*)&options_value); + GetNodeModifiers()->getPolygonModifier()->setPolygonOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(PolygonInterface_setPolygonOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_PolygonAttribute_points(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13237,7 +13237,7 @@ void impl_PolygonAttribute_points(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = value_value_buf_; } Opt_Array_ShapePoint value_value = value_value_buf;; - GetNodeModifiers()->getPolygonModifier()->setPoints(self, (const Opt_Array_ShapePoint*)&value_value); + GetNodeModifiers()->getPolygonModifier()->setPoints(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(PolygonAttribute_points, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Polyline_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -13255,7 +13255,7 @@ void impl_PolylineInterface_setPolylineOptions(Ark_NativePointer thisPtr, KSeria options_value_buf.value = PolylineOptions_serializer::read(thisDeserializer); } Opt_PolylineOptions options_value = options_value_buf;; - GetNodeModifiers()->getPolylineModifier()->setPolylineOptions(self, (const Opt_PolylineOptions*)&options_value); + GetNodeModifiers()->getPolylineModifier()->setPolylineOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(PolylineInterface_setPolylineOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_PolylineAttribute_points(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13315,7 +13315,7 @@ void impl_PolylineAttribute_points(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = value_value_buf_; } Opt_Array_ShapePoint value_value = value_value_buf;; - GetNodeModifiers()->getPolylineModifier()->setPoints(self, (const Opt_Array_ShapePoint*)&value_value); + GetNodeModifiers()->getPolylineModifier()->setPoints(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(PolylineAttribute_points, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Progress_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -13326,7 +13326,7 @@ void impl_ProgressInterface_setProgressOptions(Ark_NativePointer thisPtr, KSeria Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_ProgressOptions options_value = ProgressOptions_serializer::read(thisDeserializer);; - GetNodeModifiers()->getProgressModifier()->setProgressOptions(self, (const Ark_ProgressOptions*)&options_value); + GetNodeModifiers()->getProgressModifier()->setProgressOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(ProgressInterface_setProgressOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ProgressAttribute_value(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13340,7 +13340,7 @@ void impl_ProgressAttribute_value(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getProgressModifier()->setValue(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getProgressModifier()->setValue(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ProgressAttribute_value, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ProgressAttribute_color(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13390,7 +13390,7 @@ void impl_ProgressAttribute_color(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_ResourceColor_LinearGradient value_value = value_value_buf;; - GetNodeModifiers()->getProgressModifier()->setColor(self, (const Opt_Union_ResourceColor_LinearGradient*)&value_value); + GetNodeModifiers()->getProgressModifier()->setColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ProgressAttribute_color, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ProgressAttribute_style(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13426,7 +13426,7 @@ void impl_ProgressAttribute_style(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_LinearStyleOptions_RingStyleOptions_CapsuleStyleOptions_ProgressStyleOptions value_value = value_value_buf;; - GetNodeModifiers()->getProgressModifier()->setStyle(self, (const Opt_Union_LinearStyleOptions_RingStyleOptions_CapsuleStyleOptions_ProgressStyleOptions*)&value_value); + GetNodeModifiers()->getProgressModifier()->setStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ProgressAttribute_style, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ProgressAttribute_privacySensitive(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13440,7 +13440,7 @@ void impl_ProgressAttribute_privacySensitive(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getProgressModifier()->setPrivacySensitive(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getProgressModifier()->setPrivacySensitive(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ProgressAttribute_privacySensitive, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ProgressAttribute_contentModifier(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13454,7 +13454,7 @@ void impl_ProgressAttribute_contentModifier(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = static_cast(thisDeserializer.readObject()); } Opt_ContentModifier value_value = value_value_buf;; - GetNodeModifiers()->getProgressModifier()->setContentModifier(self, (const Opt_ContentModifier*)&value_value); + GetNodeModifiers()->getProgressModifier()->setContentModifier(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ProgressAttribute_contentModifier, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_QRCode_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -13479,7 +13479,7 @@ void impl_QRCodeInterface_setQRCodeOptions(Ark_NativePointer thisPtr, KSerialize INTEROP_FATAL("One of the branches for value_value_buf has to be chosen through deserialisation."); } Ark_ResourceStr value_value = static_cast(value_value_buf);; - GetNodeModifiers()->getQRCodeModifier()->setQRCodeOptions(self, (const Ark_ResourceStr*)&value_value); + GetNodeModifiers()->getQRCodeModifier()->setQRCodeOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(QRCodeInterface_setQRCodeOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_QRCodeAttribute_color(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13515,7 +13515,7 @@ void impl_QRCodeAttribute_color(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getQRCodeModifier()->setColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getQRCodeModifier()->setColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(QRCodeAttribute_color, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_QRCodeAttribute_backgroundColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13551,7 +13551,7 @@ void impl_QRCodeAttribute_backgroundColor(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getQRCodeModifier()->setBackgroundColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getQRCodeModifier()->setBackgroundColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(QRCodeAttribute_backgroundColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_QRCodeAttribute_contentOpacity(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13579,7 +13579,7 @@ void impl_QRCodeAttribute_contentOpacity(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_Resource value_value = value_value_buf;; - GetNodeModifiers()->getQRCodeModifier()->setContentOpacity(self, (const Opt_Union_Number_Resource*)&value_value); + GetNodeModifiers()->getQRCodeModifier()->setContentOpacity(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(QRCodeAttribute_contentOpacity, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Radio_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -13590,7 +13590,7 @@ void impl_RadioInterface_setRadioOptions(Ark_NativePointer thisPtr, KSerializerB Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_RadioOptions options_value = RadioOptions_serializer::read(thisDeserializer);; - GetNodeModifiers()->getRadioModifier()->setRadioOptions(self, (const Ark_RadioOptions*)&options_value); + GetNodeModifiers()->getRadioModifier()->setRadioOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(RadioInterface_setRadioOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RadioAttribute_checked(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13604,7 +13604,7 @@ void impl_RadioAttribute_checked(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getRadioModifier()->setChecked(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getRadioModifier()->setChecked(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RadioAttribute_checked, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RadioAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13618,7 +13618,7 @@ void impl_RadioAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnRadioChangeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnRadioChangeCallback))))}; } Opt_OnRadioChangeCallback value_value = value_value_buf;; - GetNodeModifiers()->getRadioModifier()->setOnChange(self, (const Opt_OnRadioChangeCallback*)&value_value); + GetNodeModifiers()->getRadioModifier()->setOnChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RadioAttribute_onChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RadioAttribute_radioStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13632,7 +13632,7 @@ void impl_RadioAttribute_radioStyle(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = RadioStyle_serializer::read(thisDeserializer); } Opt_RadioStyle value_value = value_value_buf;; - GetNodeModifiers()->getRadioModifier()->setRadioStyle(self, (const Opt_RadioStyle*)&value_value); + GetNodeModifiers()->getRadioModifier()->setRadioStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RadioAttribute_radioStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RadioAttribute_contentModifier(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13646,7 +13646,7 @@ void impl_RadioAttribute_contentModifier(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(thisDeserializer.readObject()); } Opt_ContentModifier value_value = value_value_buf;; - GetNodeModifiers()->getRadioModifier()->setContentModifier(self, (const Opt_ContentModifier*)&value_value); + GetNodeModifiers()->getRadioModifier()->setContentModifier(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RadioAttribute_contentModifier, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Rating_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -13664,7 +13664,7 @@ void impl_RatingInterface_setRatingOptions(Ark_NativePointer thisPtr, KSerialize options_value_buf.value = RatingOptions_serializer::read(thisDeserializer); } Opt_RatingOptions options_value = options_value_buf;; - GetNodeModifiers()->getRatingModifier()->setRatingOptions(self, (const Opt_RatingOptions*)&options_value); + GetNodeModifiers()->getRatingModifier()->setRatingOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(RatingInterface_setRatingOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RatingAttribute_stars(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13678,7 +13678,7 @@ void impl_RatingAttribute_stars(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getRatingModifier()->setStars(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getRatingModifier()->setStars(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RatingAttribute_stars, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RatingAttribute_stepSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13692,7 +13692,7 @@ void impl_RatingAttribute_stepSize(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getRatingModifier()->setStepSize(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getRatingModifier()->setStepSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RatingAttribute_stepSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RatingAttribute_starStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13706,7 +13706,7 @@ void impl_RatingAttribute_starStyle(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = StarStyleOptions_serializer::read(thisDeserializer); } Opt_StarStyleOptions value_value = value_value_buf;; - GetNodeModifiers()->getRatingModifier()->setStarStyle(self, (const Opt_StarStyleOptions*)&value_value); + GetNodeModifiers()->getRatingModifier()->setStarStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RatingAttribute_starStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RatingAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13720,7 +13720,7 @@ void impl_RatingAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnRatingChangeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnRatingChangeCallback))))}; } Opt_OnRatingChangeCallback value_value = value_value_buf;; - GetNodeModifiers()->getRatingModifier()->setOnChange(self, (const Opt_OnRatingChangeCallback*)&value_value); + GetNodeModifiers()->getRatingModifier()->setOnChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RatingAttribute_onChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RatingAttribute_contentModifier(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13734,7 +13734,7 @@ void impl_RatingAttribute_contentModifier(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(thisDeserializer.readObject()); } Opt_ContentModifier value_value = value_value_buf;; - GetNodeModifiers()->getRatingModifier()->setContentModifier(self, (const Opt_ContentModifier*)&value_value); + GetNodeModifiers()->getRatingModifier()->setContentModifier(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RatingAttribute_contentModifier, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Rect_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -13766,7 +13766,7 @@ void impl_RectInterface_setRectOptions(Ark_NativePointer thisPtr, KSerializerBuf options_value_buf.value = static_cast(options_value_buf_); } Opt_Union_RectOptions_RoundedRectOptions options_value = options_value_buf;; - GetNodeModifiers()->getRectModifier()->setRectOptions(self, (const Opt_Union_RectOptions_RoundedRectOptions*)&options_value); + GetNodeModifiers()->getRectModifier()->setRectOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(RectInterface_setRectOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RectAttribute_radiusWidth(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13794,7 +13794,7 @@ void impl_RectAttribute_radiusWidth(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String value_value = value_value_buf;; - GetNodeModifiers()->getRectModifier()->setRadiusWidth(self, (const Opt_Union_Number_String*)&value_value); + GetNodeModifiers()->getRectModifier()->setRadiusWidth(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RectAttribute_radiusWidth, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RectAttribute_radiusHeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13822,7 +13822,7 @@ void impl_RectAttribute_radiusHeight(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String value_value = value_value_buf;; - GetNodeModifiers()->getRectModifier()->setRadiusHeight(self, (const Opt_Union_Number_String*)&value_value); + GetNodeModifiers()->getRectModifier()->setRadiusHeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RectAttribute_radiusHeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RectAttribute_radius(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13875,7 +13875,7 @@ void impl_RectAttribute_radius(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Array_Union_Number_String value_value = value_value_buf;; - GetNodeModifiers()->getRectModifier()->setRadius(self, (const Opt_Union_Number_String_Array_Union_Number_String*)&value_value); + GetNodeModifiers()->getRectModifier()->setRadius(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RectAttribute_radius, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Refresh_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -13886,7 +13886,7 @@ void impl_RefreshInterface_setRefreshOptions(Ark_NativePointer thisPtr, KSeriali Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_RefreshOptions value_value = RefreshOptions_serializer::read(thisDeserializer);; - GetNodeModifiers()->getRefreshModifier()->setRefreshOptions(self, (const Ark_RefreshOptions*)&value_value); + GetNodeModifiers()->getRefreshModifier()->setRefreshOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RefreshInterface_setRefreshOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RefreshAttribute_onStateChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13900,7 +13900,7 @@ void impl_RefreshAttribute_onStateChange(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_RefreshStatus_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_RefreshStatus_Void))))}; } Opt_Callback_RefreshStatus_Void value_value = value_value_buf;; - GetNodeModifiers()->getRefreshModifier()->setOnStateChange(self, (const Opt_Callback_RefreshStatus_Void*)&value_value); + GetNodeModifiers()->getRefreshModifier()->setOnStateChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RefreshAttribute_onStateChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RefreshAttribute_onRefreshing(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13914,7 +13914,7 @@ void impl_RefreshAttribute_onRefreshing(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getRefreshModifier()->setOnRefreshing(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getRefreshModifier()->setOnRefreshing(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RefreshAttribute_onRefreshing, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RefreshAttribute_refreshOffset(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13928,7 +13928,7 @@ void impl_RefreshAttribute_refreshOffset(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getRefreshModifier()->setRefreshOffset(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getRefreshModifier()->setRefreshOffset(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RefreshAttribute_refreshOffset, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RefreshAttribute_pullToRefresh(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13942,7 +13942,7 @@ void impl_RefreshAttribute_pullToRefresh(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getRefreshModifier()->setPullToRefresh(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getRefreshModifier()->setPullToRefresh(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RefreshAttribute_pullToRefresh, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RefreshAttribute_onOffsetChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13956,7 +13956,7 @@ void impl_RefreshAttribute_onOffsetChange(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Void))))}; } Opt_Callback_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getRefreshModifier()->setOnOffsetChange(self, (const Opt_Callback_Number_Void*)&value_value); + GetNodeModifiers()->getRefreshModifier()->setOnOffsetChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RefreshAttribute_onOffsetChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RefreshAttribute_pullDownRatio(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -13970,7 +13970,7 @@ void impl_RefreshAttribute_pullDownRatio(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getRefreshModifier()->setPullDownRatio(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getRefreshModifier()->setPullDownRatio(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RefreshAttribute_pullDownRatio, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RelativeContainer_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -14000,7 +14000,7 @@ void impl_RelativeContainerAttribute_guideLine(Ark_NativePointer thisPtr, KSeria value_value_buf.value = value_value_buf_; } Opt_Array_GuideLineStyle value_value = value_value_buf;; - GetNodeModifiers()->getRelativeContainerModifier()->setGuideLine(self, (const Opt_Array_GuideLineStyle*)&value_value); + GetNodeModifiers()->getRelativeContainerModifier()->setGuideLine(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RelativeContainerAttribute_guideLine, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RelativeContainerAttribute_barrier0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14021,7 +14021,7 @@ void impl_RelativeContainerAttribute_barrier0(Ark_NativePointer thisPtr, KSerial value_value_buf.value = value_value_buf_; } Opt_Array_BarrierStyle value_value = value_value_buf;; - GetNodeModifiers()->getRelativeContainerModifier()->setBarrier0(self, (const Opt_Array_BarrierStyle*)&value_value); + GetNodeModifiers()->getRelativeContainerModifier()->setBarrier0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RelativeContainerAttribute_barrier0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RelativeContainerAttribute_barrier1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14042,7 +14042,7 @@ void impl_RelativeContainerAttribute_barrier1(Ark_NativePointer thisPtr, KSerial value_value_buf.value = value_value_buf_; } Opt_Array_LocalizedBarrierStyle value_value = value_value_buf;; - GetNodeModifiers()->getRelativeContainerModifier()->setBarrier1(self, (const Opt_Array_LocalizedBarrierStyle*)&value_value); + GetNodeModifiers()->getRelativeContainerModifier()->setBarrier1(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RelativeContainerAttribute_barrier1, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RemoteWindow_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -14053,7 +14053,7 @@ void impl_RemoteWindowInterface_setRemoteWindowOptions(Ark_NativePointer thisPtr Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_WindowAnimationTarget target_value = WindowAnimationTarget_serializer::read(thisDeserializer);; - GetNodeModifiers()->getRemoteWindowModifier()->setRemoteWindowOptions(self, (const Ark_WindowAnimationTarget*)&target_value); + GetNodeModifiers()->getRemoteWindowModifier()->setRemoteWindowOptions(self, reinterpret_cast(&target_value)); } KOALA_INTEROP_DIRECT_V3(RemoteWindowInterface_setRemoteWindowOptions, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RichEditor_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -14064,14 +14064,14 @@ void impl_RichEditorInterface_setRichEditorOptions0(Ark_NativePointer thisPtr, K Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_RichEditorOptions value_value = RichEditorOptions_serializer::read(thisDeserializer);; - GetNodeModifiers()->getRichEditorModifier()->setRichEditorOptions0(self, (const Ark_RichEditorOptions*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setRichEditorOptions0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorInterface_setRichEditorOptions0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorInterface_setRichEditorOptions1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_RichEditorStyledStringOptions options_value = RichEditorStyledStringOptions_serializer::read(thisDeserializer);; - GetNodeModifiers()->getRichEditorModifier()->setRichEditorOptions1(self, (const Ark_RichEditorStyledStringOptions*)&options_value); + GetNodeModifiers()->getRichEditorModifier()->setRichEditorOptions1(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorInterface_setRichEditorOptions1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_onReady(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14085,7 +14085,7 @@ void impl_RichEditorAttribute_onReady(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_VoidCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_VoidCallback))))}; } Opt_VoidCallback value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setOnReady(self, (const Opt_VoidCallback*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setOnReady(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_onReady, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_onSelect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14099,7 +14099,7 @@ void impl_RichEditorAttribute_onSelect(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_RichEditorSelection_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_RichEditorSelection_Void))))}; } Opt_Callback_RichEditorSelection_Void value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setOnSelect(self, (const Opt_Callback_RichEditorSelection_Void*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setOnSelect(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_onSelect, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_onSelectionChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14113,7 +14113,7 @@ void impl_RichEditorAttribute_onSelectionChange(Ark_NativePointer thisPtr, KSeri value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_RichEditorRange_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_RichEditorRange_Void))))}; } Opt_Callback_RichEditorRange_Void value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setOnSelectionChange(self, (const Opt_Callback_RichEditorRange_Void*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setOnSelectionChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_onSelectionChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_aboutToIMEInput(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14127,7 +14127,7 @@ void impl_RichEditorAttribute_aboutToIMEInput(Ark_NativePointer thisPtr, KSerial value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_RichEditorInsertValue_Boolean)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_RichEditorInsertValue_Boolean))))}; } Opt_Callback_RichEditorInsertValue_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setAboutToIMEInput(self, (const Opt_Callback_RichEditorInsertValue_Boolean*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setAboutToIMEInput(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_aboutToIMEInput, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_onIMEInputComplete(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14141,7 +14141,7 @@ void impl_RichEditorAttribute_onIMEInputComplete(Ark_NativePointer thisPtr, KSer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_RichEditorTextSpanResult_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_RichEditorTextSpanResult_Void))))}; } Opt_Callback_RichEditorTextSpanResult_Void value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setOnIMEInputComplete(self, (const Opt_Callback_RichEditorTextSpanResult_Void*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setOnIMEInputComplete(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_onIMEInputComplete, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_onDidIMEInput(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14155,7 +14155,7 @@ void impl_RichEditorAttribute_onDidIMEInput(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_TextRange_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_TextRange_Void))))}; } Opt_Callback_TextRange_Void value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setOnDidIMEInput(self, (const Opt_Callback_TextRange_Void*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setOnDidIMEInput(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_onDidIMEInput, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_aboutToDelete(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14169,7 +14169,7 @@ void impl_RichEditorAttribute_aboutToDelete(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_RichEditorDeleteValue_Boolean)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_RichEditorDeleteValue_Boolean))))}; } Opt_Callback_RichEditorDeleteValue_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setAboutToDelete(self, (const Opt_Callback_RichEditorDeleteValue_Boolean*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setAboutToDelete(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_aboutToDelete, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_onDeleteComplete(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14183,7 +14183,7 @@ void impl_RichEditorAttribute_onDeleteComplete(Ark_NativePointer thisPtr, KSeria value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_VoidCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_VoidCallback))))}; } Opt_VoidCallback value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setOnDeleteComplete(self, (const Opt_VoidCallback*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setOnDeleteComplete(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_onDeleteComplete, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_copyOptions(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14197,7 +14197,7 @@ void impl_RichEditorAttribute_copyOptions(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_CopyOptions value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setCopyOptions(self, (const Opt_CopyOptions*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setCopyOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_copyOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_onPaste(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14211,7 +14211,7 @@ void impl_RichEditorAttribute_onPaste(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_PasteEventCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_PasteEventCallback))))}; } Opt_PasteEventCallback value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setOnPaste(self, (const Opt_PasteEventCallback*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setOnPaste(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_onPaste, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_enableDataDetector(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14225,7 +14225,7 @@ void impl_RichEditorAttribute_enableDataDetector(Ark_NativePointer thisPtr, KSer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setEnableDataDetector(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setEnableDataDetector(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_enableDataDetector, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_enablePreviewText(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14239,7 +14239,7 @@ void impl_RichEditorAttribute_enablePreviewText(Ark_NativePointer thisPtr, KSeri value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setEnablePreviewText(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setEnablePreviewText(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_enablePreviewText, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_dataDetectorConfig(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14253,7 +14253,7 @@ void impl_RichEditorAttribute_dataDetectorConfig(Ark_NativePointer thisPtr, KSer value_value_buf.value = TextDataDetectorConfig_serializer::read(thisDeserializer); } Opt_TextDataDetectorConfig value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setDataDetectorConfig(self, (const Opt_TextDataDetectorConfig*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setDataDetectorConfig(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_dataDetectorConfig, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_caretColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14289,7 +14289,7 @@ void impl_RichEditorAttribute_caretColor(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setCaretColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setCaretColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_caretColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_selectedBackgroundColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14325,7 +14325,7 @@ void impl_RichEditorAttribute_selectedBackgroundColor(Ark_NativePointer thisPtr, value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setSelectedBackgroundColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setSelectedBackgroundColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_selectedBackgroundColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_onEditingChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14339,7 +14339,7 @@ void impl_RichEditorAttribute_onEditingChange(Ark_NativePointer thisPtr, KSerial value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Boolean_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Boolean_Void))))}; } Opt_Callback_Boolean_Void value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setOnEditingChange(self, (const Opt_Callback_Boolean_Void*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setOnEditingChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_onEditingChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_enterKeyType(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14353,7 +14353,7 @@ void impl_RichEditorAttribute_enterKeyType(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EnterKeyType value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setEnterKeyType(self, (const Opt_EnterKeyType*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setEnterKeyType(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_enterKeyType, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_onSubmit(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14367,7 +14367,7 @@ void impl_RichEditorAttribute_onSubmit(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_SubmitCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_SubmitCallback))))}; } Opt_SubmitCallback value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setOnSubmit(self, (const Opt_SubmitCallback*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setOnSubmit(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_onSubmit, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_onWillChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14381,7 +14381,7 @@ void impl_RichEditorAttribute_onWillChange(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_RichEditorChangeValue_Boolean)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_RichEditorChangeValue_Boolean))))}; } Opt_Callback_RichEditorChangeValue_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setOnWillChange(self, (const Opt_Callback_RichEditorChangeValue_Boolean*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setOnWillChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_onWillChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_onDidChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14395,7 +14395,7 @@ void impl_RichEditorAttribute_onDidChange(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnDidChangeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnDidChangeCallback))))}; } Opt_OnDidChangeCallback value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setOnDidChange(self, (const Opt_OnDidChangeCallback*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setOnDidChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_onDidChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_onCut(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14409,7 +14409,7 @@ void impl_RichEditorAttribute_onCut(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_CutEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_CutEvent_Void))))}; } Opt_Callback_CutEvent_Void value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setOnCut(self, (const Opt_Callback_CutEvent_Void*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setOnCut(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_onCut, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_onCopy(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14423,7 +14423,7 @@ void impl_RichEditorAttribute_onCopy(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_CopyEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_CopyEvent_Void))))}; } Opt_Callback_CopyEvent_Void value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setOnCopy(self, (const Opt_Callback_CopyEvent_Void*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setOnCopy(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_onCopy, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_editMenuOptions(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14437,7 +14437,7 @@ void impl_RichEditorAttribute_editMenuOptions(Ark_NativePointer thisPtr, KSerial value_value_buf.value = EditMenuOptions_serializer::read(thisDeserializer); } Opt_EditMenuOptions value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setEditMenuOptions(self, (const Opt_EditMenuOptions*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setEditMenuOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_editMenuOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_enableKeyboardOnFocus(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14451,7 +14451,7 @@ void impl_RichEditorAttribute_enableKeyboardOnFocus(Ark_NativePointer thisPtr, K value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setEnableKeyboardOnFocus(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setEnableKeyboardOnFocus(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_enableKeyboardOnFocus, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_enableHapticFeedback(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14465,7 +14465,7 @@ void impl_RichEditorAttribute_enableHapticFeedback(Ark_NativePointer thisPtr, KS value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setEnableHapticFeedback(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setEnableHapticFeedback(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_enableHapticFeedback, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_barState(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14479,7 +14479,7 @@ void impl_RichEditorAttribute_barState(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_BarState value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setBarState(self, (const Opt_BarState*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setBarState(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_barState, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_maxLength(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14493,7 +14493,7 @@ void impl_RichEditorAttribute_maxLength(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setMaxLength(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setMaxLength(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_maxLength, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_maxLines(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14507,7 +14507,7 @@ void impl_RichEditorAttribute_maxLines(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setMaxLines(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setMaxLines(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_maxLines, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_keyboardAppearance(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14521,7 +14521,7 @@ void impl_RichEditorAttribute_keyboardAppearance(Ark_NativePointer thisPtr, KSer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_KeyboardAppearance value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setKeyboardAppearance(self, (const Opt_KeyboardAppearance*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setKeyboardAppearance(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_keyboardAppearance, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_stopBackPress(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14535,7 +14535,7 @@ void impl_RichEditorAttribute_stopBackPress(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setStopBackPress(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getRichEditorModifier()->setStopBackPress(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_stopBackPress, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_bindSelectionMenu(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14587,7 +14587,7 @@ void impl_RichEditorAttribute_bindSelectionMenu(Ark_NativePointer thisPtr, KSeri options_value_buf.value = SelectionMenuOptions_serializer::read(thisDeserializer); } Opt_SelectionMenuOptions options_value = options_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setBindSelectionMenu(self, (const Opt_RichEditorSpanType*)&spanType_value, (const Opt_CustomNodeBuilder*)&content_value, (const Opt_Union_ResponseType_RichEditorResponseType*)&responseType_value, (const Opt_SelectionMenuOptions*)&options_value); + GetNodeModifiers()->getRichEditorModifier()->setBindSelectionMenu(self, reinterpret_cast(&spanType_value), reinterpret_cast(&content_value), reinterpret_cast(&responseType_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_bindSelectionMenu, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_customKeyboard(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14609,7 +14609,7 @@ void impl_RichEditorAttribute_customKeyboard(Ark_NativePointer thisPtr, KSeriali options_value_buf.value = KeyboardOptions_serializer::read(thisDeserializer); } Opt_KeyboardOptions options_value = options_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setCustomKeyboard(self, (const Opt_CustomNodeBuilder*)&value_value, (const Opt_KeyboardOptions*)&options_value); + GetNodeModifiers()->getRichEditorModifier()->setCustomKeyboard(self, reinterpret_cast(&value_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_customKeyboard, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorAttribute_placeholder(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14645,7 +14645,7 @@ void impl_RichEditorAttribute_placeholder(Ark_NativePointer thisPtr, KSerializer style_value_buf.value = PlaceholderStyle_serializer::read(thisDeserializer); } Opt_PlaceholderStyle style_value = style_value_buf;; - GetNodeModifiers()->getRichEditorModifier()->setPlaceholder(self, (const Opt_ResourceStr*)&value_value, (const Opt_PlaceholderStyle*)&style_value); + GetNodeModifiers()->getRichEditorModifier()->setPlaceholder(self, reinterpret_cast(&value_value), reinterpret_cast(&style_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorAttribute_placeholder, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RichText_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -14668,7 +14668,7 @@ void impl_RichTextAttribute_onStart(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getRichTextModifier()->setOnStart(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getRichTextModifier()->setOnStart(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichTextAttribute_onStart, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichTextAttribute_onComplete(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14682,7 +14682,7 @@ void impl_RichTextAttribute_onComplete(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getRichTextModifier()->setOnComplete(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getRichTextModifier()->setOnComplete(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichTextAttribute_onComplete, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RootScene_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -14693,7 +14693,7 @@ void impl_RootSceneInterface_setRootSceneOptions(Ark_NativePointer thisPtr, KSer Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_RootSceneSession session_value = RootSceneSession_serializer::read(thisDeserializer);; - GetNodeModifiers()->getRootSceneModifier()->setRootSceneOptions(self, (const Ark_RootSceneSession*)&session_value); + GetNodeModifiers()->getRootSceneModifier()->setRootSceneOptions(self, reinterpret_cast(&session_value)); } KOALA_INTEROP_DIRECT_V3(RootSceneInterface_setRootSceneOptions, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Row_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -14711,7 +14711,7 @@ void impl_RowInterface_setRowOptions(Ark_NativePointer thisPtr, KSerializerBuffe options_value_buf.value = RowOptions_serializer::read(thisDeserializer); } Opt_RowOptions options_value = options_value_buf;; - GetNodeModifiers()->getRowModifier()->setRowOptions(self, (const Opt_RowOptions*)&options_value); + GetNodeModifiers()->getRowModifier()->setRowOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(RowInterface_setRowOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RowAttribute_alignItems(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14725,7 +14725,7 @@ void impl_RowAttribute_alignItems(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_VerticalAlign value_value = value_value_buf;; - GetNodeModifiers()->getRowModifier()->setAlignItems(self, (const Opt_VerticalAlign*)&value_value); + GetNodeModifiers()->getRowModifier()->setAlignItems(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RowAttribute_alignItems, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RowAttribute_justifyContent(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14739,7 +14739,7 @@ void impl_RowAttribute_justifyContent(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_FlexAlign value_value = value_value_buf;; - GetNodeModifiers()->getRowModifier()->setJustifyContent(self, (const Opt_FlexAlign*)&value_value); + GetNodeModifiers()->getRowModifier()->setJustifyContent(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RowAttribute_justifyContent, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RowAttribute_pointLight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14753,7 +14753,7 @@ void impl_RowAttribute_pointLight(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = PointLightStyle_serializer::read(thisDeserializer); } Opt_PointLightStyle value_value = value_value_buf;; - GetNodeModifiers()->getRowModifier()->setPointLight(self, (const Opt_PointLightStyle*)&value_value); + GetNodeModifiers()->getRowModifier()->setPointLight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RowAttribute_pointLight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RowAttribute_reverse(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14767,7 +14767,7 @@ void impl_RowAttribute_reverse(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getRowModifier()->setReverse(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getRowModifier()->setReverse(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RowAttribute_reverse, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RowSplit_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -14790,7 +14790,7 @@ void impl_RowSplitAttribute_resizeable(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getRowSplitModifier()->setResizeable(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getRowSplitModifier()->setResizeable(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RowSplitAttribute_resizeable, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_SaveButton_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -14806,7 +14806,7 @@ void impl_SaveButtonInterface_setSaveButtonOptions1(Ark_NativePointer thisPtr, K Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_SaveButtonOptions options_value = SaveButtonOptions_serializer::read(thisDeserializer);; - GetNodeModifiers()->getSaveButtonModifier()->setSaveButtonOptions1(self, (const Ark_SaveButtonOptions*)&options_value); + GetNodeModifiers()->getSaveButtonModifier()->setSaveButtonOptions1(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(SaveButtonInterface_setSaveButtonOptions1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SaveButtonAttribute_onClick(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14820,7 +14820,7 @@ void impl_SaveButtonAttribute_onClick(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_SaveButtonCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_SaveButtonCallback))))}; } Opt_SaveButtonCallback value_value = value_value_buf;; - GetNodeModifiers()->getSaveButtonModifier()->setOnClick(self, (const Opt_SaveButtonCallback*)&value_value); + GetNodeModifiers()->getSaveButtonModifier()->setOnClick(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SaveButtonAttribute_onClick, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Screen_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -14847,7 +14847,7 @@ void impl_ScrollInterface_setScrollOptions(Ark_NativePointer thisPtr, KSerialize scroller_value_buf.value = static_cast(Scroller_serializer::read(thisDeserializer)); } Opt_Scroller scroller_value = scroller_value_buf;; - GetNodeModifiers()->getScrollModifier()->setScrollOptions(self, (const Opt_Scroller*)&scroller_value); + GetNodeModifiers()->getScrollModifier()->setScrollOptions(self, reinterpret_cast(&scroller_value)); } KOALA_INTEROP_DIRECT_V3(ScrollInterface_setScrollOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollAttribute_scrollable(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14861,7 +14861,7 @@ void impl_ScrollAttribute_scrollable(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ScrollDirection value_value = value_value_buf;; - GetNodeModifiers()->getScrollModifier()->setScrollable(self, (const Opt_ScrollDirection*)&value_value); + GetNodeModifiers()->getScrollModifier()->setScrollable(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollAttribute_scrollable, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollAttribute_onWillScroll(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14875,7 +14875,7 @@ void impl_ScrollAttribute_onWillScroll(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_ScrollOnWillScrollCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_ScrollOnWillScrollCallback))))}; } Opt_ScrollOnWillScrollCallback value_value = value_value_buf;; - GetNodeModifiers()->getScrollModifier()->setOnWillScroll(self, (const Opt_ScrollOnWillScrollCallback*)&value_value); + GetNodeModifiers()->getScrollModifier()->setOnWillScroll(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollAttribute_onWillScroll, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollAttribute_onDidScroll(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14889,7 +14889,7 @@ void impl_ScrollAttribute_onDidScroll(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_ScrollOnScrollCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_ScrollOnScrollCallback))))}; } Opt_ScrollOnScrollCallback value_value = value_value_buf;; - GetNodeModifiers()->getScrollModifier()->setOnDidScroll(self, (const Opt_ScrollOnScrollCallback*)&value_value); + GetNodeModifiers()->getScrollModifier()->setOnDidScroll(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollAttribute_onDidScroll, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollAttribute_onScrollEdge(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14903,7 +14903,7 @@ void impl_ScrollAttribute_onScrollEdge(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnScrollEdgeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnScrollEdgeCallback))))}; } Opt_OnScrollEdgeCallback value_value = value_value_buf;; - GetNodeModifiers()->getScrollModifier()->setOnScrollEdge(self, (const Opt_OnScrollEdgeCallback*)&value_value); + GetNodeModifiers()->getScrollModifier()->setOnScrollEdge(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollAttribute_onScrollEdge, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollAttribute_onScrollStart(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14917,7 +14917,7 @@ void impl_ScrollAttribute_onScrollStart(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_VoidCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_VoidCallback))))}; } Opt_VoidCallback value_value = value_value_buf;; - GetNodeModifiers()->getScrollModifier()->setOnScrollStart(self, (const Opt_VoidCallback*)&value_value); + GetNodeModifiers()->getScrollModifier()->setOnScrollStart(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollAttribute_onScrollStart, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollAttribute_onScrollStop(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14931,7 +14931,7 @@ void impl_ScrollAttribute_onScrollStop(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_VoidCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_VoidCallback))))}; } Opt_VoidCallback value_value = value_value_buf;; - GetNodeModifiers()->getScrollModifier()->setOnScrollStop(self, (const Opt_VoidCallback*)&value_value); + GetNodeModifiers()->getScrollModifier()->setOnScrollStop(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollAttribute_onScrollStop, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollAttribute_scrollBar(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14945,7 +14945,7 @@ void impl_ScrollAttribute_scrollBar(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_BarState value_value = value_value_buf;; - GetNodeModifiers()->getScrollModifier()->setScrollBar(self, (const Opt_BarState*)&value_value); + GetNodeModifiers()->getScrollModifier()->setScrollBar(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollAttribute_scrollBar, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollAttribute_scrollBarColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -14977,7 +14977,7 @@ void impl_ScrollAttribute_scrollBarColor(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Color_Number_String value_value = value_value_buf;; - GetNodeModifiers()->getScrollModifier()->setScrollBarColor(self, (const Opt_Union_Color_Number_String*)&value_value); + GetNodeModifiers()->getScrollModifier()->setScrollBarColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollAttribute_scrollBarColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollAttribute_scrollBarWidth(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15005,7 +15005,7 @@ void impl_ScrollAttribute_scrollBarWidth(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String value_value = value_value_buf;; - GetNodeModifiers()->getScrollModifier()->setScrollBarWidth(self, (const Opt_Union_Number_String*)&value_value); + GetNodeModifiers()->getScrollModifier()->setScrollBarWidth(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollAttribute_scrollBarWidth, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollAttribute_onScrollFrameBegin(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15019,7 +15019,7 @@ void impl_ScrollAttribute_onScrollFrameBegin(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnScrollFrameBeginCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnScrollFrameBeginCallback))))}; } Opt_OnScrollFrameBeginCallback value_value = value_value_buf;; - GetNodeModifiers()->getScrollModifier()->setOnScrollFrameBegin(self, (const Opt_OnScrollFrameBeginCallback*)&value_value); + GetNodeModifiers()->getScrollModifier()->setOnScrollFrameBegin(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollAttribute_onScrollFrameBegin, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollAttribute_nestedScroll(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15033,7 +15033,7 @@ void impl_ScrollAttribute_nestedScroll(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = NestedScrollOptions_serializer::read(thisDeserializer); } Opt_NestedScrollOptions value_value = value_value_buf;; - GetNodeModifiers()->getScrollModifier()->setNestedScroll(self, (const Opt_NestedScrollOptions*)&value_value); + GetNodeModifiers()->getScrollModifier()->setNestedScroll(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollAttribute_nestedScroll, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollAttribute_enableScrollInteraction(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15047,7 +15047,7 @@ void impl_ScrollAttribute_enableScrollInteraction(Ark_NativePointer thisPtr, KSe value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getScrollModifier()->setEnableScrollInteraction(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getScrollModifier()->setEnableScrollInteraction(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollAttribute_enableScrollInteraction, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollAttribute_friction(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15075,7 +15075,7 @@ void impl_ScrollAttribute_friction(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_Resource value_value = value_value_buf;; - GetNodeModifiers()->getScrollModifier()->setFriction(self, (const Opt_Union_Number_Resource*)&value_value); + GetNodeModifiers()->getScrollModifier()->setFriction(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollAttribute_friction, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollAttribute_scrollSnap(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15089,7 +15089,7 @@ void impl_ScrollAttribute_scrollSnap(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = ScrollSnapOptions_serializer::read(thisDeserializer); } Opt_ScrollSnapOptions value_value = value_value_buf;; - GetNodeModifiers()->getScrollModifier()->setScrollSnap(self, (const Opt_ScrollSnapOptions*)&value_value); + GetNodeModifiers()->getScrollModifier()->setScrollSnap(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollAttribute_scrollSnap, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollAttribute_enablePaging(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15103,7 +15103,7 @@ void impl_ScrollAttribute_enablePaging(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getScrollModifier()->setEnablePaging(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getScrollModifier()->setEnablePaging(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollAttribute_enablePaging, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollAttribute_initialOffset(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15117,7 +15117,7 @@ void impl_ScrollAttribute_initialOffset(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = OffsetOptions_serializer::read(thisDeserializer); } Opt_OffsetOptions value_value = value_value_buf;; - GetNodeModifiers()->getScrollModifier()->setInitialOffset(self, (const Opt_OffsetOptions*)&value_value); + GetNodeModifiers()->getScrollModifier()->setInitialOffset(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollAttribute_initialOffset, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollAttribute_edgeEffect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15139,7 +15139,7 @@ void impl_ScrollAttribute_edgeEffect(Ark_NativePointer thisPtr, KSerializerBuffe options_value_buf.value = EdgeEffectOptions_serializer::read(thisDeserializer); } Opt_EdgeEffectOptions options_value = options_value_buf;; - GetNodeModifiers()->getScrollModifier()->setEdgeEffect(self, (const Opt_EdgeEffect*)&edgeEffect_value, (const Opt_EdgeEffectOptions*)&options_value); + GetNodeModifiers()->getScrollModifier()->setEdgeEffect(self, reinterpret_cast(&edgeEffect_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(ScrollAttribute_edgeEffect, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_ScrollBar_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -15150,7 +15150,7 @@ void impl_ScrollBarInterface_setScrollBarOptions(Ark_NativePointer thisPtr, KSer Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_ScrollBarOptions value_value = ScrollBarOptions_serializer::read(thisDeserializer);; - GetNodeModifiers()->getScrollBarModifier()->setScrollBarOptions(self, (const Ark_ScrollBarOptions*)&value_value); + GetNodeModifiers()->getScrollBarModifier()->setScrollBarOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollBarInterface_setScrollBarOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ScrollBarAttribute_enableNestedScroll(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15164,7 +15164,7 @@ void impl_ScrollBarAttribute_enableNestedScroll(Ark_NativePointer thisPtr, KSeri value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getScrollBarModifier()->setEnableNestedScroll(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getScrollBarModifier()->setEnableNestedScroll(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ScrollBarAttribute_enableNestedScroll, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Search_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -15182,7 +15182,7 @@ void impl_SearchInterface_setSearchOptions(Ark_NativePointer thisPtr, KSerialize options_value_buf.value = SearchOptions_serializer::read(thisDeserializer); } Opt_SearchOptions options_value = options_value_buf;; - GetNodeModifiers()->getSearchModifier()->setSearchOptions(self, (const Opt_SearchOptions*)&options_value); + GetNodeModifiers()->getSearchModifier()->setSearchOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(SearchInterface_setSearchOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15218,7 +15218,7 @@ void impl_SearchAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setFontColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getSearchModifier()->setFontColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_fontColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_searchIcon(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15246,7 +15246,7 @@ void impl_SearchAttribute_searchIcon(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_IconOptions_SymbolGlyphModifier value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setSearchIcon(self, (const Opt_Union_IconOptions_SymbolGlyphModifier*)&value_value); + GetNodeModifiers()->getSearchModifier()->setSearchIcon(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_searchIcon, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_cancelButton(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15274,7 +15274,7 @@ void impl_SearchAttribute_cancelButton(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_CancelButtonOptions_CancelButtonSymbolOptions value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setCancelButton(self, (const Opt_Union_CancelButtonOptions_CancelButtonSymbolOptions*)&value_value); + GetNodeModifiers()->getSearchModifier()->setCancelButton(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_cancelButton, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_textIndent(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15306,7 +15306,7 @@ void impl_SearchAttribute_textIndent(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(value_value_buf_); } Opt_Dimension value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setTextIndent(self, (const Opt_Dimension*)&value_value); + GetNodeModifiers()->getSearchModifier()->setTextIndent(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_textIndent, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_onEditChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15320,7 +15320,7 @@ void impl_SearchAttribute_onEditChange(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Boolean_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Boolean_Void))))}; } Opt_Callback_Boolean_Void value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setOnEditChange(self, (const Opt_Callback_Boolean_Void*)&value_value); + GetNodeModifiers()->getSearchModifier()->setOnEditChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_onEditChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_selectedBackgroundColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15356,7 +15356,7 @@ void impl_SearchAttribute_selectedBackgroundColor(Ark_NativePointer thisPtr, KSe value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setSelectedBackgroundColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getSearchModifier()->setSelectedBackgroundColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_selectedBackgroundColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_caretStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15370,7 +15370,7 @@ void impl_SearchAttribute_caretStyle(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = CaretStyle_serializer::read(thisDeserializer); } Opt_CaretStyle value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setCaretStyle(self, (const Opt_CaretStyle*)&value_value); + GetNodeModifiers()->getSearchModifier()->setCaretStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_caretStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_placeholderColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15406,7 +15406,7 @@ void impl_SearchAttribute_placeholderColor(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setPlaceholderColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getSearchModifier()->setPlaceholderColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_placeholderColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_placeholderFont(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15420,7 +15420,7 @@ void impl_SearchAttribute_placeholderFont(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = Font_serializer::read(thisDeserializer); } Opt_Font value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setPlaceholderFont(self, (const Opt_Font*)&value_value); + GetNodeModifiers()->getSearchModifier()->setPlaceholderFont(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_placeholderFont, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_textFont(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15434,7 +15434,7 @@ void impl_SearchAttribute_textFont(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = Font_serializer::read(thisDeserializer); } Opt_Font value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setTextFont(self, (const Opt_Font*)&value_value); + GetNodeModifiers()->getSearchModifier()->setTextFont(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_textFont, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_enterKeyType(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15448,7 +15448,7 @@ void impl_SearchAttribute_enterKeyType(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EnterKeyType value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setEnterKeyType(self, (const Opt_EnterKeyType*)&value_value); + GetNodeModifiers()->getSearchModifier()->setEnterKeyType(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_enterKeyType, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_onSubmit(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15476,7 +15476,7 @@ void impl_SearchAttribute_onSubmit(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Callback_String_Void_SearchSubmitCallback value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setOnSubmit(self, (const Opt_Union_Callback_String_Void_SearchSubmitCallback*)&value_value); + GetNodeModifiers()->getSearchModifier()->setOnSubmit(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_onSubmit, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15490,7 +15490,7 @@ void impl_SearchAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_EditableTextOnChangeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_EditableTextOnChangeCallback))))}; } Opt_EditableTextOnChangeCallback value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setOnChange(self, (const Opt_EditableTextOnChangeCallback*)&value_value); + GetNodeModifiers()->getSearchModifier()->setOnChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_onChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_onTextSelectionChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15504,7 +15504,7 @@ void impl_SearchAttribute_onTextSelectionChange(Ark_NativePointer thisPtr, KSeri value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnTextSelectionChangeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnTextSelectionChangeCallback))))}; } Opt_OnTextSelectionChangeCallback value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setOnTextSelectionChange(self, (const Opt_OnTextSelectionChangeCallback*)&value_value); + GetNodeModifiers()->getSearchModifier()->setOnTextSelectionChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_onTextSelectionChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_onContentScroll(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15518,7 +15518,7 @@ void impl_SearchAttribute_onContentScroll(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnContentScrollCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnContentScrollCallback))))}; } Opt_OnContentScrollCallback value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setOnContentScroll(self, (const Opt_OnContentScrollCallback*)&value_value); + GetNodeModifiers()->getSearchModifier()->setOnContentScroll(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_onContentScroll, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_onCopy(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15532,7 +15532,7 @@ void impl_SearchAttribute_onCopy(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_String_Void))))}; } Opt_Callback_String_Void value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setOnCopy(self, (const Opt_Callback_String_Void*)&value_value); + GetNodeModifiers()->getSearchModifier()->setOnCopy(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_onCopy, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_onCut(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15546,7 +15546,7 @@ void impl_SearchAttribute_onCut(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_String_Void))))}; } Opt_Callback_String_Void value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setOnCut(self, (const Opt_Callback_String_Void*)&value_value); + GetNodeModifiers()->getSearchModifier()->setOnCut(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_onCut, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_onPaste(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15560,7 +15560,7 @@ void impl_SearchAttribute_onPaste(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnPasteCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnPasteCallback))))}; } Opt_OnPasteCallback value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setOnPaste(self, (const Opt_OnPasteCallback*)&value_value); + GetNodeModifiers()->getSearchModifier()->setOnPaste(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_onPaste, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_copyOption(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15574,7 +15574,7 @@ void impl_SearchAttribute_copyOption(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_CopyOptions value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setCopyOption(self, (const Opt_CopyOptions*)&value_value); + GetNodeModifiers()->getSearchModifier()->setCopyOption(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_copyOption, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_maxLength(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15588,7 +15588,7 @@ void impl_SearchAttribute_maxLength(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setMaxLength(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getSearchModifier()->setMaxLength(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_maxLength, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_textAlign(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15602,7 +15602,7 @@ void impl_SearchAttribute_textAlign(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_TextAlign value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setTextAlign(self, (const Opt_TextAlign*)&value_value); + GetNodeModifiers()->getSearchModifier()->setTextAlign(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_textAlign, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_enableKeyboardOnFocus(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15616,7 +15616,7 @@ void impl_SearchAttribute_enableKeyboardOnFocus(Ark_NativePointer thisPtr, KSeri value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setEnableKeyboardOnFocus(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getSearchModifier()->setEnableKeyboardOnFocus(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_enableKeyboardOnFocus, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_selectionMenuHidden(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15630,7 +15630,7 @@ void impl_SearchAttribute_selectionMenuHidden(Ark_NativePointer thisPtr, KSerial value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setSelectionMenuHidden(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getSearchModifier()->setSelectionMenuHidden(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_selectionMenuHidden, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_minFontSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15662,7 +15662,7 @@ void impl_SearchAttribute_minFontSize(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setMinFontSize(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getSearchModifier()->setMinFontSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_minFontSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_maxFontSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15694,7 +15694,7 @@ void impl_SearchAttribute_maxFontSize(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setMaxFontSize(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getSearchModifier()->setMaxFontSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_maxFontSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_minFontScale(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15722,7 +15722,7 @@ void impl_SearchAttribute_minFontScale(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_Resource value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setMinFontScale(self, (const Opt_Union_Number_Resource*)&value_value); + GetNodeModifiers()->getSearchModifier()->setMinFontScale(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_minFontScale, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_maxFontScale(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15750,7 +15750,7 @@ void impl_SearchAttribute_maxFontScale(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_Resource value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setMaxFontScale(self, (const Opt_Union_Number_Resource*)&value_value); + GetNodeModifiers()->getSearchModifier()->setMaxFontScale(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_maxFontScale, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_decoration(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15764,7 +15764,7 @@ void impl_SearchAttribute_decoration(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = TextDecorationOptions_serializer::read(thisDeserializer); } Opt_TextDecorationOptions value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setDecoration(self, (const Opt_TextDecorationOptions*)&value_value); + GetNodeModifiers()->getSearchModifier()->setDecoration(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_decoration, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_letterSpacing(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15796,7 +15796,7 @@ void impl_SearchAttribute_letterSpacing(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setLetterSpacing(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getSearchModifier()->setLetterSpacing(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_letterSpacing, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_lineHeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15828,7 +15828,7 @@ void impl_SearchAttribute_lineHeight(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setLineHeight(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getSearchModifier()->setLineHeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_lineHeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_type(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15842,7 +15842,7 @@ void impl_SearchAttribute_type(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_SearchType value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setType(self, (const Opt_SearchType*)&value_value); + GetNodeModifiers()->getSearchModifier()->setType(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_type, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_fontFeature(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15856,7 +15856,7 @@ void impl_SearchAttribute_fontFeature(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setFontFeature(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getSearchModifier()->setFontFeature(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_fontFeature, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_onWillInsert(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15870,7 +15870,7 @@ void impl_SearchAttribute_onWillInsert(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_InsertValue_Boolean)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_InsertValue_Boolean))))}; } Opt_Callback_InsertValue_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setOnWillInsert(self, (const Opt_Callback_InsertValue_Boolean*)&value_value); + GetNodeModifiers()->getSearchModifier()->setOnWillInsert(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_onWillInsert, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_onDidInsert(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15884,7 +15884,7 @@ void impl_SearchAttribute_onDidInsert(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_InsertValue_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_InsertValue_Void))))}; } Opt_Callback_InsertValue_Void value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setOnDidInsert(self, (const Opt_Callback_InsertValue_Void*)&value_value); + GetNodeModifiers()->getSearchModifier()->setOnDidInsert(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_onDidInsert, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_onWillDelete(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15898,7 +15898,7 @@ void impl_SearchAttribute_onWillDelete(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_DeleteValue_Boolean)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_DeleteValue_Boolean))))}; } Opt_Callback_DeleteValue_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setOnWillDelete(self, (const Opt_Callback_DeleteValue_Boolean*)&value_value); + GetNodeModifiers()->getSearchModifier()->setOnWillDelete(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_onWillDelete, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_onDidDelete(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15912,7 +15912,7 @@ void impl_SearchAttribute_onDidDelete(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_DeleteValue_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_DeleteValue_Void))))}; } Opt_Callback_DeleteValue_Void value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setOnDidDelete(self, (const Opt_Callback_DeleteValue_Void*)&value_value); + GetNodeModifiers()->getSearchModifier()->setOnDidDelete(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_onDidDelete, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_editMenuOptions(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15926,7 +15926,7 @@ void impl_SearchAttribute_editMenuOptions(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = EditMenuOptions_serializer::read(thisDeserializer); } Opt_EditMenuOptions value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setEditMenuOptions(self, (const Opt_EditMenuOptions*)&value_value); + GetNodeModifiers()->getSearchModifier()->setEditMenuOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_editMenuOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_enablePreviewText(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15940,7 +15940,7 @@ void impl_SearchAttribute_enablePreviewText(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setEnablePreviewText(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getSearchModifier()->setEnablePreviewText(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_enablePreviewText, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_enableHapticFeedback(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15954,7 +15954,7 @@ void impl_SearchAttribute_enableHapticFeedback(Ark_NativePointer thisPtr, KSeria value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setEnableHapticFeedback(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getSearchModifier()->setEnableHapticFeedback(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_enableHapticFeedback, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_autoCapitalizationMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15968,7 +15968,7 @@ void impl_SearchAttribute_autoCapitalizationMode(Ark_NativePointer thisPtr, KSer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_AutoCapitalizationMode value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setAutoCapitalizationMode(self, (const Opt_AutoCapitalizationMode*)&value_value); + GetNodeModifiers()->getSearchModifier()->setAutoCapitalizationMode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_autoCapitalizationMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_halfLeading(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15982,7 +15982,7 @@ void impl_SearchAttribute_halfLeading(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setHalfLeading(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getSearchModifier()->setHalfLeading(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_halfLeading, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_stopBackPress(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -15996,7 +15996,7 @@ void impl_SearchAttribute_stopBackPress(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setStopBackPress(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getSearchModifier()->setStopBackPress(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_stopBackPress, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_onWillChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16010,7 +16010,7 @@ void impl_SearchAttribute_onWillChange(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_EditableTextChangeValue_Boolean)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_EditableTextChangeValue_Boolean))))}; } Opt_Callback_EditableTextChangeValue_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setOnWillChange(self, (const Opt_Callback_EditableTextChangeValue_Boolean*)&value_value); + GetNodeModifiers()->getSearchModifier()->setOnWillChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_onWillChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_keyboardAppearance(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16024,7 +16024,7 @@ void impl_SearchAttribute_keyboardAppearance(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_KeyboardAppearance value_value = value_value_buf;; - GetNodeModifiers()->getSearchModifier()->setKeyboardAppearance(self, (const Opt_KeyboardAppearance*)&value_value); + GetNodeModifiers()->getSearchModifier()->setKeyboardAppearance(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_keyboardAppearance, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_searchButton(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16046,7 +16046,7 @@ void impl_SearchAttribute_searchButton(Ark_NativePointer thisPtr, KSerializerBuf option_value_buf.value = SearchButtonOptions_serializer::read(thisDeserializer); } Opt_SearchButtonOptions option_value = option_value_buf;; - GetNodeModifiers()->getSearchModifier()->setSearchButton(self, (const Opt_String*)&value_value, (const Opt_SearchButtonOptions*)&option_value); + GetNodeModifiers()->getSearchModifier()->setSearchButton(self, reinterpret_cast(&value_value), reinterpret_cast(&option_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_searchButton, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_inputFilter(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16082,7 +16082,7 @@ void impl_SearchAttribute_inputFilter(Ark_NativePointer thisPtr, KSerializerBuff error_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_String_Void))))}; } Opt_Callback_String_Void error_value = error_value_buf;; - GetNodeModifiers()->getSearchModifier()->setInputFilter(self, (const Opt_ResourceStr*)&value_value, (const Opt_Callback_String_Void*)&error_value); + GetNodeModifiers()->getSearchModifier()->setInputFilter(self, reinterpret_cast(&value_value), reinterpret_cast(&error_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_inputFilter, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SearchAttribute_customKeyboard(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16104,7 +16104,7 @@ void impl_SearchAttribute_customKeyboard(Ark_NativePointer thisPtr, KSerializerB options_value_buf.value = KeyboardOptions_serializer::read(thisDeserializer); } Opt_KeyboardOptions options_value = options_value_buf;; - GetNodeModifiers()->getSearchModifier()->setCustomKeyboard(self, (const Opt_CustomNodeBuilder*)&value_value, (const Opt_KeyboardOptions*)&options_value); + GetNodeModifiers()->getSearchModifier()->setCustomKeyboard(self, reinterpret_cast(&value_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(SearchAttribute_customKeyboard, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_SecurityComponentMethod_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -16140,7 +16140,7 @@ void impl_SecurityComponentMethod_iconSize(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = static_cast(value_value_buf_); } Opt_Dimension value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setIconSize(self, (const Opt_Dimension*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setIconSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_iconSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_layoutDirection(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16154,7 +16154,7 @@ void impl_SecurityComponentMethod_layoutDirection(Ark_NativePointer thisPtr, KSe value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_SecurityComponentLayoutDirection value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setLayoutDirection(self, (const Opt_SecurityComponentLayoutDirection*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setLayoutDirection(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_layoutDirection, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_position(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16168,7 +16168,7 @@ void impl_SecurityComponentMethod_position(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = Position_serializer::read(thisDeserializer); } Opt_Position value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setPosition(self, (const Opt_Position*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setPosition(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_position, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_markAnchor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16182,7 +16182,7 @@ void impl_SecurityComponentMethod_markAnchor(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = Position_serializer::read(thisDeserializer); } Opt_Position value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setMarkAnchor(self, (const Opt_Position*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setMarkAnchor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_markAnchor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_offset(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16214,7 +16214,7 @@ void impl_SecurityComponentMethod_offset(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Position_Edges_LocalizedEdges value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setOffset(self, (const Opt_Union_Position_Edges_LocalizedEdges*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setOffset(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_offset, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_fontSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16246,7 +16246,7 @@ void impl_SecurityComponentMethod_fontSize(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = static_cast(value_value_buf_); } Opt_Dimension value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setFontSize(self, (const Opt_Dimension*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setFontSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_fontSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_fontStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16260,7 +16260,7 @@ void impl_SecurityComponentMethod_fontStyle(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_FontStyle value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setFontStyle(self, (const Opt_FontStyle*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setFontStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_fontStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_fontWeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16292,7 +16292,7 @@ void impl_SecurityComponentMethod_fontWeight(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_I32_FontWeight_String value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setFontWeight(self, (const Opt_Union_I32_FontWeight_String*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setFontWeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_fontWeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_fontFamily(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16320,7 +16320,7 @@ void impl_SecurityComponentMethod_fontFamily(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setFontFamily(self, (const Opt_Union_String_Resource*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setFontFamily(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_fontFamily, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_fontColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16356,7 +16356,7 @@ void impl_SecurityComponentMethod_fontColor(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setFontColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setFontColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_fontColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_iconColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16392,7 +16392,7 @@ void impl_SecurityComponentMethod_iconColor(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setIconColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setIconColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_iconColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_backgroundColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16428,7 +16428,7 @@ void impl_SecurityComponentMethod_backgroundColor(Ark_NativePointer thisPtr, KSe value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setBackgroundColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setBackgroundColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_backgroundColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_borderStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16442,7 +16442,7 @@ void impl_SecurityComponentMethod_borderStyle(Ark_NativePointer thisPtr, KSerial value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_BorderStyle value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setBorderStyle(self, (const Opt_BorderStyle*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setBorderStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_borderStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_borderWidth(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16474,7 +16474,7 @@ void impl_SecurityComponentMethod_borderWidth(Ark_NativePointer thisPtr, KSerial value_value_buf.value = static_cast(value_value_buf_); } Opt_Dimension value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setBorderWidth(self, (const Opt_Dimension*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setBorderWidth(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_borderWidth, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_borderColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16510,7 +16510,7 @@ void impl_SecurityComponentMethod_borderColor(Ark_NativePointer thisPtr, KSerial value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setBorderColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setBorderColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_borderColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_borderRadius(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16542,7 +16542,7 @@ void impl_SecurityComponentMethod_borderRadius(Ark_NativePointer thisPtr, KSeria value_value_buf.value = static_cast(value_value_buf_); } Opt_Dimension value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setBorderRadius(self, (const Opt_Dimension*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setBorderRadius(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_borderRadius, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_padding(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16588,7 +16588,7 @@ void impl_SecurityComponentMethod_padding(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Padding_Dimension value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setPadding(self, (const Opt_Union_Padding_Dimension*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setPadding(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_padding, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_textIconSpace(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16620,7 +16620,7 @@ void impl_SecurityComponentMethod_textIconSpace(Ark_NativePointer thisPtr, KSeri value_value_buf.value = static_cast(value_value_buf_); } Opt_Dimension value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setTextIconSpace(self, (const Opt_Dimension*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setTextIconSpace(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_textIconSpace, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_key(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16634,7 +16634,7 @@ void impl_SecurityComponentMethod_key(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setKey(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setKey(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_key, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_width(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16666,7 +16666,7 @@ void impl_SecurityComponentMethod_width(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setWidth(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setWidth(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_width, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_height(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16698,7 +16698,7 @@ void impl_SecurityComponentMethod_height(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setHeight(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setHeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_height, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_size(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16712,7 +16712,7 @@ void impl_SecurityComponentMethod_size(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = SizeOptions_serializer::read(thisDeserializer); } Opt_SizeOptions value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setSize(self, (const Opt_SizeOptions*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_size, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_constraintSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16726,7 +16726,7 @@ void impl_SecurityComponentMethod_constraintSize(Ark_NativePointer thisPtr, KSer value_value_buf.value = ConstraintSizeOptions_serializer::read(thisDeserializer); } Opt_ConstraintSizeOptions value_value = value_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setConstraintSize(self, (const Opt_ConstraintSizeOptions*)&value_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setConstraintSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_constraintSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_align(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16740,7 +16740,7 @@ void impl_SecurityComponentMethod_align(Ark_NativePointer thisPtr, KSerializerBu alignType_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_Alignment alignType_value = alignType_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setAlign(self, (const Opt_Alignment*)&alignType_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setAlign(self, reinterpret_cast(&alignType_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_align, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_alignRules0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16754,7 +16754,7 @@ void impl_SecurityComponentMethod_alignRules0(Ark_NativePointer thisPtr, KSerial alignRule_value_buf.value = AlignRuleOption_serializer::read(thisDeserializer); } Opt_AlignRuleOption alignRule_value = alignRule_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setAlignRules0(self, (const Opt_AlignRuleOption*)&alignRule_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setAlignRules0(self, reinterpret_cast(&alignRule_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_alignRules0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_alignRules1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16768,7 +16768,7 @@ void impl_SecurityComponentMethod_alignRules1(Ark_NativePointer thisPtr, KSerial alignRule_value_buf.value = LocalizedAlignRuleOptions_serializer::read(thisDeserializer); } Opt_LocalizedAlignRuleOptions alignRule_value = alignRule_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setAlignRules1(self, (const Opt_LocalizedAlignRuleOptions*)&alignRule_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setAlignRules1(self, reinterpret_cast(&alignRule_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_alignRules1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_id(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16782,7 +16782,7 @@ void impl_SecurityComponentMethod_id(Ark_NativePointer thisPtr, KSerializerBuffe description_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String description_value = description_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setId(self, (const Opt_String*)&description_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setId(self, reinterpret_cast(&description_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_id, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_chainMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16804,7 +16804,7 @@ void impl_SecurityComponentMethod_chainMode(Ark_NativePointer thisPtr, KSerializ style_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ChainStyle style_value = style_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setChainMode(self, (const Opt_Axis*)&direction_value, (const Opt_ChainStyle*)&style_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setChainMode(self, reinterpret_cast(&direction_value), reinterpret_cast(&style_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_chainMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_minFontScale(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16832,7 +16832,7 @@ void impl_SecurityComponentMethod_minFontScale(Ark_NativePointer thisPtr, KSeria scale_value_buf.value = static_cast(scale_value_buf_); } Opt_Union_Number_Resource scale_value = scale_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setMinFontScale(self, (const Opt_Union_Number_Resource*)&scale_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setMinFontScale(self, reinterpret_cast(&scale_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_minFontScale, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_maxFontScale(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16860,7 +16860,7 @@ void impl_SecurityComponentMethod_maxFontScale(Ark_NativePointer thisPtr, KSeria scale_value_buf.value = static_cast(scale_value_buf_); } Opt_Union_Number_Resource scale_value = scale_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setMaxFontScale(self, (const Opt_Union_Number_Resource*)&scale_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setMaxFontScale(self, reinterpret_cast(&scale_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_maxFontScale, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_maxLines(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16874,7 +16874,7 @@ void impl_SecurityComponentMethod_maxLines(Ark_NativePointer thisPtr, KSerialize line_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number line_value = line_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setMaxLines(self, (const Opt_Number*)&line_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setMaxLines(self, reinterpret_cast(&line_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_maxLines, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_minFontSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16906,7 +16906,7 @@ void impl_SecurityComponentMethod_minFontSize(Ark_NativePointer thisPtr, KSerial minSize_value_buf.value = static_cast(minSize_value_buf_); } Opt_Union_Number_String_Resource minSize_value = minSize_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setMinFontSize(self, (const Opt_Union_Number_String_Resource*)&minSize_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setMinFontSize(self, reinterpret_cast(&minSize_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_minFontSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_maxFontSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16938,7 +16938,7 @@ void impl_SecurityComponentMethod_maxFontSize(Ark_NativePointer thisPtr, KSerial maxSize_value_buf.value = static_cast(maxSize_value_buf_); } Opt_Union_Number_String_Resource maxSize_value = maxSize_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setMaxFontSize(self, (const Opt_Union_Number_String_Resource*)&maxSize_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setMaxFontSize(self, reinterpret_cast(&maxSize_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_maxFontSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_heightAdaptivePolicy(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16952,7 +16952,7 @@ void impl_SecurityComponentMethod_heightAdaptivePolicy(Ark_NativePointer thisPtr policy_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_TextHeightAdaptivePolicy policy_value = policy_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setHeightAdaptivePolicy(self, (const Opt_TextHeightAdaptivePolicy*)&policy_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setHeightAdaptivePolicy(self, reinterpret_cast(&policy_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_heightAdaptivePolicy, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SecurityComponentMethod_enabled(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -16966,7 +16966,7 @@ void impl_SecurityComponentMethod_enabled(Ark_NativePointer thisPtr, KSerializer respond_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean respond_value = respond_value_buf;; - GetNodeModifiers()->getSecurityComponentMethodModifier()->setEnabled(self, (const Opt_Boolean*)&respond_value); + GetNodeModifiers()->getSecurityComponentMethodModifier()->setEnabled(self, reinterpret_cast(&respond_value)); } KOALA_INTEROP_DIRECT_V3(SecurityComponentMethod_enabled, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Select_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -16984,7 +16984,7 @@ void impl_SelectInterface_setSelectOptions(Ark_NativePointer thisPtr, KSerialize options_value_buf.array[options_value_buf_i] = SelectOption_serializer::read(thisDeserializer); } Array_SelectOption options_value = options_value_buf;; - GetNodeModifiers()->getSelectModifier()->setSelectOptions(self, (const Array_SelectOption*)&options_value); + GetNodeModifiers()->getSelectModifier()->setSelectOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(SelectInterface_setSelectOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_selected(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17012,7 +17012,7 @@ void impl_SelectAttribute_selected(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_Resource value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setSelected(self, (const Opt_Union_Number_Resource*)&value_value); + GetNodeModifiers()->getSelectModifier()->setSelected(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_selected, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_value(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17058,7 +17058,7 @@ void impl_SelectAttribute_value(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_ResourceStr_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setValue(self, (const Opt_Union_ResourceStr_String_Resource*)&value_value); + GetNodeModifiers()->getSelectModifier()->setValue(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_value, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_font(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17072,7 +17072,7 @@ void impl_SelectAttribute_font(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = Font_serializer::read(thisDeserializer); } Opt_Font value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setFont(self, (const Opt_Font*)&value_value); + GetNodeModifiers()->getSelectModifier()->setFont(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_font, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17108,7 +17108,7 @@ void impl_SelectAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setFontColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getSelectModifier()->setFontColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_fontColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_selectedOptionBgColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17144,7 +17144,7 @@ void impl_SelectAttribute_selectedOptionBgColor(Ark_NativePointer thisPtr, KSeri value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setSelectedOptionBgColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getSelectModifier()->setSelectedOptionBgColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_selectedOptionBgColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_selectedOptionFont(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17158,7 +17158,7 @@ void impl_SelectAttribute_selectedOptionFont(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = Font_serializer::read(thisDeserializer); } Opt_Font value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setSelectedOptionFont(self, (const Opt_Font*)&value_value); + GetNodeModifiers()->getSelectModifier()->setSelectedOptionFont(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_selectedOptionFont, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_selectedOptionFontColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17194,7 +17194,7 @@ void impl_SelectAttribute_selectedOptionFontColor(Ark_NativePointer thisPtr, KSe value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setSelectedOptionFontColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getSelectModifier()->setSelectedOptionFontColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_selectedOptionFontColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_optionBgColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17230,7 +17230,7 @@ void impl_SelectAttribute_optionBgColor(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setOptionBgColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getSelectModifier()->setOptionBgColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_optionBgColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_optionFont(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17244,7 +17244,7 @@ void impl_SelectAttribute_optionFont(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = Font_serializer::read(thisDeserializer); } Opt_Font value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setOptionFont(self, (const Opt_Font*)&value_value); + GetNodeModifiers()->getSelectModifier()->setOptionFont(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_optionFont, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_optionFontColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17280,7 +17280,7 @@ void impl_SelectAttribute_optionFontColor(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setOptionFontColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getSelectModifier()->setOptionFontColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_optionFontColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_onSelect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17294,7 +17294,7 @@ void impl_SelectAttribute_onSelect(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnSelectCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnSelectCallback))))}; } Opt_OnSelectCallback value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setOnSelect(self, (const Opt_OnSelectCallback*)&value_value); + GetNodeModifiers()->getSelectModifier()->setOnSelect(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_onSelect, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_space(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17326,7 +17326,7 @@ void impl_SelectAttribute_space(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setSpace(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getSelectModifier()->setSpace(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_space, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_arrowPosition(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17340,7 +17340,7 @@ void impl_SelectAttribute_arrowPosition(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ArrowPosition value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setArrowPosition(self, (const Opt_ArrowPosition*)&value_value); + GetNodeModifiers()->getSelectModifier()->setArrowPosition(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_arrowPosition, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_optionWidth(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17386,7 +17386,7 @@ void impl_SelectAttribute_optionWidth(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Dimension_OptionWidthMode value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setOptionWidth(self, (const Opt_Union_Dimension_OptionWidthMode*)&value_value); + GetNodeModifiers()->getSelectModifier()->setOptionWidth(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_optionWidth, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_optionHeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17418,7 +17418,7 @@ void impl_SelectAttribute_optionHeight(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_Dimension value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setOptionHeight(self, (const Opt_Dimension*)&value_value); + GetNodeModifiers()->getSelectModifier()->setOptionHeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_optionHeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_menuBackgroundColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17454,7 +17454,7 @@ void impl_SelectAttribute_menuBackgroundColor(Ark_NativePointer thisPtr, KSerial value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setMenuBackgroundColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getSelectModifier()->setMenuBackgroundColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_menuBackgroundColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_menuBackgroundBlurStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17468,7 +17468,7 @@ void impl_SelectAttribute_menuBackgroundBlurStyle(Ark_NativePointer thisPtr, KSe value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_BlurStyle value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setMenuBackgroundBlurStyle(self, (const Opt_BlurStyle*)&value_value); + GetNodeModifiers()->getSelectModifier()->setMenuBackgroundBlurStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_menuBackgroundBlurStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_controlSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17482,7 +17482,7 @@ void impl_SelectAttribute_controlSize(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ControlSize value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setControlSize(self, (const Opt_ControlSize*)&value_value); + GetNodeModifiers()->getSelectModifier()->setControlSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_controlSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_menuItemContentModifier(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17496,7 +17496,7 @@ void impl_SelectAttribute_menuItemContentModifier(Ark_NativePointer thisPtr, KSe value_value_buf.value = static_cast(thisDeserializer.readObject()); } Opt_ContentModifier value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setMenuItemContentModifier(self, (const Opt_ContentModifier*)&value_value); + GetNodeModifiers()->getSelectModifier()->setMenuItemContentModifier(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_menuItemContentModifier, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_divider(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17510,7 +17510,7 @@ void impl_SelectAttribute_divider(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = DividerOptions_serializer::read(thisDeserializer); } Opt_DividerOptions value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setDivider(self, (const Opt_DividerOptions*)&value_value); + GetNodeModifiers()->getSelectModifier()->setDivider(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_divider, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_textModifier(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17524,7 +17524,7 @@ void impl_SelectAttribute_textModifier(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = TextModifier_serializer::read(thisDeserializer); } Opt_TextModifier value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setTextModifier(self, (const Opt_TextModifier*)&value_value); + GetNodeModifiers()->getSelectModifier()->setTextModifier(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_textModifier, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_arrowModifier(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17538,7 +17538,7 @@ void impl_SelectAttribute_arrowModifier(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = SymbolGlyphModifier_serializer::read(thisDeserializer); } Opt_SymbolGlyphModifier value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setArrowModifier(self, (const Opt_SymbolGlyphModifier*)&value_value); + GetNodeModifiers()->getSelectModifier()->setArrowModifier(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_arrowModifier, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_optionTextModifier(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17552,7 +17552,7 @@ void impl_SelectAttribute_optionTextModifier(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = TextModifier_serializer::read(thisDeserializer); } Opt_TextModifier value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setOptionTextModifier(self, (const Opt_TextModifier*)&value_value); + GetNodeModifiers()->getSelectModifier()->setOptionTextModifier(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_optionTextModifier, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_selectedOptionTextModifier(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17566,7 +17566,7 @@ void impl_SelectAttribute_selectedOptionTextModifier(Ark_NativePointer thisPtr, value_value_buf.value = TextModifier_serializer::read(thisDeserializer); } Opt_TextModifier value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setSelectedOptionTextModifier(self, (const Opt_TextModifier*)&value_value); + GetNodeModifiers()->getSelectModifier()->setSelectedOptionTextModifier(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_selectedOptionTextModifier, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_dividerStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17580,7 +17580,7 @@ void impl_SelectAttribute_dividerStyle(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = DividerStyleOptions_serializer::read(thisDeserializer); } Opt_DividerStyleOptions value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setDividerStyle(self, (const Opt_DividerStyleOptions*)&value_value); + GetNodeModifiers()->getSelectModifier()->setDividerStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_dividerStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_avoidance(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17594,7 +17594,7 @@ void impl_SelectAttribute_avoidance(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_AvoidanceMode value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setAvoidance(self, (const Opt_AvoidanceMode*)&value_value); + GetNodeModifiers()->getSelectModifier()->setAvoidance(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_avoidance, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_menuOutline(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17608,7 +17608,7 @@ void impl_SelectAttribute_menuOutline(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = MenuOutlineOptions_serializer::read(thisDeserializer); } Opt_MenuOutlineOptions value_value = value_value_buf;; - GetNodeModifiers()->getSelectModifier()->setMenuOutline(self, (const Opt_MenuOutlineOptions*)&value_value); + GetNodeModifiers()->getSelectModifier()->setMenuOutline(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_menuOutline, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SelectAttribute_menuAlign(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17630,7 +17630,7 @@ void impl_SelectAttribute_menuAlign(Ark_NativePointer thisPtr, KSerializerBuffer offset_value_buf.value = Offset_serializer::read(thisDeserializer); } Opt_Offset offset_value = offset_value_buf;; - GetNodeModifiers()->getSelectModifier()->setMenuAlign(self, (const Opt_MenuAlignType*)&alignType_value, (const Opt_Offset*)&offset_value); + GetNodeModifiers()->getSelectModifier()->setMenuAlign(self, reinterpret_cast(&alignType_value), reinterpret_cast(&offset_value)); } KOALA_INTEROP_DIRECT_V3(SelectAttribute_menuAlign, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Shape_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -17648,7 +17648,7 @@ void impl_ShapeInterface_setShapeOptions(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(image_PixelMap_serializer::read(thisDeserializer)); } Opt_image_PixelMap value_value = value_value_buf;; - GetNodeModifiers()->getShapeModifier()->setShapeOptions(self, (const Opt_image_PixelMap*)&value_value); + GetNodeModifiers()->getShapeModifier()->setShapeOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ShapeInterface_setShapeOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ShapeAttribute_viewPort(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17662,7 +17662,7 @@ void impl_ShapeAttribute_viewPort(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = ViewportRect_serializer::read(thisDeserializer); } Opt_ViewportRect value_value = value_value_buf;; - GetNodeModifiers()->getShapeModifier()->setViewPort(self, (const Opt_ViewportRect*)&value_value); + GetNodeModifiers()->getShapeModifier()->setViewPort(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ShapeAttribute_viewPort, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ShapeAttribute_stroke(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17698,7 +17698,7 @@ void impl_ShapeAttribute_stroke(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getShapeModifier()->setStroke(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getShapeModifier()->setStroke(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ShapeAttribute_stroke, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ShapeAttribute_fill(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17734,7 +17734,7 @@ void impl_ShapeAttribute_fill(Ark_NativePointer thisPtr, KSerializerBuffer thisA value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getShapeModifier()->setFill(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getShapeModifier()->setFill(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ShapeAttribute_fill, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ShapeAttribute_strokeDashOffset(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17762,7 +17762,7 @@ void impl_ShapeAttribute_strokeDashOffset(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String value_value = value_value_buf;; - GetNodeModifiers()->getShapeModifier()->setStrokeDashOffset(self, (const Opt_Union_Number_String*)&value_value); + GetNodeModifiers()->getShapeModifier()->setStrokeDashOffset(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ShapeAttribute_strokeDashOffset, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ShapeAttribute_strokeDashArray(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17801,7 +17801,7 @@ void impl_ShapeAttribute_strokeDashArray(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = value_value_buf_; } Opt_Array_Length value_value = value_value_buf;; - GetNodeModifiers()->getShapeModifier()->setStrokeDashArray(self, (const Opt_Array_Length*)&value_value); + GetNodeModifiers()->getShapeModifier()->setStrokeDashArray(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ShapeAttribute_strokeDashArray, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ShapeAttribute_strokeLineCap(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17815,7 +17815,7 @@ void impl_ShapeAttribute_strokeLineCap(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_LineCapStyle value_value = value_value_buf;; - GetNodeModifiers()->getShapeModifier()->setStrokeLineCap(self, (const Opt_LineCapStyle*)&value_value); + GetNodeModifiers()->getShapeModifier()->setStrokeLineCap(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ShapeAttribute_strokeLineCap, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ShapeAttribute_strokeLineJoin(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17829,7 +17829,7 @@ void impl_ShapeAttribute_strokeLineJoin(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_LineJoinStyle value_value = value_value_buf;; - GetNodeModifiers()->getShapeModifier()->setStrokeLineJoin(self, (const Opt_LineJoinStyle*)&value_value); + GetNodeModifiers()->getShapeModifier()->setStrokeLineJoin(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ShapeAttribute_strokeLineJoin, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ShapeAttribute_strokeMiterLimit(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17857,7 +17857,7 @@ void impl_ShapeAttribute_strokeMiterLimit(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String value_value = value_value_buf;; - GetNodeModifiers()->getShapeModifier()->setStrokeMiterLimit(self, (const Opt_Union_Number_String*)&value_value); + GetNodeModifiers()->getShapeModifier()->setStrokeMiterLimit(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ShapeAttribute_strokeMiterLimit, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ShapeAttribute_strokeOpacity(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17889,7 +17889,7 @@ void impl_ShapeAttribute_strokeOpacity(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getShapeModifier()->setStrokeOpacity(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getShapeModifier()->setStrokeOpacity(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ShapeAttribute_strokeOpacity, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ShapeAttribute_fillOpacity(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17921,7 +17921,7 @@ void impl_ShapeAttribute_fillOpacity(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getShapeModifier()->setFillOpacity(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getShapeModifier()->setFillOpacity(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ShapeAttribute_fillOpacity, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ShapeAttribute_strokeWidth(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17949,7 +17949,7 @@ void impl_ShapeAttribute_strokeWidth(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String value_value = value_value_buf;; - GetNodeModifiers()->getShapeModifier()->setStrokeWidth(self, (const Opt_Union_Number_String*)&value_value); + GetNodeModifiers()->getShapeModifier()->setStrokeWidth(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ShapeAttribute_strokeWidth, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ShapeAttribute_antiAlias(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -17963,7 +17963,7 @@ void impl_ShapeAttribute_antiAlias(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getShapeModifier()->setAntiAlias(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getShapeModifier()->setAntiAlias(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ShapeAttribute_antiAlias, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ShapeAttribute_mesh(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18000,7 +18000,7 @@ void impl_ShapeAttribute_mesh(Ark_NativePointer thisPtr, KSerializerBuffer thisA row_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number row_value = row_value_buf;; - GetNodeModifiers()->getShapeModifier()->setMesh(self, (const Opt_Array_Number*)&value_value, (const Opt_Number*)&column_value, (const Opt_Number*)&row_value); + GetNodeModifiers()->getShapeModifier()->setMesh(self, reinterpret_cast(&value_value), reinterpret_cast(&column_value), reinterpret_cast(&row_value)); } KOALA_INTEROP_DIRECT_V3(ShapeAttribute_mesh, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_SideBarContainer_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -18018,7 +18018,7 @@ void impl_SideBarContainerInterface_setSideBarContainerOptions(Ark_NativePointer type_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_SideBarContainerType type_value = type_value_buf;; - GetNodeModifiers()->getSideBarContainerModifier()->setSideBarContainerOptions(self, (const Opt_SideBarContainerType*)&type_value); + GetNodeModifiers()->getSideBarContainerModifier()->setSideBarContainerOptions(self, reinterpret_cast(&type_value)); } KOALA_INTEROP_DIRECT_V3(SideBarContainerInterface_setSideBarContainerOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SideBarContainerAttribute_showSideBar(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18032,7 +18032,7 @@ void impl_SideBarContainerAttribute_showSideBar(Ark_NativePointer thisPtr, KSeri value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getSideBarContainerModifier()->setShowSideBar(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getSideBarContainerModifier()->setShowSideBar(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SideBarContainerAttribute_showSideBar, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SideBarContainerAttribute_controlButton(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18046,7 +18046,7 @@ void impl_SideBarContainerAttribute_controlButton(Ark_NativePointer thisPtr, KSe value_value_buf.value = ButtonStyle_serializer::read(thisDeserializer); } Opt_ButtonStyle value_value = value_value_buf;; - GetNodeModifiers()->getSideBarContainerModifier()->setControlButton(self, (const Opt_ButtonStyle*)&value_value); + GetNodeModifiers()->getSideBarContainerModifier()->setControlButton(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SideBarContainerAttribute_controlButton, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SideBarContainerAttribute_showControlButton(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18060,7 +18060,7 @@ void impl_SideBarContainerAttribute_showControlButton(Ark_NativePointer thisPtr, value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getSideBarContainerModifier()->setShowControlButton(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getSideBarContainerModifier()->setShowControlButton(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SideBarContainerAttribute_showControlButton, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SideBarContainerAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18074,7 +18074,7 @@ void impl_SideBarContainerAttribute_onChange(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Boolean_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Boolean_Void))))}; } Opt_Callback_Boolean_Void value_value = value_value_buf;; - GetNodeModifiers()->getSideBarContainerModifier()->setOnChange(self, (const Opt_Callback_Boolean_Void*)&value_value); + GetNodeModifiers()->getSideBarContainerModifier()->setOnChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SideBarContainerAttribute_onChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SideBarContainerAttribute_sideBarWidth0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18088,7 +18088,7 @@ void impl_SideBarContainerAttribute_sideBarWidth0(Ark_NativePointer thisPtr, KSe value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getSideBarContainerModifier()->setSideBarWidth0(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getSideBarContainerModifier()->setSideBarWidth0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SideBarContainerAttribute_sideBarWidth0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SideBarContainerAttribute_sideBarWidth1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18120,7 +18120,7 @@ void impl_SideBarContainerAttribute_sideBarWidth1(Ark_NativePointer thisPtr, KSe value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getSideBarContainerModifier()->setSideBarWidth1(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getSideBarContainerModifier()->setSideBarWidth1(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SideBarContainerAttribute_sideBarWidth1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SideBarContainerAttribute_minSideBarWidth0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18134,7 +18134,7 @@ void impl_SideBarContainerAttribute_minSideBarWidth0(Ark_NativePointer thisPtr, value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getSideBarContainerModifier()->setMinSideBarWidth0(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getSideBarContainerModifier()->setMinSideBarWidth0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SideBarContainerAttribute_minSideBarWidth0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SideBarContainerAttribute_minSideBarWidth1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18166,7 +18166,7 @@ void impl_SideBarContainerAttribute_minSideBarWidth1(Ark_NativePointer thisPtr, value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getSideBarContainerModifier()->setMinSideBarWidth1(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getSideBarContainerModifier()->setMinSideBarWidth1(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SideBarContainerAttribute_minSideBarWidth1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SideBarContainerAttribute_maxSideBarWidth0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18180,7 +18180,7 @@ void impl_SideBarContainerAttribute_maxSideBarWidth0(Ark_NativePointer thisPtr, value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getSideBarContainerModifier()->setMaxSideBarWidth0(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getSideBarContainerModifier()->setMaxSideBarWidth0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SideBarContainerAttribute_maxSideBarWidth0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SideBarContainerAttribute_maxSideBarWidth1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18212,7 +18212,7 @@ void impl_SideBarContainerAttribute_maxSideBarWidth1(Ark_NativePointer thisPtr, value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getSideBarContainerModifier()->setMaxSideBarWidth1(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getSideBarContainerModifier()->setMaxSideBarWidth1(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SideBarContainerAttribute_maxSideBarWidth1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SideBarContainerAttribute_autoHide(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18226,7 +18226,7 @@ void impl_SideBarContainerAttribute_autoHide(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getSideBarContainerModifier()->setAutoHide(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getSideBarContainerModifier()->setAutoHide(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SideBarContainerAttribute_autoHide, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SideBarContainerAttribute_sideBarPosition(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18240,7 +18240,7 @@ void impl_SideBarContainerAttribute_sideBarPosition(Ark_NativePointer thisPtr, K value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_SideBarPosition value_value = value_value_buf;; - GetNodeModifiers()->getSideBarContainerModifier()->setSideBarPosition(self, (const Opt_SideBarPosition*)&value_value); + GetNodeModifiers()->getSideBarContainerModifier()->setSideBarPosition(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SideBarContainerAttribute_sideBarPosition, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SideBarContainerAttribute_divider(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18254,7 +18254,7 @@ void impl_SideBarContainerAttribute_divider(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = DividerStyle_serializer::read(thisDeserializer); } Opt_DividerStyle value_value = value_value_buf;; - GetNodeModifiers()->getSideBarContainerModifier()->setDivider(self, (const Opt_DividerStyle*)&value_value); + GetNodeModifiers()->getSideBarContainerModifier()->setDivider(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SideBarContainerAttribute_divider, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SideBarContainerAttribute_minContentWidth(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18286,7 +18286,7 @@ void impl_SideBarContainerAttribute_minContentWidth(Ark_NativePointer thisPtr, K value_value_buf.value = static_cast(value_value_buf_); } Opt_Dimension value_value = value_value_buf;; - GetNodeModifiers()->getSideBarContainerModifier()->setMinContentWidth(self, (const Opt_Dimension*)&value_value); + GetNodeModifiers()->getSideBarContainerModifier()->setMinContentWidth(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SideBarContainerAttribute_minContentWidth, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Slider_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -18304,7 +18304,7 @@ void impl_SliderInterface_setSliderOptions(Ark_NativePointer thisPtr, KSerialize options_value_buf.value = SliderOptions_serializer::read(thisDeserializer); } Opt_SliderOptions options_value = options_value_buf;; - GetNodeModifiers()->getSliderModifier()->setSliderOptions(self, (const Opt_SliderOptions*)&options_value); + GetNodeModifiers()->getSliderModifier()->setSliderOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(SliderInterface_setSliderOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SliderAttribute_blockColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18340,7 +18340,7 @@ void impl_SliderAttribute_blockColor(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getSliderModifier()->setBlockColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getSliderModifier()->setBlockColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SliderAttribute_blockColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SliderAttribute_trackColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18390,7 +18390,7 @@ void impl_SliderAttribute_trackColor(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_ResourceColor_LinearGradient value_value = value_value_buf;; - GetNodeModifiers()->getSliderModifier()->setTrackColor(self, (const Opt_Union_ResourceColor_LinearGradient*)&value_value); + GetNodeModifiers()->getSliderModifier()->setTrackColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SliderAttribute_trackColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SliderAttribute_selectedColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18440,7 +18440,7 @@ void impl_SliderAttribute_selectedColor(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_ResourceColor_LinearGradient value_value = value_value_buf;; - GetNodeModifiers()->getSliderModifier()->setSelectedColor(self, (const Opt_Union_ResourceColor_LinearGradient*)&value_value); + GetNodeModifiers()->getSliderModifier()->setSelectedColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SliderAttribute_selectedColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SliderAttribute_showSteps(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18454,7 +18454,7 @@ void impl_SliderAttribute_showSteps(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getSliderModifier()->setShowSteps(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getSliderModifier()->setShowSteps(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SliderAttribute_showSteps, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SliderAttribute_trackThickness(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18486,7 +18486,7 @@ void impl_SliderAttribute_trackThickness(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getSliderModifier()->setTrackThickness(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getSliderModifier()->setTrackThickness(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SliderAttribute_trackThickness, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SliderAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18500,7 +18500,7 @@ void impl_SliderAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_SliderChangeMode_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_SliderChangeMode_Void))))}; } Opt_Callback_Number_SliderChangeMode_Void value_value = value_value_buf;; - GetNodeModifiers()->getSliderModifier()->setOnChange(self, (const Opt_Callback_Number_SliderChangeMode_Void*)&value_value); + GetNodeModifiers()->getSliderModifier()->setOnChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SliderAttribute_onChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SliderAttribute_blockBorderColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18536,7 +18536,7 @@ void impl_SliderAttribute_blockBorderColor(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getSliderModifier()->setBlockBorderColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getSliderModifier()->setBlockBorderColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SliderAttribute_blockBorderColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SliderAttribute_blockBorderWidth(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18568,7 +18568,7 @@ void impl_SliderAttribute_blockBorderWidth(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getSliderModifier()->setBlockBorderWidth(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getSliderModifier()->setBlockBorderWidth(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SliderAttribute_blockBorderWidth, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SliderAttribute_stepColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18604,7 +18604,7 @@ void impl_SliderAttribute_stepColor(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getSliderModifier()->setStepColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getSliderModifier()->setStepColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SliderAttribute_stepColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SliderAttribute_trackBorderRadius(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18636,7 +18636,7 @@ void impl_SliderAttribute_trackBorderRadius(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getSliderModifier()->setTrackBorderRadius(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getSliderModifier()->setTrackBorderRadius(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SliderAttribute_trackBorderRadius, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SliderAttribute_selectedBorderRadius(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18668,7 +18668,7 @@ void impl_SliderAttribute_selectedBorderRadius(Ark_NativePointer thisPtr, KSeria value_value_buf.value = static_cast(value_value_buf_); } Opt_Dimension value_value = value_value_buf;; - GetNodeModifiers()->getSliderModifier()->setSelectedBorderRadius(self, (const Opt_Dimension*)&value_value); + GetNodeModifiers()->getSliderModifier()->setSelectedBorderRadius(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SliderAttribute_selectedBorderRadius, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SliderAttribute_blockSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18682,7 +18682,7 @@ void impl_SliderAttribute_blockSize(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = SizeOptions_serializer::read(thisDeserializer); } Opt_SizeOptions value_value = value_value_buf;; - GetNodeModifiers()->getSliderModifier()->setBlockSize(self, (const Opt_SizeOptions*)&value_value); + GetNodeModifiers()->getSliderModifier()->setBlockSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SliderAttribute_blockSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SliderAttribute_blockStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18696,7 +18696,7 @@ void impl_SliderAttribute_blockStyle(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = SliderBlockStyle_serializer::read(thisDeserializer); } Opt_SliderBlockStyle value_value = value_value_buf;; - GetNodeModifiers()->getSliderModifier()->setBlockStyle(self, (const Opt_SliderBlockStyle*)&value_value); + GetNodeModifiers()->getSliderModifier()->setBlockStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SliderAttribute_blockStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SliderAttribute_stepSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18728,7 +18728,7 @@ void impl_SliderAttribute_stepSize(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getSliderModifier()->setStepSize(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getSliderModifier()->setStepSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SliderAttribute_stepSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SliderAttribute_sliderInteractionMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18742,7 +18742,7 @@ void impl_SliderAttribute_sliderInteractionMode(Ark_NativePointer thisPtr, KSeri value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_SliderInteraction value_value = value_value_buf;; - GetNodeModifiers()->getSliderModifier()->setSliderInteractionMode(self, (const Opt_SliderInteraction*)&value_value); + GetNodeModifiers()->getSliderModifier()->setSliderInteractionMode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SliderAttribute_sliderInteractionMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SliderAttribute_minResponsiveDistance(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18756,7 +18756,7 @@ void impl_SliderAttribute_minResponsiveDistance(Ark_NativePointer thisPtr, KSeri value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getSliderModifier()->setMinResponsiveDistance(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getSliderModifier()->setMinResponsiveDistance(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SliderAttribute_minResponsiveDistance, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SliderAttribute_contentModifier(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18770,7 +18770,7 @@ void impl_SliderAttribute_contentModifier(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(thisDeserializer.readObject()); } Opt_ContentModifier value_value = value_value_buf;; - GetNodeModifiers()->getSliderModifier()->setContentModifier(self, (const Opt_ContentModifier*)&value_value); + GetNodeModifiers()->getSliderModifier()->setContentModifier(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SliderAttribute_contentModifier, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SliderAttribute_slideRange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18784,7 +18784,7 @@ void impl_SliderAttribute_slideRange(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = SlideRange_serializer::read(thisDeserializer); } Opt_SlideRange value_value = value_value_buf;; - GetNodeModifiers()->getSliderModifier()->setSlideRange(self, (const Opt_SlideRange*)&value_value); + GetNodeModifiers()->getSliderModifier()->setSlideRange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SliderAttribute_slideRange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SliderAttribute_digitalCrownSensitivity(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18798,7 +18798,7 @@ void impl_SliderAttribute_digitalCrownSensitivity(Ark_NativePointer thisPtr, KSe value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_CrownSensitivity value_value = value_value_buf;; - GetNodeModifiers()->getSliderModifier()->setDigitalCrownSensitivity(self, (const Opt_CrownSensitivity*)&value_value); + GetNodeModifiers()->getSliderModifier()->setDigitalCrownSensitivity(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SliderAttribute_digitalCrownSensitivity, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SliderAttribute_enableHapticFeedback(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18812,7 +18812,7 @@ void impl_SliderAttribute_enableHapticFeedback(Ark_NativePointer thisPtr, KSeria value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getSliderModifier()->setEnableHapticFeedback(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getSliderModifier()->setEnableHapticFeedback(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SliderAttribute_enableHapticFeedback, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SliderAttribute_showTips(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18848,7 +18848,7 @@ void impl_SliderAttribute_showTips(Ark_NativePointer thisPtr, KSerializerBuffer content_value_buf.value = static_cast(content_value_buf_); } Opt_ResourceStr content_value = content_value_buf;; - GetNodeModifiers()->getSliderModifier()->setShowTips(self, (const Opt_Boolean*)&value_value, (const Opt_ResourceStr*)&content_value); + GetNodeModifiers()->getSliderModifier()->setShowTips(self, reinterpret_cast(&value_value), reinterpret_cast(&content_value)); } KOALA_INTEROP_DIRECT_V3(SliderAttribute_showTips, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_BaseSpan_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -18866,7 +18866,7 @@ void impl_BaseSpan_textBackgroundStyle(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = TextBackgroundStyle_serializer::read(thisDeserializer); } Opt_TextBackgroundStyle value_value = value_value_buf;; - GetNodeModifiers()->getBaseSpanModifier()->setTextBackgroundStyle(self, (const Opt_TextBackgroundStyle*)&value_value); + GetNodeModifiers()->getBaseSpanModifier()->setTextBackgroundStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(BaseSpan_textBackgroundStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_BaseSpan_baselineOffset(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18880,7 +18880,7 @@ void impl_BaseSpan_baselineOffset(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(LengthMetrics_serializer::read(thisDeserializer)); } Opt_LengthMetrics value_value = value_value_buf;; - GetNodeModifiers()->getBaseSpanModifier()->setBaselineOffset(self, (const Opt_LengthMetrics*)&value_value); + GetNodeModifiers()->getBaseSpanModifier()->setBaselineOffset(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(BaseSpan_baselineOffset, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Span_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -18905,7 +18905,7 @@ void impl_SpanInterface_setSpanOptions(Ark_NativePointer thisPtr, KSerializerBuf INTEROP_FATAL("One of the branches for value_value_buf has to be chosen through deserialisation."); } Ark_Union_String_Resource value_value = static_cast(value_value_buf);; - GetNodeModifiers()->getSpanModifier()->setSpanOptions(self, (const Ark_Union_String_Resource*)&value_value); + GetNodeModifiers()->getSpanModifier()->setSpanOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SpanInterface_setSpanOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SpanAttribute_font(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18919,7 +18919,7 @@ void impl_SpanAttribute_font(Ark_NativePointer thisPtr, KSerializerBuffer thisAr value_value_buf.value = Font_serializer::read(thisDeserializer); } Opt_Font value_value = value_value_buf;; - GetNodeModifiers()->getSpanModifier()->setFont(self, (const Opt_Font*)&value_value); + GetNodeModifiers()->getSpanModifier()->setFont(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SpanAttribute_font, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SpanAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18955,7 +18955,7 @@ void impl_SpanAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getSpanModifier()->setFontColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getSpanModifier()->setFontColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SpanAttribute_fontColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SpanAttribute_fontSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -18987,7 +18987,7 @@ void impl_SpanAttribute_fontSize(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getSpanModifier()->setFontSize(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getSpanModifier()->setFontSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SpanAttribute_fontSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SpanAttribute_fontStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19001,7 +19001,7 @@ void impl_SpanAttribute_fontStyle(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_FontStyle value_value = value_value_buf;; - GetNodeModifiers()->getSpanModifier()->setFontStyle(self, (const Opt_FontStyle*)&value_value); + GetNodeModifiers()->getSpanModifier()->setFontStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SpanAttribute_fontStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SpanAttribute_fontWeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19033,7 +19033,7 @@ void impl_SpanAttribute_fontWeight(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_FontWeight_String value_value = value_value_buf;; - GetNodeModifiers()->getSpanModifier()->setFontWeight(self, (const Opt_Union_Number_FontWeight_String*)&value_value); + GetNodeModifiers()->getSpanModifier()->setFontWeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SpanAttribute_fontWeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SpanAttribute_fontFamily(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19061,7 +19061,7 @@ void impl_SpanAttribute_fontFamily(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getSpanModifier()->setFontFamily(self, (const Opt_Union_String_Resource*)&value_value); + GetNodeModifiers()->getSpanModifier()->setFontFamily(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SpanAttribute_fontFamily, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SpanAttribute_decoration(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19075,7 +19075,7 @@ void impl_SpanAttribute_decoration(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = DecorationStyleInterface_serializer::read(thisDeserializer); } Opt_DecorationStyleInterface value_value = value_value_buf;; - GetNodeModifiers()->getSpanModifier()->setDecoration(self, (const Opt_DecorationStyleInterface*)&value_value); + GetNodeModifiers()->getSpanModifier()->setDecoration(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SpanAttribute_decoration, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SpanAttribute_letterSpacing(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19103,7 +19103,7 @@ void impl_SpanAttribute_letterSpacing(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String value_value = value_value_buf;; - GetNodeModifiers()->getSpanModifier()->setLetterSpacing(self, (const Opt_Union_Number_String*)&value_value); + GetNodeModifiers()->getSpanModifier()->setLetterSpacing(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SpanAttribute_letterSpacing, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SpanAttribute_textCase(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19117,7 +19117,7 @@ void impl_SpanAttribute_textCase(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_TextCase value_value = value_value_buf;; - GetNodeModifiers()->getSpanModifier()->setTextCase(self, (const Opt_TextCase*)&value_value); + GetNodeModifiers()->getSpanModifier()->setTextCase(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SpanAttribute_textCase, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SpanAttribute_lineHeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19149,7 +19149,7 @@ void impl_SpanAttribute_lineHeight(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getSpanModifier()->setLineHeight(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getSpanModifier()->setLineHeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SpanAttribute_lineHeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SpanAttribute_textShadow(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19184,7 +19184,7 @@ void impl_SpanAttribute_textShadow(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_ShadowOptions_Array_ShadowOptions value_value = value_value_buf;; - GetNodeModifiers()->getSpanModifier()->setTextShadow(self, (const Opt_Union_ShadowOptions_Array_ShadowOptions*)&value_value); + GetNodeModifiers()->getSpanModifier()->setTextShadow(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SpanAttribute_textShadow, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Stack_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -19202,7 +19202,7 @@ void impl_StackInterface_setStackOptions(Ark_NativePointer thisPtr, KSerializerB options_value_buf.value = StackOptions_serializer::read(thisDeserializer); } Opt_StackOptions options_value = options_value_buf;; - GetNodeModifiers()->getStackModifier()->setStackOptions(self, (const Opt_StackOptions*)&options_value); + GetNodeModifiers()->getStackModifier()->setStackOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(StackInterface_setStackOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_StackAttribute_alignContent(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19216,7 +19216,7 @@ void impl_StackAttribute_alignContent(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_Alignment value_value = value_value_buf;; - GetNodeModifiers()->getStackModifier()->setAlignContent(self, (const Opt_Alignment*)&value_value); + GetNodeModifiers()->getStackModifier()->setAlignContent(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(StackAttribute_alignContent, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_StackAttribute_pointLight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19230,7 +19230,7 @@ void impl_StackAttribute_pointLight(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = PointLightStyle_serializer::read(thisDeserializer); } Opt_PointLightStyle value_value = value_value_buf;; - GetNodeModifiers()->getStackModifier()->setPointLight(self, (const Opt_PointLightStyle*)&value_value); + GetNodeModifiers()->getStackModifier()->setPointLight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(StackAttribute_pointLight, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Stepper_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -19248,7 +19248,7 @@ void impl_StepperInterface_setStepperOptions(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = StepperOptions_serializer::read(thisDeserializer); } Opt_StepperOptions value_value = value_value_buf;; - GetNodeModifiers()->getStepperModifier()->setStepperOptions(self, (const Opt_StepperOptions*)&value_value); + GetNodeModifiers()->getStepperModifier()->setStepperOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(StepperInterface_setStepperOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_StepperAttribute_onFinish(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19262,7 +19262,7 @@ void impl_StepperAttribute_onFinish(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getStepperModifier()->setOnFinish(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getStepperModifier()->setOnFinish(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(StepperAttribute_onFinish, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_StepperAttribute_onSkip(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19276,7 +19276,7 @@ void impl_StepperAttribute_onSkip(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getStepperModifier()->setOnSkip(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getStepperModifier()->setOnSkip(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(StepperAttribute_onSkip, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_StepperAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19290,7 +19290,7 @@ void impl_StepperAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Number_Void))))}; } Opt_Callback_Number_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getStepperModifier()->setOnChange(self, (const Opt_Callback_Number_Number_Void*)&value_value); + GetNodeModifiers()->getStepperModifier()->setOnChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(StepperAttribute_onChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_StepperAttribute_onNext(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19304,7 +19304,7 @@ void impl_StepperAttribute_onNext(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Number_Void))))}; } Opt_Callback_Number_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getStepperModifier()->setOnNext(self, (const Opt_Callback_Number_Number_Void*)&value_value); + GetNodeModifiers()->getStepperModifier()->setOnNext(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(StepperAttribute_onNext, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_StepperAttribute_onPrevious(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19318,7 +19318,7 @@ void impl_StepperAttribute_onPrevious(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Number_Void))))}; } Opt_Callback_Number_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getStepperModifier()->setOnPrevious(self, (const Opt_Callback_Number_Number_Void*)&value_value); + GetNodeModifiers()->getStepperModifier()->setOnPrevious(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(StepperAttribute_onPrevious, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_StepperItem_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -19341,7 +19341,7 @@ void impl_StepperItemAttribute_prevLabel(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getStepperItemModifier()->setPrevLabel(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getStepperItemModifier()->setPrevLabel(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(StepperItemAttribute_prevLabel, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_StepperItemAttribute_nextLabel(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19355,7 +19355,7 @@ void impl_StepperItemAttribute_nextLabel(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getStepperItemModifier()->setNextLabel(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getStepperItemModifier()->setNextLabel(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(StepperItemAttribute_nextLabel, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_StepperItemAttribute_status(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19369,7 +19369,7 @@ void impl_StepperItemAttribute_status(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ItemState value_value = value_value_buf;; - GetNodeModifiers()->getStepperItemModifier()->setStatus(self, (const Opt_ItemState*)&value_value); + GetNodeModifiers()->getStepperItemModifier()->setStatus(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(StepperItemAttribute_status, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Swiper_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -19387,7 +19387,7 @@ void impl_SwiperInterface_setSwiperOptions(Ark_NativePointer thisPtr, KSerialize controller_value_buf.value = static_cast(SwiperController_serializer::read(thisDeserializer)); } Opt_SwiperController controller_value = controller_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setSwiperOptions(self, (const Opt_SwiperController*)&controller_value); + GetNodeModifiers()->getSwiperModifier()->setSwiperOptions(self, reinterpret_cast(&controller_value)); } KOALA_INTEROP_DIRECT_V3(SwiperInterface_setSwiperOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_index(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19401,7 +19401,7 @@ void impl_SwiperAttribute_index(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setIndex(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setIndex(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_index, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_interval(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19415,7 +19415,7 @@ void impl_SwiperAttribute_interval(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setInterval(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setInterval(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_interval, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_indicator(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19451,7 +19451,7 @@ void impl_SwiperAttribute_indicator(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_IndicatorComponentController_DotIndicator_DigitIndicator_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setIndicator(self, (const Opt_Union_IndicatorComponentController_DotIndicator_DigitIndicator_Boolean*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setIndicator(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_indicator, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_loop(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19465,7 +19465,7 @@ void impl_SwiperAttribute_loop(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setLoop(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setLoop(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_loop, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_duration(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19479,7 +19479,7 @@ void impl_SwiperAttribute_duration(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setDuration(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setDuration(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_duration, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_vertical(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19493,7 +19493,7 @@ void impl_SwiperAttribute_vertical(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setVertical(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setVertical(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_vertical, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_itemSpace(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19521,7 +19521,7 @@ void impl_SwiperAttribute_itemSpace(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setItemSpace(self, (const Opt_Union_Number_String*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setItemSpace(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_itemSpace, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_displayMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19535,7 +19535,7 @@ void impl_SwiperAttribute_displayMode(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_SwiperDisplayMode value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setDisplayMode(self, (const Opt_SwiperDisplayMode*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setDisplayMode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_displayMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_cachedCount0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19549,7 +19549,7 @@ void impl_SwiperAttribute_cachedCount0(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setCachedCount0(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setCachedCount0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_cachedCount0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_cachedCount1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19571,7 +19571,7 @@ void impl_SwiperAttribute_cachedCount1(Ark_NativePointer thisPtr, KSerializerBuf isShown_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean isShown_value = isShown_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setCachedCount1(self, (const Opt_Number*)&count_value, (const Opt_Boolean*)&isShown_value); + GetNodeModifiers()->getSwiperModifier()->setCachedCount1(self, reinterpret_cast(&count_value), reinterpret_cast(&isShown_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_cachedCount1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_effectMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19585,7 +19585,7 @@ void impl_SwiperAttribute_effectMode(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EdgeEffect value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setEffectMode(self, (const Opt_EdgeEffect*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setEffectMode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_effectMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_disableSwipe(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19599,7 +19599,7 @@ void impl_SwiperAttribute_disableSwipe(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setDisableSwipe(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setDisableSwipe(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_disableSwipe, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_curve(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19631,7 +19631,7 @@ void impl_SwiperAttribute_curve(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Curve_String_ICurve value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setCurve(self, (const Opt_Union_Curve_String_ICurve*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setCurve(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_curve, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19645,7 +19645,7 @@ void impl_SwiperAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Void))))}; } Opt_Callback_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setOnChange(self, (const Opt_Callback_Number_Void*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setOnChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_onChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_onSelected(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19659,7 +19659,7 @@ void impl_SwiperAttribute_onSelected(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Void))))}; } Opt_Callback_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setOnSelected(self, (const Opt_Callback_Number_Void*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setOnSelected(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_onSelected, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_onUnselected(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19673,7 +19673,7 @@ void impl_SwiperAttribute_onUnselected(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Void))))}; } Opt_Callback_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setOnUnselected(self, (const Opt_Callback_Number_Void*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setOnUnselected(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_onUnselected, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_onAnimationStart(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19687,7 +19687,7 @@ void impl_SwiperAttribute_onAnimationStart(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnSwiperAnimationStartCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnSwiperAnimationStartCallback))))}; } Opt_OnSwiperAnimationStartCallback value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setOnAnimationStart(self, (const Opt_OnSwiperAnimationStartCallback*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setOnAnimationStart(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_onAnimationStart, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_onAnimationEnd(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19701,7 +19701,7 @@ void impl_SwiperAttribute_onAnimationEnd(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnSwiperAnimationEndCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnSwiperAnimationEndCallback))))}; } Opt_OnSwiperAnimationEndCallback value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setOnAnimationEnd(self, (const Opt_OnSwiperAnimationEndCallback*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setOnAnimationEnd(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_onAnimationEnd, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_onGestureSwipe(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19715,7 +19715,7 @@ void impl_SwiperAttribute_onGestureSwipe(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnSwiperGestureSwipeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnSwiperGestureSwipeCallback))))}; } Opt_OnSwiperGestureSwipeCallback value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setOnGestureSwipe(self, (const Opt_OnSwiperGestureSwipeCallback*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setOnGestureSwipe(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_onGestureSwipe, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_nestedScroll(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19729,7 +19729,7 @@ void impl_SwiperAttribute_nestedScroll(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_SwiperNestedScrollMode value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setNestedScroll(self, (const Opt_SwiperNestedScrollMode*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setNestedScroll(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_nestedScroll, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_customContentTransition(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19743,7 +19743,7 @@ void impl_SwiperAttribute_customContentTransition(Ark_NativePointer thisPtr, KSe value_value_buf.value = SwiperContentAnimatedTransition_serializer::read(thisDeserializer); } Opt_SwiperContentAnimatedTransition value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setCustomContentTransition(self, (const Opt_SwiperContentAnimatedTransition*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setCustomContentTransition(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_customContentTransition, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_onContentDidScroll(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19757,7 +19757,7 @@ void impl_SwiperAttribute_onContentDidScroll(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_ContentDidScrollCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_ContentDidScrollCallback))))}; } Opt_ContentDidScrollCallback value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setOnContentDidScroll(self, (const Opt_ContentDidScrollCallback*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setOnContentDidScroll(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_onContentDidScroll, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_indicatorInteractive(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19771,7 +19771,7 @@ void impl_SwiperAttribute_indicatorInteractive(Ark_NativePointer thisPtr, KSeria value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setIndicatorInteractive(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setIndicatorInteractive(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_indicatorInteractive, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_pageFlipMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19785,7 +19785,7 @@ void impl_SwiperAttribute_pageFlipMode(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_PageFlipMode value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setPageFlipMode(self, (const Opt_PageFlipMode*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setPageFlipMode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_pageFlipMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_onContentWillScroll(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19799,7 +19799,7 @@ void impl_SwiperAttribute_onContentWillScroll(Ark_NativePointer thisPtr, KSerial value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_ContentWillScrollCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_ContentWillScrollCallback))))}; } Opt_ContentWillScrollCallback value_value = value_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setOnContentWillScroll(self, (const Opt_ContentWillScrollCallback*)&value_value); + GetNodeModifiers()->getSwiperModifier()->setOnContentWillScroll(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_onContentWillScroll, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_autoPlay(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19821,7 +19821,7 @@ void impl_SwiperAttribute_autoPlay(Ark_NativePointer thisPtr, KSerializerBuffer options_value_buf.value = AutoPlayOptions_serializer::read(thisDeserializer); } Opt_AutoPlayOptions options_value = options_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setAutoPlay(self, (const Opt_Boolean*)&autoPlay_value, (const Opt_AutoPlayOptions*)&options_value); + GetNodeModifiers()->getSwiperModifier()->setAutoPlay(self, reinterpret_cast(&autoPlay_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_autoPlay, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_displayArrow(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19857,7 +19857,7 @@ void impl_SwiperAttribute_displayArrow(Ark_NativePointer thisPtr, KSerializerBuf isHoverShow_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean isHoverShow_value = isHoverShow_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setDisplayArrow(self, (const Opt_Union_ArrowStyle_Boolean*)&value_value, (const Opt_Boolean*)&isHoverShow_value); + GetNodeModifiers()->getSwiperModifier()->setDisplayArrow(self, reinterpret_cast(&value_value), reinterpret_cast(&isHoverShow_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_displayArrow, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_displayCount(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19897,7 +19897,7 @@ void impl_SwiperAttribute_displayCount(Ark_NativePointer thisPtr, KSerializerBuf swipeByGroup_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean swipeByGroup_value = swipeByGroup_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setDisplayCount(self, (const Opt_Union_Number_String_SwiperAutoFill*)&value_value, (const Opt_Boolean*)&swipeByGroup_value); + GetNodeModifiers()->getSwiperModifier()->setDisplayCount(self, reinterpret_cast(&value_value), reinterpret_cast(&swipeByGroup_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_displayCount, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_prevMargin(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19937,7 +19937,7 @@ void impl_SwiperAttribute_prevMargin(Ark_NativePointer thisPtr, KSerializerBuffe ignoreBlank_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean ignoreBlank_value = ignoreBlank_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setPrevMargin(self, (const Opt_Length*)&value_value, (const Opt_Boolean*)&ignoreBlank_value); + GetNodeModifiers()->getSwiperModifier()->setPrevMargin(self, reinterpret_cast(&value_value), reinterpret_cast(&ignoreBlank_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_prevMargin, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperAttribute_nextMargin(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -19977,7 +19977,7 @@ void impl_SwiperAttribute_nextMargin(Ark_NativePointer thisPtr, KSerializerBuffe ignoreBlank_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean ignoreBlank_value = ignoreBlank_value_buf;; - GetNodeModifiers()->getSwiperModifier()->setNextMargin(self, (const Opt_Length*)&value_value, (const Opt_Boolean*)&ignoreBlank_value); + GetNodeModifiers()->getSwiperModifier()->setNextMargin(self, reinterpret_cast(&value_value), reinterpret_cast(&ignoreBlank_value)); } KOALA_INTEROP_DIRECT_V3(SwiperAttribute_nextMargin, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_SymbolGlyph_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -19995,7 +19995,7 @@ void impl_SymbolGlyphInterface_setSymbolGlyphOptions(Ark_NativePointer thisPtr, value_value_buf.value = Resource_serializer::read(thisDeserializer); } Opt_Resource value_value = value_value_buf;; - GetNodeModifiers()->getSymbolGlyphModifier()->setSymbolGlyphOptions(self, (const Opt_Resource*)&value_value); + GetNodeModifiers()->getSymbolGlyphModifier()->setSymbolGlyphOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SymbolGlyphInterface_setSymbolGlyphOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SymbolGlyphAttribute_fontSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20027,7 +20027,7 @@ void impl_SymbolGlyphAttribute_fontSize(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getSymbolGlyphModifier()->setFontSize(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getSymbolGlyphModifier()->setFontSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SymbolGlyphAttribute_fontSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SymbolGlyphAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20070,7 +20070,7 @@ void impl_SymbolGlyphAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = value_value_buf_; } Opt_Array_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getSymbolGlyphModifier()->setFontColor(self, (const Opt_Array_ResourceColor*)&value_value); + GetNodeModifiers()->getSymbolGlyphModifier()->setFontColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SymbolGlyphAttribute_fontColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SymbolGlyphAttribute_fontWeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20102,7 +20102,7 @@ void impl_SymbolGlyphAttribute_fontWeight(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_FontWeight_String value_value = value_value_buf;; - GetNodeModifiers()->getSymbolGlyphModifier()->setFontWeight(self, (const Opt_Union_Number_FontWeight_String*)&value_value); + GetNodeModifiers()->getSymbolGlyphModifier()->setFontWeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SymbolGlyphAttribute_fontWeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SymbolGlyphAttribute_effectStrategy(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20116,7 +20116,7 @@ void impl_SymbolGlyphAttribute_effectStrategy(Ark_NativePointer thisPtr, KSerial value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_SymbolEffectStrategy value_value = value_value_buf;; - GetNodeModifiers()->getSymbolGlyphModifier()->setEffectStrategy(self, (const Opt_SymbolEffectStrategy*)&value_value); + GetNodeModifiers()->getSymbolGlyphModifier()->setEffectStrategy(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SymbolGlyphAttribute_effectStrategy, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SymbolGlyphAttribute_renderingStrategy(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20130,7 +20130,7 @@ void impl_SymbolGlyphAttribute_renderingStrategy(Ark_NativePointer thisPtr, KSer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_SymbolRenderingStrategy value_value = value_value_buf;; - GetNodeModifiers()->getSymbolGlyphModifier()->setRenderingStrategy(self, (const Opt_SymbolRenderingStrategy*)&value_value); + GetNodeModifiers()->getSymbolGlyphModifier()->setRenderingStrategy(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SymbolGlyphAttribute_renderingStrategy, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SymbolGlyphAttribute_minFontScale(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20158,7 +20158,7 @@ void impl_SymbolGlyphAttribute_minFontScale(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_Resource value_value = value_value_buf;; - GetNodeModifiers()->getSymbolGlyphModifier()->setMinFontScale(self, (const Opt_Union_Number_Resource*)&value_value); + GetNodeModifiers()->getSymbolGlyphModifier()->setMinFontScale(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SymbolGlyphAttribute_minFontScale, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SymbolGlyphAttribute_maxFontScale(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20186,7 +20186,7 @@ void impl_SymbolGlyphAttribute_maxFontScale(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_Resource value_value = value_value_buf;; - GetNodeModifiers()->getSymbolGlyphModifier()->setMaxFontScale(self, (const Opt_Union_Number_Resource*)&value_value); + GetNodeModifiers()->getSymbolGlyphModifier()->setMaxFontScale(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SymbolGlyphAttribute_maxFontScale, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SymbolGlyphAttribute_symbolEffect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20222,7 +20222,7 @@ void impl_SymbolGlyphAttribute_symbolEffect(Ark_NativePointer thisPtr, KSerializ triggerValue_value_buf.value = static_cast(triggerValue_value_buf_); } Opt_Union_Boolean_Number triggerValue_value = triggerValue_value_buf;; - GetNodeModifiers()->getSymbolGlyphModifier()->setSymbolEffect(self, (const Opt_SymbolEffect*)&symbolEffect_value, (const Opt_Union_Boolean_Number*)&triggerValue_value); + GetNodeModifiers()->getSymbolGlyphModifier()->setSymbolEffect(self, reinterpret_cast(&symbolEffect_value), reinterpret_cast(&triggerValue_value)); } KOALA_INTEROP_DIRECT_V3(SymbolGlyphAttribute_symbolEffect, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_SymbolSpan_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -20233,7 +20233,7 @@ void impl_SymbolSpanInterface_setSymbolSpanOptions(Ark_NativePointer thisPtr, KS Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Resource value_value = Resource_serializer::read(thisDeserializer);; - GetNodeModifiers()->getSymbolSpanModifier()->setSymbolSpanOptions(self, (const Ark_Resource*)&value_value); + GetNodeModifiers()->getSymbolSpanModifier()->setSymbolSpanOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SymbolSpanInterface_setSymbolSpanOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SymbolSpanAttribute_fontSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20265,7 +20265,7 @@ void impl_SymbolSpanAttribute_fontSize(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getSymbolSpanModifier()->setFontSize(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getSymbolSpanModifier()->setFontSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SymbolSpanAttribute_fontSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SymbolSpanAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20308,7 +20308,7 @@ void impl_SymbolSpanAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = value_value_buf_; } Opt_Array_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getSymbolSpanModifier()->setFontColor(self, (const Opt_Array_ResourceColor*)&value_value); + GetNodeModifiers()->getSymbolSpanModifier()->setFontColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SymbolSpanAttribute_fontColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SymbolSpanAttribute_fontWeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20340,7 +20340,7 @@ void impl_SymbolSpanAttribute_fontWeight(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_FontWeight_String value_value = value_value_buf;; - GetNodeModifiers()->getSymbolSpanModifier()->setFontWeight(self, (const Opt_Union_Number_FontWeight_String*)&value_value); + GetNodeModifiers()->getSymbolSpanModifier()->setFontWeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SymbolSpanAttribute_fontWeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SymbolSpanAttribute_effectStrategy(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20354,7 +20354,7 @@ void impl_SymbolSpanAttribute_effectStrategy(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_SymbolEffectStrategy value_value = value_value_buf;; - GetNodeModifiers()->getSymbolSpanModifier()->setEffectStrategy(self, (const Opt_SymbolEffectStrategy*)&value_value); + GetNodeModifiers()->getSymbolSpanModifier()->setEffectStrategy(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SymbolSpanAttribute_effectStrategy, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SymbolSpanAttribute_renderingStrategy(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20368,7 +20368,7 @@ void impl_SymbolSpanAttribute_renderingStrategy(Ark_NativePointer thisPtr, KSeri value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_SymbolRenderingStrategy value_value = value_value_buf;; - GetNodeModifiers()->getSymbolSpanModifier()->setRenderingStrategy(self, (const Opt_SymbolRenderingStrategy*)&value_value); + GetNodeModifiers()->getSymbolSpanModifier()->setRenderingStrategy(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(SymbolSpanAttribute_renderingStrategy, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TabContent_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -20425,7 +20425,7 @@ void impl_TabContentAttribute_tabBar(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_ComponentContent_SubTabBarStyle_BottomTabBarStyle_String_Resource_CustomBuilder_TabBarOptions value_value = value_value_buf;; - GetNodeModifiers()->getTabContentModifier()->setTabBar(self, (const Opt_Union_ComponentContent_SubTabBarStyle_BottomTabBarStyle_String_Resource_CustomBuilder_TabBarOptions*)&value_value); + GetNodeModifiers()->getTabContentModifier()->setTabBar(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabContentAttribute_tabBar, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabContentAttribute_onWillShow(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20439,7 +20439,7 @@ void impl_TabContentAttribute_onWillShow(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_VoidCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_VoidCallback))))}; } Opt_VoidCallback value_value = value_value_buf;; - GetNodeModifiers()->getTabContentModifier()->setOnWillShow(self, (const Opt_VoidCallback*)&value_value); + GetNodeModifiers()->getTabContentModifier()->setOnWillShow(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabContentAttribute_onWillShow, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabContentAttribute_onWillHide(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20453,7 +20453,7 @@ void impl_TabContentAttribute_onWillHide(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_VoidCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_VoidCallback))))}; } Opt_VoidCallback value_value = value_value_buf;; - GetNodeModifiers()->getTabContentModifier()->setOnWillHide(self, (const Opt_VoidCallback*)&value_value); + GetNodeModifiers()->getTabContentModifier()->setOnWillHide(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabContentAttribute_onWillHide, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Tabs_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -20471,7 +20471,7 @@ void impl_TabsInterface_setTabsOptions(Ark_NativePointer thisPtr, KSerializerBuf options_value_buf.value = TabsOptions_serializer::read(thisDeserializer); } Opt_TabsOptions options_value = options_value_buf;; - GetNodeModifiers()->getTabsModifier()->setTabsOptions(self, (const Opt_TabsOptions*)&options_value); + GetNodeModifiers()->getTabsModifier()->setTabsOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(TabsInterface_setTabsOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_vertical(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20485,7 +20485,7 @@ void impl_TabsAttribute_vertical(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setVertical(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTabsModifier()->setVertical(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_vertical, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_barPosition(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20499,7 +20499,7 @@ void impl_TabsAttribute_barPosition(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_BarPosition value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setBarPosition(self, (const Opt_BarPosition*)&value_value); + GetNodeModifiers()->getTabsModifier()->setBarPosition(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_barPosition, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_scrollable(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20513,7 +20513,7 @@ void impl_TabsAttribute_scrollable(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setScrollable(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTabsModifier()->setScrollable(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_scrollable, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_barWidth(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20545,7 +20545,7 @@ void impl_TabsAttribute_barWidth(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setBarWidth(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getTabsModifier()->setBarWidth(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_barWidth, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_barHeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20577,7 +20577,7 @@ void impl_TabsAttribute_barHeight(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setBarHeight(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getTabsModifier()->setBarHeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_barHeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_animationDuration(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20591,7 +20591,7 @@ void impl_TabsAttribute_animationDuration(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setAnimationDuration(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getTabsModifier()->setAnimationDuration(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_animationDuration, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_animationMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20605,7 +20605,7 @@ void impl_TabsAttribute_animationMode(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_AnimationMode value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setAnimationMode(self, (const Opt_AnimationMode*)&value_value); + GetNodeModifiers()->getTabsModifier()->setAnimationMode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_animationMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_edgeEffect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20619,7 +20619,7 @@ void impl_TabsAttribute_edgeEffect(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EdgeEffect value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setEdgeEffect(self, (const Opt_EdgeEffect*)&value_value); + GetNodeModifiers()->getTabsModifier()->setEdgeEffect(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_edgeEffect, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20633,7 +20633,7 @@ void impl_TabsAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Void))))}; } Opt_Callback_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setOnChange(self, (const Opt_Callback_Number_Void*)&value_value); + GetNodeModifiers()->getTabsModifier()->setOnChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_onChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_onSelected(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20647,7 +20647,7 @@ void impl_TabsAttribute_onSelected(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Void))))}; } Opt_Callback_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setOnSelected(self, (const Opt_Callback_Number_Void*)&value_value); + GetNodeModifiers()->getTabsModifier()->setOnSelected(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_onSelected, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_onTabBarClick(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20661,7 +20661,7 @@ void impl_TabsAttribute_onTabBarClick(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Void))))}; } Opt_Callback_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setOnTabBarClick(self, (const Opt_Callback_Number_Void*)&value_value); + GetNodeModifiers()->getTabsModifier()->setOnTabBarClick(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_onTabBarClick, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_onUnselected(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20675,7 +20675,7 @@ void impl_TabsAttribute_onUnselected(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Void))))}; } Opt_Callback_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setOnUnselected(self, (const Opt_Callback_Number_Void*)&value_value); + GetNodeModifiers()->getTabsModifier()->setOnUnselected(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_onUnselected, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_onAnimationStart(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20689,7 +20689,7 @@ void impl_TabsAttribute_onAnimationStart(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnTabsAnimationStartCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnTabsAnimationStartCallback))))}; } Opt_OnTabsAnimationStartCallback value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setOnAnimationStart(self, (const Opt_OnTabsAnimationStartCallback*)&value_value); + GetNodeModifiers()->getTabsModifier()->setOnAnimationStart(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_onAnimationStart, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_onAnimationEnd(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20703,7 +20703,7 @@ void impl_TabsAttribute_onAnimationEnd(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnTabsAnimationEndCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnTabsAnimationEndCallback))))}; } Opt_OnTabsAnimationEndCallback value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setOnAnimationEnd(self, (const Opt_OnTabsAnimationEndCallback*)&value_value); + GetNodeModifiers()->getTabsModifier()->setOnAnimationEnd(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_onAnimationEnd, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_onGestureSwipe(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20717,7 +20717,7 @@ void impl_TabsAttribute_onGestureSwipe(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnTabsGestureSwipeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnTabsGestureSwipeCallback))))}; } Opt_OnTabsGestureSwipeCallback value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setOnGestureSwipe(self, (const Opt_OnTabsGestureSwipeCallback*)&value_value); + GetNodeModifiers()->getTabsModifier()->setOnGestureSwipe(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_onGestureSwipe, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_fadingEdge(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20731,7 +20731,7 @@ void impl_TabsAttribute_fadingEdge(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setFadingEdge(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTabsModifier()->setFadingEdge(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_fadingEdge, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_divider(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20745,7 +20745,7 @@ void impl_TabsAttribute_divider(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = DividerStyle_serializer::read(thisDeserializer); } Opt_DividerStyle value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setDivider(self, (const Opt_DividerStyle*)&value_value); + GetNodeModifiers()->getTabsModifier()->setDivider(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_divider, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_barOverlap(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20759,7 +20759,7 @@ void impl_TabsAttribute_barOverlap(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setBarOverlap(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTabsModifier()->setBarOverlap(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_barOverlap, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_barBackgroundColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20795,7 +20795,7 @@ void impl_TabsAttribute_barBackgroundColor(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setBarBackgroundColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getTabsModifier()->setBarBackgroundColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_barBackgroundColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_barGridAlign(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20809,7 +20809,7 @@ void impl_TabsAttribute_barGridAlign(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = BarGridColumnOptions_serializer::read(thisDeserializer); } Opt_BarGridColumnOptions value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setBarGridAlign(self, (const Opt_BarGridColumnOptions*)&value_value); + GetNodeModifiers()->getTabsModifier()->setBarGridAlign(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_barGridAlign, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_customContentTransition(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20823,7 +20823,7 @@ void impl_TabsAttribute_customContentTransition(Ark_NativePointer thisPtr, KSeri value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_TabsCustomContentTransitionCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_TabsCustomContentTransitionCallback))))}; } Opt_TabsCustomContentTransitionCallback value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setCustomContentTransition(self, (const Opt_TabsCustomContentTransitionCallback*)&value_value); + GetNodeModifiers()->getTabsModifier()->setCustomContentTransition(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_customContentTransition, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_barBackgroundBlurStyle0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20837,7 +20837,7 @@ void impl_TabsAttribute_barBackgroundBlurStyle0(Ark_NativePointer thisPtr, KSeri value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_BlurStyle value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setBarBackgroundBlurStyle0(self, (const Opt_BlurStyle*)&value_value); + GetNodeModifiers()->getTabsModifier()->setBarBackgroundBlurStyle0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_barBackgroundBlurStyle0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_barBackgroundBlurStyle1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20859,7 +20859,7 @@ void impl_TabsAttribute_barBackgroundBlurStyle1(Ark_NativePointer thisPtr, KSeri options_value_buf.value = BackgroundBlurStyleOptions_serializer::read(thisDeserializer); } Opt_BackgroundBlurStyleOptions options_value = options_value_buf;; - GetNodeModifiers()->getTabsModifier()->setBarBackgroundBlurStyle1(self, (const Opt_BlurStyle*)&style_value, (const Opt_BackgroundBlurStyleOptions*)&options_value); + GetNodeModifiers()->getTabsModifier()->setBarBackgroundBlurStyle1(self, reinterpret_cast(&style_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_barBackgroundBlurStyle1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_barBackgroundEffect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20873,7 +20873,7 @@ void impl_TabsAttribute_barBackgroundEffect(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = BackgroundEffectOptions_serializer::read(thisDeserializer); } Opt_BackgroundEffectOptions value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setBarBackgroundEffect(self, (const Opt_BackgroundEffectOptions*)&value_value); + GetNodeModifiers()->getTabsModifier()->setBarBackgroundEffect(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_barBackgroundEffect, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_pageFlipMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20887,7 +20887,7 @@ void impl_TabsAttribute_pageFlipMode(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_PageFlipMode value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setPageFlipMode(self, (const Opt_PageFlipMode*)&value_value); + GetNodeModifiers()->getTabsModifier()->setPageFlipMode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_pageFlipMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_onContentWillChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20901,7 +20901,7 @@ void impl_TabsAttribute_onContentWillChange(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnTabsContentWillChangeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnTabsContentWillChangeCallback))))}; } Opt_OnTabsContentWillChangeCallback value_value = value_value_buf;; - GetNodeModifiers()->getTabsModifier()->setOnContentWillChange(self, (const Opt_OnTabsContentWillChangeCallback*)&value_value); + GetNodeModifiers()->getTabsModifier()->setOnContentWillChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_onContentWillChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_barMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20923,7 +20923,7 @@ void impl_TabsAttribute_barMode(Ark_NativePointer thisPtr, KSerializerBuffer thi options_value_buf.value = ScrollableBarModeOptions_serializer::read(thisDeserializer); } Opt_ScrollableBarModeOptions options_value = options_value_buf;; - GetNodeModifiers()->getTabsModifier()->setBarMode(self, (const Opt_BarMode*)&value_value, (const Opt_ScrollableBarModeOptions*)&options_value); + GetNodeModifiers()->getTabsModifier()->setBarMode(self, reinterpret_cast(&value_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_barMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsAttribute_cachedMaxCount(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -20945,7 +20945,7 @@ void impl_TabsAttribute_cachedMaxCount(Ark_NativePointer thisPtr, KSerializerBuf mode_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_TabsCacheMode mode_value = mode_value_buf;; - GetNodeModifiers()->getTabsModifier()->setCachedMaxCount(self, (const Opt_Number*)&count_value, (const Opt_TabsCacheMode*)&mode_value); + GetNodeModifiers()->getTabsModifier()->setCachedMaxCount(self, reinterpret_cast(&count_value), reinterpret_cast(&mode_value)); } KOALA_INTEROP_DIRECT_V3(TabsAttribute_cachedMaxCount, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Text_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -20985,7 +20985,7 @@ void impl_TextInterface_setTextOptions(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = TextOptions_serializer::read(thisDeserializer); } Opt_TextOptions value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setTextOptions(self, (const Opt_Union_String_Resource*)&content_value, (const Opt_TextOptions*)&value_value); + GetNodeModifiers()->getTextModifier()->setTextOptions(self, reinterpret_cast(&content_value), reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInterface_setTextOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21021,7 +21021,7 @@ void impl_TextAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setFontColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getTextModifier()->setFontColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_fontColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_fontSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21053,7 +21053,7 @@ void impl_TextAttribute_fontSize(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setFontSize(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getTextModifier()->setFontSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_fontSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_minFontSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21085,7 +21085,7 @@ void impl_TextAttribute_minFontSize(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setMinFontSize(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getTextModifier()->setMinFontSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_minFontSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_maxFontSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21117,7 +21117,7 @@ void impl_TextAttribute_maxFontSize(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setMaxFontSize(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getTextModifier()->setMaxFontSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_maxFontSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_minFontScale(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21145,7 +21145,7 @@ void impl_TextAttribute_minFontScale(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_Resource value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setMinFontScale(self, (const Opt_Union_Number_Resource*)&value_value); + GetNodeModifiers()->getTextModifier()->setMinFontScale(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_minFontScale, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_maxFontScale(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21173,7 +21173,7 @@ void impl_TextAttribute_maxFontScale(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_Resource value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setMaxFontScale(self, (const Opt_Union_Number_Resource*)&value_value); + GetNodeModifiers()->getTextModifier()->setMaxFontScale(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_maxFontScale, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_fontStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21187,7 +21187,7 @@ void impl_TextAttribute_fontStyle(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_FontStyle value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setFontStyle(self, (const Opt_FontStyle*)&value_value); + GetNodeModifiers()->getTextModifier()->setFontStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_fontStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_lineSpacing(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21201,7 +21201,7 @@ void impl_TextAttribute_lineSpacing(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(LengthMetrics_serializer::read(thisDeserializer)); } Opt_LengthMetrics value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setLineSpacing(self, (const Opt_LengthMetrics*)&value_value); + GetNodeModifiers()->getTextModifier()->setLineSpacing(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_lineSpacing, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_textAlign(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21215,7 +21215,7 @@ void impl_TextAttribute_textAlign(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_TextAlign value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setTextAlign(self, (const Opt_TextAlign*)&value_value); + GetNodeModifiers()->getTextModifier()->setTextAlign(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_textAlign, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_lineHeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21247,7 +21247,7 @@ void impl_TextAttribute_lineHeight(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setLineHeight(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getTextModifier()->setLineHeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_lineHeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_textOverflow(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21261,7 +21261,7 @@ void impl_TextAttribute_textOverflow(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = TextOverflowOptions_serializer::read(thisDeserializer); } Opt_TextOverflowOptions value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setTextOverflow(self, (const Opt_TextOverflowOptions*)&value_value); + GetNodeModifiers()->getTextModifier()->setTextOverflow(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_textOverflow, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_fontFamily(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21289,7 +21289,7 @@ void impl_TextAttribute_fontFamily(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setFontFamily(self, (const Opt_Union_String_Resource*)&value_value); + GetNodeModifiers()->getTextModifier()->setFontFamily(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_fontFamily, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_maxLines(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21303,7 +21303,7 @@ void impl_TextAttribute_maxLines(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setMaxLines(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getTextModifier()->setMaxLines(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_maxLines, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_decoration(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21317,7 +21317,7 @@ void impl_TextAttribute_decoration(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = DecorationStyleInterface_serializer::read(thisDeserializer); } Opt_DecorationStyleInterface value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setDecoration(self, (const Opt_DecorationStyleInterface*)&value_value); + GetNodeModifiers()->getTextModifier()->setDecoration(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_decoration, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_letterSpacing(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21345,7 +21345,7 @@ void impl_TextAttribute_letterSpacing(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setLetterSpacing(self, (const Opt_Union_Number_String*)&value_value); + GetNodeModifiers()->getTextModifier()->setLetterSpacing(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_letterSpacing, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_textCase(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21359,7 +21359,7 @@ void impl_TextAttribute_textCase(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_TextCase value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setTextCase(self, (const Opt_TextCase*)&value_value); + GetNodeModifiers()->getTextModifier()->setTextCase(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_textCase, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_baselineOffset(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21387,7 +21387,7 @@ void impl_TextAttribute_baselineOffset(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setBaselineOffset(self, (const Opt_Union_Number_String*)&value_value); + GetNodeModifiers()->getTextModifier()->setBaselineOffset(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_baselineOffset, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_copyOption(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21401,7 +21401,7 @@ void impl_TextAttribute_copyOption(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_CopyOptions value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setCopyOption(self, (const Opt_CopyOptions*)&value_value); + GetNodeModifiers()->getTextModifier()->setCopyOption(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_copyOption, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_draggable(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21415,7 +21415,7 @@ void impl_TextAttribute_draggable(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setDraggable(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextModifier()->setDraggable(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_draggable, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_textShadow(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21450,7 +21450,7 @@ void impl_TextAttribute_textShadow(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_ShadowOptions_Array_ShadowOptions value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setTextShadow(self, (const Opt_Union_ShadowOptions_Array_ShadowOptions*)&value_value); + GetNodeModifiers()->getTextModifier()->setTextShadow(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_textShadow, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_heightAdaptivePolicy(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21464,7 +21464,7 @@ void impl_TextAttribute_heightAdaptivePolicy(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_TextHeightAdaptivePolicy value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setHeightAdaptivePolicy(self, (const Opt_TextHeightAdaptivePolicy*)&value_value); + GetNodeModifiers()->getTextModifier()->setHeightAdaptivePolicy(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_heightAdaptivePolicy, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_textIndent(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21496,7 +21496,7 @@ void impl_TextAttribute_textIndent(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setTextIndent(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getTextModifier()->setTextIndent(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_textIndent, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_wordBreak(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21510,7 +21510,7 @@ void impl_TextAttribute_wordBreak(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_WordBreak value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setWordBreak(self, (const Opt_WordBreak*)&value_value); + GetNodeModifiers()->getTextModifier()->setWordBreak(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_wordBreak, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_lineBreakStrategy(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21524,7 +21524,7 @@ void impl_TextAttribute_lineBreakStrategy(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_LineBreakStrategy value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setLineBreakStrategy(self, (const Opt_LineBreakStrategy*)&value_value); + GetNodeModifiers()->getTextModifier()->setLineBreakStrategy(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_lineBreakStrategy, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_onCopy(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21538,7 +21538,7 @@ void impl_TextAttribute_onCopy(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_String_Void))))}; } Opt_Callback_String_Void value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setOnCopy(self, (const Opt_Callback_String_Void*)&value_value); + GetNodeModifiers()->getTextModifier()->setOnCopy(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_onCopy, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_caretColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21574,7 +21574,7 @@ void impl_TextAttribute_caretColor(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setCaretColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getTextModifier()->setCaretColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_caretColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_selectedBackgroundColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21610,7 +21610,7 @@ void impl_TextAttribute_selectedBackgroundColor(Ark_NativePointer thisPtr, KSeri value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setSelectedBackgroundColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getTextModifier()->setSelectedBackgroundColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_selectedBackgroundColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_ellipsisMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21624,7 +21624,7 @@ void impl_TextAttribute_ellipsisMode(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EllipsisMode value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setEllipsisMode(self, (const Opt_EllipsisMode*)&value_value); + GetNodeModifiers()->getTextModifier()->setEllipsisMode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_ellipsisMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_enableDataDetector(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21638,7 +21638,7 @@ void impl_TextAttribute_enableDataDetector(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setEnableDataDetector(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextModifier()->setEnableDataDetector(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_enableDataDetector, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_dataDetectorConfig(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21652,7 +21652,7 @@ void impl_TextAttribute_dataDetectorConfig(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = TextDataDetectorConfig_serializer::read(thisDeserializer); } Opt_TextDataDetectorConfig value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setDataDetectorConfig(self, (const Opt_TextDataDetectorConfig*)&value_value); + GetNodeModifiers()->getTextModifier()->setDataDetectorConfig(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_dataDetectorConfig, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_onTextSelectionChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21666,7 +21666,7 @@ void impl_TextAttribute_onTextSelectionChange(Ark_NativePointer thisPtr, KSerial value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Number_Void))))}; } Opt_Callback_Number_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setOnTextSelectionChange(self, (const Opt_Callback_Number_Number_Void*)&value_value); + GetNodeModifiers()->getTextModifier()->setOnTextSelectionChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_onTextSelectionChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_fontFeature(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21680,7 +21680,7 @@ void impl_TextAttribute_fontFeature(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setFontFeature(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getTextModifier()->setFontFeature(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_fontFeature, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_marqueeOptions(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21694,7 +21694,7 @@ void impl_TextAttribute_marqueeOptions(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = TextMarqueeOptions_serializer::read(thisDeserializer); } Opt_TextMarqueeOptions value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setMarqueeOptions(self, (const Opt_TextMarqueeOptions*)&value_value); + GetNodeModifiers()->getTextModifier()->setMarqueeOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_marqueeOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_onMarqueeStateChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21708,7 +21708,7 @@ void impl_TextAttribute_onMarqueeStateChange(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_MarqueeState_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_MarqueeState_Void))))}; } Opt_Callback_MarqueeState_Void value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setOnMarqueeStateChange(self, (const Opt_Callback_MarqueeState_Void*)&value_value); + GetNodeModifiers()->getTextModifier()->setOnMarqueeStateChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_onMarqueeStateChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_privacySensitive(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21722,7 +21722,7 @@ void impl_TextAttribute_privacySensitive(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setPrivacySensitive(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextModifier()->setPrivacySensitive(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_privacySensitive, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_textSelectable(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21736,7 +21736,7 @@ void impl_TextAttribute_textSelectable(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_TextSelectableMode value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setTextSelectable(self, (const Opt_TextSelectableMode*)&value_value); + GetNodeModifiers()->getTextModifier()->setTextSelectable(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_textSelectable, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_editMenuOptions(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21750,7 +21750,7 @@ void impl_TextAttribute_editMenuOptions(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = EditMenuOptions_serializer::read(thisDeserializer); } Opt_EditMenuOptions value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setEditMenuOptions(self, (const Opt_EditMenuOptions*)&value_value); + GetNodeModifiers()->getTextModifier()->setEditMenuOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_editMenuOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_halfLeading(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21764,7 +21764,7 @@ void impl_TextAttribute_halfLeading(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setHalfLeading(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextModifier()->setHalfLeading(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_halfLeading, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_enableHapticFeedback(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21778,7 +21778,7 @@ void impl_TextAttribute_enableHapticFeedback(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextModifier()->setEnableHapticFeedback(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextModifier()->setEnableHapticFeedback(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_enableHapticFeedback, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_font(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21800,7 +21800,7 @@ void impl_TextAttribute_font(Ark_NativePointer thisPtr, KSerializerBuffer thisAr options_value_buf.value = FontSettingOptions_serializer::read(thisDeserializer); } Opt_FontSettingOptions options_value = options_value_buf;; - GetNodeModifiers()->getTextModifier()->setFont(self, (const Opt_Font*)&fontValue_value, (const Opt_FontSettingOptions*)&options_value); + GetNodeModifiers()->getTextModifier()->setFont(self, reinterpret_cast(&fontValue_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_font, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_fontWeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21840,7 +21840,7 @@ void impl_TextAttribute_fontWeight(Ark_NativePointer thisPtr, KSerializerBuffer options_value_buf.value = FontSettingOptions_serializer::read(thisDeserializer); } Opt_FontSettingOptions options_value = options_value_buf;; - GetNodeModifiers()->getTextModifier()->setFontWeight(self, (const Opt_Union_Number_FontWeight_String*)&weight_value, (const Opt_FontSettingOptions*)&options_value); + GetNodeModifiers()->getTextModifier()->setFontWeight(self, reinterpret_cast(&weight_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_fontWeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_selection(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21862,7 +21862,7 @@ void impl_TextAttribute_selection(Ark_NativePointer thisPtr, KSerializerBuffer t selectionEnd_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number selectionEnd_value = selectionEnd_value_buf;; - GetNodeModifiers()->getTextModifier()->setSelection(self, (const Opt_Number*)&selectionStart_value, (const Opt_Number*)&selectionEnd_value); + GetNodeModifiers()->getTextModifier()->setSelection(self, reinterpret_cast(&selectionStart_value), reinterpret_cast(&selectionEnd_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_selection, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAttribute_bindSelectionMenu(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21900,7 +21900,7 @@ void impl_TextAttribute_bindSelectionMenu(Ark_NativePointer thisPtr, KSerializer options_value_buf.value = SelectionMenuOptions_serializer::read(thisDeserializer); } Opt_SelectionMenuOptions options_value = options_value_buf;; - GetNodeModifiers()->getTextModifier()->setBindSelectionMenu(self, (const Opt_TextSpanType*)&spanType_value, (const Opt_CustomNodeBuilder*)&content_value, (const Opt_TextResponseType*)&responseType_value, (const Opt_SelectionMenuOptions*)&options_value); + GetNodeModifiers()->getTextModifier()->setBindSelectionMenu(self, reinterpret_cast(&spanType_value), reinterpret_cast(&content_value), reinterpret_cast(&responseType_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(TextAttribute_bindSelectionMenu, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TextArea_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -21918,7 +21918,7 @@ void impl_TextAreaInterface_setTextAreaOptions(Ark_NativePointer thisPtr, KSeria value_value_buf.value = TextAreaOptions_serializer::read(thisDeserializer); } Opt_TextAreaOptions value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setTextAreaOptions(self, (const Opt_TextAreaOptions*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setTextAreaOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaInterface_setTextAreaOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_placeholderColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21954,7 +21954,7 @@ void impl_TextAreaAttribute_placeholderColor(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setPlaceholderColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setPlaceholderColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_placeholderColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_placeholderFont(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21968,7 +21968,7 @@ void impl_TextAreaAttribute_placeholderFont(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = Font_serializer::read(thisDeserializer); } Opt_Font value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setPlaceholderFont(self, (const Opt_Font*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setPlaceholderFont(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_placeholderFont, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_enterKeyType(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21982,7 +21982,7 @@ void impl_TextAreaAttribute_enterKeyType(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EnterKeyType value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setEnterKeyType(self, (const Opt_EnterKeyType*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setEnterKeyType(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_enterKeyType, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_textAlign(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -21996,7 +21996,7 @@ void impl_TextAreaAttribute_textAlign(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_TextAlign value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setTextAlign(self, (const Opt_TextAlign*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setTextAlign(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_textAlign, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_caretColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22032,7 +22032,7 @@ void impl_TextAreaAttribute_caretColor(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setCaretColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setCaretColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_caretColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22068,7 +22068,7 @@ void impl_TextAreaAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setFontColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setFontColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_fontColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_fontSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22100,7 +22100,7 @@ void impl_TextAreaAttribute_fontSize(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setFontSize(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setFontSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_fontSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_fontStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22114,7 +22114,7 @@ void impl_TextAreaAttribute_fontStyle(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_FontStyle value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setFontStyle(self, (const Opt_FontStyle*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setFontStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_fontStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_fontWeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22146,7 +22146,7 @@ void impl_TextAreaAttribute_fontWeight(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_FontWeight_String value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setFontWeight(self, (const Opt_Union_Number_FontWeight_String*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setFontWeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_fontWeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_fontFamily(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22174,7 +22174,7 @@ void impl_TextAreaAttribute_fontFamily(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceStr value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setFontFamily(self, (const Opt_ResourceStr*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setFontFamily(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_fontFamily, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_textOverflow(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22188,7 +22188,7 @@ void impl_TextAreaAttribute_textOverflow(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_TextOverflow value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setTextOverflow(self, (const Opt_TextOverflow*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setTextOverflow(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_textOverflow, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_textIndent(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22220,7 +22220,7 @@ void impl_TextAreaAttribute_textIndent(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_Dimension value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setTextIndent(self, (const Opt_Dimension*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setTextIndent(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_textIndent, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_caretStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22234,7 +22234,7 @@ void impl_TextAreaAttribute_caretStyle(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = CaretStyle_serializer::read(thisDeserializer); } Opt_CaretStyle value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setCaretStyle(self, (const Opt_CaretStyle*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setCaretStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_caretStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_selectedBackgroundColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22270,7 +22270,7 @@ void impl_TextAreaAttribute_selectedBackgroundColor(Ark_NativePointer thisPtr, K value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setSelectedBackgroundColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setSelectedBackgroundColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_selectedBackgroundColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_onSubmit(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22298,7 +22298,7 @@ void impl_TextAreaAttribute_onSubmit(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Callback_EnterKeyType_Void_TextAreaSubmitCallback value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setOnSubmit(self, (const Opt_Union_Callback_EnterKeyType_Void_TextAreaSubmitCallback*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setOnSubmit(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_onSubmit, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22312,7 +22312,7 @@ void impl_TextAreaAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_EditableTextOnChangeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_EditableTextOnChangeCallback))))}; } Opt_EditableTextOnChangeCallback value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setOnChange(self, (const Opt_EditableTextOnChangeCallback*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setOnChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_onChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_onTextSelectionChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22326,7 +22326,7 @@ void impl_TextAreaAttribute_onTextSelectionChange(Ark_NativePointer thisPtr, KSe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Number_Void))))}; } Opt_Callback_Number_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setOnTextSelectionChange(self, (const Opt_Callback_Number_Number_Void*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setOnTextSelectionChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_onTextSelectionChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_onContentScroll(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22340,7 +22340,7 @@ void impl_TextAreaAttribute_onContentScroll(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Number_Void))))}; } Opt_Callback_Number_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setOnContentScroll(self, (const Opt_Callback_Number_Number_Void*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setOnContentScroll(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_onContentScroll, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_onEditChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22354,7 +22354,7 @@ void impl_TextAreaAttribute_onEditChange(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Boolean_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Boolean_Void))))}; } Opt_Callback_Boolean_Void value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setOnEditChange(self, (const Opt_Callback_Boolean_Void*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setOnEditChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_onEditChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_onCopy(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22368,7 +22368,7 @@ void impl_TextAreaAttribute_onCopy(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_String_Void))))}; } Opt_Callback_String_Void value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setOnCopy(self, (const Opt_Callback_String_Void*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setOnCopy(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_onCopy, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_onCut(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22382,7 +22382,7 @@ void impl_TextAreaAttribute_onCut(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_String_Void))))}; } Opt_Callback_String_Void value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setOnCut(self, (const Opt_Callback_String_Void*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setOnCut(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_onCut, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_onPaste(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22396,7 +22396,7 @@ void impl_TextAreaAttribute_onPaste(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_String_PasteEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_String_PasteEvent_Void))))}; } Opt_Callback_String_PasteEvent_Void value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setOnPaste(self, (const Opt_Callback_String_PasteEvent_Void*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setOnPaste(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_onPaste, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_copyOption(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22410,7 +22410,7 @@ void impl_TextAreaAttribute_copyOption(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_CopyOptions value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setCopyOption(self, (const Opt_CopyOptions*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setCopyOption(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_copyOption, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_enableKeyboardOnFocus(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22424,7 +22424,7 @@ void impl_TextAreaAttribute_enableKeyboardOnFocus(Ark_NativePointer thisPtr, KSe value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setEnableKeyboardOnFocus(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setEnableKeyboardOnFocus(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_enableKeyboardOnFocus, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_maxLength(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22438,7 +22438,7 @@ void impl_TextAreaAttribute_maxLength(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setMaxLength(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setMaxLength(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_maxLength, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_style(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22452,7 +22452,7 @@ void impl_TextAreaAttribute_style(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_TextContentStyle value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setStyle(self, (const Opt_TextContentStyle*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_style, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_barState(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22466,7 +22466,7 @@ void impl_TextAreaAttribute_barState(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_BarState value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setBarState(self, (const Opt_BarState*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setBarState(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_barState, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_selectionMenuHidden(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22480,7 +22480,7 @@ void impl_TextAreaAttribute_selectionMenuHidden(Ark_NativePointer thisPtr, KSeri value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setSelectionMenuHidden(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setSelectionMenuHidden(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_selectionMenuHidden, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_minFontSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22512,7 +22512,7 @@ void impl_TextAreaAttribute_minFontSize(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setMinFontSize(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setMinFontSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_minFontSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_maxFontSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22544,7 +22544,7 @@ void impl_TextAreaAttribute_maxFontSize(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setMaxFontSize(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setMaxFontSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_maxFontSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_minFontScale(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22572,7 +22572,7 @@ void impl_TextAreaAttribute_minFontScale(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_Resource value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setMinFontScale(self, (const Opt_Union_Number_Resource*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setMinFontScale(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_minFontScale, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_maxFontScale(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22600,7 +22600,7 @@ void impl_TextAreaAttribute_maxFontScale(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_Resource value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setMaxFontScale(self, (const Opt_Union_Number_Resource*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setMaxFontScale(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_maxFontScale, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_heightAdaptivePolicy(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22614,7 +22614,7 @@ void impl_TextAreaAttribute_heightAdaptivePolicy(Ark_NativePointer thisPtr, KSer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_TextHeightAdaptivePolicy value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setHeightAdaptivePolicy(self, (const Opt_TextHeightAdaptivePolicy*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setHeightAdaptivePolicy(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_heightAdaptivePolicy, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_maxLines(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22628,7 +22628,7 @@ void impl_TextAreaAttribute_maxLines(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setMaxLines(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setMaxLines(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_maxLines, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_wordBreak(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22642,7 +22642,7 @@ void impl_TextAreaAttribute_wordBreak(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_WordBreak value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setWordBreak(self, (const Opt_WordBreak*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setWordBreak(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_wordBreak, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_lineBreakStrategy(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22656,7 +22656,7 @@ void impl_TextAreaAttribute_lineBreakStrategy(Ark_NativePointer thisPtr, KSerial value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_LineBreakStrategy value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setLineBreakStrategy(self, (const Opt_LineBreakStrategy*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setLineBreakStrategy(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_lineBreakStrategy, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_decoration(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22670,7 +22670,7 @@ void impl_TextAreaAttribute_decoration(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = TextDecorationOptions_serializer::read(thisDeserializer); } Opt_TextDecorationOptions value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setDecoration(self, (const Opt_TextDecorationOptions*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setDecoration(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_decoration, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_letterSpacing(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22702,7 +22702,7 @@ void impl_TextAreaAttribute_letterSpacing(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setLetterSpacing(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setLetterSpacing(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_letterSpacing, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_lineSpacing(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22716,7 +22716,7 @@ void impl_TextAreaAttribute_lineSpacing(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(LengthMetrics_serializer::read(thisDeserializer)); } Opt_LengthMetrics value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setLineSpacing(self, (const Opt_LengthMetrics*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setLineSpacing(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_lineSpacing, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_lineHeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22748,7 +22748,7 @@ void impl_TextAreaAttribute_lineHeight(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setLineHeight(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setLineHeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_lineHeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_type(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22762,7 +22762,7 @@ void impl_TextAreaAttribute_type(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_TextAreaType value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setType(self, (const Opt_TextAreaType*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setType(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_type, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_enableAutoFill(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22776,7 +22776,7 @@ void impl_TextAreaAttribute_enableAutoFill(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setEnableAutoFill(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setEnableAutoFill(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_enableAutoFill, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_contentType(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22790,7 +22790,7 @@ void impl_TextAreaAttribute_contentType(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ContentType value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setContentType(self, (const Opt_ContentType*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setContentType(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_contentType, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_fontFeature(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22804,7 +22804,7 @@ void impl_TextAreaAttribute_fontFeature(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setFontFeature(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setFontFeature(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_fontFeature, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_onWillInsert(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22818,7 +22818,7 @@ void impl_TextAreaAttribute_onWillInsert(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_InsertValue_Boolean)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_InsertValue_Boolean))))}; } Opt_Callback_InsertValue_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setOnWillInsert(self, (const Opt_Callback_InsertValue_Boolean*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setOnWillInsert(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_onWillInsert, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_onDidInsert(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22832,7 +22832,7 @@ void impl_TextAreaAttribute_onDidInsert(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_InsertValue_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_InsertValue_Void))))}; } Opt_Callback_InsertValue_Void value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setOnDidInsert(self, (const Opt_Callback_InsertValue_Void*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setOnDidInsert(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_onDidInsert, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_onWillDelete(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22846,7 +22846,7 @@ void impl_TextAreaAttribute_onWillDelete(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_DeleteValue_Boolean)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_DeleteValue_Boolean))))}; } Opt_Callback_DeleteValue_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setOnWillDelete(self, (const Opt_Callback_DeleteValue_Boolean*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setOnWillDelete(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_onWillDelete, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_onDidDelete(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22860,7 +22860,7 @@ void impl_TextAreaAttribute_onDidDelete(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_DeleteValue_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_DeleteValue_Void))))}; } Opt_Callback_DeleteValue_Void value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setOnDidDelete(self, (const Opt_Callback_DeleteValue_Void*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setOnDidDelete(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_onDidDelete, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_editMenuOptions(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22874,7 +22874,7 @@ void impl_TextAreaAttribute_editMenuOptions(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = EditMenuOptions_serializer::read(thisDeserializer); } Opt_EditMenuOptions value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setEditMenuOptions(self, (const Opt_EditMenuOptions*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setEditMenuOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_editMenuOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_enablePreviewText(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22888,7 +22888,7 @@ void impl_TextAreaAttribute_enablePreviewText(Ark_NativePointer thisPtr, KSerial value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setEnablePreviewText(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setEnablePreviewText(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_enablePreviewText, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_enableHapticFeedback(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22902,7 +22902,7 @@ void impl_TextAreaAttribute_enableHapticFeedback(Ark_NativePointer thisPtr, KSer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setEnableHapticFeedback(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setEnableHapticFeedback(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_enableHapticFeedback, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_autoCapitalizationMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22916,7 +22916,7 @@ void impl_TextAreaAttribute_autoCapitalizationMode(Ark_NativePointer thisPtr, KS value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_AutoCapitalizationMode value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setAutoCapitalizationMode(self, (const Opt_AutoCapitalizationMode*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setAutoCapitalizationMode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_autoCapitalizationMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_halfLeading(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22930,7 +22930,7 @@ void impl_TextAreaAttribute_halfLeading(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setHalfLeading(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setHalfLeading(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_halfLeading, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_ellipsisMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22944,7 +22944,7 @@ void impl_TextAreaAttribute_ellipsisMode(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EllipsisMode value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setEllipsisMode(self, (const Opt_EllipsisMode*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setEllipsisMode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_ellipsisMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_stopBackPress(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22958,7 +22958,7 @@ void impl_TextAreaAttribute_stopBackPress(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setStopBackPress(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setStopBackPress(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_stopBackPress, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_onWillChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22972,7 +22972,7 @@ void impl_TextAreaAttribute_onWillChange(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_EditableTextChangeValue_Boolean)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_EditableTextChangeValue_Boolean))))}; } Opt_Callback_EditableTextChangeValue_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setOnWillChange(self, (const Opt_Callback_EditableTextChangeValue_Boolean*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setOnWillChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_onWillChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_keyboardAppearance(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -22986,7 +22986,7 @@ void impl_TextAreaAttribute_keyboardAppearance(Ark_NativePointer thisPtr, KSeria value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_KeyboardAppearance value_value = value_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setKeyboardAppearance(self, (const Opt_KeyboardAppearance*)&value_value); + GetNodeModifiers()->getTextAreaModifier()->setKeyboardAppearance(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_keyboardAppearance, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_inputFilter(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23022,7 +23022,7 @@ void impl_TextAreaAttribute_inputFilter(Ark_NativePointer thisPtr, KSerializerBu error_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_String_Void))))}; } Opt_Callback_String_Void error_value = error_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setInputFilter(self, (const Opt_ResourceStr*)&value_value, (const Opt_Callback_String_Void*)&error_value); + GetNodeModifiers()->getTextAreaModifier()->setInputFilter(self, reinterpret_cast(&value_value), reinterpret_cast(&error_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_inputFilter, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_showCounter(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23044,7 +23044,7 @@ void impl_TextAreaAttribute_showCounter(Ark_NativePointer thisPtr, KSerializerBu options_value_buf.value = InputCounterOptions_serializer::read(thisDeserializer); } Opt_InputCounterOptions options_value = options_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setShowCounter(self, (const Opt_Boolean*)&value_value, (const Opt_InputCounterOptions*)&options_value); + GetNodeModifiers()->getTextAreaModifier()->setShowCounter(self, reinterpret_cast(&value_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_showCounter, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextAreaAttribute_customKeyboard(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23066,7 +23066,7 @@ void impl_TextAreaAttribute_customKeyboard(Ark_NativePointer thisPtr, KSerialize options_value_buf.value = KeyboardOptions_serializer::read(thisDeserializer); } Opt_KeyboardOptions options_value = options_value_buf;; - GetNodeModifiers()->getTextAreaModifier()->setCustomKeyboard(self, (const Opt_CustomNodeBuilder*)&value_value, (const Opt_KeyboardOptions*)&options_value); + GetNodeModifiers()->getTextAreaModifier()->setCustomKeyboard(self, reinterpret_cast(&value_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(TextAreaAttribute_customKeyboard, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TextClock_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -23084,7 +23084,7 @@ void impl_TextClockInterface_setTextClockOptions(Ark_NativePointer thisPtr, KSer options_value_buf.value = TextClockOptions_serializer::read(thisDeserializer); } Opt_TextClockOptions options_value = options_value_buf;; - GetNodeModifiers()->getTextClockModifier()->setTextClockOptions(self, (const Opt_TextClockOptions*)&options_value); + GetNodeModifiers()->getTextClockModifier()->setTextClockOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(TextClockInterface_setTextClockOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextClockAttribute_format(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23112,7 +23112,7 @@ void impl_TextClockAttribute_format(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceStr value_value = value_value_buf;; - GetNodeModifiers()->getTextClockModifier()->setFormat(self, (const Opt_ResourceStr*)&value_value); + GetNodeModifiers()->getTextClockModifier()->setFormat(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextClockAttribute_format, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextClockAttribute_onDateChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23126,7 +23126,7 @@ void impl_TextClockAttribute_onDateChange(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Void))))}; } Opt_Callback_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getTextClockModifier()->setOnDateChange(self, (const Opt_Callback_Number_Void*)&value_value); + GetNodeModifiers()->getTextClockModifier()->setOnDateChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextClockAttribute_onDateChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextClockAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23162,7 +23162,7 @@ void impl_TextClockAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getTextClockModifier()->setFontColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getTextClockModifier()->setFontColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextClockAttribute_fontColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextClockAttribute_fontSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23194,7 +23194,7 @@ void impl_TextClockAttribute_fontSize(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getTextClockModifier()->setFontSize(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getTextClockModifier()->setFontSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextClockAttribute_fontSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextClockAttribute_fontStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23208,7 +23208,7 @@ void impl_TextClockAttribute_fontStyle(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_FontStyle value_value = value_value_buf;; - GetNodeModifiers()->getTextClockModifier()->setFontStyle(self, (const Opt_FontStyle*)&value_value); + GetNodeModifiers()->getTextClockModifier()->setFontStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextClockAttribute_fontStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextClockAttribute_fontWeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23240,7 +23240,7 @@ void impl_TextClockAttribute_fontWeight(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_FontWeight_String value_value = value_value_buf;; - GetNodeModifiers()->getTextClockModifier()->setFontWeight(self, (const Opt_Union_Number_FontWeight_String*)&value_value); + GetNodeModifiers()->getTextClockModifier()->setFontWeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextClockAttribute_fontWeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextClockAttribute_fontFamily(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23268,7 +23268,7 @@ void impl_TextClockAttribute_fontFamily(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceStr value_value = value_value_buf;; - GetNodeModifiers()->getTextClockModifier()->setFontFamily(self, (const Opt_ResourceStr*)&value_value); + GetNodeModifiers()->getTextClockModifier()->setFontFamily(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextClockAttribute_fontFamily, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextClockAttribute_textShadow(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23303,7 +23303,7 @@ void impl_TextClockAttribute_textShadow(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_ShadowOptions_Array_ShadowOptions value_value = value_value_buf;; - GetNodeModifiers()->getTextClockModifier()->setTextShadow(self, (const Opt_Union_ShadowOptions_Array_ShadowOptions*)&value_value); + GetNodeModifiers()->getTextClockModifier()->setTextShadow(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextClockAttribute_textShadow, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextClockAttribute_fontFeature(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23317,7 +23317,7 @@ void impl_TextClockAttribute_fontFeature(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getTextClockModifier()->setFontFeature(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getTextClockModifier()->setFontFeature(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextClockAttribute_fontFeature, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextClockAttribute_contentModifier(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23331,7 +23331,7 @@ void impl_TextClockAttribute_contentModifier(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = static_cast(thisDeserializer.readObject()); } Opt_ContentModifier value_value = value_value_buf;; - GetNodeModifiers()->getTextClockModifier()->setContentModifier(self, (const Opt_ContentModifier*)&value_value); + GetNodeModifiers()->getTextClockModifier()->setContentModifier(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextClockAttribute_contentModifier, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextClockAttribute_dateTimeOptions(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23345,7 +23345,7 @@ void impl_TextClockAttribute_dateTimeOptions(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = intl_DateTimeOptions_serializer::read(thisDeserializer); } Opt_intl_DateTimeOptions value_value = value_value_buf;; - GetNodeModifiers()->getTextClockModifier()->setDateTimeOptions(self, (const Opt_intl_DateTimeOptions*)&value_value); + GetNodeModifiers()->getTextClockModifier()->setDateTimeOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextClockAttribute_dateTimeOptions, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TextInput_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -23363,7 +23363,7 @@ void impl_TextInputInterface_setTextInputOptions(Ark_NativePointer thisPtr, KSer value_value_buf.value = TextInputOptions_serializer::read(thisDeserializer); } Opt_TextInputOptions value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setTextInputOptions(self, (const Opt_TextInputOptions*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setTextInputOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputInterface_setTextInputOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_type(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23377,7 +23377,7 @@ void impl_TextInputAttribute_type(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_InputType value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setType(self, (const Opt_InputType*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setType(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_type, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_contentType(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23391,7 +23391,7 @@ void impl_TextInputAttribute_contentType(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ContentType value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setContentType(self, (const Opt_ContentType*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setContentType(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_contentType, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_placeholderColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23427,7 +23427,7 @@ void impl_TextInputAttribute_placeholderColor(Ark_NativePointer thisPtr, KSerial value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setPlaceholderColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setPlaceholderColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_placeholderColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_textOverflow(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23441,7 +23441,7 @@ void impl_TextInputAttribute_textOverflow(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_TextOverflow value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setTextOverflow(self, (const Opt_TextOverflow*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setTextOverflow(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_textOverflow, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_textIndent(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23473,7 +23473,7 @@ void impl_TextInputAttribute_textIndent(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(value_value_buf_); } Opt_Dimension value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setTextIndent(self, (const Opt_Dimension*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setTextIndent(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_textIndent, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_placeholderFont(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23487,7 +23487,7 @@ void impl_TextInputAttribute_placeholderFont(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = Font_serializer::read(thisDeserializer); } Opt_Font value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setPlaceholderFont(self, (const Opt_Font*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setPlaceholderFont(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_placeholderFont, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_enterKeyType(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23501,7 +23501,7 @@ void impl_TextInputAttribute_enterKeyType(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EnterKeyType value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setEnterKeyType(self, (const Opt_EnterKeyType*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setEnterKeyType(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_enterKeyType, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_caretColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23537,7 +23537,7 @@ void impl_TextInputAttribute_caretColor(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setCaretColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setCaretColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_caretColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_onEditChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23551,7 +23551,7 @@ void impl_TextInputAttribute_onEditChange(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Boolean_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Boolean_Void))))}; } Opt_Callback_Boolean_Void value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setOnEditChange(self, (const Opt_Callback_Boolean_Void*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setOnEditChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_onEditChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_onSubmit(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23565,7 +23565,7 @@ void impl_TextInputAttribute_onSubmit(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnSubmitCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnSubmitCallback))))}; } Opt_OnSubmitCallback value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setOnSubmit(self, (const Opt_OnSubmitCallback*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setOnSubmit(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_onSubmit, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23579,7 +23579,7 @@ void impl_TextInputAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_EditableTextOnChangeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_EditableTextOnChangeCallback))))}; } Opt_EditableTextOnChangeCallback value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setOnChange(self, (const Opt_EditableTextOnChangeCallback*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setOnChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_onChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_onTextSelectionChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23593,7 +23593,7 @@ void impl_TextInputAttribute_onTextSelectionChange(Ark_NativePointer thisPtr, KS value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnTextSelectionChangeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnTextSelectionChangeCallback))))}; } Opt_OnTextSelectionChangeCallback value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setOnTextSelectionChange(self, (const Opt_OnTextSelectionChangeCallback*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setOnTextSelectionChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_onTextSelectionChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_onContentScroll(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23607,7 +23607,7 @@ void impl_TextInputAttribute_onContentScroll(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnContentScrollCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnContentScrollCallback))))}; } Opt_OnContentScrollCallback value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setOnContentScroll(self, (const Opt_OnContentScrollCallback*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setOnContentScroll(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_onContentScroll, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_maxLength(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23621,7 +23621,7 @@ void impl_TextInputAttribute_maxLength(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setMaxLength(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setMaxLength(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_maxLength, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23657,7 +23657,7 @@ void impl_TextInputAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setFontColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setFontColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_fontColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_fontSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23689,7 +23689,7 @@ void impl_TextInputAttribute_fontSize(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setFontSize(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setFontSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_fontSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_fontStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23703,7 +23703,7 @@ void impl_TextInputAttribute_fontStyle(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_FontStyle value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setFontStyle(self, (const Opt_FontStyle*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setFontStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_fontStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_fontWeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23735,7 +23735,7 @@ void impl_TextInputAttribute_fontWeight(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_FontWeight_String value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setFontWeight(self, (const Opt_Union_Number_FontWeight_String*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setFontWeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_fontWeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_fontFamily(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23763,7 +23763,7 @@ void impl_TextInputAttribute_fontFamily(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceStr value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setFontFamily(self, (const Opt_ResourceStr*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setFontFamily(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_fontFamily, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_onCopy(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23777,7 +23777,7 @@ void impl_TextInputAttribute_onCopy(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_String_Void))))}; } Opt_Callback_String_Void value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setOnCopy(self, (const Opt_Callback_String_Void*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setOnCopy(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_onCopy, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_onCut(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23791,7 +23791,7 @@ void impl_TextInputAttribute_onCut(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_String_Void))))}; } Opt_Callback_String_Void value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setOnCut(self, (const Opt_Callback_String_Void*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setOnCut(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_onCut, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_onPaste(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23805,7 +23805,7 @@ void impl_TextInputAttribute_onPaste(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnPasteCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnPasteCallback))))}; } Opt_OnPasteCallback value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setOnPaste(self, (const Opt_OnPasteCallback*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setOnPaste(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_onPaste, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_copyOption(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23819,7 +23819,7 @@ void impl_TextInputAttribute_copyOption(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_CopyOptions value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setCopyOption(self, (const Opt_CopyOptions*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setCopyOption(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_copyOption, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_showPasswordIcon(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23833,7 +23833,7 @@ void impl_TextInputAttribute_showPasswordIcon(Ark_NativePointer thisPtr, KSerial value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setShowPasswordIcon(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setShowPasswordIcon(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_showPasswordIcon, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_textAlign(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23847,7 +23847,7 @@ void impl_TextInputAttribute_textAlign(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_TextAlign value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setTextAlign(self, (const Opt_TextAlign*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setTextAlign(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_textAlign, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_style(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23875,7 +23875,7 @@ void impl_TextInputAttribute_style(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_TextInputStyle_TextContentStyle value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setStyle(self, (const Opt_Union_TextInputStyle_TextContentStyle*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_style, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_caretStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23889,7 +23889,7 @@ void impl_TextInputAttribute_caretStyle(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = CaretStyle_serializer::read(thisDeserializer); } Opt_CaretStyle value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setCaretStyle(self, (const Opt_CaretStyle*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setCaretStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_caretStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_selectedBackgroundColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23925,7 +23925,7 @@ void impl_TextInputAttribute_selectedBackgroundColor(Ark_NativePointer thisPtr, value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setSelectedBackgroundColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setSelectedBackgroundColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_selectedBackgroundColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_caretPosition(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23939,7 +23939,7 @@ void impl_TextInputAttribute_caretPosition(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setCaretPosition(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setCaretPosition(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_caretPosition, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_enableKeyboardOnFocus(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23953,7 +23953,7 @@ void impl_TextInputAttribute_enableKeyboardOnFocus(Ark_NativePointer thisPtr, KS value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setEnableKeyboardOnFocus(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setEnableKeyboardOnFocus(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_enableKeyboardOnFocus, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_passwordIcon(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23967,7 +23967,7 @@ void impl_TextInputAttribute_passwordIcon(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = PasswordIcon_serializer::read(thisDeserializer); } Opt_PasswordIcon value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setPasswordIcon(self, (const Opt_PasswordIcon*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setPasswordIcon(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_passwordIcon, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_showError(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -23995,7 +23995,7 @@ void impl_TextInputAttribute_showError(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceStr value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setShowError(self, (const Opt_ResourceStr*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setShowError(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_showError, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_showUnit(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24009,7 +24009,7 @@ void impl_TextInputAttribute_showUnit(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_CustomNodeBuilder)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_CustomNodeBuilder))))}; } Opt_CustomNodeBuilder value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setShowUnit(self, (const Opt_CustomNodeBuilder*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setShowUnit(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_showUnit, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_showUnderline(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24023,7 +24023,7 @@ void impl_TextInputAttribute_showUnderline(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setShowUnderline(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setShowUnderline(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_showUnderline, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_underlineColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24073,7 +24073,7 @@ void impl_TextInputAttribute_underlineColor(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_ResourceColor_UnderlineColor value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setUnderlineColor(self, (const Opt_Union_ResourceColor_UnderlineColor*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setUnderlineColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_underlineColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_selectionMenuHidden(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24087,7 +24087,7 @@ void impl_TextInputAttribute_selectionMenuHidden(Ark_NativePointer thisPtr, KSer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setSelectionMenuHidden(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setSelectionMenuHidden(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_selectionMenuHidden, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_barState(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24101,7 +24101,7 @@ void impl_TextInputAttribute_barState(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_BarState value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setBarState(self, (const Opt_BarState*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setBarState(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_barState, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_maxLines(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24115,7 +24115,7 @@ void impl_TextInputAttribute_maxLines(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setMaxLines(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setMaxLines(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_maxLines, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_wordBreak(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24129,7 +24129,7 @@ void impl_TextInputAttribute_wordBreak(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_WordBreak value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setWordBreak(self, (const Opt_WordBreak*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setWordBreak(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_wordBreak, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_lineBreakStrategy(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24143,7 +24143,7 @@ void impl_TextInputAttribute_lineBreakStrategy(Ark_NativePointer thisPtr, KSeria value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_LineBreakStrategy value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setLineBreakStrategy(self, (const Opt_LineBreakStrategy*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setLineBreakStrategy(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_lineBreakStrategy, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_cancelButton(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24171,7 +24171,7 @@ void impl_TextInputAttribute_cancelButton(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_CancelButtonOptions_CancelButtonSymbolOptions value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setCancelButton(self, (const Opt_Union_CancelButtonOptions_CancelButtonSymbolOptions*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setCancelButton(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_cancelButton, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_selectAll(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24185,7 +24185,7 @@ void impl_TextInputAttribute_selectAll(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setSelectAll(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setSelectAll(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_selectAll, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_minFontSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24217,7 +24217,7 @@ void impl_TextInputAttribute_minFontSize(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setMinFontSize(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setMinFontSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_minFontSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_maxFontSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24249,7 +24249,7 @@ void impl_TextInputAttribute_maxFontSize(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setMaxFontSize(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setMaxFontSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_maxFontSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_minFontScale(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24277,7 +24277,7 @@ void impl_TextInputAttribute_minFontScale(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_Resource value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setMinFontScale(self, (const Opt_Union_Number_Resource*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setMinFontScale(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_minFontScale, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_maxFontScale(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24305,7 +24305,7 @@ void impl_TextInputAttribute_maxFontScale(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_Resource value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setMaxFontScale(self, (const Opt_Union_Number_Resource*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setMaxFontScale(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_maxFontScale, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_heightAdaptivePolicy(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24319,7 +24319,7 @@ void impl_TextInputAttribute_heightAdaptivePolicy(Ark_NativePointer thisPtr, KSe value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_TextHeightAdaptivePolicy value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setHeightAdaptivePolicy(self, (const Opt_TextHeightAdaptivePolicy*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setHeightAdaptivePolicy(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_heightAdaptivePolicy, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_enableAutoFill(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24333,7 +24333,7 @@ void impl_TextInputAttribute_enableAutoFill(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setEnableAutoFill(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setEnableAutoFill(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_enableAutoFill, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_decoration(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24347,7 +24347,7 @@ void impl_TextInputAttribute_decoration(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = TextDecorationOptions_serializer::read(thisDeserializer); } Opt_TextDecorationOptions value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setDecoration(self, (const Opt_TextDecorationOptions*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setDecoration(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_decoration, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_letterSpacing(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24379,7 +24379,7 @@ void impl_TextInputAttribute_letterSpacing(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setLetterSpacing(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setLetterSpacing(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_letterSpacing, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_lineHeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24411,7 +24411,7 @@ void impl_TextInputAttribute_lineHeight(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String_Resource value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setLineHeight(self, (const Opt_Union_Number_String_Resource*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setLineHeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_lineHeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_passwordRules(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24425,7 +24425,7 @@ void impl_TextInputAttribute_passwordRules(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setPasswordRules(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setPasswordRules(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_passwordRules, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_fontFeature(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24439,7 +24439,7 @@ void impl_TextInputAttribute_fontFeature(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setFontFeature(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setFontFeature(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_fontFeature, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_showPassword(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24453,7 +24453,7 @@ void impl_TextInputAttribute_showPassword(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setShowPassword(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setShowPassword(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_showPassword, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_onSecurityStateChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24467,7 +24467,7 @@ void impl_TextInputAttribute_onSecurityStateChange(Ark_NativePointer thisPtr, KS value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Boolean_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Boolean_Void))))}; } Opt_Callback_Boolean_Void value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setOnSecurityStateChange(self, (const Opt_Callback_Boolean_Void*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setOnSecurityStateChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_onSecurityStateChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_onWillInsert(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24481,7 +24481,7 @@ void impl_TextInputAttribute_onWillInsert(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_InsertValue_Boolean)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_InsertValue_Boolean))))}; } Opt_Callback_InsertValue_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setOnWillInsert(self, (const Opt_Callback_InsertValue_Boolean*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setOnWillInsert(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_onWillInsert, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_onDidInsert(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24495,7 +24495,7 @@ void impl_TextInputAttribute_onDidInsert(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_InsertValue_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_InsertValue_Void))))}; } Opt_Callback_InsertValue_Void value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setOnDidInsert(self, (const Opt_Callback_InsertValue_Void*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setOnDidInsert(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_onDidInsert, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_onWillDelete(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24509,7 +24509,7 @@ void impl_TextInputAttribute_onWillDelete(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_DeleteValue_Boolean)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_DeleteValue_Boolean))))}; } Opt_Callback_DeleteValue_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setOnWillDelete(self, (const Opt_Callback_DeleteValue_Boolean*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setOnWillDelete(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_onWillDelete, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_onDidDelete(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24523,7 +24523,7 @@ void impl_TextInputAttribute_onDidDelete(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_DeleteValue_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_DeleteValue_Void))))}; } Opt_Callback_DeleteValue_Void value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setOnDidDelete(self, (const Opt_Callback_DeleteValue_Void*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setOnDidDelete(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_onDidDelete, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_editMenuOptions(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24537,7 +24537,7 @@ void impl_TextInputAttribute_editMenuOptions(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = EditMenuOptions_serializer::read(thisDeserializer); } Opt_EditMenuOptions value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setEditMenuOptions(self, (const Opt_EditMenuOptions*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setEditMenuOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_editMenuOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_enablePreviewText(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24551,7 +24551,7 @@ void impl_TextInputAttribute_enablePreviewText(Ark_NativePointer thisPtr, KSeria value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setEnablePreviewText(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setEnablePreviewText(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_enablePreviewText, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_enableHapticFeedback(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24565,7 +24565,7 @@ void impl_TextInputAttribute_enableHapticFeedback(Ark_NativePointer thisPtr, KSe value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setEnableHapticFeedback(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setEnableHapticFeedback(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_enableHapticFeedback, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_autoCapitalizationMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24579,7 +24579,7 @@ void impl_TextInputAttribute_autoCapitalizationMode(Ark_NativePointer thisPtr, K value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_AutoCapitalizationMode value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setAutoCapitalizationMode(self, (const Opt_AutoCapitalizationMode*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setAutoCapitalizationMode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_autoCapitalizationMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_halfLeading(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24593,7 +24593,7 @@ void impl_TextInputAttribute_halfLeading(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setHalfLeading(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setHalfLeading(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_halfLeading, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_ellipsisMode(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24607,7 +24607,7 @@ void impl_TextInputAttribute_ellipsisMode(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EllipsisMode value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setEllipsisMode(self, (const Opt_EllipsisMode*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setEllipsisMode(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_ellipsisMode, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_stopBackPress(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24621,7 +24621,7 @@ void impl_TextInputAttribute_stopBackPress(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setStopBackPress(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setStopBackPress(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_stopBackPress, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_onWillChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24635,7 +24635,7 @@ void impl_TextInputAttribute_onWillChange(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_EditableTextChangeValue_Boolean)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_EditableTextChangeValue_Boolean))))}; } Opt_Callback_EditableTextChangeValue_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setOnWillChange(self, (const Opt_Callback_EditableTextChangeValue_Boolean*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setOnWillChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_onWillChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_keyboardAppearance(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24649,7 +24649,7 @@ void impl_TextInputAttribute_keyboardAppearance(Ark_NativePointer thisPtr, KSeri value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_KeyboardAppearance value_value = value_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setKeyboardAppearance(self, (const Opt_KeyboardAppearance*)&value_value); + GetNodeModifiers()->getTextInputModifier()->setKeyboardAppearance(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_keyboardAppearance, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_inputFilter(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24685,7 +24685,7 @@ void impl_TextInputAttribute_inputFilter(Ark_NativePointer thisPtr, KSerializerB error_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_String_Void))))}; } Opt_Callback_String_Void error_value = error_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setInputFilter(self, (const Opt_ResourceStr*)&value_value, (const Opt_Callback_String_Void*)&error_value); + GetNodeModifiers()->getTextInputModifier()->setInputFilter(self, reinterpret_cast(&value_value), reinterpret_cast(&error_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_inputFilter, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_customKeyboard(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24707,7 +24707,7 @@ void impl_TextInputAttribute_customKeyboard(Ark_NativePointer thisPtr, KSerializ options_value_buf.value = KeyboardOptions_serializer::read(thisDeserializer); } Opt_KeyboardOptions options_value = options_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setCustomKeyboard(self, (const Opt_CustomNodeBuilder*)&value_value, (const Opt_KeyboardOptions*)&options_value); + GetNodeModifiers()->getTextInputModifier()->setCustomKeyboard(self, reinterpret_cast(&value_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_customKeyboard, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextInputAttribute_showCounter(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24729,7 +24729,7 @@ void impl_TextInputAttribute_showCounter(Ark_NativePointer thisPtr, KSerializerB options_value_buf.value = InputCounterOptions_serializer::read(thisDeserializer); } Opt_InputCounterOptions options_value = options_value_buf;; - GetNodeModifiers()->getTextInputModifier()->setShowCounter(self, (const Opt_Boolean*)&value_value, (const Opt_InputCounterOptions*)&options_value); + GetNodeModifiers()->getTextInputModifier()->setShowCounter(self, reinterpret_cast(&value_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(TextInputAttribute_showCounter, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TextPicker_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -24747,7 +24747,7 @@ void impl_TextPickerInterface_setTextPickerOptions(Ark_NativePointer thisPtr, KS options_value_buf.value = TextPickerOptions_serializer::read(thisDeserializer); } Opt_TextPickerOptions options_value = options_value_buf;; - GetNodeModifiers()->getTextPickerModifier()->setTextPickerOptions(self, (const Opt_TextPickerOptions*)&options_value); + GetNodeModifiers()->getTextPickerModifier()->setTextPickerOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(TextPickerInterface_setTextPickerOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextPickerAttribute_defaultPickerItemHeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24775,7 +24775,7 @@ void impl_TextPickerAttribute_defaultPickerItemHeight(Ark_NativePointer thisPtr, value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_String value_value = value_value_buf;; - GetNodeModifiers()->getTextPickerModifier()->setDefaultPickerItemHeight(self, (const Opt_Union_Number_String*)&value_value); + GetNodeModifiers()->getTextPickerModifier()->setDefaultPickerItemHeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextPickerAttribute_defaultPickerItemHeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextPickerAttribute_canLoop(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24789,7 +24789,7 @@ void impl_TextPickerAttribute_canLoop(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextPickerModifier()->setCanLoop(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextPickerModifier()->setCanLoop(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextPickerAttribute_canLoop, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextPickerAttribute_disappearTextStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24803,7 +24803,7 @@ void impl_TextPickerAttribute_disappearTextStyle(Ark_NativePointer thisPtr, KSer value_value_buf.value = PickerTextStyle_serializer::read(thisDeserializer); } Opt_PickerTextStyle value_value = value_value_buf;; - GetNodeModifiers()->getTextPickerModifier()->setDisappearTextStyle(self, (const Opt_PickerTextStyle*)&value_value); + GetNodeModifiers()->getTextPickerModifier()->setDisappearTextStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextPickerAttribute_disappearTextStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextPickerAttribute_textStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24817,7 +24817,7 @@ void impl_TextPickerAttribute_textStyle(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = PickerTextStyle_serializer::read(thisDeserializer); } Opt_PickerTextStyle value_value = value_value_buf;; - GetNodeModifiers()->getTextPickerModifier()->setTextStyle(self, (const Opt_PickerTextStyle*)&value_value); + GetNodeModifiers()->getTextPickerModifier()->setTextStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextPickerAttribute_textStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextPickerAttribute_selectedTextStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24831,7 +24831,7 @@ void impl_TextPickerAttribute_selectedTextStyle(Ark_NativePointer thisPtr, KSeri value_value_buf.value = PickerTextStyle_serializer::read(thisDeserializer); } Opt_PickerTextStyle value_value = value_value_buf;; - GetNodeModifiers()->getTextPickerModifier()->setSelectedTextStyle(self, (const Opt_PickerTextStyle*)&value_value); + GetNodeModifiers()->getTextPickerModifier()->setSelectedTextStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextPickerAttribute_selectedTextStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextPickerAttribute_disableTextStyleAnimation(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24845,7 +24845,7 @@ void impl_TextPickerAttribute_disableTextStyleAnimation(Ark_NativePointer thisPt value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextPickerModifier()->setDisableTextStyleAnimation(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextPickerModifier()->setDisableTextStyleAnimation(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextPickerAttribute_disableTextStyleAnimation, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextPickerAttribute_defaultTextStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24859,7 +24859,7 @@ void impl_TextPickerAttribute_defaultTextStyle(Ark_NativePointer thisPtr, KSeria value_value_buf.value = TextPickerTextStyle_serializer::read(thisDeserializer); } Opt_TextPickerTextStyle value_value = value_value_buf;; - GetNodeModifiers()->getTextPickerModifier()->setDefaultTextStyle(self, (const Opt_TextPickerTextStyle*)&value_value); + GetNodeModifiers()->getTextPickerModifier()->setDefaultTextStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextPickerAttribute_defaultTextStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextPickerAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24873,7 +24873,7 @@ void impl_TextPickerAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnTextPickerChangeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnTextPickerChangeCallback))))}; } Opt_OnTextPickerChangeCallback value_value = value_value_buf;; - GetNodeModifiers()->getTextPickerModifier()->setOnChange(self, (const Opt_OnTextPickerChangeCallback*)&value_value); + GetNodeModifiers()->getTextPickerModifier()->setOnChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextPickerAttribute_onChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextPickerAttribute_onScrollStop(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24887,7 +24887,7 @@ void impl_TextPickerAttribute_onScrollStop(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_TextPickerScrollStopCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_TextPickerScrollStopCallback))))}; } Opt_TextPickerScrollStopCallback value_value = value_value_buf;; - GetNodeModifiers()->getTextPickerModifier()->setOnScrollStop(self, (const Opt_TextPickerScrollStopCallback*)&value_value); + GetNodeModifiers()->getTextPickerModifier()->setOnScrollStop(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextPickerAttribute_onScrollStop, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextPickerAttribute_onEnterSelectedArea(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24901,7 +24901,7 @@ void impl_TextPickerAttribute_onEnterSelectedArea(Ark_NativePointer thisPtr, KSe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_TextPickerEnterSelectedAreaCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_TextPickerEnterSelectedAreaCallback))))}; } Opt_TextPickerEnterSelectedAreaCallback value_value = value_value_buf;; - GetNodeModifiers()->getTextPickerModifier()->setOnEnterSelectedArea(self, (const Opt_TextPickerEnterSelectedAreaCallback*)&value_value); + GetNodeModifiers()->getTextPickerModifier()->setOnEnterSelectedArea(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextPickerAttribute_onEnterSelectedArea, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextPickerAttribute_selectedIndex(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24936,7 +24936,7 @@ void impl_TextPickerAttribute_selectedIndex(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_Array_Number value_value = value_value_buf;; - GetNodeModifiers()->getTextPickerModifier()->setSelectedIndex(self, (const Opt_Union_Number_Array_Number*)&value_value); + GetNodeModifiers()->getTextPickerModifier()->setSelectedIndex(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextPickerAttribute_selectedIndex, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextPickerAttribute_divider(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24950,7 +24950,7 @@ void impl_TextPickerAttribute_divider(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = DividerOptions_serializer::read(thisDeserializer); } Opt_DividerOptions value_value = value_value_buf;; - GetNodeModifiers()->getTextPickerModifier()->setDivider(self, (const Opt_DividerOptions*)&value_value); + GetNodeModifiers()->getTextPickerModifier()->setDivider(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextPickerAttribute_divider, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextPickerAttribute_gradientHeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24982,7 +24982,7 @@ void impl_TextPickerAttribute_gradientHeight(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = static_cast(value_value_buf_); } Opt_Dimension value_value = value_value_buf;; - GetNodeModifiers()->getTextPickerModifier()->setGradientHeight(self, (const Opt_Dimension*)&value_value); + GetNodeModifiers()->getTextPickerModifier()->setGradientHeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextPickerAttribute_gradientHeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextPickerAttribute_enableHapticFeedback(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -24996,7 +24996,7 @@ void impl_TextPickerAttribute_enableHapticFeedback(Ark_NativePointer thisPtr, KS value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTextPickerModifier()->setEnableHapticFeedback(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTextPickerModifier()->setEnableHapticFeedback(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextPickerAttribute_enableHapticFeedback, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextPickerAttribute_digitalCrownSensitivity(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25010,7 +25010,7 @@ void impl_TextPickerAttribute_digitalCrownSensitivity(Ark_NativePointer thisPtr, value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_CrownSensitivity value_value = value_value_buf;; - GetNodeModifiers()->getTextPickerModifier()->setDigitalCrownSensitivity(self, (const Opt_CrownSensitivity*)&value_value); + GetNodeModifiers()->getTextPickerModifier()->setDigitalCrownSensitivity(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextPickerAttribute_digitalCrownSensitivity, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TextTimer_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -25028,7 +25028,7 @@ void impl_TextTimerInterface_setTextTimerOptions(Ark_NativePointer thisPtr, KSer options_value_buf.value = TextTimerOptions_serializer::read(thisDeserializer); } Opt_TextTimerOptions options_value = options_value_buf;; - GetNodeModifiers()->getTextTimerModifier()->setTextTimerOptions(self, (const Opt_TextTimerOptions*)&options_value); + GetNodeModifiers()->getTextTimerModifier()->setTextTimerOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(TextTimerInterface_setTextTimerOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextTimerAttribute_format(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25042,7 +25042,7 @@ void impl_TextTimerAttribute_format(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getTextTimerModifier()->setFormat(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getTextTimerModifier()->setFormat(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextTimerAttribute_format, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextTimerAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25078,7 +25078,7 @@ void impl_TextTimerAttribute_fontColor(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getTextTimerModifier()->setFontColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getTextTimerModifier()->setFontColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextTimerAttribute_fontColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextTimerAttribute_fontSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25110,7 +25110,7 @@ void impl_TextTimerAttribute_fontSize(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getTextTimerModifier()->setFontSize(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getTextTimerModifier()->setFontSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextTimerAttribute_fontSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextTimerAttribute_fontStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25124,7 +25124,7 @@ void impl_TextTimerAttribute_fontStyle(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_FontStyle value_value = value_value_buf;; - GetNodeModifiers()->getTextTimerModifier()->setFontStyle(self, (const Opt_FontStyle*)&value_value); + GetNodeModifiers()->getTextTimerModifier()->setFontStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextTimerAttribute_fontStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextTimerAttribute_fontWeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25170,7 +25170,7 @@ void impl_TextTimerAttribute_fontWeight(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_Number_FontWeight_ResourceStr value_value = value_value_buf;; - GetNodeModifiers()->getTextTimerModifier()->setFontWeight(self, (const Opt_Union_Number_FontWeight_ResourceStr*)&value_value); + GetNodeModifiers()->getTextTimerModifier()->setFontWeight(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextTimerAttribute_fontWeight, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextTimerAttribute_fontFamily(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25198,7 +25198,7 @@ void impl_TextTimerAttribute_fontFamily(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceStr value_value = value_value_buf;; - GetNodeModifiers()->getTextTimerModifier()->setFontFamily(self, (const Opt_ResourceStr*)&value_value); + GetNodeModifiers()->getTextTimerModifier()->setFontFamily(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextTimerAttribute_fontFamily, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextTimerAttribute_onTimer(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25212,7 +25212,7 @@ void impl_TextTimerAttribute_onTimer(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Number_Void))))}; } Opt_Callback_Number_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getTextTimerModifier()->setOnTimer(self, (const Opt_Callback_Number_Number_Void*)&value_value); + GetNodeModifiers()->getTextTimerModifier()->setOnTimer(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextTimerAttribute_onTimer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextTimerAttribute_textShadow(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25247,7 +25247,7 @@ void impl_TextTimerAttribute_textShadow(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(value_value_buf_); } Opt_Union_ShadowOptions_Array_ShadowOptions value_value = value_value_buf;; - GetNodeModifiers()->getTextTimerModifier()->setTextShadow(self, (const Opt_Union_ShadowOptions_Array_ShadowOptions*)&value_value); + GetNodeModifiers()->getTextTimerModifier()->setTextShadow(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextTimerAttribute_textShadow, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TextTimerAttribute_contentModifier(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25261,7 +25261,7 @@ void impl_TextTimerAttribute_contentModifier(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = static_cast(thisDeserializer.readObject()); } Opt_ContentModifier value_value = value_value_buf;; - GetNodeModifiers()->getTextTimerModifier()->setContentModifier(self, (const Opt_ContentModifier*)&value_value); + GetNodeModifiers()->getTextTimerModifier()->setContentModifier(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TextTimerAttribute_contentModifier, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TimePicker_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -25279,7 +25279,7 @@ void impl_TimePickerInterface_setTimePickerOptions(Ark_NativePointer thisPtr, KS options_value_buf.value = TimePickerOptions_serializer::read(thisDeserializer); } Opt_TimePickerOptions options_value = options_value_buf;; - GetNodeModifiers()->getTimePickerModifier()->setTimePickerOptions(self, (const Opt_TimePickerOptions*)&options_value); + GetNodeModifiers()->getTimePickerModifier()->setTimePickerOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(TimePickerInterface_setTimePickerOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TimePickerAttribute_useMilitaryTime(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25293,7 +25293,7 @@ void impl_TimePickerAttribute_useMilitaryTime(Ark_NativePointer thisPtr, KSerial value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTimePickerModifier()->setUseMilitaryTime(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTimePickerModifier()->setUseMilitaryTime(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TimePickerAttribute_useMilitaryTime, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TimePickerAttribute_loop(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25307,7 +25307,7 @@ void impl_TimePickerAttribute_loop(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTimePickerModifier()->setLoop(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTimePickerModifier()->setLoop(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TimePickerAttribute_loop, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TimePickerAttribute_disappearTextStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25321,7 +25321,7 @@ void impl_TimePickerAttribute_disappearTextStyle(Ark_NativePointer thisPtr, KSer value_value_buf.value = PickerTextStyle_serializer::read(thisDeserializer); } Opt_PickerTextStyle value_value = value_value_buf;; - GetNodeModifiers()->getTimePickerModifier()->setDisappearTextStyle(self, (const Opt_PickerTextStyle*)&value_value); + GetNodeModifiers()->getTimePickerModifier()->setDisappearTextStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TimePickerAttribute_disappearTextStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TimePickerAttribute_textStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25335,7 +25335,7 @@ void impl_TimePickerAttribute_textStyle(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = PickerTextStyle_serializer::read(thisDeserializer); } Opt_PickerTextStyle value_value = value_value_buf;; - GetNodeModifiers()->getTimePickerModifier()->setTextStyle(self, (const Opt_PickerTextStyle*)&value_value); + GetNodeModifiers()->getTimePickerModifier()->setTextStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TimePickerAttribute_textStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TimePickerAttribute_selectedTextStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25349,7 +25349,7 @@ void impl_TimePickerAttribute_selectedTextStyle(Ark_NativePointer thisPtr, KSeri value_value_buf.value = PickerTextStyle_serializer::read(thisDeserializer); } Opt_PickerTextStyle value_value = value_value_buf;; - GetNodeModifiers()->getTimePickerModifier()->setSelectedTextStyle(self, (const Opt_PickerTextStyle*)&value_value); + GetNodeModifiers()->getTimePickerModifier()->setSelectedTextStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TimePickerAttribute_selectedTextStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TimePickerAttribute_dateTimeOptions(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25363,7 +25363,7 @@ void impl_TimePickerAttribute_dateTimeOptions(Ark_NativePointer thisPtr, KSerial value_value_buf.value = intl_DateTimeOptions_serializer::read(thisDeserializer); } Opt_intl_DateTimeOptions value_value = value_value_buf;; - GetNodeModifiers()->getTimePickerModifier()->setDateTimeOptions(self, (const Opt_intl_DateTimeOptions*)&value_value); + GetNodeModifiers()->getTimePickerModifier()->setDateTimeOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TimePickerAttribute_dateTimeOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TimePickerAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25377,7 +25377,7 @@ void impl_TimePickerAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuf value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnTimePickerChangeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnTimePickerChangeCallback))))}; } Opt_OnTimePickerChangeCallback value_value = value_value_buf;; - GetNodeModifiers()->getTimePickerModifier()->setOnChange(self, (const Opt_OnTimePickerChangeCallback*)&value_value); + GetNodeModifiers()->getTimePickerModifier()->setOnChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TimePickerAttribute_onChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TimePickerAttribute_onEnterSelectedArea(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25391,7 +25391,7 @@ void impl_TimePickerAttribute_onEnterSelectedArea(Ark_NativePointer thisPtr, KSe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_TimePickerResult_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_TimePickerResult_Void))))}; } Opt_Callback_TimePickerResult_Void value_value = value_value_buf;; - GetNodeModifiers()->getTimePickerModifier()->setOnEnterSelectedArea(self, (const Opt_Callback_TimePickerResult_Void*)&value_value); + GetNodeModifiers()->getTimePickerModifier()->setOnEnterSelectedArea(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TimePickerAttribute_onEnterSelectedArea, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TimePickerAttribute_enableHapticFeedback(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25405,7 +25405,7 @@ void impl_TimePickerAttribute_enableHapticFeedback(Ark_NativePointer thisPtr, KS value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTimePickerModifier()->setEnableHapticFeedback(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTimePickerModifier()->setEnableHapticFeedback(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TimePickerAttribute_enableHapticFeedback, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TimePickerAttribute_digitalCrownSensitivity(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25419,7 +25419,7 @@ void impl_TimePickerAttribute_digitalCrownSensitivity(Ark_NativePointer thisPtr, value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_CrownSensitivity value_value = value_value_buf;; - GetNodeModifiers()->getTimePickerModifier()->setDigitalCrownSensitivity(self, (const Opt_CrownSensitivity*)&value_value); + GetNodeModifiers()->getTimePickerModifier()->setDigitalCrownSensitivity(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TimePickerAttribute_digitalCrownSensitivity, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TimePickerAttribute_enableCascade(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25433,7 +25433,7 @@ void impl_TimePickerAttribute_enableCascade(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getTimePickerModifier()->setEnableCascade(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getTimePickerModifier()->setEnableCascade(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(TimePickerAttribute_enableCascade, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Toggle_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -25444,7 +25444,7 @@ void impl_ToggleInterface_setToggleOptions(Ark_NativePointer thisPtr, KSerialize Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_ToggleOptions options_value = ToggleOptions_serializer::read(thisDeserializer);; - GetNodeModifiers()->getToggleModifier()->setToggleOptions(self, (const Ark_ToggleOptions*)&options_value); + GetNodeModifiers()->getToggleModifier()->setToggleOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(ToggleInterface_setToggleOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ToggleAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25458,7 +25458,7 @@ void impl_ToggleAttribute_onChange(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Boolean_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Boolean_Void))))}; } Opt_Callback_Boolean_Void value_value = value_value_buf;; - GetNodeModifiers()->getToggleModifier()->setOnChange(self, (const Opt_Callback_Boolean_Void*)&value_value); + GetNodeModifiers()->getToggleModifier()->setOnChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ToggleAttribute_onChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ToggleAttribute_contentModifier(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25472,7 +25472,7 @@ void impl_ToggleAttribute_contentModifier(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(thisDeserializer.readObject()); } Opt_ContentModifier value_value = value_value_buf;; - GetNodeModifiers()->getToggleModifier()->setContentModifier(self, (const Opt_ContentModifier*)&value_value); + GetNodeModifiers()->getToggleModifier()->setContentModifier(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ToggleAttribute_contentModifier, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ToggleAttribute_selectedColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25508,7 +25508,7 @@ void impl_ToggleAttribute_selectedColor(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getToggleModifier()->setSelectedColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getToggleModifier()->setSelectedColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ToggleAttribute_selectedColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ToggleAttribute_switchPointColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25544,7 +25544,7 @@ void impl_ToggleAttribute_switchPointColor(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = static_cast(value_value_buf_); } Opt_ResourceColor value_value = value_value_buf;; - GetNodeModifiers()->getToggleModifier()->setSwitchPointColor(self, (const Opt_ResourceColor*)&value_value); + GetNodeModifiers()->getToggleModifier()->setSwitchPointColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ToggleAttribute_switchPointColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ToggleAttribute_switchStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25558,7 +25558,7 @@ void impl_ToggleAttribute_switchStyle(Ark_NativePointer thisPtr, KSerializerBuff value_value_buf.value = SwitchStyle_serializer::read(thisDeserializer); } Opt_SwitchStyle value_value = value_value_buf;; - GetNodeModifiers()->getToggleModifier()->setSwitchStyle(self, (const Opt_SwitchStyle*)&value_value); + GetNodeModifiers()->getToggleModifier()->setSwitchStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ToggleAttribute_switchStyle, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_UIExtensionComponent_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -25577,7 +25577,7 @@ void impl_UIExtensionComponentInterface_setUIExtensionComponentOptions(Ark_Nativ options_value_buf.value = UIExtensionOptions_serializer::read(thisDeserializer); } Opt_UIExtensionOptions options_value = options_value_buf;; - GetNodeModifiers()->getUIExtensionComponentModifier()->setUIExtensionComponentOptions(self, (const Ark_Want*)&want_value, (const Opt_UIExtensionOptions*)&options_value); + GetNodeModifiers()->getUIExtensionComponentModifier()->setUIExtensionComponentOptions(self, reinterpret_cast(&want_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(UIExtensionComponentInterface_setUIExtensionComponentOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UIExtensionComponentAttribute_onRemoteReady(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25591,7 +25591,7 @@ void impl_UIExtensionComponentAttribute_onRemoteReady(Ark_NativePointer thisPtr, value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_UIExtensionProxy_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_UIExtensionProxy_Void))))}; } Opt_Callback_UIExtensionProxy_Void value_value = value_value_buf;; - GetNodeModifiers()->getUIExtensionComponentModifier()->setOnRemoteReady(self, (const Opt_Callback_UIExtensionProxy_Void*)&value_value); + GetNodeModifiers()->getUIExtensionComponentModifier()->setOnRemoteReady(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(UIExtensionComponentAttribute_onRemoteReady, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UIExtensionComponentAttribute_onReceive(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25605,7 +25605,7 @@ void impl_UIExtensionComponentAttribute_onReceive(Ark_NativePointer thisPtr, KSe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Map_String_Object_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Map_String_Object_Void))))}; } Opt_Callback_Map_String_Object_Void value_value = value_value_buf;; - GetNodeModifiers()->getUIExtensionComponentModifier()->setOnReceive(self, (const Opt_Callback_Map_String_Object_Void*)&value_value); + GetNodeModifiers()->getUIExtensionComponentModifier()->setOnReceive(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(UIExtensionComponentAttribute_onReceive, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UIExtensionComponentAttribute_onError(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25619,7 +25619,7 @@ void impl_UIExtensionComponentAttribute_onError(Ark_NativePointer thisPtr, KSeri value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_ErrorCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_ErrorCallback))))}; } Opt_ErrorCallback value_value = value_value_buf;; - GetNodeModifiers()->getUIExtensionComponentModifier()->setOnError(self, (const Opt_ErrorCallback*)&value_value); + GetNodeModifiers()->getUIExtensionComponentModifier()->setOnError(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(UIExtensionComponentAttribute_onError, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UIExtensionComponentAttribute_onTerminated(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25633,7 +25633,7 @@ void impl_UIExtensionComponentAttribute_onTerminated(Ark_NativePointer thisPtr, value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_TerminationInfo_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_TerminationInfo_Void))))}; } Opt_Callback_TerminationInfo_Void value_value = value_value_buf;; - GetNodeModifiers()->getUIExtensionComponentModifier()->setOnTerminated(self, (const Opt_Callback_TerminationInfo_Void*)&value_value); + GetNodeModifiers()->getUIExtensionComponentModifier()->setOnTerminated(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(UIExtensionComponentAttribute_onTerminated, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Video_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -25644,7 +25644,7 @@ void impl_VideoInterface_setVideoOptions(Ark_NativePointer thisPtr, KSerializerB Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_VideoOptions value_value = VideoOptions_serializer::read(thisDeserializer);; - GetNodeModifiers()->getVideoModifier()->setVideoOptions(self, (const Ark_VideoOptions*)&value_value); + GetNodeModifiers()->getVideoModifier()->setVideoOptions(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(VideoInterface_setVideoOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_VideoAttribute_muted(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25658,7 +25658,7 @@ void impl_VideoAttribute_muted(Ark_NativePointer thisPtr, KSerializerBuffer this value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getVideoModifier()->setMuted(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getVideoModifier()->setMuted(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(VideoAttribute_muted, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_VideoAttribute_autoPlay(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25672,7 +25672,7 @@ void impl_VideoAttribute_autoPlay(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getVideoModifier()->setAutoPlay(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getVideoModifier()->setAutoPlay(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(VideoAttribute_autoPlay, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_VideoAttribute_controls(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25686,7 +25686,7 @@ void impl_VideoAttribute_controls(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getVideoModifier()->setControls(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getVideoModifier()->setControls(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(VideoAttribute_controls, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_VideoAttribute_loop(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25700,7 +25700,7 @@ void impl_VideoAttribute_loop(Ark_NativePointer thisPtr, KSerializerBuffer thisA value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getVideoModifier()->setLoop(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getVideoModifier()->setLoop(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(VideoAttribute_loop, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_VideoAttribute_objectFit(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25714,7 +25714,7 @@ void impl_VideoAttribute_objectFit(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ImageFit value_value = value_value_buf;; - GetNodeModifiers()->getVideoModifier()->setObjectFit(self, (const Opt_ImageFit*)&value_value); + GetNodeModifiers()->getVideoModifier()->setObjectFit(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(VideoAttribute_objectFit, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_VideoAttribute_onStart(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25728,7 +25728,7 @@ void impl_VideoAttribute_onStart(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_VoidCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_VoidCallback))))}; } Opt_VoidCallback value_value = value_value_buf;; - GetNodeModifiers()->getVideoModifier()->setOnStart(self, (const Opt_VoidCallback*)&value_value); + GetNodeModifiers()->getVideoModifier()->setOnStart(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(VideoAttribute_onStart, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_VideoAttribute_onPause(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25742,7 +25742,7 @@ void impl_VideoAttribute_onPause(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_VoidCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_VoidCallback))))}; } Opt_VoidCallback value_value = value_value_buf;; - GetNodeModifiers()->getVideoModifier()->setOnPause(self, (const Opt_VoidCallback*)&value_value); + GetNodeModifiers()->getVideoModifier()->setOnPause(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(VideoAttribute_onPause, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_VideoAttribute_onFinish(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25756,7 +25756,7 @@ void impl_VideoAttribute_onFinish(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_VoidCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_VoidCallback))))}; } Opt_VoidCallback value_value = value_value_buf;; - GetNodeModifiers()->getVideoModifier()->setOnFinish(self, (const Opt_VoidCallback*)&value_value); + GetNodeModifiers()->getVideoModifier()->setOnFinish(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(VideoAttribute_onFinish, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_VideoAttribute_onFullscreenChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25770,7 +25770,7 @@ void impl_VideoAttribute_onFullscreenChange(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_FullscreenInfo_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_FullscreenInfo_Void))))}; } Opt_Callback_FullscreenInfo_Void value_value = value_value_buf;; - GetNodeModifiers()->getVideoModifier()->setOnFullscreenChange(self, (const Opt_Callback_FullscreenInfo_Void*)&value_value); + GetNodeModifiers()->getVideoModifier()->setOnFullscreenChange(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(VideoAttribute_onFullscreenChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_VideoAttribute_onPrepared(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25784,7 +25784,7 @@ void impl_VideoAttribute_onPrepared(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_PreparedInfo_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_PreparedInfo_Void))))}; } Opt_Callback_PreparedInfo_Void value_value = value_value_buf;; - GetNodeModifiers()->getVideoModifier()->setOnPrepared(self, (const Opt_Callback_PreparedInfo_Void*)&value_value); + GetNodeModifiers()->getVideoModifier()->setOnPrepared(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(VideoAttribute_onPrepared, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_VideoAttribute_onSeeking(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25798,7 +25798,7 @@ void impl_VideoAttribute_onSeeking(Ark_NativePointer thisPtr, KSerializerBuffer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_PlaybackInfo_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_PlaybackInfo_Void))))}; } Opt_Callback_PlaybackInfo_Void value_value = value_value_buf;; - GetNodeModifiers()->getVideoModifier()->setOnSeeking(self, (const Opt_Callback_PlaybackInfo_Void*)&value_value); + GetNodeModifiers()->getVideoModifier()->setOnSeeking(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(VideoAttribute_onSeeking, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_VideoAttribute_onSeeked(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25812,7 +25812,7 @@ void impl_VideoAttribute_onSeeked(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_PlaybackInfo_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_PlaybackInfo_Void))))}; } Opt_Callback_PlaybackInfo_Void value_value = value_value_buf;; - GetNodeModifiers()->getVideoModifier()->setOnSeeked(self, (const Opt_Callback_PlaybackInfo_Void*)&value_value); + GetNodeModifiers()->getVideoModifier()->setOnSeeked(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(VideoAttribute_onSeeked, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_VideoAttribute_onUpdate(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25826,7 +25826,7 @@ void impl_VideoAttribute_onUpdate(Ark_NativePointer thisPtr, KSerializerBuffer t value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_PlaybackInfo_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_PlaybackInfo_Void))))}; } Opt_Callback_PlaybackInfo_Void value_value = value_value_buf;; - GetNodeModifiers()->getVideoModifier()->setOnUpdate(self, (const Opt_Callback_PlaybackInfo_Void*)&value_value); + GetNodeModifiers()->getVideoModifier()->setOnUpdate(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(VideoAttribute_onUpdate, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_VideoAttribute_onError(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25840,7 +25840,7 @@ void impl_VideoAttribute_onError(Ark_NativePointer thisPtr, KSerializerBuffer th value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getVideoModifier()->setOnError(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getVideoModifier()->setOnError(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(VideoAttribute_onError, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_VideoAttribute_onStop(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25854,7 +25854,7 @@ void impl_VideoAttribute_onStop(Ark_NativePointer thisPtr, KSerializerBuffer thi value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void value_value = value_value_buf;; - GetNodeModifiers()->getVideoModifier()->setOnStop(self, (const Opt_Callback_Void*)&value_value); + GetNodeModifiers()->getVideoModifier()->setOnStop(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(VideoAttribute_onStop, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_VideoAttribute_enableAnalyzer(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25868,7 +25868,7 @@ void impl_VideoAttribute_enableAnalyzer(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getVideoModifier()->setEnableAnalyzer(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getVideoModifier()->setEnableAnalyzer(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(VideoAttribute_enableAnalyzer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_VideoAttribute_analyzerConfig(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25882,7 +25882,7 @@ void impl_VideoAttribute_analyzerConfig(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = ImageAnalyzerConfig_serializer::read(thisDeserializer); } Opt_ImageAnalyzerConfig value_value = value_value_buf;; - GetNodeModifiers()->getVideoModifier()->setAnalyzerConfig(self, (const Opt_ImageAnalyzerConfig*)&value_value); + GetNodeModifiers()->getVideoModifier()->setAnalyzerConfig(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(VideoAttribute_analyzerConfig, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_VideoAttribute_surfaceBackgroundColor(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25896,7 +25896,7 @@ void impl_VideoAttribute_surfaceBackgroundColor(Ark_NativePointer thisPtr, KSeri value_value_buf.value = static_cast(ColorMetrics_serializer::read(thisDeserializer)); } Opt_ColorMetrics value_value = value_value_buf;; - GetNodeModifiers()->getVideoModifier()->setSurfaceBackgroundColor(self, (const Opt_ColorMetrics*)&value_value); + GetNodeModifiers()->getVideoModifier()->setSurfaceBackgroundColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(VideoAttribute_surfaceBackgroundColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_VideoAttribute_enableShortcutKey(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25910,7 +25910,7 @@ void impl_VideoAttribute_enableShortcutKey(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getVideoModifier()->setEnableShortcutKey(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getVideoModifier()->setEnableShortcutKey(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(VideoAttribute_enableShortcutKey, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_WaterFlow_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -25928,7 +25928,7 @@ void impl_WaterFlowInterface_setWaterFlowOptions(Ark_NativePointer thisPtr, KSer options_value_buf.value = WaterFlowOptions_serializer::read(thisDeserializer); } Opt_WaterFlowOptions options_value = options_value_buf;; - GetNodeModifiers()->getWaterFlowModifier()->setWaterFlowOptions(self, (const Opt_WaterFlowOptions*)&options_value); + GetNodeModifiers()->getWaterFlowModifier()->setWaterFlowOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(WaterFlowInterface_setWaterFlowOptions, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_WaterFlowAttribute_columnsTemplate(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25942,7 +25942,7 @@ void impl_WaterFlowAttribute_columnsTemplate(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getWaterFlowModifier()->setColumnsTemplate(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getWaterFlowModifier()->setColumnsTemplate(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(WaterFlowAttribute_columnsTemplate, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_WaterFlowAttribute_itemConstraintSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25956,7 +25956,7 @@ void impl_WaterFlowAttribute_itemConstraintSize(Ark_NativePointer thisPtr, KSeri value_value_buf.value = ConstraintSizeOptions_serializer::read(thisDeserializer); } Opt_ConstraintSizeOptions value_value = value_value_buf;; - GetNodeModifiers()->getWaterFlowModifier()->setItemConstraintSize(self, (const Opt_ConstraintSizeOptions*)&value_value); + GetNodeModifiers()->getWaterFlowModifier()->setItemConstraintSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(WaterFlowAttribute_itemConstraintSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_WaterFlowAttribute_rowsTemplate(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -25970,7 +25970,7 @@ void impl_WaterFlowAttribute_rowsTemplate(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String value_value = value_value_buf;; - GetNodeModifiers()->getWaterFlowModifier()->setRowsTemplate(self, (const Opt_String*)&value_value); + GetNodeModifiers()->getWaterFlowModifier()->setRowsTemplate(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(WaterFlowAttribute_rowsTemplate, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_WaterFlowAttribute_columnsGap(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -26002,7 +26002,7 @@ void impl_WaterFlowAttribute_columnsGap(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getWaterFlowModifier()->setColumnsGap(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getWaterFlowModifier()->setColumnsGap(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(WaterFlowAttribute_columnsGap, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_WaterFlowAttribute_rowsGap(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -26034,7 +26034,7 @@ void impl_WaterFlowAttribute_rowsGap(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(value_value_buf_); } Opt_Length value_value = value_value_buf;; - GetNodeModifiers()->getWaterFlowModifier()->setRowsGap(self, (const Opt_Length*)&value_value); + GetNodeModifiers()->getWaterFlowModifier()->setRowsGap(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(WaterFlowAttribute_rowsGap, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_WaterFlowAttribute_layoutDirection(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -26048,7 +26048,7 @@ void impl_WaterFlowAttribute_layoutDirection(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_FlexDirection value_value = value_value_buf;; - GetNodeModifiers()->getWaterFlowModifier()->setLayoutDirection(self, (const Opt_FlexDirection*)&value_value); + GetNodeModifiers()->getWaterFlowModifier()->setLayoutDirection(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(WaterFlowAttribute_layoutDirection, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_WaterFlowAttribute_cachedCount0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -26062,7 +26062,7 @@ void impl_WaterFlowAttribute_cachedCount0(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getWaterFlowModifier()->setCachedCount0(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getWaterFlowModifier()->setCachedCount0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(WaterFlowAttribute_cachedCount0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_WaterFlowAttribute_cachedCount1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -26084,7 +26084,7 @@ void impl_WaterFlowAttribute_cachedCount1(Ark_NativePointer thisPtr, KSerializer show_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean show_value = show_value_buf;; - GetNodeModifiers()->getWaterFlowModifier()->setCachedCount1(self, (const Opt_Number*)&count_value, (const Opt_Boolean*)&show_value); + GetNodeModifiers()->getWaterFlowModifier()->setCachedCount1(self, reinterpret_cast(&count_value), reinterpret_cast(&show_value)); } KOALA_INTEROP_DIRECT_V3(WaterFlowAttribute_cachedCount1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_WaterFlowAttribute_onScrollFrameBegin(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -26098,7 +26098,7 @@ void impl_WaterFlowAttribute_onScrollFrameBegin(Ark_NativePointer thisPtr, KSeri value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnScrollFrameBeginCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnScrollFrameBeginCallback))))}; } Opt_OnScrollFrameBeginCallback value_value = value_value_buf;; - GetNodeModifiers()->getWaterFlowModifier()->setOnScrollFrameBegin(self, (const Opt_OnScrollFrameBeginCallback*)&value_value); + GetNodeModifiers()->getWaterFlowModifier()->setOnScrollFrameBegin(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(WaterFlowAttribute_onScrollFrameBegin, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_WaterFlowAttribute_onScrollIndex(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -26112,7 +26112,7 @@ void impl_WaterFlowAttribute_onScrollIndex(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Number_Void))))}; } Opt_Callback_Number_Number_Void value_value = value_value_buf;; - GetNodeModifiers()->getWaterFlowModifier()->setOnScrollIndex(self, (const Opt_Callback_Number_Number_Void*)&value_value); + GetNodeModifiers()->getWaterFlowModifier()->setOnScrollIndex(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(WaterFlowAttribute_onScrollIndex, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_WaterFlowAttribute_onWillScroll(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -26126,7 +26126,7 @@ void impl_WaterFlowAttribute_onWillScroll(Ark_NativePointer thisPtr, KSerializer value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnWillScrollCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnWillScrollCallback))))}; } Opt_OnWillScrollCallback value_value = value_value_buf;; - GetNodeModifiers()->getWaterFlowModifier()->setOnWillScroll(self, (const Opt_OnWillScrollCallback*)&value_value); + GetNodeModifiers()->getWaterFlowModifier()->setOnWillScroll(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(WaterFlowAttribute_onWillScroll, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_WaterFlowAttribute_onDidScroll(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -26140,7 +26140,7 @@ void impl_WaterFlowAttribute_onDidScroll(Ark_NativePointer thisPtr, KSerializerB value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnScrollCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnScrollCallback))))}; } Opt_OnScrollCallback value_value = value_value_buf;; - GetNodeModifiers()->getWaterFlowModifier()->setOnDidScroll(self, (const Opt_OnScrollCallback*)&value_value); + GetNodeModifiers()->getWaterFlowModifier()->setOnDidScroll(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(WaterFlowAttribute_onDidScroll, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_WindowScene_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -26171,7 +26171,7 @@ void impl_WindowSceneAttribute_attractionEffect(Ark_NativePointer thisPtr, KSeri fraction_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number fraction_value = fraction_value_buf;; - GetNodeModifiers()->getWindowSceneModifier()->setAttractionEffect(self, (const Opt_Position*)&destination_value, (const Opt_Number*)&fraction_value); + GetNodeModifiers()->getWindowSceneModifier()->setAttractionEffect(self, reinterpret_cast(&destination_value), reinterpret_cast(&fraction_value)); } KOALA_INTEROP_DIRECT_V3(WindowSceneAttribute_attractionEffect, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_XComponent_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -26182,21 +26182,21 @@ void impl_XComponentInterface_setXComponentOptions0(Ark_NativePointer thisPtr, K Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_XComponentParameter value_value = XComponentParameter_serializer::read(thisDeserializer);; - GetNodeModifiers()->getXComponentModifier()->setXComponentOptions0(self, (const Ark_XComponentParameter*)&value_value); + GetNodeModifiers()->getXComponentModifier()->setXComponentOptions0(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(XComponentInterface_setXComponentOptions0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_XComponentInterface_setXComponentOptions1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_XComponentOptions options_value = XComponentOptions_serializer::read(thisDeserializer);; - GetNodeModifiers()->getXComponentModifier()->setXComponentOptions1(self, (const Ark_XComponentOptions*)&options_value); + GetNodeModifiers()->getXComponentModifier()->setXComponentOptions1(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(XComponentInterface_setXComponentOptions1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_XComponentInterface_setXComponentOptions2(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_NativeXComponentParameters params_value = NativeXComponentParameters_serializer::read(thisDeserializer);; - GetNodeModifiers()->getXComponentModifier()->setXComponentOptions2(self, (const Ark_NativeXComponentParameters*)¶ms_value); + GetNodeModifiers()->getXComponentModifier()->setXComponentOptions2(self, reinterpret_cast(¶ms_value)); } KOALA_INTEROP_DIRECT_V3(XComponentInterface_setXComponentOptions2, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_XComponentAttribute_onLoad(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -26210,7 +26210,7 @@ void impl_XComponentAttribute_onLoad(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_OnNativeLoadCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_OnNativeLoadCallback))))}; } Opt_OnNativeLoadCallback value_value = value_value_buf;; - GetNodeModifiers()->getXComponentModifier()->setOnLoad(self, (const Opt_OnNativeLoadCallback*)&value_value); + GetNodeModifiers()->getXComponentModifier()->setOnLoad(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(XComponentAttribute_onLoad, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_XComponentAttribute_onDestroy(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -26224,7 +26224,7 @@ void impl_XComponentAttribute_onDestroy(Ark_NativePointer thisPtr, KSerializerBu value_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_VoidCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_VoidCallback))))}; } Opt_VoidCallback value_value = value_value_buf;; - GetNodeModifiers()->getXComponentModifier()->setOnDestroy(self, (const Opt_VoidCallback*)&value_value); + GetNodeModifiers()->getXComponentModifier()->setOnDestroy(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(XComponentAttribute_onDestroy, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_XComponentAttribute_enableAnalyzer(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -26238,7 +26238,7 @@ void impl_XComponentAttribute_enableAnalyzer(Ark_NativePointer thisPtr, KSeriali value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getXComponentModifier()->setEnableAnalyzer(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getXComponentModifier()->setEnableAnalyzer(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(XComponentAttribute_enableAnalyzer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_XComponentAttribute_enableSecure(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -26252,7 +26252,7 @@ void impl_XComponentAttribute_enableSecure(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getXComponentModifier()->setEnableSecure(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getXComponentModifier()->setEnableSecure(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(XComponentAttribute_enableSecure, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_XComponentAttribute_hdrBrightness(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -26266,7 +26266,7 @@ void impl_XComponentAttribute_hdrBrightness(Ark_NativePointer thisPtr, KSerializ value_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number value_value = value_value_buf;; - GetNodeModifiers()->getXComponentModifier()->setHdrBrightness(self, (const Opt_Number*)&value_value); + GetNodeModifiers()->getXComponentModifier()->setHdrBrightness(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(XComponentAttribute_hdrBrightness, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_XComponentAttribute_enableTransparentLayer(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -26280,7 +26280,7 @@ void impl_XComponentAttribute_enableTransparentLayer(Ark_NativePointer thisPtr, value_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean value_value = value_value_buf;; - GetNodeModifiers()->getXComponentModifier()->setEnableTransparentLayer(self, (const Opt_Boolean*)&value_value); + GetNodeModifiers()->getXComponentModifier()->setEnableTransparentLayer(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(XComponentAttribute_enableTransparentLayer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_ComponentRoot_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -26295,14 +26295,14 @@ void impl_CustomLayoutRoot_subscribeOnMeasureSize(Ark_NativePointer thisPtr, KSe Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_onMeasureSize_SizeResult value_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_onMeasureSize_SizeResult)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_onMeasureSize_SizeResult))))};; - GetNodeModifiers()->getCustomLayoutRootModifier()->setSubscribeOnMeasureSize(self, (const Callback_onMeasureSize_SizeResult*)&value_value); + GetNodeModifiers()->getCustomLayoutRootModifier()->setSubscribeOnMeasureSize(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CustomLayoutRoot_subscribeOnMeasureSize, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CustomLayoutRoot_subscribeOnPlaceChildren(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_NodeHandle self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_onPlaceChildren_Void value_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_onPlaceChildren_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_onPlaceChildren_Void))))};; - GetNodeModifiers()->getCustomLayoutRootModifier()->setSubscribeOnPlaceChildren(self, (const Callback_onPlaceChildren_Void*)&value_value); + GetNodeModifiers()->getCustomLayoutRootModifier()->setSubscribeOnPlaceChildren(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CustomLayoutRoot_subscribeOnPlaceChildren, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Root_construct(Ark_Int32 id, Ark_Int32 flags) { @@ -26397,7 +26397,7 @@ KOALA_INTEROP_DIRECT_V5(AnimationExtender_SetClipRect, Ark_NativePointer, KFloat void impl_AnimationExtender_OpenImplicitAnimation(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_AnimateParam param_value = AnimateParam_serializer::read(thisDeserializer);; - GetAccessors()->getAnimationExtenderAccessor()->OpenImplicitAnimation((const Ark_AnimateParam*)¶m_value); + GetAccessors()->getAnimationExtenderAccessor()->OpenImplicitAnimation(reinterpret_cast(¶m_value)); } KOALA_INTEROP_DIRECT_V2(AnimationExtender_OpenImplicitAnimation, KSerializerBuffer, int32_t) void impl_AnimationExtender_CloseImplicitAnimation() { @@ -26407,13 +26407,13 @@ KOALA_INTEROP_DIRECT_V0(AnimationExtender_CloseImplicitAnimation) void impl_AnimationExtender_StartDoubleAnimation(Ark_NativePointer node, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_DoubleAnimationParam param_value = DoubleAnimationParam_serializer::read(thisDeserializer);; - GetAccessors()->getAnimationExtenderAccessor()->StartDoubleAnimation(node, (const Ark_DoubleAnimationParam*)¶m_value); + GetAccessors()->getAnimationExtenderAccessor()->StartDoubleAnimation(node, reinterpret_cast(¶m_value)); } KOALA_INTEROP_DIRECT_V3(AnimationExtender_StartDoubleAnimation, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_AnimationExtender_AnimationTranslate(Ark_NativePointer node, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_TranslateOptions options_value = TranslateOptions_serializer::read(thisDeserializer);; - GetAccessors()->getAnimationExtenderAccessor()->AnimationTranslate(node, (const Ark_TranslateOptions*)&options_value); + GetAccessors()->getAnimationExtenderAccessor()->AnimationTranslate(node, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(AnimationExtender_AnimationTranslate, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_AppearSymbolEffect_ctor(KSerializerBuffer thisArray, int32_t thisLength) { @@ -26426,7 +26426,7 @@ Ark_NativePointer impl_AppearSymbolEffect_ctor(KSerializerBuffer thisArray, int3 scope_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EffectScope scope_value = scope_value_buf;; - return GetAccessors()->getAppearSymbolEffectAccessor()->ctor((const Opt_EffectScope*)&scope_value); + return GetAccessors()->getAppearSymbolEffectAccessor()->ctor(reinterpret_cast(&scope_value)); } KOALA_INTEROP_DIRECT_2(AppearSymbolEffect_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_AppearSymbolEffect_getFinalizer() { @@ -26458,7 +26458,7 @@ void impl_AppearSymbolEffect_setScope(Ark_NativePointer thisPtr, KSerializerBuff scope_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EffectScope scope_value = scope_value_buf;; - GetAccessors()->getAppearSymbolEffectAccessor()->setScope(self, (const Opt_EffectScope*)&scope_value); + GetAccessors()->getAppearSymbolEffectAccessor()->setScope(self, reinterpret_cast(&scope_value)); } KOALA_INTEROP_DIRECT_V3(AppearSymbolEffect_setScope, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_AxisEvent_ctor() { @@ -26579,13 +26579,13 @@ void impl_AxisEvent_setPropagation(Ark_NativePointer thisPtr, KSerializerBuffer Ark_AxisEvent self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Void propagation_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))};; - GetAccessors()->getAxisEventAccessor()->setPropagation(self, (const Callback_Void*)&propagation_value); + GetAccessors()->getAxisEventAccessor()->setPropagation(self, reinterpret_cast(&propagation_value)); } KOALA_INTEROP_DIRECT_V3(AxisEvent_setPropagation, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_BackgroundColorStyle_ctor(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_TextBackgroundStyle textBackgroundStyle_value = TextBackgroundStyle_serializer::read(thisDeserializer);; - return GetAccessors()->getBackgroundColorStyleAccessor()->ctor((const Ark_TextBackgroundStyle*)&textBackgroundStyle_value); + return GetAccessors()->getBackgroundColorStyleAccessor()->ctor(reinterpret_cast(&textBackgroundStyle_value)); } KOALA_INTEROP_DIRECT_2(BackgroundColorStyle_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_BackgroundColorStyle_getFinalizer() { @@ -26628,7 +26628,7 @@ void impl_BaseEvent_setTarget(Ark_NativePointer thisPtr, KSerializerBuffer thisA Ark_BaseEvent self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_EventTarget target_value = EventTarget_serializer::read(thisDeserializer);; - GetAccessors()->getBaseEventAccessor()->setTarget(self, (const Ark_EventTarget*)&target_value); + GetAccessors()->getBaseEventAccessor()->setTarget(self, reinterpret_cast(&target_value)); } KOALA_INTEROP_DIRECT_V3(BaseEvent_setTarget, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_Number impl_BaseEvent_getTimestamp(Ark_NativePointer thisPtr) { @@ -26768,7 +26768,7 @@ void impl_BaseEvent_setGetModifierKeyState(Ark_NativePointer thisPtr, KSerialize Ark_BaseEvent self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); ModifierKeyStateGetter getModifierKeyState_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_ModifierKeyStateGetter)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_ModifierKeyStateGetter))))};; - GetAccessors()->getBaseEventAccessor()->setGetModifierKeyState(self, (const ModifierKeyStateGetter*)&getModifierKeyState_value); + GetAccessors()->getBaseEventAccessor()->setGetModifierKeyState(self, reinterpret_cast(&getModifierKeyState_value)); } KOALA_INTEROP_DIRECT_V3(BaseEvent_setGetModifierKeyState, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_BaseEvent_getDeviceId(Ark_NativePointer thisPtr) { @@ -26840,7 +26840,7 @@ void impl_BaseGestureEvent_setFingerList(Ark_NativePointer thisPtr, KSerializerB fingerList_value_buf.array[fingerList_value_buf_i] = FingerInfo_serializer::read(thisDeserializer); } Array_FingerInfo fingerList_value = fingerList_value_buf;; - GetAccessors()->getBaseGestureEventAccessor()->setFingerList(self, (const Array_FingerInfo*)&fingerList_value); + GetAccessors()->getBaseGestureEventAccessor()->setFingerList(self, reinterpret_cast(&fingerList_value)); } KOALA_INTEROP_DIRECT_V3(BaseGestureEvent_setFingerList, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_BaselineOffsetStyle_ctor(Ark_NativePointer value) { @@ -26886,7 +26886,7 @@ Ark_NativePointer impl_BaseShape_width(Ark_NativePointer thisPtr, KSerializerBuf INTEROP_FATAL("One of the branches for width_value_buf has to be chosen through deserialisation."); } Ark_Length width_value = static_cast(width_value_buf);; - return GetAccessors()->getBaseShapeAccessor()->width(self, (const Ark_Length*)&width_value); + return GetAccessors()->getBaseShapeAccessor()->width(self, reinterpret_cast(&width_value)); } KOALA_INTEROP_DIRECT_3(BaseShape_width, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_BaseShape_height(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -26911,14 +26911,14 @@ Ark_NativePointer impl_BaseShape_height(Ark_NativePointer thisPtr, KSerializerBu INTEROP_FATAL("One of the branches for height_value_buf has to be chosen through deserialisation."); } Ark_Length height_value = static_cast(height_value_buf);; - return GetAccessors()->getBaseShapeAccessor()->height(self, (const Ark_Length*)&height_value); + return GetAccessors()->getBaseShapeAccessor()->height(self, reinterpret_cast(&height_value)); } KOALA_INTEROP_DIRECT_3(BaseShape_height, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_BaseShape_size(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_BaseShape self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_SizeOptions size_value = SizeOptions_serializer::read(thisDeserializer);; - return GetAccessors()->getBaseShapeAccessor()->size(self, (const Ark_SizeOptions*)&size_value); + return GetAccessors()->getBaseShapeAccessor()->size(self, reinterpret_cast(&size_value)); } KOALA_INTEROP_DIRECT_3(BaseShape_size, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_BounceSymbolEffect_ctor(KSerializerBuffer thisArray, int32_t thisLength) { @@ -26939,7 +26939,7 @@ Ark_NativePointer impl_BounceSymbolEffect_ctor(KSerializerBuffer thisArray, int3 direction_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EffectDirection direction_value = direction_value_buf;; - return GetAccessors()->getBounceSymbolEffectAccessor()->ctor((const Opt_EffectScope*)&scope_value, (const Opt_EffectDirection*)&direction_value); + return GetAccessors()->getBounceSymbolEffectAccessor()->ctor(reinterpret_cast(&scope_value), reinterpret_cast(&direction_value)); } KOALA_INTEROP_DIRECT_2(BounceSymbolEffect_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_BounceSymbolEffect_getFinalizer() { @@ -26971,7 +26971,7 @@ void impl_BounceSymbolEffect_setScope(Ark_NativePointer thisPtr, KSerializerBuff scope_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EffectScope scope_value = scope_value_buf;; - GetAccessors()->getBounceSymbolEffectAccessor()->setScope(self, (const Opt_EffectScope*)&scope_value); + GetAccessors()->getBounceSymbolEffectAccessor()->setScope(self, reinterpret_cast(&scope_value)); } KOALA_INTEROP_DIRECT_V3(BounceSymbolEffect_setScope, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_BounceSymbolEffect_getDirection(Ark_NativePointer thisPtr) { @@ -26999,7 +26999,7 @@ void impl_BounceSymbolEffect_setDirection(Ark_NativePointer thisPtr, KSerializer direction_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EffectDirection direction_value = direction_value_buf;; - GetAccessors()->getBounceSymbolEffectAccessor()->setDirection(self, (const Opt_EffectDirection*)&direction_value); + GetAccessors()->getBounceSymbolEffectAccessor()->setDirection(self, reinterpret_cast(&direction_value)); } KOALA_INTEROP_DIRECT_V3(BounceSymbolEffect_setDirection, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_CalendarController_ctor() { @@ -27019,7 +27019,7 @@ void impl_CalendarController_goTo(Ark_NativePointer thisPtr, KSerializerBuffer t Ark_CalendarController self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_CalendarSelectedDate date_value = CalendarSelectedDate_serializer::read(thisDeserializer);; - GetAccessors()->getCalendarControllerAccessor()->goTo(self, (const Ark_CalendarSelectedDate*)&date_value); + GetAccessors()->getCalendarControllerAccessor()->goTo(self, reinterpret_cast(&date_value)); } KOALA_INTEROP_DIRECT_V3(CalendarController_goTo, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_CalendarPickerDialog_ctor() { @@ -27040,7 +27040,7 @@ void impl_CalendarPickerDialog_show(KSerializerBuffer thisArray, int32_t thisLen options_value_buf.value = CalendarDialogOptions_serializer::read(thisDeserializer); } Opt_CalendarDialogOptions options_value = options_value_buf;; - GetAccessors()->getCalendarPickerDialogAccessor()->show((const Opt_CalendarDialogOptions*)&options_value); + GetAccessors()->getCalendarPickerDialogAccessor()->show(reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V2(CalendarPickerDialog_show, KSerializerBuffer, int32_t) Ark_NativePointer impl_CanvasGradient_ctor() { @@ -27075,7 +27075,7 @@ void impl_CanvasPath_arc(Ark_NativePointer thisPtr, KInteropNumber x, KInteropNu counterclockwise_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean counterclockwise_value = counterclockwise_value_buf;; - GetAccessors()->getCanvasPathAccessor()->arc(self, (const Ark_Number*) (&x), (const Ark_Number*) (&y), (const Ark_Number*) (&radius), (const Ark_Number*) (&startAngle), (const Ark_Number*) (&endAngle), (const Opt_Boolean*)&counterclockwise_value); + GetAccessors()->getCanvasPathAccessor()->arc(self, (const Ark_Number*) (&x), (const Ark_Number*) (&y), (const Ark_Number*) (&radius), (const Ark_Number*) (&startAngle), (const Ark_Number*) (&endAngle), reinterpret_cast(&counterclockwise_value)); } KOALA_INTEROP_DIRECT_V8(CanvasPath_arc, Ark_NativePointer, KInteropNumber, KInteropNumber, KInteropNumber, KInteropNumber, KInteropNumber, KSerializerBuffer, int32_t) void impl_CanvasPath_arcTo(Ark_NativePointer thisPtr, KInteropNumber x1, KInteropNumber y1, KInteropNumber x2, KInteropNumber y2, KInteropNumber radius) { @@ -27104,7 +27104,7 @@ void impl_CanvasPath_ellipse(Ark_NativePointer thisPtr, KInteropNumber x, KInter counterclockwise_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean counterclockwise_value = counterclockwise_value_buf;; - GetAccessors()->getCanvasPathAccessor()->ellipse(self, (const Ark_Number*) (&x), (const Ark_Number*) (&y), (const Ark_Number*) (&radiusX), (const Ark_Number*) (&radiusY), (const Ark_Number*) (&rotation), (const Ark_Number*) (&startAngle), (const Ark_Number*) (&endAngle), (const Opt_Boolean*)&counterclockwise_value); + GetAccessors()->getCanvasPathAccessor()->ellipse(self, (const Ark_Number*) (&x), (const Ark_Number*) (&y), (const Ark_Number*) (&radiusX), (const Ark_Number*) (&radiusY), (const Ark_Number*) (&rotation), (const Ark_Number*) (&startAngle), (const Ark_Number*) (&endAngle), reinterpret_cast(&counterclockwise_value)); } KOALA_INTEROP_DIRECT_V10(CanvasPath_ellipse, Ark_NativePointer, KInteropNumber, KInteropNumber, KInteropNumber, KInteropNumber, KInteropNumber, KInteropNumber, KInteropNumber, KSerializerBuffer, int32_t) void impl_CanvasPath_lineTo(Ark_NativePointer thisPtr, KInteropNumber x, KInteropNumber y) { @@ -27146,7 +27146,7 @@ void impl_CanvasPattern_setTransform(Ark_NativePointer thisPtr, KSerializerBuffe transform_value_buf.value = static_cast(Matrix2D_serializer::read(thisDeserializer)); } Opt_Matrix2D transform_value = transform_value_buf;; - GetAccessors()->getCanvasPatternAccessor()->setTransform(self, (const Opt_Matrix2D*)&transform_value); + GetAccessors()->getCanvasPatternAccessor()->setTransform(self, reinterpret_cast(&transform_value)); } KOALA_INTEROP_DIRECT_V3(CanvasPattern_setTransform, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_CanvasRenderer_ctor() { @@ -27175,7 +27175,7 @@ void impl_CanvasRenderer_drawImage0(Ark_NativePointer thisPtr, KSerializerBuffer INTEROP_FATAL("One of the branches for image_value_buf has to be chosen through deserialisation."); } Ark_Union_ImageBitmap_PixelMap image_value = static_cast(image_value_buf);; - GetAccessors()->getCanvasRendererAccessor()->drawImage0(self, (const Ark_Union_ImageBitmap_PixelMap*)&image_value, (const Ark_Number*) (&dx), (const Ark_Number*) (&dy)); + GetAccessors()->getCanvasRendererAccessor()->drawImage0(self, reinterpret_cast(&image_value), (const Ark_Number*) (&dx), (const Ark_Number*) (&dy)); } KOALA_INTEROP_DIRECT_V5(CanvasRenderer_drawImage0, Ark_NativePointer, KSerializerBuffer, int32_t, KInteropNumber, KInteropNumber) void impl_CanvasRenderer_drawImage1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength, KInteropNumber dx, KInteropNumber dy, KInteropNumber dw, KInteropNumber dh) { @@ -27196,7 +27196,7 @@ void impl_CanvasRenderer_drawImage1(Ark_NativePointer thisPtr, KSerializerBuffer INTEROP_FATAL("One of the branches for image_value_buf has to be chosen through deserialisation."); } Ark_Union_ImageBitmap_PixelMap image_value = static_cast(image_value_buf);; - GetAccessors()->getCanvasRendererAccessor()->drawImage1(self, (const Ark_Union_ImageBitmap_PixelMap*)&image_value, (const Ark_Number*) (&dx), (const Ark_Number*) (&dy), (const Ark_Number*) (&dw), (const Ark_Number*) (&dh)); + GetAccessors()->getCanvasRendererAccessor()->drawImage1(self, reinterpret_cast(&image_value), (const Ark_Number*) (&dx), (const Ark_Number*) (&dy), (const Ark_Number*) (&dw), (const Ark_Number*) (&dh)); } KOALA_INTEROP_DIRECT_V7(CanvasRenderer_drawImage1, Ark_NativePointer, KSerializerBuffer, int32_t, KInteropNumber, KInteropNumber, KInteropNumber, KInteropNumber) void impl_CanvasRenderer_drawImage2(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength, KInteropNumber sx, KInteropNumber sy, KInteropNumber sw, KInteropNumber sh, KInteropNumber dx, KInteropNumber dy, KInteropNumber dw, KInteropNumber dh) { @@ -27217,7 +27217,7 @@ void impl_CanvasRenderer_drawImage2(Ark_NativePointer thisPtr, KSerializerBuffer INTEROP_FATAL("One of the branches for image_value_buf has to be chosen through deserialisation."); } Ark_Union_ImageBitmap_PixelMap image_value = static_cast(image_value_buf);; - GetAccessors()->getCanvasRendererAccessor()->drawImage2(self, (const Ark_Union_ImageBitmap_PixelMap*)&image_value, (const Ark_Number*) (&sx), (const Ark_Number*) (&sy), (const Ark_Number*) (&sw), (const Ark_Number*) (&sh), (const Ark_Number*) (&dx), (const Ark_Number*) (&dy), (const Ark_Number*) (&dw), (const Ark_Number*) (&dh)); + GetAccessors()->getCanvasRendererAccessor()->drawImage2(self, reinterpret_cast(&image_value), (const Ark_Number*) (&sx), (const Ark_Number*) (&sy), (const Ark_Number*) (&sw), (const Ark_Number*) (&sh), (const Ark_Number*) (&dx), (const Ark_Number*) (&dy), (const Ark_Number*) (&dw), (const Ark_Number*) (&dh)); } KOALA_INTEROP_DIRECT_V11(CanvasRenderer_drawImage2, Ark_NativePointer, KSerializerBuffer, int32_t, KInteropNumber, KInteropNumber, KInteropNumber, KInteropNumber, KInteropNumber, KInteropNumber, KInteropNumber, KInteropNumber) void impl_CanvasRenderer_beginPath(Ark_NativePointer thisPtr) { @@ -27236,7 +27236,7 @@ void impl_CanvasRenderer_clip0(Ark_NativePointer thisPtr, KSerializerBuffer this fillRule_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String fillRule_value = fillRule_value_buf;; - GetAccessors()->getCanvasRendererAccessor()->clip0(self, (const Opt_String*)&fillRule_value); + GetAccessors()->getCanvasRendererAccessor()->clip0(self, reinterpret_cast(&fillRule_value)); } KOALA_INTEROP_DIRECT_V3(CanvasRenderer_clip0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CanvasRenderer_clip1(Ark_NativePointer thisPtr, Ark_NativePointer path, KSerializerBuffer thisArray, int32_t thisLength) { @@ -27250,7 +27250,7 @@ void impl_CanvasRenderer_clip1(Ark_NativePointer thisPtr, Ark_NativePointer path fillRule_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String fillRule_value = fillRule_value_buf;; - GetAccessors()->getCanvasRendererAccessor()->clip1(self, static_cast(path), (const Opt_String*)&fillRule_value); + GetAccessors()->getCanvasRendererAccessor()->clip1(self, static_cast(path), reinterpret_cast(&fillRule_value)); } KOALA_INTEROP_DIRECT_V4(CanvasRenderer_clip1, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CanvasRenderer_fill0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -27264,7 +27264,7 @@ void impl_CanvasRenderer_fill0(Ark_NativePointer thisPtr, KSerializerBuffer this fillRule_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String fillRule_value = fillRule_value_buf;; - GetAccessors()->getCanvasRendererAccessor()->fill0(self, (const Opt_String*)&fillRule_value); + GetAccessors()->getCanvasRendererAccessor()->fill0(self, reinterpret_cast(&fillRule_value)); } KOALA_INTEROP_DIRECT_V3(CanvasRenderer_fill0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CanvasRenderer_fill1(Ark_NativePointer thisPtr, Ark_NativePointer path, KSerializerBuffer thisArray, int32_t thisLength) { @@ -27278,7 +27278,7 @@ void impl_CanvasRenderer_fill1(Ark_NativePointer thisPtr, Ark_NativePointer path fillRule_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String fillRule_value = fillRule_value_buf;; - GetAccessors()->getCanvasRendererAccessor()->fill1(self, static_cast(path), (const Opt_String*)&fillRule_value); + GetAccessors()->getCanvasRendererAccessor()->fill1(self, static_cast(path), reinterpret_cast(&fillRule_value)); } KOALA_INTEROP_DIRECT_V4(CanvasRenderer_fill1, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CanvasRenderer_stroke(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -27292,7 +27292,7 @@ void impl_CanvasRenderer_stroke(Ark_NativePointer thisPtr, KSerializerBuffer thi path_value_buf.value = static_cast(Path2D_serializer::read(thisDeserializer)); } Opt_Path2D path_value = path_value_buf;; - GetAccessors()->getCanvasRendererAccessor()->stroke(self, (const Opt_Path2D*)&path_value); + GetAccessors()->getCanvasRendererAccessor()->stroke(self, reinterpret_cast(&path_value)); } KOALA_INTEROP_DIRECT_V3(CanvasRenderer_stroke, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_CanvasRenderer_createLinearGradient(Ark_NativePointer thisPtr, KInteropNumber x0, KInteropNumber y0, KInteropNumber x1, KInteropNumber y1) { @@ -27311,7 +27311,7 @@ KInteropReturnBuffer impl_CanvasRenderer_createPattern(Ark_NativePointer thisPtr repetition_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String repetition_value = repetition_value_buf;; - const auto &retValue = GetAccessors()->getCanvasRendererAccessor()->createPattern(self, static_cast(image), (const Opt_String*)&repetition_value); + const auto &retValue = GetAccessors()->getCanvasRendererAccessor()->createPattern(self, static_cast(image), reinterpret_cast(&repetition_value)); SerializerBase _retSerializer {}; Ark_Int32 retValue_type = INTEROP_RUNTIME_UNDEFINED; retValue_type = runtimeType(retValue); @@ -27386,7 +27386,7 @@ void impl_CanvasRenderer_putImageData0(Ark_NativePointer thisPtr, Ark_NativePoin INTEROP_FATAL("One of the branches for dy_value_buf has to be chosen through deserialisation."); } Ark_Union_Number_String dy_value = static_cast(dy_value_buf);; - GetAccessors()->getCanvasRendererAccessor()->putImageData0(self, static_cast(imagedata), (const Ark_Union_Number_String*)&dx_value, (const Ark_Union_Number_String*)&dy_value); + GetAccessors()->getCanvasRendererAccessor()->putImageData0(self, static_cast(imagedata), reinterpret_cast(&dx_value), reinterpret_cast(&dy_value)); } KOALA_INTEROP_DIRECT_V4(CanvasRenderer_putImageData0, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CanvasRenderer_putImageData1(Ark_NativePointer thisPtr, Ark_NativePointer imagedata, KSerializerBuffer thisArray, int32_t thisLength) { @@ -27482,7 +27482,7 @@ void impl_CanvasRenderer_putImageData1(Ark_NativePointer thisPtr, Ark_NativePoin INTEROP_FATAL("One of the branches for dirtyHeight_value_buf has to be chosen through deserialisation."); } Ark_Union_Number_String dirtyHeight_value = static_cast(dirtyHeight_value_buf);; - GetAccessors()->getCanvasRendererAccessor()->putImageData1(self, static_cast(imagedata), (const Ark_Union_Number_String*)&dx_value, (const Ark_Union_Number_String*)&dy_value, (const Ark_Union_Number_String*)&dirtyX_value, (const Ark_Union_Number_String*)&dirtyY_value, (const Ark_Union_Number_String*)&dirtyWidth_value, (const Ark_Union_Number_String*)&dirtyHeight_value); + GetAccessors()->getCanvasRendererAccessor()->putImageData1(self, static_cast(imagedata), reinterpret_cast(&dx_value), reinterpret_cast(&dy_value), reinterpret_cast(&dirtyX_value), reinterpret_cast(&dirtyY_value), reinterpret_cast(&dirtyWidth_value), reinterpret_cast(&dirtyHeight_value)); } KOALA_INTEROP_DIRECT_V4(CanvasRenderer_putImageData1, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_CanvasRenderer_getLineDash(Ark_NativePointer thisPtr) { @@ -27508,7 +27508,7 @@ void impl_CanvasRenderer_setLineDash(Ark_NativePointer thisPtr, KSerializerBuffe segments_value_buf.array[segments_value_buf_i] = static_cast(thisDeserializer.readNumber()); } Array_Number segments_value = segments_value_buf;; - GetAccessors()->getCanvasRendererAccessor()->setLineDash(self, (const Array_Number*)&segments_value); + GetAccessors()->getCanvasRendererAccessor()->setLineDash(self, reinterpret_cast(&segments_value)); } KOALA_INTEROP_DIRECT_V3(CanvasRenderer_setLineDash, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CanvasRenderer_clearRect(Ark_NativePointer thisPtr, KInteropNumber x, KInteropNumber y, KInteropNumber w, KInteropNumber h) { @@ -27547,7 +27547,7 @@ void impl_CanvasRenderer_fillText(Ark_NativePointer thisPtr, const KStringPtr& t maxWidth_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number maxWidth_value = maxWidth_value_buf;; - GetAccessors()->getCanvasRendererAccessor()->fillText(self, (const Ark_String*) (&text), (const Ark_Number*) (&x), (const Ark_Number*) (&y), (const Opt_Number*)&maxWidth_value); + GetAccessors()->getCanvasRendererAccessor()->fillText(self, (const Ark_String*) (&text), (const Ark_Number*) (&x), (const Ark_Number*) (&y), reinterpret_cast(&maxWidth_value)); } KOALA_INTEROP_V6(CanvasRenderer_fillText, Ark_NativePointer, KStringPtr, KInteropNumber, KInteropNumber, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_CanvasRenderer_measureText(Ark_NativePointer thisPtr, const KStringPtr& text) { @@ -27569,7 +27569,7 @@ void impl_CanvasRenderer_strokeText(Ark_NativePointer thisPtr, const KStringPtr& maxWidth_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number maxWidth_value = maxWidth_value_buf;; - GetAccessors()->getCanvasRendererAccessor()->strokeText(self, (const Ark_String*) (&text), (const Ark_Number*) (&x), (const Ark_Number*) (&y), (const Opt_Number*)&maxWidth_value); + GetAccessors()->getCanvasRendererAccessor()->strokeText(self, (const Ark_String*) (&text), (const Ark_Number*) (&x), (const Ark_Number*) (&y), reinterpret_cast(&maxWidth_value)); } KOALA_INTEROP_V6(CanvasRenderer_strokeText, Ark_NativePointer, KStringPtr, KInteropNumber, KInteropNumber, KSerializerBuffer, int32_t) Ark_NativePointer impl_CanvasRenderer_getTransform(Ark_NativePointer thisPtr) { @@ -27608,7 +27608,7 @@ void impl_CanvasRenderer_setTransform1(Ark_NativePointer thisPtr, KSerializerBuf transform_value_buf.value = static_cast(Matrix2D_serializer::read(thisDeserializer)); } Opt_Matrix2D transform_value = transform_value_buf;; - GetAccessors()->getCanvasRendererAccessor()->setTransform1(self, (const Opt_Matrix2D*)&transform_value); + GetAccessors()->getCanvasRendererAccessor()->setTransform1(self, reinterpret_cast(&transform_value)); } KOALA_INTEROP_DIRECT_V3(CanvasRenderer_setTransform1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CanvasRenderer_transform(Ark_NativePointer thisPtr, KInteropNumber a, KInteropNumber b, KInteropNumber c, KInteropNumber d, KInteropNumber e, KInteropNumber f) { @@ -27632,7 +27632,7 @@ void impl_CanvasRenderer_setPixelMap(Ark_NativePointer thisPtr, KSerializerBuffe value_value_buf.value = static_cast(image_PixelMap_serializer::read(thisDeserializer)); } Opt_image_PixelMap value_value = value_value_buf;; - GetAccessors()->getCanvasRendererAccessor()->setPixelMap(self, (const Opt_image_PixelMap*)&value_value); + GetAccessors()->getCanvasRendererAccessor()->setPixelMap(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(CanvasRenderer_setPixelMap, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CanvasRenderer_transferFromImageBitmap(Ark_NativePointer thisPtr, Ark_NativePointer bitmap) { @@ -27692,7 +27692,7 @@ void impl_CanvasRenderer_setLetterSpacing(Ark_NativePointer thisPtr, KSerializer INTEROP_FATAL("One of the branches for letterSpacing_value_buf has to be chosen through deserialisation."); } Ark_Union_LengthMetrics_String letterSpacing_value = static_cast(letterSpacing_value_buf);; - GetAccessors()->getCanvasRendererAccessor()->setLetterSpacing(self, (const Ark_Union_LengthMetrics_String*)&letterSpacing_value); + GetAccessors()->getCanvasRendererAccessor()->setLetterSpacing(self, reinterpret_cast(&letterSpacing_value)); } KOALA_INTEROP_DIRECT_V3(CanvasRenderer_setLetterSpacing, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_Number impl_CanvasRenderer_getGlobalAlpha(Ark_NativePointer thisPtr) { @@ -27770,7 +27770,7 @@ void impl_CanvasRenderer_setFillStyle(Ark_NativePointer thisPtr, KSerializerBuff INTEROP_FATAL("One of the branches for fillStyle_value_buf has to be chosen through deserialisation."); } Ark_Union_String_Number_CanvasGradient_CanvasPattern fillStyle_value = static_cast(fillStyle_value_buf);; - GetAccessors()->getCanvasRendererAccessor()->setFillStyle(self, (const Ark_Union_String_Number_CanvasGradient_CanvasPattern*)&fillStyle_value); + GetAccessors()->getCanvasRendererAccessor()->setFillStyle(self, reinterpret_cast(&fillStyle_value)); } KOALA_INTEROP_DIRECT_V3(CanvasRenderer_setFillStyle, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_CanvasRenderer_getStrokeStyle(Ark_NativePointer thisPtr) { @@ -27828,7 +27828,7 @@ void impl_CanvasRenderer_setStrokeStyle(Ark_NativePointer thisPtr, KSerializerBu INTEROP_FATAL("One of the branches for strokeStyle_value_buf has to be chosen through deserialisation."); } Ark_Union_String_Number_CanvasGradient_CanvasPattern strokeStyle_value = static_cast(strokeStyle_value_buf);; - GetAccessors()->getCanvasRendererAccessor()->setStrokeStyle(self, (const Ark_Union_String_Number_CanvasGradient_CanvasPattern*)&strokeStyle_value); + GetAccessors()->getCanvasRendererAccessor()->setStrokeStyle(self, reinterpret_cast(&strokeStyle_value)); } KOALA_INTEROP_DIRECT_V3(CanvasRenderer_setStrokeStyle, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_String impl_CanvasRenderer_getFilter(Ark_NativePointer thisPtr) { @@ -28009,7 +28009,7 @@ Ark_NativePointer impl_CanvasRenderingContext2D_ctor(KSerializerBuffer thisArray unit_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_LengthMetricsUnit unit_value = unit_value_buf;; - return GetAccessors()->getCanvasRenderingContext2DAccessor()->ctor((const Opt_RenderingContextSettings*)&settings_value, (const Opt_LengthMetricsUnit*)&unit_value); + return GetAccessors()->getCanvasRenderingContext2DAccessor()->ctor(reinterpret_cast(&settings_value), reinterpret_cast(&unit_value)); } KOALA_INTEROP_DIRECT_2(CanvasRenderingContext2D_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_CanvasRenderingContext2D_getFinalizer() { @@ -28035,7 +28035,7 @@ Ark_String impl_CanvasRenderingContext2D_toDataURL(Ark_NativePointer thisPtr, KS quality_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number quality_value = quality_value_buf;; - return GetAccessors()->getCanvasRenderingContext2DAccessor()->toDataURL(self, (const Opt_String*)&type_value, (const Opt_Number*)&quality_value); + return GetAccessors()->getCanvasRenderingContext2DAccessor()->toDataURL(self, reinterpret_cast(&type_value), reinterpret_cast(&quality_value)); } KOALA_INTEROP_3(CanvasRenderingContext2D_toDataURL, KStringPtr, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CanvasRenderingContext2D_startImageAnalyzer(KVMContext vmContext, Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -28043,7 +28043,7 @@ void impl_CanvasRenderingContext2D_startImageAnalyzer(KVMContext vmContext, Ark_ DeserializerBase thisDeserializer(thisArray, thisLength); Ark_ImageAnalyzerConfig config_value = ImageAnalyzerConfig_serializer::read(thisDeserializer);; Callback_Opt_Array_String_Void outputArgumentForReturningPromise_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Opt_Array_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Opt_Array_String_Void))))};; - GetAccessors()->getCanvasRenderingContext2DAccessor()->startImageAnalyzer(reinterpret_cast(vmContext), GetAsyncWorker(), self, (const Ark_ImageAnalyzerConfig*)&config_value, (const Callback_Opt_Array_String_Void*)&outputArgumentForReturningPromise_value); + GetAccessors()->getCanvasRenderingContext2DAccessor()->startImageAnalyzer(reinterpret_cast(vmContext), GetAsyncWorker(), self, reinterpret_cast(&config_value), reinterpret_cast(&outputArgumentForReturningPromise_value)); } KOALA_INTEROP_CTX_V3(CanvasRenderingContext2D_startImageAnalyzer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CanvasRenderingContext2D_stopImageAnalyzer(Ark_NativePointer thisPtr) { @@ -28055,7 +28055,7 @@ void impl_CanvasRenderingContext2D_onOnAttach(KVMContext vmContext, Ark_NativePo Ark_CanvasRenderingContext2D self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Void callback__value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))};; - GetAccessors()->getCanvasRenderingContext2DAccessor()->onOnAttach(reinterpret_cast(vmContext), self, (const Callback_Void*)&callback__value); + GetAccessors()->getCanvasRenderingContext2DAccessor()->onOnAttach(reinterpret_cast(vmContext), self, reinterpret_cast(&callback__value)); } KOALA_INTEROP_CTX_V3(CanvasRenderingContext2D_onOnAttach, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CanvasRenderingContext2D_offOnAttach(KVMContext vmContext, Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -28069,14 +28069,14 @@ void impl_CanvasRenderingContext2D_offOnAttach(KVMContext vmContext, Ark_NativeP callback__value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void callback__value = callback__value_buf;; - GetAccessors()->getCanvasRenderingContext2DAccessor()->offOnAttach(reinterpret_cast(vmContext), self, (const Opt_Callback_Void*)&callback__value); + GetAccessors()->getCanvasRenderingContext2DAccessor()->offOnAttach(reinterpret_cast(vmContext), self, reinterpret_cast(&callback__value)); } KOALA_INTEROP_CTX_V3(CanvasRenderingContext2D_offOnAttach, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CanvasRenderingContext2D_onOnDetach(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_CanvasRenderingContext2D self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Void callback__value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))};; - GetAccessors()->getCanvasRenderingContext2DAccessor()->onOnDetach(self, (const Callback_Void*)&callback__value); + GetAccessors()->getCanvasRenderingContext2DAccessor()->onOnDetach(self, reinterpret_cast(&callback__value)); } KOALA_INTEROP_DIRECT_V3(CanvasRenderingContext2D_onOnDetach, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_CanvasRenderingContext2D_offOnDetach(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -28090,7 +28090,7 @@ void impl_CanvasRenderingContext2D_offOnDetach(Ark_NativePointer thisPtr, KSeria callback__value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void callback__value = callback__value_buf;; - GetAccessors()->getCanvasRenderingContext2DAccessor()->offOnDetach(self, (const Opt_Callback_Void*)&callback__value); + GetAccessors()->getCanvasRenderingContext2DAccessor()->offOnDetach(self, reinterpret_cast(&callback__value)); } KOALA_INTEROP_DIRECT_V3(CanvasRenderingContext2D_offOnDetach, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_Number impl_CanvasRenderingContext2D_getHeight(Ark_NativePointer thisPtr) { @@ -28157,7 +28157,7 @@ void impl_ChildrenMainSize_splice(Ark_NativePointer thisPtr, KInteropNumber star childrenSize_value_buf.value = childrenSize_value_buf_; } Opt_Array_Number childrenSize_value = childrenSize_value_buf;; - GetAccessors()->getChildrenMainSizeAccessor()->splice(self, (const Ark_Number*) (&start), (const Opt_Number*)&deleteCount_value, (const Opt_Array_Number*)&childrenSize_value); + GetAccessors()->getChildrenMainSizeAccessor()->splice(self, (const Ark_Number*) (&start), reinterpret_cast(&deleteCount_value), reinterpret_cast(&childrenSize_value)); } KOALA_INTEROP_DIRECT_V4(ChildrenMainSize_splice, Ark_NativePointer, KInteropNumber, KSerializerBuffer, int32_t) void impl_ChildrenMainSize_update(Ark_NativePointer thisPtr, KInteropNumber index, KInteropNumber childSize) { @@ -28185,7 +28185,7 @@ Ark_NativePointer impl_CircleShape_ctor(KSerializerBuffer thisArray, int32_t thi options_value_buf.value = ShapeSize_serializer::read(thisDeserializer); } Opt_ShapeSize options_value = options_value_buf;; - return GetAccessors()->getCircleShapeAccessor()->ctor((const Opt_ShapeSize*)&options_value); + return GetAccessors()->getCircleShapeAccessor()->ctor(reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_2(CircleShape_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_CircleShape_getFinalizer() { @@ -28196,7 +28196,7 @@ Ark_NativePointer impl_CircleShape_offset(Ark_NativePointer thisPtr, KSerializer Ark_CircleShape self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Position offset_value = Position_serializer::read(thisDeserializer);; - return GetAccessors()->getCircleShapeAccessor()->offset(self, (const Ark_Position*)&offset_value); + return GetAccessors()->getCircleShapeAccessor()->offset(self, reinterpret_cast(&offset_value)); } KOALA_INTEROP_DIRECT_3(CircleShape_offset, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_CircleShape_fill(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -28225,14 +28225,14 @@ Ark_NativePointer impl_CircleShape_fill(Ark_NativePointer thisPtr, KSerializerBu INTEROP_FATAL("One of the branches for color_value_buf has to be chosen through deserialisation."); } Ark_ResourceColor color_value = static_cast(color_value_buf);; - return GetAccessors()->getCircleShapeAccessor()->fill(self, (const Ark_ResourceColor*)&color_value); + return GetAccessors()->getCircleShapeAccessor()->fill(self, reinterpret_cast(&color_value)); } KOALA_INTEROP_DIRECT_3(CircleShape_fill, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_CircleShape_position(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_CircleShape self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Position position_value = Position_serializer::read(thisDeserializer);; - return GetAccessors()->getCircleShapeAccessor()->position(self, (const Ark_Position*)&position_value); + return GetAccessors()->getCircleShapeAccessor()->position(self, reinterpret_cast(&position_value)); } KOALA_INTEROP_DIRECT_3(CircleShape_position, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_CircleShape_width(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -28257,7 +28257,7 @@ Ark_NativePointer impl_CircleShape_width(Ark_NativePointer thisPtr, KSerializerB INTEROP_FATAL("One of the branches for width_value_buf has to be chosen through deserialisation."); } Ark_Length width_value = static_cast(width_value_buf);; - return GetAccessors()->getCircleShapeAccessor()->width(self, (const Ark_Length*)&width_value); + return GetAccessors()->getCircleShapeAccessor()->width(self, reinterpret_cast(&width_value)); } KOALA_INTEROP_DIRECT_3(CircleShape_width, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_CircleShape_height(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -28282,14 +28282,14 @@ Ark_NativePointer impl_CircleShape_height(Ark_NativePointer thisPtr, KSerializer INTEROP_FATAL("One of the branches for height_value_buf has to be chosen through deserialisation."); } Ark_Length height_value = static_cast(height_value_buf);; - return GetAccessors()->getCircleShapeAccessor()->height(self, (const Ark_Length*)&height_value); + return GetAccessors()->getCircleShapeAccessor()->height(self, reinterpret_cast(&height_value)); } KOALA_INTEROP_DIRECT_3(CircleShape_height, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_CircleShape_size(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_CircleShape self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_SizeOptions size_value = SizeOptions_serializer::read(thisDeserializer);; - return GetAccessors()->getCircleShapeAccessor()->size(self, (const Ark_SizeOptions*)&size_value); + return GetAccessors()->getCircleShapeAccessor()->size(self, reinterpret_cast(&size_value)); } KOALA_INTEROP_DIRECT_3(CircleShape_size, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_ClickEvent_ctor() { @@ -28390,7 +28390,7 @@ void impl_ClickEvent_setPreventDefault(Ark_NativePointer thisPtr, KSerializerBuf Ark_ClickEvent self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Void preventDefault_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))};; - GetAccessors()->getClickEventAccessor()->setPreventDefault(self, (const Callback_Void*)&preventDefault_value); + GetAccessors()->getClickEventAccessor()->setPreventDefault(self, reinterpret_cast(&preventDefault_value)); } KOALA_INTEROP_DIRECT_V3(ClickEvent_setPreventDefault, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_ColorContent_ctor() { @@ -28415,7 +28415,7 @@ Ark_NativePointer impl_ColorFilter_ctor(KSerializerBuffer thisArray, int32_t thi value_value_buf.array[value_value_buf_i] = static_cast(thisDeserializer.readNumber()); } Array_Number value_value = value_value_buf;; - return GetAccessors()->getColorFilterAccessor()->ctor((const Array_Number*)&value_value); + return GetAccessors()->getColorFilterAccessor()->ctor(reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_2(ColorFilter_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_ColorFilter_getFinalizer() { @@ -28463,7 +28463,7 @@ Ark_NativePointer impl_ColorMetrics_resourceColor(KSerializerBuffer thisArray, i INTEROP_FATAL("One of the branches for color_value_buf has to be chosen through deserialisation."); } Ark_ResourceColor color_value = static_cast(color_value_buf);; - return GetAccessors()->getColorMetricsAccessor()->resourceColor((const Ark_ResourceColor*)&color_value); + return GetAccessors()->getColorMetricsAccessor()->resourceColor(reinterpret_cast(&color_value)); } KOALA_INTEROP_DIRECT_2(ColorMetrics_resourceColor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_ColorMetrics_blendColor(Ark_NativePointer thisPtr, Ark_NativePointer overlayColor) { @@ -28523,14 +28523,14 @@ void impl_common_Context_getGroupDir0(KVMContext vmContext, Ark_NativePointer th Ark_common_Context self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Context_getGroupDir_Callback callback__value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Context_getGroupDir_Callback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Context_getGroupDir_Callback))))};; - GetAccessors()->getCommon_ContextAccessor()->getGroupDir0(reinterpret_cast(vmContext), self, (const Ark_String*) (&dataGroupID), (const Context_getGroupDir_Callback*)&callback__value); + GetAccessors()->getCommon_ContextAccessor()->getGroupDir0(reinterpret_cast(vmContext), self, (const Ark_String*) (&dataGroupID), reinterpret_cast(&callback__value)); } KOALA_INTEROP_CTX_V4(common_Context_getGroupDir0, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) void impl_common_Context_getGroupDir1(KVMContext vmContext, Ark_NativePointer thisPtr, const KStringPtr& dataGroupID, KSerializerBuffer thisArray, int32_t thisLength) { Ark_common_Context self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Opt_String_Opt_Array_String_Void outputArgumentForReturningPromise_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Opt_String_Opt_Array_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Opt_String_Opt_Array_String_Void))))};; - GetAccessors()->getCommon_ContextAccessor()->getGroupDir1(reinterpret_cast(vmContext), GetAsyncWorker(), self, (const Ark_String*) (&dataGroupID), (const Callback_Opt_String_Opt_Array_String_Void*)&outputArgumentForReturningPromise_value); + GetAccessors()->getCommon_ContextAccessor()->getGroupDir1(reinterpret_cast(vmContext), GetAsyncWorker(), self, (const Ark_String*) (&dataGroupID), reinterpret_cast(&outputArgumentForReturningPromise_value)); } KOALA_INTEROP_CTX_V4(common_Context_getGroupDir1, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) Ark_String impl_common_Context_getCacheDir(Ark_NativePointer thisPtr) { @@ -28635,7 +28635,7 @@ Ark_NativePointer impl_CommonShape_offset(Ark_NativePointer thisPtr, KSerializer Ark_CommonShape self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Position offset_value = Position_serializer::read(thisDeserializer);; - return GetAccessors()->getCommonShapeAccessor()->offset(self, (const Ark_Position*)&offset_value); + return GetAccessors()->getCommonShapeAccessor()->offset(self, reinterpret_cast(&offset_value)); } KOALA_INTEROP_DIRECT_3(CommonShape_offset, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_CommonShape_fill(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -28664,14 +28664,14 @@ Ark_NativePointer impl_CommonShape_fill(Ark_NativePointer thisPtr, KSerializerBu INTEROP_FATAL("One of the branches for color_value_buf has to be chosen through deserialisation."); } Ark_ResourceColor color_value = static_cast(color_value_buf);; - return GetAccessors()->getCommonShapeAccessor()->fill(self, (const Ark_ResourceColor*)&color_value); + return GetAccessors()->getCommonShapeAccessor()->fill(self, reinterpret_cast(&color_value)); } KOALA_INTEROP_DIRECT_3(CommonShape_fill, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_CommonShape_position(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_CommonShape self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Position position_value = Position_serializer::read(thisDeserializer);; - return GetAccessors()->getCommonShapeAccessor()->position(self, (const Ark_Position*)&position_value); + return GetAccessors()->getCommonShapeAccessor()->position(self, reinterpret_cast(&position_value)); } KOALA_INTEROP_DIRECT_3(CommonShape_position, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_ComponentContent_ctor() { @@ -28686,7 +28686,7 @@ void impl_ComponentContent_update(Ark_NativePointer thisPtr, KSerializerBuffer t Ark_ComponentContent self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Object args_value = static_cast(thisDeserializer.readObject());; - GetAccessors()->getComponentContentAccessor()->update(self, (const Ark_Object*)&args_value); + GetAccessors()->getComponentContentAccessor()->update(self, reinterpret_cast(&args_value)); } KOALA_INTEROP_DIRECT_V3(ComponentContent_update, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ComponentContent_reuse(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -28700,7 +28700,7 @@ void impl_ComponentContent_reuse(Ark_NativePointer thisPtr, KSerializerBuffer th param_value_buf.value = static_cast(thisDeserializer.readObject()); } Opt_Object param_value = param_value_buf;; - GetAccessors()->getComponentContentAccessor()->reuse(self, (const Opt_Object*)¶m_value); + GetAccessors()->getComponentContentAccessor()->reuse(self, reinterpret_cast(¶m_value)); } KOALA_INTEROP_DIRECT_V3(ComponentContent_reuse, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ComponentContent_recycle(Ark_NativePointer thisPtr) { @@ -28722,91 +28722,91 @@ void impl_ContentModifierHelper_contentModifierButton(Ark_NativePointer node, KS DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Object contentModifier_value = static_cast(thisDeserializer.readObject());; ButtonModifierBuilder builder_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_ButtonModifierBuilder)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_ButtonModifierBuilder))))};; - GetAccessors()->getContentModifierHelperAccessor()->contentModifierButton(node, (const Ark_Object*)&contentModifier_value, (const ButtonModifierBuilder*)&builder_value); + GetAccessors()->getContentModifierHelperAccessor()->contentModifierButton(node, reinterpret_cast(&contentModifier_value), reinterpret_cast(&builder_value)); } KOALA_INTEROP_DIRECT_V3(ContentModifierHelper_contentModifierButton, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ContentModifierHelper_contentModifierCheckBox(Ark_NativePointer node, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Object contentModifier_value = static_cast(thisDeserializer.readObject());; CheckBoxModifierBuilder builder_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_CheckBoxModifierBuilder)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_CheckBoxModifierBuilder))))};; - GetAccessors()->getContentModifierHelperAccessor()->contentModifierCheckBox(node, (const Ark_Object*)&contentModifier_value, (const CheckBoxModifierBuilder*)&builder_value); + GetAccessors()->getContentModifierHelperAccessor()->contentModifierCheckBox(node, reinterpret_cast(&contentModifier_value), reinterpret_cast(&builder_value)); } KOALA_INTEROP_DIRECT_V3(ContentModifierHelper_contentModifierCheckBox, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ContentModifierHelper_contentModifierDataPanel(Ark_NativePointer node, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Object contentModifier_value = static_cast(thisDeserializer.readObject());; DataPanelModifierBuilder builder_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_DataPanelModifierBuilder)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_DataPanelModifierBuilder))))};; - GetAccessors()->getContentModifierHelperAccessor()->contentModifierDataPanel(node, (const Ark_Object*)&contentModifier_value, (const DataPanelModifierBuilder*)&builder_value); + GetAccessors()->getContentModifierHelperAccessor()->contentModifierDataPanel(node, reinterpret_cast(&contentModifier_value), reinterpret_cast(&builder_value)); } KOALA_INTEROP_DIRECT_V3(ContentModifierHelper_contentModifierDataPanel, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ContentModifierHelper_contentModifierGauge(Ark_NativePointer node, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Object contentModifier_value = static_cast(thisDeserializer.readObject());; GaugeModifierBuilder builder_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_GaugeModifierBuilder)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_GaugeModifierBuilder))))};; - GetAccessors()->getContentModifierHelperAccessor()->contentModifierGauge(node, (const Ark_Object*)&contentModifier_value, (const GaugeModifierBuilder*)&builder_value); + GetAccessors()->getContentModifierHelperAccessor()->contentModifierGauge(node, reinterpret_cast(&contentModifier_value), reinterpret_cast(&builder_value)); } KOALA_INTEROP_DIRECT_V3(ContentModifierHelper_contentModifierGauge, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ContentModifierHelper_contentModifierLoadingProgress(Ark_NativePointer node, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Object contentModifier_value = static_cast(thisDeserializer.readObject());; LoadingProgressModifierBuilder builder_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_LoadingProgressModifierBuilder)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_LoadingProgressModifierBuilder))))};; - GetAccessors()->getContentModifierHelperAccessor()->contentModifierLoadingProgress(node, (const Ark_Object*)&contentModifier_value, (const LoadingProgressModifierBuilder*)&builder_value); + GetAccessors()->getContentModifierHelperAccessor()->contentModifierLoadingProgress(node, reinterpret_cast(&contentModifier_value), reinterpret_cast(&builder_value)); } KOALA_INTEROP_DIRECT_V3(ContentModifierHelper_contentModifierLoadingProgress, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ContentModifierHelper_contentModifierProgress(Ark_NativePointer node, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Object contentModifier_value = static_cast(thisDeserializer.readObject());; ProgressModifierBuilder builder_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_ProgressModifierBuilder)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_ProgressModifierBuilder))))};; - GetAccessors()->getContentModifierHelperAccessor()->contentModifierProgress(node, (const Ark_Object*)&contentModifier_value, (const ProgressModifierBuilder*)&builder_value); + GetAccessors()->getContentModifierHelperAccessor()->contentModifierProgress(node, reinterpret_cast(&contentModifier_value), reinterpret_cast(&builder_value)); } KOALA_INTEROP_DIRECT_V3(ContentModifierHelper_contentModifierProgress, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ContentModifierHelper_contentModifierRadio(Ark_NativePointer node, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Object contentModifier_value = static_cast(thisDeserializer.readObject());; RadioModifierBuilder builder_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_RadioModifierBuilder)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_RadioModifierBuilder))))};; - GetAccessors()->getContentModifierHelperAccessor()->contentModifierRadio(node, (const Ark_Object*)&contentModifier_value, (const RadioModifierBuilder*)&builder_value); + GetAccessors()->getContentModifierHelperAccessor()->contentModifierRadio(node, reinterpret_cast(&contentModifier_value), reinterpret_cast(&builder_value)); } KOALA_INTEROP_DIRECT_V3(ContentModifierHelper_contentModifierRadio, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ContentModifierHelper_contentModifierRating(Ark_NativePointer node, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Object contentModifier_value = static_cast(thisDeserializer.readObject());; RatingModifierBuilder builder_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_RatingModifierBuilder)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_RatingModifierBuilder))))};; - GetAccessors()->getContentModifierHelperAccessor()->contentModifierRating(node, (const Ark_Object*)&contentModifier_value, (const RatingModifierBuilder*)&builder_value); + GetAccessors()->getContentModifierHelperAccessor()->contentModifierRating(node, reinterpret_cast(&contentModifier_value), reinterpret_cast(&builder_value)); } KOALA_INTEROP_DIRECT_V3(ContentModifierHelper_contentModifierRating, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ContentModifierHelper_contentModifierMenuItem(Ark_NativePointer node, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Object contentModifier_value = static_cast(thisDeserializer.readObject());; MenuItemModifierBuilder builder_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_MenuItemModifierBuilder)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_MenuItemModifierBuilder))))};; - GetAccessors()->getContentModifierHelperAccessor()->contentModifierMenuItem(node, (const Ark_Object*)&contentModifier_value, (const MenuItemModifierBuilder*)&builder_value); + GetAccessors()->getContentModifierHelperAccessor()->contentModifierMenuItem(node, reinterpret_cast(&contentModifier_value), reinterpret_cast(&builder_value)); } KOALA_INTEROP_DIRECT_V3(ContentModifierHelper_contentModifierMenuItem, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ContentModifierHelper_contentModifierSlider(Ark_NativePointer node, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Object contentModifier_value = static_cast(thisDeserializer.readObject());; SliderModifierBuilder builder_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_SliderModifierBuilder)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_SliderModifierBuilder))))};; - GetAccessors()->getContentModifierHelperAccessor()->contentModifierSlider(node, (const Ark_Object*)&contentModifier_value, (const SliderModifierBuilder*)&builder_value); + GetAccessors()->getContentModifierHelperAccessor()->contentModifierSlider(node, reinterpret_cast(&contentModifier_value), reinterpret_cast(&builder_value)); } KOALA_INTEROP_DIRECT_V3(ContentModifierHelper_contentModifierSlider, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ContentModifierHelper_contentModifierTextClock(Ark_NativePointer node, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Object contentModifier_value = static_cast(thisDeserializer.readObject());; TextClockModifierBuilder builder_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_TextClockModifierBuilder)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_TextClockModifierBuilder))))};; - GetAccessors()->getContentModifierHelperAccessor()->contentModifierTextClock(node, (const Ark_Object*)&contentModifier_value, (const TextClockModifierBuilder*)&builder_value); + GetAccessors()->getContentModifierHelperAccessor()->contentModifierTextClock(node, reinterpret_cast(&contentModifier_value), reinterpret_cast(&builder_value)); } KOALA_INTEROP_DIRECT_V3(ContentModifierHelper_contentModifierTextClock, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ContentModifierHelper_contentModifierTextTimer(Ark_NativePointer node, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Object contentModifier_value = static_cast(thisDeserializer.readObject());; TextTimerModifierBuilder builder_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_TextTimerModifierBuilder)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_TextTimerModifierBuilder))))};; - GetAccessors()->getContentModifierHelperAccessor()->contentModifierTextTimer(node, (const Ark_Object*)&contentModifier_value, (const TextTimerModifierBuilder*)&builder_value); + GetAccessors()->getContentModifierHelperAccessor()->contentModifierTextTimer(node, reinterpret_cast(&contentModifier_value), reinterpret_cast(&builder_value)); } KOALA_INTEROP_DIRECT_V3(ContentModifierHelper_contentModifierTextTimer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ContentModifierHelper_contentModifierToggle(Ark_NativePointer node, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Object contentModifier_value = static_cast(thisDeserializer.readObject());; ToggleModifierBuilder builder_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_ToggleModifierBuilder)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_ToggleModifierBuilder))))};; - GetAccessors()->getContentModifierHelperAccessor()->contentModifierToggle(node, (const Ark_Object*)&contentModifier_value, (const ToggleModifierBuilder*)&builder_value); + GetAccessors()->getContentModifierHelperAccessor()->contentModifierToggle(node, reinterpret_cast(&contentModifier_value), reinterpret_cast(&builder_value)); } KOALA_INTEROP_DIRECT_V3(ContentModifierHelper_contentModifierToggle, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Context_ctor() { @@ -28820,7 +28820,7 @@ KOALA_INTEROP_DIRECT_0(Context_getFinalizer, Ark_NativePointer) Ark_NativePointer impl_CustomDialogController_ctor(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_CustomDialogControllerOptions value_value = CustomDialogControllerOptions_serializer::read(thisDeserializer);; - return GetAccessors()->getCustomDialogControllerAccessor()->ctor((const Ark_CustomDialogControllerOptions*)&value_value); + return GetAccessors()->getCustomDialogControllerAccessor()->ctor(reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_2(CustomDialogController_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_CustomDialogController_getFinalizer() { @@ -28861,7 +28861,7 @@ void impl_CustomSpan_setOnMeasure(Ark_NativePointer thisPtr, KSerializerBuffer t Ark_CustomSpan self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_CustomSpanMeasureInfo_CustomSpanMetrics onMeasure_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_CustomSpanMeasureInfo_CustomSpanMetrics)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_CustomSpanMeasureInfo_CustomSpanMetrics))))};; - GetAccessors()->getCustomSpanAccessor()->setOnMeasure(self, (const Callback_CustomSpanMeasureInfo_CustomSpanMetrics*)&onMeasure_value); + GetAccessors()->getCustomSpanAccessor()->setOnMeasure(self, reinterpret_cast(&onMeasure_value)); } KOALA_INTEROP_DIRECT_V3(CustomSpan_setOnMeasure, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_CustomSpan_getOnDraw(Ark_NativePointer thisPtr) { @@ -28875,7 +28875,7 @@ void impl_CustomSpan_setOnDraw(Ark_NativePointer thisPtr, KSerializerBuffer this Ark_CustomSpan self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_DrawContext_CustomSpanDrawInfo_Void onDraw_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_DrawContext_CustomSpanDrawInfo_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_DrawContext_CustomSpanDrawInfo_Void))))};; - GetAccessors()->getCustomSpanAccessor()->setOnDraw(self, (const Callback_DrawContext_CustomSpanDrawInfo_Void*)&onDraw_value); + GetAccessors()->getCustomSpanAccessor()->setOnDraw(self, reinterpret_cast(&onDraw_value)); } KOALA_INTEROP_DIRECT_V3(CustomSpan_setOnDraw, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_DatePickerDialog_ctor() { @@ -28889,7 +28889,7 @@ KOALA_INTEROP_DIRECT_0(DatePickerDialog_getFinalizer, Ark_NativePointer) Ark_NativePointer impl_DecorationStyle_ctor(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_DecorationStyleInterface value_value = DecorationStyleInterface_serializer::read(thisDeserializer);; - return GetAccessors()->getDecorationStyleAccessor()->ctor((const Ark_DecorationStyleInterface*)&value_value); + return GetAccessors()->getDecorationStyleAccessor()->ctor(reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_2(DecorationStyle_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_DecorationStyle_getFinalizer() { @@ -28960,7 +28960,7 @@ Ark_NativePointer impl_DisappearSymbolEffect_ctor(KSerializerBuffer thisArray, i scope_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EffectScope scope_value = scope_value_buf;; - return GetAccessors()->getDisappearSymbolEffectAccessor()->ctor((const Opt_EffectScope*)&scope_value); + return GetAccessors()->getDisappearSymbolEffectAccessor()->ctor(reinterpret_cast(&scope_value)); } KOALA_INTEROP_DIRECT_2(DisappearSymbolEffect_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_DisappearSymbolEffect_getFinalizer() { @@ -28992,7 +28992,7 @@ void impl_DisappearSymbolEffect_setScope(Ark_NativePointer thisPtr, KSerializerB scope_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EffectScope scope_value = scope_value_buf;; - GetAccessors()->getDisappearSymbolEffectAccessor()->setScope(self, (const Opt_EffectScope*)&scope_value); + GetAccessors()->getDisappearSymbolEffectAccessor()->setScope(self, reinterpret_cast(&scope_value)); } KOALA_INTEROP_DIRECT_V3(DisappearSymbolEffect_setScope, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_DragEvent_ctor() { @@ -29078,7 +29078,7 @@ void impl_DragEvent_executeDropAnimation(Ark_NativePointer thisPtr, KSerializerB Ark_DragEvent self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Void customDropAnimation_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))};; - GetAccessors()->getDragEventAccessor()->executeDropAnimation(self, (const Callback_Void*)&customDropAnimation_value); + GetAccessors()->getDragEventAccessor()->executeDropAnimation(self, reinterpret_cast(&customDropAnimation_value)); } KOALA_INTEROP_DIRECT_V3(DragEvent_executeDropAnimation, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_Int32 impl_DragEvent_getDragBehavior(Ark_NativePointer thisPtr) { @@ -29121,7 +29121,7 @@ void impl_DragEvent_setGetModifierKeyState(Ark_NativePointer thisPtr, KSerialize Ark_DragEvent self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); ModifierKeyStateGetter getModifierKeyState_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_ModifierKeyStateGetter)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_ModifierKeyStateGetter))))};; - GetAccessors()->getDragEventAccessor()->setGetModifierKeyState(self, (const ModifierKeyStateGetter*)&getModifierKeyState_value); + GetAccessors()->getDragEventAccessor()->setGetModifierKeyState(self, reinterpret_cast(&getModifierKeyState_value)); } KOALA_INTEROP_DIRECT_V3(DragEvent_setGetModifierKeyState, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_DrawableDescriptor_ctor() { @@ -29182,7 +29182,7 @@ void impl_drawing_Brush_setColor0(Ark_NativePointer thisPtr, KSerializerBuffer t Ark_drawing_Brush self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Color color_value = common2D_Color_serializer::read(thisDeserializer);; - GetAccessors()->getDrawing_BrushAccessor()->setColor0(self, (const Ark_common2D_Color*)&color_value); + GetAccessors()->getDrawing_BrushAccessor()->setColor0(self, reinterpret_cast(&color_value)); } KOALA_INTEROP_DIRECT_V3(drawing_Brush_setColor0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_drawing_Brush_setColor1(Ark_NativePointer thisPtr, KInteropNumber color) { @@ -29249,7 +29249,7 @@ void impl_drawing_Brush_setImageFilter(Ark_NativePointer thisPtr, KSerializerBuf filter_value_buf.value = static_cast(drawing_ImageFilter_serializer::read(thisDeserializer)); } Opt_drawing_ImageFilter filter_value = filter_value_buf;; - GetAccessors()->getDrawing_BrushAccessor()->setImageFilter(self, (const Opt_drawing_ImageFilter*)&filter_value); + GetAccessors()->getDrawing_BrushAccessor()->setImageFilter(self, reinterpret_cast(&filter_value)); } KOALA_INTEROP_DIRECT_V3(drawing_Brush_setImageFilter, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_drawing_Brush_setMaskFilter(Ark_NativePointer thisPtr, Ark_NativePointer filter) { @@ -29289,7 +29289,7 @@ void impl_drawing_Canvas_drawRect0(Ark_NativePointer thisPtr, KSerializerBuffer Ark_drawing_Canvas self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Rect rect_value = common2D_Rect_serializer::read(thisDeserializer);; - GetAccessors()->getDrawing_CanvasAccessor()->drawRect0(self, (const Ark_common2D_Rect*)&rect_value); + GetAccessors()->getDrawing_CanvasAccessor()->drawRect0(self, reinterpret_cast(&rect_value)); } KOALA_INTEROP_DIRECT_V3(drawing_Canvas_drawRect0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_drawing_Canvas_drawRect1(Ark_NativePointer thisPtr, KInteropNumber left, KInteropNumber top, KInteropNumber right, KInteropNumber bottom) { @@ -29319,7 +29319,7 @@ void impl_drawing_Canvas_drawShadow0(Ark_NativePointer thisPtr, Ark_NativePointe Ark_common2D_Point3d devLightPos_value = common2D_Point3d_serializer::read(thisDeserializer);; Ark_common2D_Color ambientColor_value = common2D_Color_serializer::read(thisDeserializer);; Ark_common2D_Color spotColor_value = common2D_Color_serializer::read(thisDeserializer);; - GetAccessors()->getDrawing_CanvasAccessor()->drawShadow0(self, static_cast(path), (const Ark_common2D_Point3d*)&planeParams_value, (const Ark_common2D_Point3d*)&devLightPos_value, (const Ark_Number*) (&lightRadius), (const Ark_common2D_Color*)&ambientColor_value, (const Ark_common2D_Color*)&spotColor_value, static_cast(flag)); + GetAccessors()->getDrawing_CanvasAccessor()->drawShadow0(self, static_cast(path), reinterpret_cast(&planeParams_value), reinterpret_cast(&devLightPos_value), (const Ark_Number*) (&lightRadius), reinterpret_cast(&ambientColor_value), reinterpret_cast(&spotColor_value), static_cast(flag)); } KOALA_INTEROP_DIRECT_V6(drawing_Canvas_drawShadow0, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t, KInteropNumber, Ark_Int32) void impl_drawing_Canvas_drawShadow1(Ark_NativePointer thisPtr, Ark_NativePointer path, KSerializerBuffer thisArray, int32_t thisLength, KInteropNumber lightRadius, KInteropNumber ambientColor, KInteropNumber spotColor, Ark_Int32 flag) { @@ -29327,7 +29327,7 @@ void impl_drawing_Canvas_drawShadow1(Ark_NativePointer thisPtr, Ark_NativePointe DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Point3d planeParams_value = common2D_Point3d_serializer::read(thisDeserializer);; Ark_common2D_Point3d devLightPos_value = common2D_Point3d_serializer::read(thisDeserializer);; - GetAccessors()->getDrawing_CanvasAccessor()->drawShadow1(self, static_cast(path), (const Ark_common2D_Point3d*)&planeParams_value, (const Ark_common2D_Point3d*)&devLightPos_value, (const Ark_Number*) (&lightRadius), (const Ark_Number*) (&ambientColor), (const Ark_Number*) (&spotColor), static_cast(flag)); + GetAccessors()->getDrawing_CanvasAccessor()->drawShadow1(self, static_cast(path), reinterpret_cast(&planeParams_value), reinterpret_cast(&devLightPos_value), (const Ark_Number*) (&lightRadius), (const Ark_Number*) (&ambientColor), (const Ark_Number*) (&spotColor), static_cast(flag)); } KOALA_INTEROP_DIRECT_V8(drawing_Canvas_drawShadow1, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t, KInteropNumber, KInteropNumber, KInteropNumber, Ark_Int32) void impl_drawing_Canvas_drawCircle(Ark_NativePointer thisPtr, KInteropNumber x, KInteropNumber y, KInteropNumber radius) { @@ -29344,7 +29344,7 @@ void impl_drawing_Canvas_drawImageRect(Ark_NativePointer thisPtr, Ark_NativePoin Ark_drawing_Canvas self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Rect dstRect_value = common2D_Rect_serializer::read(thisDeserializer);; - GetAccessors()->getDrawing_CanvasAccessor()->drawImageRect(self, static_cast(pixelmap), (const Ark_common2D_Rect*)&dstRect_value, static_cast(samplingOptions)); + GetAccessors()->getDrawing_CanvasAccessor()->drawImageRect(self, static_cast(pixelmap), reinterpret_cast(&dstRect_value), static_cast(samplingOptions)); } KOALA_INTEROP_DIRECT_V5(drawing_Canvas_drawImageRect, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t, Ark_NativePointer) void impl_drawing_Canvas_drawImageRectWithSrc(Ark_NativePointer thisPtr, Ark_NativePointer pixelmap, KSerializerBuffer thisArray, int32_t thisLength, Ark_NativePointer samplingOptions, Ark_Int32 constraint) { @@ -29352,14 +29352,14 @@ void impl_drawing_Canvas_drawImageRectWithSrc(Ark_NativePointer thisPtr, Ark_Nat DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Rect srcRect_value = common2D_Rect_serializer::read(thisDeserializer);; Ark_common2D_Rect dstRect_value = common2D_Rect_serializer::read(thisDeserializer);; - GetAccessors()->getDrawing_CanvasAccessor()->drawImageRectWithSrc(self, static_cast(pixelmap), (const Ark_common2D_Rect*)&srcRect_value, (const Ark_common2D_Rect*)&dstRect_value, static_cast(samplingOptions), static_cast(constraint)); + GetAccessors()->getDrawing_CanvasAccessor()->drawImageRectWithSrc(self, static_cast(pixelmap), reinterpret_cast(&srcRect_value), reinterpret_cast(&dstRect_value), static_cast(samplingOptions), static_cast(constraint)); } KOALA_INTEROP_DIRECT_V6(drawing_Canvas_drawImageRectWithSrc, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t, Ark_NativePointer, Ark_Int32) void impl_drawing_Canvas_drawColor0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength, Ark_Int32 blendMode) { Ark_drawing_Canvas self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Color color_value = common2D_Color_serializer::read(thisDeserializer);; - GetAccessors()->getDrawing_CanvasAccessor()->drawColor0(self, (const Ark_common2D_Color*)&color_value, static_cast(blendMode)); + GetAccessors()->getDrawing_CanvasAccessor()->drawColor0(self, reinterpret_cast(&color_value), static_cast(blendMode)); } KOALA_INTEROP_DIRECT_V4(drawing_Canvas_drawColor0, Ark_NativePointer, KSerializerBuffer, int32_t, Ark_Int32) void impl_drawing_Canvas_drawColor1(Ark_NativePointer thisPtr, KInteropNumber color, Ark_Int32 blendMode) { @@ -29376,14 +29376,14 @@ void impl_drawing_Canvas_drawOval(Ark_NativePointer thisPtr, KSerializerBuffer t Ark_drawing_Canvas self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Rect oval_value = common2D_Rect_serializer::read(thisDeserializer);; - GetAccessors()->getDrawing_CanvasAccessor()->drawOval(self, (const Ark_common2D_Rect*)&oval_value); + GetAccessors()->getDrawing_CanvasAccessor()->drawOval(self, reinterpret_cast(&oval_value)); } KOALA_INTEROP_DIRECT_V3(drawing_Canvas_drawOval, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_drawing_Canvas_drawArc(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength, KInteropNumber startAngle, KInteropNumber sweepAngle) { Ark_drawing_Canvas self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Rect arc_value = common2D_Rect_serializer::read(thisDeserializer);; - GetAccessors()->getDrawing_CanvasAccessor()->drawArc(self, (const Ark_common2D_Rect*)&arc_value, (const Ark_Number*) (&startAngle), (const Ark_Number*) (&sweepAngle)); + GetAccessors()->getDrawing_CanvasAccessor()->drawArc(self, reinterpret_cast(&arc_value), (const Ark_Number*) (&startAngle), (const Ark_Number*) (&sweepAngle)); } KOALA_INTEROP_DIRECT_V5(drawing_Canvas_drawArc, Ark_NativePointer, KSerializerBuffer, int32_t, KInteropNumber, KInteropNumber) void impl_drawing_Canvas_drawPoint(Ark_NativePointer thisPtr, KInteropNumber x, KInteropNumber y) { @@ -29402,7 +29402,7 @@ void impl_drawing_Canvas_drawPoints(Ark_NativePointer thisPtr, KSerializerBuffer points_value_buf.array[points_value_buf_i] = common2D_Point_serializer::read(thisDeserializer); } Array_common2D_Point points_value = points_value_buf;; - GetAccessors()->getDrawing_CanvasAccessor()->drawPoints(self, (const Array_common2D_Point*)&points_value, static_cast(mode)); + GetAccessors()->getDrawing_CanvasAccessor()->drawPoints(self, reinterpret_cast(&points_value), static_cast(mode)); } KOALA_INTEROP_DIRECT_V4(drawing_Canvas_drawPoints, Ark_NativePointer, KSerializerBuffer, int32_t, Ark_Int32) void impl_drawing_Canvas_drawPath(Ark_NativePointer thisPtr, Ark_NativePointer path) { @@ -29444,7 +29444,7 @@ void impl_drawing_Canvas_drawPixelMapMesh(Ark_NativePointer thisPtr, Ark_NativeP colors_value_buf.array[colors_value_buf_i] = static_cast(thisDeserializer.readNumber()); } Array_Number colors_value = colors_value_buf;; - GetAccessors()->getDrawing_CanvasAccessor()->drawPixelMapMesh(self, static_cast(pixelmap), (const Ark_Number*) (&meshWidth), (const Ark_Number*) (&meshHeight), (const Array_Number*)&vertices_value, (const Ark_Number*) (&vertOffset), (const Array_Number*)&colors_value, (const Ark_Number*) (&colorOffset)); + GetAccessors()->getDrawing_CanvasAccessor()->drawPixelMapMesh(self, static_cast(pixelmap), (const Ark_Number*) (&meshWidth), (const Ark_Number*) (&meshHeight), reinterpret_cast(&vertices_value), (const Ark_Number*) (&vertOffset), reinterpret_cast(&colors_value), (const Ark_Number*) (&colorOffset)); } KOALA_INTEROP_DIRECT_V8(drawing_Canvas_drawPixelMapMesh, Ark_NativePointer, Ark_NativePointer, KInteropNumber, KInteropNumber, KSerializerBuffer, int32_t, KInteropNumber, KInteropNumber) void impl_drawing_Canvas_drawRegion(Ark_NativePointer thisPtr, Ark_NativePointer region) { @@ -29496,14 +29496,14 @@ Ark_Number impl_drawing_Canvas_saveLayer(Ark_NativePointer thisPtr, KSerializerB brush_value_buf.value = static_cast(drawing_Brush_serializer::read(thisDeserializer)); } Opt_drawing_Brush brush_value = brush_value_buf;; - return GetAccessors()->getDrawing_CanvasAccessor()->saveLayer(self, (const Opt_common2D_Rect*)&rect_value, (const Opt_drawing_Brush*)&brush_value); + return GetAccessors()->getDrawing_CanvasAccessor()->saveLayer(self, reinterpret_cast(&rect_value), reinterpret_cast(&brush_value)); } KOALA_INTEROP_DIRECT_3(drawing_Canvas_saveLayer, KInteropNumber, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_drawing_Canvas_clear0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_drawing_Canvas self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Color color_value = common2D_Color_serializer::read(thisDeserializer);; - GetAccessors()->getDrawing_CanvasAccessor()->clear0(self, (const Ark_common2D_Color*)&color_value); + GetAccessors()->getDrawing_CanvasAccessor()->clear0(self, reinterpret_cast(&color_value)); } KOALA_INTEROP_DIRECT_V3(drawing_Canvas_clear0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_drawing_Canvas_clear1(Ark_NativePointer thisPtr, KInteropNumber color) { @@ -29578,7 +29578,7 @@ void impl_drawing_Canvas_clipRect(Ark_NativePointer thisPtr, KSerializerBuffer t Ark_drawing_Canvas self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Rect rect_value = common2D_Rect_serializer::read(thisDeserializer);; - GetAccessors()->getDrawing_CanvasAccessor()->clipRect(self, (const Ark_common2D_Rect*)&rect_value, static_cast(clipOp), doAntiAlias); + GetAccessors()->getDrawing_CanvasAccessor()->clipRect(self, reinterpret_cast(&rect_value), static_cast(clipOp), doAntiAlias); } KOALA_INTEROP_DIRECT_V5(drawing_Canvas_clipRect, Ark_NativePointer, KSerializerBuffer, int32_t, Ark_Int32, Ark_Boolean) void impl_drawing_Canvas_concatMatrix(Ark_NativePointer thisPtr, Ark_NativePointer matrix) { @@ -29622,7 +29622,7 @@ KOALA_INTEROP_DIRECT_0(drawing_ColorFilter_getFinalizer, Ark_NativePointer) Ark_NativePointer impl_drawing_ColorFilter_createBlendModeColorFilter0(KSerializerBuffer thisArray, int32_t thisLength, Ark_Int32 mode) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Color color_value = common2D_Color_serializer::read(thisDeserializer);; - return GetAccessors()->getDrawing_ColorFilterAccessor()->createBlendModeColorFilter0((const Ark_common2D_Color*)&color_value, static_cast(mode)); + return GetAccessors()->getDrawing_ColorFilterAccessor()->createBlendModeColorFilter0(reinterpret_cast(&color_value), static_cast(mode)); } KOALA_INTEROP_DIRECT_3(drawing_ColorFilter_createBlendModeColorFilter0, Ark_NativePointer, KSerializerBuffer, int32_t, Ark_Int32) Ark_NativePointer impl_drawing_ColorFilter_createBlendModeColorFilter1(KInteropNumber color, Ark_Int32 mode) { @@ -29655,7 +29655,7 @@ Ark_NativePointer impl_drawing_ColorFilter_createMatrixColorFilter(KSerializerBu matrix_value_buf.array[matrix_value_buf_i] = static_cast(thisDeserializer.readNumber()); } Array_Number matrix_value = matrix_value_buf;; - return GetAccessors()->getDrawing_ColorFilterAccessor()->createMatrixColorFilter((const Array_Number*)&matrix_value); + return GetAccessors()->getDrawing_ColorFilterAccessor()->createMatrixColorFilter(reinterpret_cast(&matrix_value)); } KOALA_INTEROP_DIRECT_2(drawing_ColorFilter_createMatrixColorFilter, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_drawing_Font_ctor() { @@ -29785,7 +29785,7 @@ KInteropReturnBuffer impl_drawing_Font_getWidths(Ark_NativePointer thisPtr, KSer glyphs_value_buf.array[glyphs_value_buf_i] = static_cast(thisDeserializer.readNumber()); } Array_Number glyphs_value = glyphs_value_buf;; - const auto &retValue = GetAccessors()->getDrawing_FontAccessor()->getWidths(self, (const Array_Number*)&glyphs_value); + const auto &retValue = GetAccessors()->getDrawing_FontAccessor()->getWidths(self, reinterpret_cast(&glyphs_value)); SerializerBase _retSerializer {}; _retSerializer.writeInt32(retValue.length); for (int i = 0; i < retValue.length; i++) { @@ -29858,7 +29858,7 @@ KInteropReturnBuffer impl_drawing_Font_getBounds(Ark_NativePointer thisPtr, KSer glyphs_value_buf.array[glyphs_value_buf_i] = static_cast(thisDeserializer.readNumber()); } Array_Number glyphs_value = glyphs_value_buf;; - const auto &retValue = GetAccessors()->getDrawing_FontAccessor()->getBounds(self, (const Array_Number*)&glyphs_value); + const auto &retValue = GetAccessors()->getDrawing_FontAccessor()->getBounds(self, reinterpret_cast(&glyphs_value)); SerializerBase _retSerializer {}; _retSerializer.writeInt32(retValue.length); for (int i = 0; i < retValue.length; i++) { @@ -29891,7 +29891,7 @@ Ark_NativePointer impl_drawing_ImageFilter_createBlurImageFilter(KInteropNumber imageFilter_value_buf.value = static_cast(drawing_ImageFilter_serializer::read(thisDeserializer)); } Opt_drawing_ImageFilter imageFilter_value = imageFilter_value_buf;; - return GetAccessors()->getDrawing_ImageFilterAccessor()->createBlurImageFilter((const Ark_Number*) (&sigmaX), (const Ark_Number*) (&sigmaY), static_cast(tileMode), (const Opt_drawing_ImageFilter*)&imageFilter_value); + return GetAccessors()->getDrawing_ImageFilterAccessor()->createBlurImageFilter((const Ark_Number*) (&sigmaX), (const Ark_Number*) (&sigmaY), static_cast(tileMode), reinterpret_cast(&imageFilter_value)); } KOALA_INTEROP_DIRECT_5(drawing_ImageFilter_createBlurImageFilter, Ark_NativePointer, KInteropNumber, KInteropNumber, Ark_Int32, KSerializerBuffer, int32_t) Ark_NativePointer impl_drawing_ImageFilter_createFromColorFilter(Ark_NativePointer colorFilter, KSerializerBuffer thisArray, int32_t thisLength) { @@ -29904,7 +29904,7 @@ Ark_NativePointer impl_drawing_ImageFilter_createFromColorFilter(Ark_NativePoint imageFilter_value_buf.value = static_cast(drawing_ImageFilter_serializer::read(thisDeserializer)); } Opt_drawing_ImageFilter imageFilter_value = imageFilter_value_buf;; - return GetAccessors()->getDrawing_ImageFilterAccessor()->createFromColorFilter(static_cast(colorFilter), (const Opt_drawing_ImageFilter*)&imageFilter_value); + return GetAccessors()->getDrawing_ImageFilterAccessor()->createFromColorFilter(static_cast(colorFilter), reinterpret_cast(&imageFilter_value)); } KOALA_INTEROP_DIRECT_3(drawing_ImageFilter_createFromColorFilter, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_drawing_Lattice_ctor() { @@ -29971,7 +29971,7 @@ Ark_NativePointer impl_drawing_Lattice_createImageLattice(KSerializerBuffer this fColors_value_buf.value = fColors_value_buf_; } Opt_Array_CustomObject fColors_value = fColors_value_buf;; - return GetAccessors()->getDrawing_LatticeAccessor()->createImageLattice((const Array_Number*)&xDivs_value, (const Array_Number*)&yDivs_value, (const Ark_Number*) (&fXCount), (const Ark_Number*) (&fYCount), (const Opt_common2D_Rect*)&fBounds_value, (const Opt_Array_drawing_RectType*)&fRectTypes_value, (const Opt_Array_CustomObject*)&fColors_value); + return GetAccessors()->getDrawing_LatticeAccessor()->createImageLattice(reinterpret_cast(&xDivs_value), reinterpret_cast(&yDivs_value), (const Ark_Number*) (&fXCount), (const Ark_Number*) (&fYCount), reinterpret_cast(&fBounds_value), reinterpret_cast(&fRectTypes_value), reinterpret_cast(&fColors_value)); } KOALA_INTEROP_DIRECT_4(drawing_Lattice_createImageLattice, Ark_NativePointer, KSerializerBuffer, int32_t, KInteropNumber, KInteropNumber) Ark_NativePointer impl_drawing_MaskFilter_ctor() { @@ -30020,7 +30020,7 @@ void impl_drawing_Matrix_setMatrix(Ark_NativePointer thisPtr, KSerializerBuffer values_value_buf.array[values_value_buf_i] = static_cast(thisDeserializer.readNumber()); } Array_Number values_value = values_value_buf;; - GetAccessors()->getDrawing_MatrixAccessor()->setMatrix(self, (const Array_Number*)&values_value); + GetAccessors()->getDrawing_MatrixAccessor()->setMatrix(self, reinterpret_cast(&values_value)); } KOALA_INTEROP_DIRECT_V3(drawing_Matrix_setMatrix, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_drawing_Matrix_preConcat(Ark_NativePointer thisPtr, Ark_NativePointer matrix) { @@ -30094,7 +30094,7 @@ KInteropReturnBuffer impl_drawing_Matrix_mapPoints(Ark_NativePointer thisPtr, KS src_value_buf.array[src_value_buf_i] = common2D_Point_serializer::read(thisDeserializer); } Array_common2D_Point src_value = src_value_buf;; - const auto &retValue = GetAccessors()->getDrawing_MatrixAccessor()->mapPoints(self, (const Array_common2D_Point*)&src_value); + const auto &retValue = GetAccessors()->getDrawing_MatrixAccessor()->mapPoints(self, reinterpret_cast(&src_value)); SerializerBase _retSerializer {}; _retSerializer.writeInt32(retValue.length); for (int i = 0; i < retValue.length; i++) { @@ -30121,7 +30121,7 @@ Ark_Boolean impl_drawing_Matrix_mapRect(Ark_NativePointer thisPtr, KSerializerBu DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Rect dst_value = common2D_Rect_serializer::read(thisDeserializer);; Ark_common2D_Rect src_value = common2D_Rect_serializer::read(thisDeserializer);; - return GetAccessors()->getDrawing_MatrixAccessor()->mapRect(self, (const Ark_common2D_Rect*)&dst_value, (const Ark_common2D_Rect*)&src_value); + return GetAccessors()->getDrawing_MatrixAccessor()->mapRect(self, reinterpret_cast(&dst_value), reinterpret_cast(&src_value)); } KOALA_INTEROP_DIRECT_3(drawing_Matrix_mapRect, Ark_Boolean, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_Boolean impl_drawing_Matrix_setRectToRect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength, Ark_Int32 scaleToFit) { @@ -30129,7 +30129,7 @@ Ark_Boolean impl_drawing_Matrix_setRectToRect(Ark_NativePointer thisPtr, KSerial DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Rect src_value = common2D_Rect_serializer::read(thisDeserializer);; Ark_common2D_Rect dst_value = common2D_Rect_serializer::read(thisDeserializer);; - return GetAccessors()->getDrawing_MatrixAccessor()->setRectToRect(self, (const Ark_common2D_Rect*)&src_value, (const Ark_common2D_Rect*)&dst_value, static_cast(scaleToFit)); + return GetAccessors()->getDrawing_MatrixAccessor()->setRectToRect(self, reinterpret_cast(&src_value), reinterpret_cast(&dst_value), static_cast(scaleToFit)); } KOALA_INTEROP_DIRECT_4(drawing_Matrix_setRectToRect, Ark_Boolean, Ark_NativePointer, KSerializerBuffer, int32_t, Ark_Int32) Ark_Boolean impl_drawing_Matrix_setPolyToPoly(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength, KInteropNumber count) { @@ -30151,7 +30151,7 @@ Ark_Boolean impl_drawing_Matrix_setPolyToPoly(Ark_NativePointer thisPtr, KSerial dst_value_buf.array[dst_value_buf_i] = common2D_Point_serializer::read(thisDeserializer); } Array_common2D_Point dst_value = dst_value_buf;; - return GetAccessors()->getDrawing_MatrixAccessor()->setPolyToPoly(self, (const Array_common2D_Point*)&src_value, (const Array_common2D_Point*)&dst_value, (const Ark_Number*) (&count)); + return GetAccessors()->getDrawing_MatrixAccessor()->setPolyToPoly(self, reinterpret_cast(&src_value), reinterpret_cast(&dst_value), (const Ark_Number*) (&count)); } KOALA_INTEROP_DIRECT_4(drawing_Matrix_setPolyToPoly, Ark_Boolean, Ark_NativePointer, KSerializerBuffer, int32_t, KInteropNumber) Ark_NativePointer impl_drawing_Path_ctor0() { @@ -30232,7 +30232,7 @@ void impl_drawing_Path_addPolygon(Ark_NativePointer thisPtr, KSerializerBuffer t points_value_buf.array[points_value_buf_i] = common2D_Point_serializer::read(thisDeserializer); } Array_common2D_Point points_value = points_value_buf;; - GetAccessors()->getDrawing_PathAccessor()->addPolygon(self, (const Array_common2D_Point*)&points_value, close); + GetAccessors()->getDrawing_PathAccessor()->addPolygon(self, reinterpret_cast(&points_value), close); } KOALA_INTEROP_DIRECT_V4(drawing_Path_addPolygon, Ark_NativePointer, KSerializerBuffer, int32_t, Ark_Boolean) Ark_Boolean impl_drawing_Path_op(Ark_NativePointer thisPtr, Ark_NativePointer path, Ark_Int32 pathOp) { @@ -30244,7 +30244,7 @@ void impl_drawing_Path_addArc(Ark_NativePointer thisPtr, KSerializerBuffer thisA Ark_drawing_Path self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Rect rect_value = common2D_Rect_serializer::read(thisDeserializer);; - GetAccessors()->getDrawing_PathAccessor()->addArc(self, (const Ark_common2D_Rect*)&rect_value, (const Ark_Number*) (&startAngle), (const Ark_Number*) (&sweepAngle)); + GetAccessors()->getDrawing_PathAccessor()->addArc(self, reinterpret_cast(&rect_value), (const Ark_Number*) (&startAngle), (const Ark_Number*) (&sweepAngle)); } KOALA_INTEROP_DIRECT_V5(drawing_Path_addArc, Ark_NativePointer, KSerializerBuffer, int32_t, KInteropNumber, KInteropNumber) void impl_drawing_Path_addCircle(Ark_NativePointer thisPtr, KInteropNumber x, KInteropNumber y, KInteropNumber radius, Ark_Int32 pathDirection) { @@ -30256,14 +30256,14 @@ void impl_drawing_Path_addOval(Ark_NativePointer thisPtr, KSerializerBuffer this Ark_drawing_Path self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Rect rect_value = common2D_Rect_serializer::read(thisDeserializer);; - GetAccessors()->getDrawing_PathAccessor()->addOval(self, (const Ark_common2D_Rect*)&rect_value, (const Ark_Number*) (&start), static_cast(pathDirection)); + GetAccessors()->getDrawing_PathAccessor()->addOval(self, reinterpret_cast(&rect_value), (const Ark_Number*) (&start), static_cast(pathDirection)); } KOALA_INTEROP_DIRECT_V5(drawing_Path_addOval, Ark_NativePointer, KSerializerBuffer, int32_t, KInteropNumber, Ark_Int32) void impl_drawing_Path_addRect(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength, Ark_Int32 pathDirection) { Ark_drawing_Path self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Rect rect_value = common2D_Rect_serializer::read(thisDeserializer);; - GetAccessors()->getDrawing_PathAccessor()->addRect(self, (const Ark_common2D_Rect*)&rect_value, static_cast(pathDirection)); + GetAccessors()->getDrawing_PathAccessor()->addRect(self, reinterpret_cast(&rect_value), static_cast(pathDirection)); } KOALA_INTEROP_DIRECT_V4(drawing_Path_addRect, Ark_NativePointer, KSerializerBuffer, int32_t, Ark_Int32) void impl_drawing_Path_addRoundRect(Ark_NativePointer thisPtr, Ark_NativePointer roundRect, Ark_Int32 pathDirection) { @@ -30282,7 +30282,7 @@ void impl_drawing_Path_addPath(Ark_NativePointer thisPtr, Ark_NativePointer path matrix_value_buf.value = static_cast(drawing_Matrix_serializer::read(thisDeserializer)); } Opt_drawing_Matrix matrix_value = matrix_value_buf;; - GetAccessors()->getDrawing_PathAccessor()->addPath(self, static_cast(path), (const Opt_drawing_Matrix*)&matrix_value); + GetAccessors()->getDrawing_PathAccessor()->addPath(self, static_cast(path), reinterpret_cast(&matrix_value)); } KOALA_INTEROP_DIRECT_V4(drawing_Path_addPath, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_drawing_Path_transform(Ark_NativePointer thisPtr, Ark_NativePointer matrix) { @@ -30333,7 +30333,7 @@ Ark_Boolean impl_drawing_Path_getPositionAndTangent(Ark_NativePointer thisPtr, A DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Point position_value = common2D_Point_serializer::read(thisDeserializer);; Ark_common2D_Point tangent_value = common2D_Point_serializer::read(thisDeserializer);; - return GetAccessors()->getDrawing_PathAccessor()->getPositionAndTangent(self, forceClosed, (const Ark_Number*) (&distance), (const Ark_common2D_Point*)&position_value, (const Ark_common2D_Point*)&tangent_value); + return GetAccessors()->getDrawing_PathAccessor()->getPositionAndTangent(self, forceClosed, (const Ark_Number*) (&distance), reinterpret_cast(&position_value), reinterpret_cast(&tangent_value)); } KOALA_INTEROP_DIRECT_5(drawing_Path_getPositionAndTangent, Ark_Boolean, Ark_NativePointer, Ark_Boolean, KInteropNumber, KSerializerBuffer, int32_t) Ark_Boolean impl_drawing_Path_isClosed(Ark_NativePointer thisPtr) { @@ -30369,7 +30369,7 @@ Ark_NativePointer impl_drawing_PathEffect_createDashPathEffect(KSerializerBuffer intervals_value_buf.array[intervals_value_buf_i] = static_cast(thisDeserializer.readNumber()); } Array_Number intervals_value = intervals_value_buf;; - return GetAccessors()->getDrawing_PathEffectAccessor()->createDashPathEffect((const Array_Number*)&intervals_value, (const Ark_Number*) (&phase)); + return GetAccessors()->getDrawing_PathEffectAccessor()->createDashPathEffect(reinterpret_cast(&intervals_value), (const Ark_Number*) (&phase)); } KOALA_INTEROP_DIRECT_3(drawing_PathEffect_createDashPathEffect, Ark_NativePointer, KSerializerBuffer, int32_t, KInteropNumber) Ark_NativePointer impl_drawing_PathEffect_createCornerPathEffect(KInteropNumber radius) { @@ -30407,7 +30407,7 @@ void impl_drawing_Pen_setColor0(Ark_NativePointer thisPtr, KSerializerBuffer thi Ark_drawing_Pen self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Color color_value = common2D_Color_serializer::read(thisDeserializer);; - GetAccessors()->getDrawing_PenAccessor()->setColor0(self, (const Ark_common2D_Color*)&color_value); + GetAccessors()->getDrawing_PenAccessor()->setColor0(self, reinterpret_cast(&color_value)); } KOALA_INTEROP_DIRECT_V3(drawing_Pen_setColor0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_drawing_Pen_setColor1(Ark_NativePointer thisPtr, KInteropNumber color) { @@ -30484,7 +30484,7 @@ void impl_drawing_Pen_setImageFilter(Ark_NativePointer thisPtr, KSerializerBuffe filter_value_buf.value = static_cast(drawing_ImageFilter_serializer::read(thisDeserializer)); } Opt_drawing_ImageFilter filter_value = filter_value_buf;; - GetAccessors()->getDrawing_PenAccessor()->setImageFilter(self, (const Opt_drawing_ImageFilter*)&filter_value); + GetAccessors()->getDrawing_PenAccessor()->setImageFilter(self, reinterpret_cast(&filter_value)); } KOALA_INTEROP_DIRECT_V3(drawing_Pen_setImageFilter, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_drawing_Pen_setMaskFilter(Ark_NativePointer thisPtr, Ark_NativePointer filter) { @@ -30583,7 +30583,7 @@ KOALA_INTEROP_DIRECT_5(drawing_Region_setRect, Ark_Boolean, Ark_NativePointer, K Ark_NativePointer impl_drawing_RoundRect_ctor(KSerializerBuffer thisArray, int32_t thisLength, KInteropNumber xRadii, KInteropNumber yRadii) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Rect rect_value = common2D_Rect_serializer::read(thisDeserializer);; - return GetAccessors()->getDrawing_RoundRectAccessor()->ctor((const Ark_common2D_Rect*)&rect_value, (const Ark_Number*) (&xRadii), (const Ark_Number*) (&yRadii)); + return GetAccessors()->getDrawing_RoundRectAccessor()->ctor(reinterpret_cast(&rect_value), (const Ark_Number*) (&xRadii), (const Ark_Number*) (&yRadii)); } KOALA_INTEROP_DIRECT_4(drawing_RoundRect_ctor, Ark_NativePointer, KSerializerBuffer, int32_t, KInteropNumber, KInteropNumber) Ark_NativePointer impl_drawing_RoundRect_getFinalizer() { @@ -30667,7 +30667,7 @@ Ark_NativePointer impl_drawing_ShaderEffect_createLinearGradient(KSerializerBuff matrix_value_buf.value = static_cast(drawing_Matrix_serializer::read(thisDeserializer)); } Opt_drawing_Matrix matrix_value = matrix_value_buf;; - return GetAccessors()->getDrawing_ShaderEffectAccessor()->createLinearGradient((const Ark_common2D_Point*)&startPt_value, (const Ark_common2D_Point*)&endPt_value, (const Array_Number*)&colors_value, static_cast(mode), (const Opt_Array_Number*)&pos_value, (const Opt_drawing_Matrix*)&matrix_value); + return GetAccessors()->getDrawing_ShaderEffectAccessor()->createLinearGradient(reinterpret_cast(&startPt_value), reinterpret_cast(&endPt_value), reinterpret_cast(&colors_value), static_cast(mode), reinterpret_cast(&pos_value), reinterpret_cast(&matrix_value)); } KOALA_INTEROP_DIRECT_3(drawing_ShaderEffect_createLinearGradient, Ark_NativePointer, KSerializerBuffer, int32_t, Ark_Int32) Ark_NativePointer impl_drawing_ShaderEffect_createRadialGradient(KSerializerBuffer thisArray, int32_t thisLength, KInteropNumber radius, Ark_Int32 mode) { @@ -30704,7 +30704,7 @@ Ark_NativePointer impl_drawing_ShaderEffect_createRadialGradient(KSerializerBuff matrix_value_buf.value = static_cast(drawing_Matrix_serializer::read(thisDeserializer)); } Opt_drawing_Matrix matrix_value = matrix_value_buf;; - return GetAccessors()->getDrawing_ShaderEffectAccessor()->createRadialGradient((const Ark_common2D_Point*)¢erPt_value, (const Ark_Number*) (&radius), (const Array_Number*)&colors_value, static_cast(mode), (const Opt_Array_Number*)&pos_value, (const Opt_drawing_Matrix*)&matrix_value); + return GetAccessors()->getDrawing_ShaderEffectAccessor()->createRadialGradient(reinterpret_cast(¢erPt_value), (const Ark_Number*) (&radius), reinterpret_cast(&colors_value), static_cast(mode), reinterpret_cast(&pos_value), reinterpret_cast(&matrix_value)); } KOALA_INTEROP_DIRECT_4(drawing_ShaderEffect_createRadialGradient, Ark_NativePointer, KSerializerBuffer, int32_t, KInteropNumber, Ark_Int32) Ark_NativePointer impl_drawing_ShaderEffect_createSweepGradient(KSerializerBuffer thisArray, int32_t thisLength, Ark_Int32 mode, KInteropNumber startAngle, KInteropNumber endAngle) { @@ -30741,7 +30741,7 @@ Ark_NativePointer impl_drawing_ShaderEffect_createSweepGradient(KSerializerBuffe matrix_value_buf.value = static_cast(drawing_Matrix_serializer::read(thisDeserializer)); } Opt_drawing_Matrix matrix_value = matrix_value_buf;; - return GetAccessors()->getDrawing_ShaderEffectAccessor()->createSweepGradient((const Ark_common2D_Point*)¢erPt_value, (const Array_Number*)&colors_value, static_cast(mode), (const Ark_Number*) (&startAngle), (const Ark_Number*) (&endAngle), (const Opt_Array_Number*)&pos_value, (const Opt_drawing_Matrix*)&matrix_value); + return GetAccessors()->getDrawing_ShaderEffectAccessor()->createSweepGradient(reinterpret_cast(¢erPt_value), reinterpret_cast(&colors_value), static_cast(mode), (const Ark_Number*) (&startAngle), (const Ark_Number*) (&endAngle), reinterpret_cast(&pos_value), reinterpret_cast(&matrix_value)); } KOALA_INTEROP_DIRECT_5(drawing_ShaderEffect_createSweepGradient, Ark_NativePointer, KSerializerBuffer, int32_t, Ark_Int32, KInteropNumber, KInteropNumber) Ark_NativePointer impl_drawing_ShaderEffect_createConicalGradient(KSerializerBuffer thisArray, int32_t thisLength, KInteropNumber startRadius, KInteropNumber endRadius, Ark_Int32 mode) { @@ -30779,7 +30779,7 @@ Ark_NativePointer impl_drawing_ShaderEffect_createConicalGradient(KSerializerBuf matrix_value_buf.value = static_cast(drawing_Matrix_serializer::read(thisDeserializer)); } Opt_drawing_Matrix matrix_value = matrix_value_buf;; - return GetAccessors()->getDrawing_ShaderEffectAccessor()->createConicalGradient((const Ark_common2D_Point*)&startPt_value, (const Ark_Number*) (&startRadius), (const Ark_common2D_Point*)&endPt_value, (const Ark_Number*) (&endRadius), (const Array_Number*)&colors_value, static_cast(mode), (const Opt_Array_Number*)&pos_value, (const Opt_drawing_Matrix*)&matrix_value); + return GetAccessors()->getDrawing_ShaderEffectAccessor()->createConicalGradient(reinterpret_cast(&startPt_value), (const Ark_Number*) (&startRadius), reinterpret_cast(&endPt_value), (const Ark_Number*) (&endRadius), reinterpret_cast(&colors_value), static_cast(mode), reinterpret_cast(&pos_value), reinterpret_cast(&matrix_value)); } KOALA_INTEROP_DIRECT_5(drawing_ShaderEffect_createConicalGradient, Ark_NativePointer, KSerializerBuffer, int32_t, KInteropNumber, KInteropNumber, Ark_Int32) Ark_NativePointer impl_drawing_ShadowLayer_ctor() { @@ -30793,7 +30793,7 @@ KOALA_INTEROP_DIRECT_0(drawing_ShadowLayer_getFinalizer, Ark_NativePointer) Ark_NativePointer impl_drawing_ShadowLayer_create0(KInteropNumber blurRadius, KInteropNumber x, KInteropNumber y, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Color color_value = common2D_Color_serializer::read(thisDeserializer);; - return GetAccessors()->getDrawing_ShadowLayerAccessor()->create0((const Ark_Number*) (&blurRadius), (const Ark_Number*) (&x), (const Ark_Number*) (&y), (const Ark_common2D_Color*)&color_value); + return GetAccessors()->getDrawing_ShadowLayerAccessor()->create0((const Ark_Number*) (&blurRadius), (const Ark_Number*) (&x), (const Ark_Number*) (&y), reinterpret_cast(&color_value)); } KOALA_INTEROP_DIRECT_5(drawing_ShadowLayer_create0, Ark_NativePointer, KInteropNumber, KInteropNumber, KInteropNumber, KSerializerBuffer, int32_t) Ark_NativePointer impl_drawing_ShadowLayer_create1(KInteropNumber blurRadius, KInteropNumber x, KInteropNumber y, KInteropNumber color) { @@ -30822,7 +30822,7 @@ Ark_NativePointer impl_drawing_TextBlob_makeFromPosText(const KStringPtr& text, points_value_buf.array[points_value_buf_i] = common2D_Point_serializer::read(thisDeserializer); } Array_common2D_Point points_value = points_value_buf;; - return GetAccessors()->getDrawing_TextBlobAccessor()->makeFromPosText((const Ark_String*) (&text), (const Ark_Number*) (&len), (const Array_common2D_Point*)&points_value, static_cast(font)); + return GetAccessors()->getDrawing_TextBlobAccessor()->makeFromPosText((const Ark_String*) (&text), (const Ark_Number*) (&len), reinterpret_cast(&points_value), static_cast(font)); } KOALA_INTEROP_5(drawing_TextBlob_makeFromPosText, Ark_NativePointer, KStringPtr, KInteropNumber, KSerializerBuffer, int32_t, Ark_NativePointer) Ark_NativePointer impl_drawing_TextBlob_makeFromRunBuffer(KSerializerBuffer thisArray, int32_t thisLength, Ark_NativePointer font) { @@ -30836,7 +30836,7 @@ Ark_NativePointer impl_drawing_TextBlob_makeFromRunBuffer(KSerializerBuffer this } Array_drawing_TextBlobRunBuffer pos_value = pos_value_buf;; Ark_common2D_Rect bounds_value = common2D_Rect_serializer::read(thisDeserializer);; - return GetAccessors()->getDrawing_TextBlobAccessor()->makeFromRunBuffer((const Array_drawing_TextBlobRunBuffer*)&pos_value, static_cast(font), (const Ark_common2D_Rect*)&bounds_value); + return GetAccessors()->getDrawing_TextBlobAccessor()->makeFromRunBuffer(reinterpret_cast(&pos_value), static_cast(font), reinterpret_cast(&bounds_value)); } KOALA_INTEROP_DIRECT_3(drawing_TextBlob_makeFromRunBuffer, Ark_NativePointer, KSerializerBuffer, int32_t, Ark_NativePointer) KInteropReturnBuffer impl_drawing_TextBlob_bounds(Ark_NativePointer thisPtr) { @@ -30879,7 +30879,7 @@ Ark_NativePointer impl_DrawingRenderingContext_ctor(KSerializerBuffer thisArray, unit_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_LengthMetricsUnit unit_value = unit_value_buf;; - return GetAccessors()->getDrawingRenderingContextAccessor()->ctor((const Opt_LengthMetricsUnit*)&unit_value); + return GetAccessors()->getDrawingRenderingContextAccessor()->ctor(reinterpret_cast(&unit_value)); } KOALA_INTEROP_DIRECT_2(DrawingRenderingContext_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_DrawingRenderingContext_getFinalizer() { @@ -30903,7 +30903,7 @@ void impl_DrawingRenderingContext_setSize(Ark_NativePointer thisPtr, KSerializer Ark_DrawingRenderingContext self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Size size_value = Size_serializer::read(thisDeserializer);; - GetAccessors()->getDrawingRenderingContextAccessor()->setSize(self, (const Ark_Size*)&size_value); + GetAccessors()->getDrawingRenderingContextAccessor()->setSize(self, reinterpret_cast(&size_value)); } KOALA_INTEROP_DIRECT_V3(DrawingRenderingContext_setSize, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_DrawModifier_ctor() { @@ -30930,7 +30930,7 @@ void impl_DrawModifier_setDrawBehind_callback(Ark_NativePointer thisPtr, KSerial Ark_DrawModifier self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_DrawContext_Void drawBehind_callback_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_DrawContext_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_DrawContext_Void))))};; - GetAccessors()->getDrawModifierAccessor()->setDrawBehind_callback(self, (const Callback_DrawContext_Void*)&drawBehind_callback_value); + GetAccessors()->getDrawModifierAccessor()->setDrawBehind_callback(self, reinterpret_cast(&drawBehind_callback_value)); } KOALA_INTEROP_DIRECT_V3(DrawModifier_setDrawBehind_callback, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_DrawModifier_getDrawContent_callback(Ark_NativePointer thisPtr) { @@ -30944,7 +30944,7 @@ void impl_DrawModifier_setDrawContent_callback(Ark_NativePointer thisPtr, KSeria Ark_DrawModifier self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_DrawContext_Void drawContent_callback_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_DrawContext_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_DrawContext_Void))))};; - GetAccessors()->getDrawModifierAccessor()->setDrawContent_callback(self, (const Callback_DrawContext_Void*)&drawContent_callback_value); + GetAccessors()->getDrawModifierAccessor()->setDrawContent_callback(self, reinterpret_cast(&drawContent_callback_value)); } KOALA_INTEROP_DIRECT_V3(DrawModifier_setDrawContent_callback, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_DrawModifier_getDrawFront_callback(Ark_NativePointer thisPtr) { @@ -30958,7 +30958,7 @@ void impl_DrawModifier_setDrawFront_callback(Ark_NativePointer thisPtr, KSeriali Ark_DrawModifier self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_DrawContext_Void drawFront_callback_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_DrawContext_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_DrawContext_Void))))};; - GetAccessors()->getDrawModifierAccessor()->setDrawFront_callback(self, (const Callback_DrawContext_Void*)&drawFront_callback_value); + GetAccessors()->getDrawModifierAccessor()->setDrawFront_callback(self, reinterpret_cast(&drawFront_callback_value)); } KOALA_INTEROP_DIRECT_V3(DrawModifier_setDrawFront_callback, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_EllipseShape_ctor(KSerializerBuffer thisArray, int32_t thisLength) { @@ -30971,7 +30971,7 @@ Ark_NativePointer impl_EllipseShape_ctor(KSerializerBuffer thisArray, int32_t th options_value_buf.value = ShapeSize_serializer::read(thisDeserializer); } Opt_ShapeSize options_value = options_value_buf;; - return GetAccessors()->getEllipseShapeAccessor()->ctor((const Opt_ShapeSize*)&options_value); + return GetAccessors()->getEllipseShapeAccessor()->ctor(reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_2(EllipseShape_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_EllipseShape_getFinalizer() { @@ -30982,7 +30982,7 @@ Ark_NativePointer impl_EllipseShape_offset(Ark_NativePointer thisPtr, KSerialize Ark_EllipseShape self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Position offset_value = Position_serializer::read(thisDeserializer);; - return GetAccessors()->getEllipseShapeAccessor()->offset(self, (const Ark_Position*)&offset_value); + return GetAccessors()->getEllipseShapeAccessor()->offset(self, reinterpret_cast(&offset_value)); } KOALA_INTEROP_DIRECT_3(EllipseShape_offset, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_EllipseShape_fill(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -31011,14 +31011,14 @@ Ark_NativePointer impl_EllipseShape_fill(Ark_NativePointer thisPtr, KSerializerB INTEROP_FATAL("One of the branches for color_value_buf has to be chosen through deserialisation."); } Ark_ResourceColor color_value = static_cast(color_value_buf);; - return GetAccessors()->getEllipseShapeAccessor()->fill(self, (const Ark_ResourceColor*)&color_value); + return GetAccessors()->getEllipseShapeAccessor()->fill(self, reinterpret_cast(&color_value)); } KOALA_INTEROP_DIRECT_3(EllipseShape_fill, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_EllipseShape_position(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_EllipseShape self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Position position_value = Position_serializer::read(thisDeserializer);; - return GetAccessors()->getEllipseShapeAccessor()->position(self, (const Ark_Position*)&position_value); + return GetAccessors()->getEllipseShapeAccessor()->position(self, reinterpret_cast(&position_value)); } KOALA_INTEROP_DIRECT_3(EllipseShape_position, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_EllipseShape_width(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -31043,7 +31043,7 @@ Ark_NativePointer impl_EllipseShape_width(Ark_NativePointer thisPtr, KSerializer INTEROP_FATAL("One of the branches for width_value_buf has to be chosen through deserialisation."); } Ark_Length width_value = static_cast(width_value_buf);; - return GetAccessors()->getEllipseShapeAccessor()->width(self, (const Ark_Length*)&width_value); + return GetAccessors()->getEllipseShapeAccessor()->width(self, reinterpret_cast(&width_value)); } KOALA_INTEROP_DIRECT_3(EllipseShape_width, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_EllipseShape_height(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -31068,14 +31068,14 @@ Ark_NativePointer impl_EllipseShape_height(Ark_NativePointer thisPtr, KSerialize INTEROP_FATAL("One of the branches for height_value_buf has to be chosen through deserialisation."); } Ark_Length height_value = static_cast(height_value_buf);; - return GetAccessors()->getEllipseShapeAccessor()->height(self, (const Ark_Length*)&height_value); + return GetAccessors()->getEllipseShapeAccessor()->height(self, reinterpret_cast(&height_value)); } KOALA_INTEROP_DIRECT_3(EllipseShape_height, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_EllipseShape_size(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_EllipseShape self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_SizeOptions size_value = SizeOptions_serializer::read(thisDeserializer);; - return GetAccessors()->getEllipseShapeAccessor()->size(self, (const Ark_SizeOptions*)&size_value); + return GetAccessors()->getEllipseShapeAccessor()->size(self, reinterpret_cast(&size_value)); } KOALA_INTEROP_DIRECT_3(EllipseShape_size, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_EventEmulator_emitClickEvent(Ark_NativePointer node, Ark_NativePointer event) { @@ -31152,7 +31152,7 @@ void impl_FocusAxisEvent_setAxisMap(Ark_NativePointer thisPtr, KSerializerBuffer axisMap_value_buf.values[axisMap_value_buf_i] = axisMap_value_buf_value; } Map_AxisModel_Number axisMap_value = axisMap_value_buf;; - GetAccessors()->getFocusAxisEventAccessor()->setAxisMap(self, (const Map_AxisModel_Number*)&axisMap_value); + GetAccessors()->getFocusAxisEventAccessor()->setAxisMap(self, reinterpret_cast(&axisMap_value)); } KOALA_INTEROP_DIRECT_V3(FocusAxisEvent_setAxisMap, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_FocusAxisEvent_getStopPropagation(Ark_NativePointer thisPtr) { @@ -31166,7 +31166,7 @@ void impl_FocusAxisEvent_setStopPropagation(Ark_NativePointer thisPtr, KSerializ Ark_FocusAxisEvent self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Void stopPropagation_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))};; - GetAccessors()->getFocusAxisEventAccessor()->setStopPropagation(self, (const Callback_Void*)&stopPropagation_value); + GetAccessors()->getFocusAxisEventAccessor()->setStopPropagation(self, reinterpret_cast(&stopPropagation_value)); } KOALA_INTEROP_DIRECT_V3(FocusAxisEvent_setStopPropagation, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_FocusController_requestFocus(const KStringPtr& key) { @@ -31290,7 +31290,7 @@ void impl_FrameNode_setCrossLanguageOptions(Ark_NativePointer thisPtr, KSerializ Ark_FrameNode self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_CrossLanguageOptions options_value = CrossLanguageOptions_serializer::read(thisDeserializer);; - GetAccessors()->getFrameNodeAccessor()->setCrossLanguageOptions(self, (const Ark_CrossLanguageOptions*)&options_value); + GetAccessors()->getFrameNodeAccessor()->setCrossLanguageOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(FrameNode_setCrossLanguageOptions, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_FrameNode_getCrossLanguageOptions(Ark_NativePointer thisPtr) { @@ -31391,7 +31391,7 @@ void impl_Gesture_allowedTypes(Ark_NativePointer thisPtr, KSerializerBuffer this types_value_buf.array[types_value_buf_i] = static_cast(thisDeserializer.readInt32()); } Array_SourceTool types_value = types_value_buf;; - GetAccessors()->getGestureAccessor()->allowedTypes(self, (const Array_SourceTool*)&types_value); + GetAccessors()->getGestureAccessor()->allowedTypes(self, reinterpret_cast(&types_value)); } KOALA_INTEROP_DIRECT_V3(Gesture_allowedTypes, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_GestureEvent_ctor() { @@ -31435,7 +31435,7 @@ void impl_GestureEvent_setFingerList(Ark_NativePointer thisPtr, KSerializerBuffe fingerList_value_buf.array[fingerList_value_buf_i] = FingerInfo_serializer::read(thisDeserializer); } Array_FingerInfo fingerList_value = fingerList_value_buf;; - GetAccessors()->getGestureEventAccessor()->setFingerList(self, (const Array_FingerInfo*)&fingerList_value); + GetAccessors()->getGestureEventAccessor()->setFingerList(self, reinterpret_cast(&fingerList_value)); } KOALA_INTEROP_DIRECT_V3(GestureEvent_setFingerList, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_Number impl_GestureEvent_getOffsetX(Ark_NativePointer thisPtr) { @@ -31562,7 +31562,7 @@ Ark_NativePointer impl_GestureGroupInterface_ctor(Ark_Int32 mode, KSerializerBuf gesture_value_buf.array[gesture_value_buf_i] = static_cast(gesture_value_buf_buf); } Array_GestureType gesture_value = gesture_value_buf;; - return GetAccessors()->getGestureGroupInterfaceAccessor()->ctor(static_cast(mode), (const Array_GestureType*)&gesture_value); + return GetAccessors()->getGestureGroupInterfaceAccessor()->ctor(static_cast(mode), reinterpret_cast(&gesture_value)); } KOALA_INTEROP_DIRECT_3(GestureGroupInterface_ctor, Ark_NativePointer, Ark_Int32, KSerializerBuffer, int32_t) Ark_NativePointer impl_GestureGroupInterface_getFinalizer() { @@ -31573,7 +31573,7 @@ Ark_NativePointer impl_GestureGroupInterface_onCancel(Ark_NativePointer thisPtr, Ark_GestureGroupInterface self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))};; - return GetAccessors()->getGestureGroupInterfaceAccessor()->onCancel(self, (const Callback_Void*)&event_value); + return GetAccessors()->getGestureGroupInterfaceAccessor()->onCancel(self, reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_3(GestureGroupInterface_onCancel, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_GestureModifier_ctor() { @@ -31588,7 +31588,7 @@ void impl_GestureModifier_applyGesture(Ark_NativePointer thisPtr, KSerializerBuf Ark_GestureModifier self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_UIGestureEvent event_value = UIGestureEvent_serializer::read(thisDeserializer);; - GetAccessors()->getGestureModifierAccessor()->applyGesture(self, (const Ark_UIGestureEvent*)&event_value); + GetAccessors()->getGestureModifierAccessor()->applyGesture(self, reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_V3(GestureModifier_applyGesture, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_GestureRecognizer_ctor() { @@ -31659,7 +31659,7 @@ Ark_NativePointer impl_GestureStyle_ctor(KSerializerBuffer thisArray, int32_t th value_value_buf.value = GestureStyleInterface_serializer::read(thisDeserializer); } Opt_GestureStyleInterface value_value = value_value_buf;; - return GetAccessors()->getGestureStyleAccessor()->ctor((const Opt_GestureStyleInterface*)&value_value); + return GetAccessors()->getGestureStyleAccessor()->ctor(reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_2(GestureStyle_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_GestureStyle_getFinalizer() { @@ -31677,7 +31677,7 @@ void impl_GlobalScope_ohos_arkui_componentSnapshot_get(const KStringPtr& id, KSe options_value_buf.value = SnapshotOptions_serializer::read(thisDeserializer); } Opt_SnapshotOptions options_value = options_value_buf;; - GetAccessors()->getGlobalScope_ohos_arkui_componentSnapshotAccessor()->get((const Ark_String*) (&id), (const AsyncCallback_image_PixelMap_Void*)&callback_value, (const Opt_SnapshotOptions*)&options_value); + GetAccessors()->getGlobalScope_ohos_arkui_componentSnapshotAccessor()->get((const Ark_String*) (&id), reinterpret_cast(&callback_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_V3(GlobalScope_ohos_arkui_componentSnapshot_get, KStringPtr, KSerializerBuffer, int32_t) void impl_GlobalScope_ohos_arkui_performanceMonitor_begin(const KStringPtr& scene, Ark_Int32 startInputType, KSerializerBuffer thisArray, int32_t thisLength) { @@ -31690,7 +31690,7 @@ void impl_GlobalScope_ohos_arkui_performanceMonitor_begin(const KStringPtr& scen note_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String note_value = note_value_buf;; - GetAccessors()->getGlobalScope_ohos_arkui_performanceMonitorAccessor()->begin((const Ark_String*) (&scene), static_cast(startInputType), (const Opt_String*)¬e_value); + GetAccessors()->getGlobalScope_ohos_arkui_performanceMonitorAccessor()->begin((const Ark_String*) (&scene), static_cast(startInputType), reinterpret_cast(¬e_value)); } KOALA_INTEROP_V4(GlobalScope_ohos_arkui_performanceMonitor_begin, KStringPtr, Ark_Int32, KSerializerBuffer, int32_t) void impl_GlobalScope_ohos_arkui_performanceMonitor_end(const KStringPtr& scene) { @@ -31704,7 +31704,7 @@ KOALA_INTEROP_DIRECT_V3(GlobalScope_ohos_arkui_performanceMonitor_recordInputEve void impl_GlobalScope_ohos_font_registerFont(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_FontOptions options_value = FontOptions_serializer::read(thisDeserializer);; - GetAccessors()->getGlobalScope_ohos_fontAccessor()->registerFont((const Ark_FontOptions*)&options_value); + GetAccessors()->getGlobalScope_ohos_fontAccessor()->registerFont(reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V2(GlobalScope_ohos_font_registerFont, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_GlobalScope_ohos_font_getSystemFontList() { @@ -31728,13 +31728,13 @@ KOALA_INTEROP_1(GlobalScope_ohos_font_getFontByName, KInteropReturnBuffer, KStri Ark_Number impl_GlobalScope_ohos_measure_utils_measureText(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_MeasureOptions options_value = MeasureOptions_serializer::read(thisDeserializer);; - return GetAccessors()->getGlobalScope_ohos_measure_utilsAccessor()->measureText((const Ark_MeasureOptions*)&options_value); + return GetAccessors()->getGlobalScope_ohos_measure_utilsAccessor()->measureText(reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_2(GlobalScope_ohos_measure_utils_measureText, KInteropNumber, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_GlobalScope_ohos_measure_utils_measureTextSize(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_MeasureOptions options_value = MeasureOptions_serializer::read(thisDeserializer);; - const auto &retValue = GetAccessors()->getGlobalScope_ohos_measure_utilsAccessor()->measureTextSize((const Ark_MeasureOptions*)&options_value); + const auto &retValue = GetAccessors()->getGlobalScope_ohos_measure_utilsAccessor()->measureTextSize(reinterpret_cast(&options_value)); SerializerBase _retSerializer {}; SizeOptions_serializer::write(_retSerializer, retValue); return _retSerializer.toReturnBuffer(); @@ -31750,7 +31750,7 @@ Ark_NativePointer impl_HierarchicalSymbolEffect_ctor(KSerializerBuffer thisArray fillStyle_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EffectFillStyle fillStyle_value = fillStyle_value_buf;; - return GetAccessors()->getHierarchicalSymbolEffectAccessor()->ctor((const Opt_EffectFillStyle*)&fillStyle_value); + return GetAccessors()->getHierarchicalSymbolEffectAccessor()->ctor(reinterpret_cast(&fillStyle_value)); } KOALA_INTEROP_DIRECT_2(HierarchicalSymbolEffect_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_HierarchicalSymbolEffect_getFinalizer() { @@ -31782,7 +31782,7 @@ void impl_HierarchicalSymbolEffect_setFillStyle(Ark_NativePointer thisPtr, KSeri fillStyle_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EffectFillStyle fillStyle_value = fillStyle_value_buf;; - GetAccessors()->getHierarchicalSymbolEffectAccessor()->setFillStyle(self, (const Opt_EffectFillStyle*)&fillStyle_value); + GetAccessors()->getHierarchicalSymbolEffectAccessor()->setFillStyle(self, reinterpret_cast(&fillStyle_value)); } KOALA_INTEROP_DIRECT_V3(HierarchicalSymbolEffect_setFillStyle, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_HoverEvent_ctor() { @@ -31918,7 +31918,7 @@ void impl_HoverEvent_setStopPropagation(Ark_NativePointer thisPtr, KSerializerBu Ark_HoverEvent self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Void stopPropagation_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))};; - GetAccessors()->getHoverEventAccessor()->setStopPropagation(self, (const Callback_Void*)&stopPropagation_value); + GetAccessors()->getHoverEventAccessor()->setStopPropagation(self, reinterpret_cast(&stopPropagation_value)); } KOALA_INTEROP_DIRECT_V3(HoverEvent_setStopPropagation, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_ICurve_ctor() { @@ -31946,14 +31946,14 @@ void impl_image_PixelMap_readPixelsToBufferSync(Ark_NativePointer thisPtr, KSeri Ark_image_PixelMap self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Buffer dst_value = static_cast(thisDeserializer.readBuffer());; - GetAccessors()->getImage_PixelMapAccessor()->readPixelsToBufferSync(self, (const Ark_Buffer*)&dst_value); + GetAccessors()->getImage_PixelMapAccessor()->readPixelsToBufferSync(self, reinterpret_cast(&dst_value)); } KOALA_INTEROP_DIRECT_V3(image_PixelMap_readPixelsToBufferSync, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_image_PixelMap_writeBufferToPixels(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_image_PixelMap self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Buffer src_value = static_cast(thisDeserializer.readBuffer());; - GetAccessors()->getImage_PixelMapAccessor()->writeBufferToPixels(self, (const Ark_Buffer*)&src_value); + GetAccessors()->getImage_PixelMapAccessor()->writeBufferToPixels(self, reinterpret_cast(&src_value)); } KOALA_INTEROP_DIRECT_V3(image_PixelMap_writeBufferToPixels, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_Boolean impl_image_PixelMap_getIsEditable(Ark_NativePointer thisPtr) { @@ -32024,7 +32024,7 @@ Ark_NativePointer impl_ImageAttachment_ctor(KSerializerBuffer thisArray, int32_t INTEROP_FATAL("One of the branches for value_value_buf has to be chosen through deserialisation."); } Ark_Union_ImageAttachmentInterface_Opt_AttachmentType value_value = static_cast(value_value_buf);; - return GetAccessors()->getImageAttachmentAccessor()->ctor((const Ark_Union_ImageAttachmentInterface_Opt_AttachmentType*)&value_value); + return GetAccessors()->getImageAttachmentAccessor()->ctor(reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_2(ImageAttachment_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_ImageAttachment_getFinalizer() { @@ -32142,7 +32142,7 @@ Ark_NativePointer impl_ImageBitmap_ctor(KSerializerBuffer thisArray, int32_t thi unit_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_LengthMetricsUnit unit_value = unit_value_buf;; - return GetAccessors()->getImageBitmapAccessor()->ctor((const Ark_Union_PixelMap_String*)&src_value, (const Opt_LengthMetricsUnit*)&unit_value); + return GetAccessors()->getImageBitmapAccessor()->ctor(reinterpret_cast(&src_value), reinterpret_cast(&unit_value)); } KOALA_INTEROP_DIRECT_2(ImageBitmap_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_ImageBitmap_getFinalizer() { @@ -32192,7 +32192,7 @@ Ark_NativePointer impl_ImageData_ctor(KInteropNumber width, KInteropNumber heigh unit_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_LengthMetricsUnit unit_value = unit_value_buf;; - return GetAccessors()->getImageDataAccessor()->ctor((const Ark_Number*) (&width), (const Ark_Number*) (&height), (const Opt_Buffer*)&data_value, (const Opt_LengthMetricsUnit*)&unit_value); + return GetAccessors()->getImageDataAccessor()->ctor((const Ark_Number*) (&width), (const Ark_Number*) (&height), reinterpret_cast(&data_value), reinterpret_cast(&unit_value)); } KOALA_INTEROP_DIRECT_4(ImageData_ctor, Ark_NativePointer, KInteropNumber, KInteropNumber, KSerializerBuffer, int32_t) Ark_NativePointer impl_ImageData_getFinalizer() { @@ -32211,7 +32211,7 @@ void impl_ImageData_setData(Ark_NativePointer thisPtr, KSerializerBuffer thisArr Ark_ImageData self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Buffer data_value = static_cast(thisDeserializer.readBuffer());; - GetAccessors()->getImageDataAccessor()->setData(self, (const Ark_Buffer*)&data_value); + GetAccessors()->getImageDataAccessor()->setData(self, reinterpret_cast(&data_value)); } KOALA_INTEROP_DIRECT_V3(ImageData_setData, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_Number impl_ImageData_getHeight(Ark_NativePointer thisPtr) { @@ -32263,7 +32263,7 @@ void impl_IndicatorComponentController_changeIndex(Ark_NativePointer thisPtr, KI useAnimation_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean useAnimation_value = useAnimation_value_buf;; - GetAccessors()->getIndicatorComponentControllerAccessor()->changeIndex(self, (const Ark_Number*) (&index), (const Opt_Boolean*)&useAnimation_value); + GetAccessors()->getIndicatorComponentControllerAccessor()->changeIndex(self, (const Ark_Number*) (&index), reinterpret_cast(&useAnimation_value)); } KOALA_INTEROP_DIRECT_V4(IndicatorComponentController_changeIndex, Ark_NativePointer, KInteropNumber, KSerializerBuffer, int32_t) void impl_IUIContext_freezeUINode0(const KStringPtr& id, Ark_Boolean isFrozen) { @@ -32363,7 +32363,7 @@ void impl_KeyEvent_setStopPropagation(Ark_NativePointer thisPtr, KSerializerBuff Ark_KeyEvent self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Void stopPropagation_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))};; - GetAccessors()->getKeyEventAccessor()->setStopPropagation(self, (const Callback_Void*)&stopPropagation_value); + GetAccessors()->getKeyEventAccessor()->setStopPropagation(self, reinterpret_cast(&stopPropagation_value)); } KOALA_INTEROP_DIRECT_V3(KeyEvent_setStopPropagation, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_Int32 impl_KeyEvent_getIntentionCode(Ark_NativePointer thisPtr) { @@ -32396,7 +32396,7 @@ void impl_KeyEvent_setGetModifierKeyState(Ark_NativePointer thisPtr, KSerializer Ark_KeyEvent self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); ModifierKeyStateGetter getModifierKeyState_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_ModifierKeyStateGetter)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_ModifierKeyStateGetter))))};; - GetAccessors()->getKeyEventAccessor()->setGetModifierKeyState(self, (const ModifierKeyStateGetter*)&getModifierKeyState_value); + GetAccessors()->getKeyEventAccessor()->setGetModifierKeyState(self, reinterpret_cast(&getModifierKeyState_value)); } KOALA_INTEROP_DIRECT_V3(KeyEvent_setGetModifierKeyState, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_KeyEvent_getUnicode(Ark_NativePointer thisPtr) { @@ -32430,7 +32430,7 @@ void impl_Layoutable_layout(Ark_NativePointer thisPtr, KSerializerBuffer thisArr Ark_Layoutable self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Position position_value = Position_serializer::read(thisDeserializer);; - GetAccessors()->getLayoutableAccessor()->layout(self, (const Ark_Position*)&position_value); + GetAccessors()->getLayoutableAccessor()->layout(self, reinterpret_cast(&position_value)); } KOALA_INTEROP_DIRECT_V3(Layoutable_layout, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_Layoutable_getMargin(Ark_NativePointer thisPtr) { @@ -32469,7 +32469,7 @@ void impl_Layoutable_setMeasureResult(Ark_NativePointer thisPtr, KSerializerBuff Ark_Layoutable self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_MeasureResult measureResult_value = MeasureResult_serializer::read(thisDeserializer);; - GetAccessors()->getLayoutableAccessor()->setMeasureResult(self, (const Ark_MeasureResult*)&measureResult_value); + GetAccessors()->getLayoutableAccessor()->setMeasureResult(self, reinterpret_cast(&measureResult_value)); } KOALA_INTEROP_DIRECT_V3(Layoutable_setMeasureResult, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_Layoutable_getUniqueId(Ark_NativePointer thisPtr) { @@ -32512,7 +32512,7 @@ void impl_LayoutCallback_onPlaceChildren(Ark_NativePointer thisPtr, KSerializerB } Array_Layoutable children_value = children_value_buf;; Ark_ConstraintSizeOptions constraint_value = ConstraintSizeOptions_serializer::read(thisDeserializer);; - GetAccessors()->getLayoutCallbackAccessor()->onPlaceChildren(self, (const Ark_GeometryInfo*)&selfLayoutInfo_value, (const Array_Layoutable*)&children_value, (const Ark_ConstraintSizeOptions*)&constraint_value); + GetAccessors()->getLayoutCallbackAccessor()->onPlaceChildren(self, reinterpret_cast(&selfLayoutInfo_value), reinterpret_cast(&children_value), reinterpret_cast(&constraint_value)); } KOALA_INTEROP_DIRECT_V3(LayoutCallback_onPlaceChildren, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_LayoutCallback_onMeasureSize(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -32528,7 +32528,7 @@ KInteropReturnBuffer impl_LayoutCallback_onMeasureSize(Ark_NativePointer thisPtr } Array_Measurable children_value = children_value_buf;; Ark_ConstraintSizeOptions constraint_value = ConstraintSizeOptions_serializer::read(thisDeserializer);; - const auto &retValue = GetAccessors()->getLayoutCallbackAccessor()->onMeasureSize(self, (const Ark_GeometryInfo*)&selfLayoutInfo_value, (const Array_Measurable*)&children_value, (const Ark_ConstraintSizeOptions*)&constraint_value); + const auto &retValue = GetAccessors()->getLayoutCallbackAccessor()->onMeasureSize(self, reinterpret_cast(&selfLayoutInfo_value), reinterpret_cast(&children_value), reinterpret_cast(&constraint_value)); SerializerBase _retSerializer {}; SizeResult_serializer::write(_retSerializer, retValue); return _retSerializer.toReturnBuffer(); @@ -32546,7 +32546,7 @@ void impl_LayoutChild_measure(Ark_NativePointer thisPtr, KSerializerBuffer thisA Ark_LayoutChild self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_ConstraintSizeOptions childConstraint_value = ConstraintSizeOptions_serializer::read(thisDeserializer);; - GetAccessors()->getLayoutChildAccessor()->measure(self, (const Ark_ConstraintSizeOptions*)&childConstraint_value); + GetAccessors()->getLayoutChildAccessor()->measure(self, reinterpret_cast(&childConstraint_value)); } KOALA_INTEROP_DIRECT_V3(LayoutChild_measure, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_String impl_LayoutChild_getName(Ark_NativePointer thisPtr) { @@ -32581,7 +32581,7 @@ void impl_LayoutChild_setPosition(Ark_NativePointer thisPtr, KSerializerBuffer t Ark_LayoutChild self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Position position_value = Position_serializer::read(thisDeserializer);; - GetAccessors()->getLayoutChildAccessor()->setPosition(self, (const Ark_Position*)&position_value); + GetAccessors()->getLayoutChildAccessor()->setPosition(self, reinterpret_cast(&position_value)); } KOALA_INTEROP_DIRECT_V3(LayoutChild_setPosition, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_LayoutManager_ctor() { @@ -32621,7 +32621,7 @@ void impl_LazyForEachOps_Sync(Ark_NativePointer node, Ark_Int32 totalCount, KSer DeserializerBase thisDeserializer(thisArray, thisLength); Callback_CreateItem creator_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_CreateItem)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_CreateItem))))};; Callback_RangeUpdate updater_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_RangeUpdate)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_RangeUpdate))))};; - GetAccessors()->getLazyForEachOpsAccessor()->Sync(node, totalCount, (const Callback_CreateItem*)&creator_value, (const Callback_RangeUpdate*)&updater_value); + GetAccessors()->getLazyForEachOpsAccessor()->Sync(node, totalCount, reinterpret_cast(&creator_value), reinterpret_cast(&updater_value)); } KOALA_INTEROP_DIRECT_V4(LazyForEachOps_Sync, Ark_NativePointer, Ark_Int32, KSerializerBuffer, int32_t) Ark_NativePointer impl_LengthMetrics_ctor(KInteropNumber value, Ark_Int32 unit) { @@ -32655,7 +32655,7 @@ KOALA_INTEROP_DIRECT_1(LengthMetrics_lpx, Ark_NativePointer, KInteropNumber) Ark_NativePointer impl_LengthMetrics_resource(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Resource value_value = Resource_serializer::read(thisDeserializer);; - return GetAccessors()->getLengthMetricsAccessor()->resource((const Ark_Resource*)&value_value); + return GetAccessors()->getLengthMetricsAccessor()->resource(reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_2(LengthMetrics_resource, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_Int32 impl_LengthMetrics_getUnit(Ark_NativePointer thisPtr) { @@ -32729,7 +32729,7 @@ Ark_NativePointer impl_LinearGradient_ctor(KSerializerBuffer thisArray, int32_t colorStops_value_buf.array[colorStops_value_buf_i] = ColorStop_serializer::read(thisDeserializer); } Array_ColorStop colorStops_value = colorStops_value_buf;; - return GetAccessors()->getLinearGradientAccessor()->ctor((const Array_ColorStop*)&colorStops_value); + return GetAccessors()->getLinearGradientAccessor()->ctor(reinterpret_cast(&colorStops_value)); } KOALA_INTEROP_DIRECT_2(LinearGradient_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_LinearGradient_getFinalizer() { @@ -32760,7 +32760,7 @@ void impl_LinearIndicatorController_start(Ark_NativePointer thisPtr, KSerializer options_value_buf.value = LinearIndicatorStartOptions_serializer::read(thisDeserializer); } Opt_LinearIndicatorStartOptions options_value = options_value_buf;; - GetAccessors()->getLinearIndicatorControllerAccessor()->start(self, (const Opt_LinearIndicatorStartOptions*)&options_value); + GetAccessors()->getLinearIndicatorControllerAccessor()->start(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(LinearIndicatorController_start, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_LinearIndicatorController_pause(Ark_NativePointer thisPtr) { @@ -32821,7 +32821,7 @@ void impl_ListScroller_scrollToItemInGroup(Ark_NativePointer thisPtr, KInteropNu align_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_ScrollAlign align_value = align_value_buf;; - GetAccessors()->getListScrollerAccessor()->scrollToItemInGroup(self, (const Ark_Number*) (&index), (const Ark_Number*) (&indexInGroup), (const Opt_Boolean*)&smooth_value, (const Opt_ScrollAlign*)&align_value); + GetAccessors()->getListScrollerAccessor()->scrollToItemInGroup(self, (const Ark_Number*) (&index), (const Ark_Number*) (&indexInGroup), reinterpret_cast(&smooth_value), reinterpret_cast(&align_value)); } KOALA_INTEROP_DIRECT_V5(ListScroller_scrollToItemInGroup, Ark_NativePointer, KInteropNumber, KInteropNumber, KSerializerBuffer, int32_t) void impl_ListScroller_closeAllSwipeActions(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -32835,7 +32835,7 @@ void impl_ListScroller_closeAllSwipeActions(Ark_NativePointer thisPtr, KSerializ options_value_buf.value = CloseSwipeActionOptions_serializer::read(thisDeserializer); } Opt_CloseSwipeActionOptions options_value = options_value_buf;; - GetAccessors()->getListScrollerAccessor()->closeAllSwipeActions(self, (const Opt_CloseSwipeActionOptions*)&options_value); + GetAccessors()->getListScrollerAccessor()->closeAllSwipeActions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(ListScroller_closeAllSwipeActions, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_ListScroller_getVisibleListContentInfo(Ark_NativePointer thisPtr, KInteropNumber x, KInteropNumber y) { @@ -32867,7 +32867,7 @@ KOALA_INTEROP_DIRECT_V2(LongPressGestureEvent_setRepeat, Ark_NativePointer, Ark_ Ark_NativePointer impl_LongPressGestureInterface_ctor(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_LongPressGestureInterface_Invoke_Literal value_value = LongPressGestureInterface_Invoke_Literal_serializer::read(thisDeserializer);; - return GetAccessors()->getLongPressGestureInterfaceAccessor()->ctor((const Ark_LongPressGestureInterface_Invoke_Literal*)&value_value); + return GetAccessors()->getLongPressGestureInterfaceAccessor()->ctor(reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_2(LongPressGestureInterface_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_LongPressGestureInterface_getFinalizer() { @@ -32878,28 +32878,28 @@ Ark_NativePointer impl_LongPressGestureInterface_onAction(Ark_NativePointer this Ark_LongPressGestureInterface self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_GestureEvent_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_GestureEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_GestureEvent_Void))))};; - return GetAccessors()->getLongPressGestureInterfaceAccessor()->onAction(self, (const Callback_GestureEvent_Void*)&event_value); + return GetAccessors()->getLongPressGestureInterfaceAccessor()->onAction(self, reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_3(LongPressGestureInterface_onAction, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_LongPressGestureInterface_onActionEnd(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_LongPressGestureInterface self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_GestureEvent_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_GestureEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_GestureEvent_Void))))};; - return GetAccessors()->getLongPressGestureInterfaceAccessor()->onActionEnd(self, (const Callback_GestureEvent_Void*)&event_value); + return GetAccessors()->getLongPressGestureInterfaceAccessor()->onActionEnd(self, reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_3(LongPressGestureInterface_onActionEnd, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_LongPressGestureInterface_onActionCancel0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_LongPressGestureInterface self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))};; - return GetAccessors()->getLongPressGestureInterfaceAccessor()->onActionCancel0(self, (const Callback_Void*)&event_value); + return GetAccessors()->getLongPressGestureInterfaceAccessor()->onActionCancel0(self, reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_3(LongPressGestureInterface_onActionCancel0, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_LongPressGestureInterface_onActionCancel1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_LongPressGestureInterface self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_GestureEvent_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_GestureEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_GestureEvent_Void))))};; - return GetAccessors()->getLongPressGestureInterfaceAccessor()->onActionCancel1(self, (const Callback_GestureEvent_Void*)&event_value); + return GetAccessors()->getLongPressGestureInterfaceAccessor()->onActionCancel1(self, reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_3(LongPressGestureInterface_onActionCancel1, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_LongPressRecognizer_ctor() { @@ -32961,7 +32961,7 @@ Ark_NativePointer impl_Matrix2D_rotate(Ark_NativePointer thisPtr, KInteropNumber ry_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number ry_value = ry_value_buf;; - return GetAccessors()->getMatrix2DAccessor()->rotate(self, (const Ark_Number*) (°ree), (const Opt_Number*)&rx_value, (const Opt_Number*)&ry_value); + return GetAccessors()->getMatrix2DAccessor()->rotate(self, (const Ark_Number*) (°ree), reinterpret_cast(&rx_value), reinterpret_cast(&ry_value)); } KOALA_INTEROP_DIRECT_4(Matrix2D_rotate, Ark_NativePointer, Ark_NativePointer, KInteropNumber, KSerializerBuffer, int32_t) Ark_NativePointer impl_Matrix2D_translate(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -32983,7 +32983,7 @@ Ark_NativePointer impl_Matrix2D_translate(Ark_NativePointer thisPtr, KSerializer ty_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number ty_value = ty_value_buf;; - return GetAccessors()->getMatrix2DAccessor()->translate(self, (const Opt_Number*)&tx_value, (const Opt_Number*)&ty_value); + return GetAccessors()->getMatrix2DAccessor()->translate(self, reinterpret_cast(&tx_value), reinterpret_cast(&ty_value)); } KOALA_INTEROP_DIRECT_3(Matrix2D_translate, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Matrix2D_scale(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -33005,7 +33005,7 @@ Ark_NativePointer impl_Matrix2D_scale(Ark_NativePointer thisPtr, KSerializerBuff sy_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number sy_value = sy_value_buf;; - return GetAccessors()->getMatrix2DAccessor()->scale(self, (const Opt_Number*)&sx_value, (const Opt_Number*)&sy_value); + return GetAccessors()->getMatrix2DAccessor()->scale(self, reinterpret_cast(&sx_value), reinterpret_cast(&sy_value)); } KOALA_INTEROP_DIRECT_3(Matrix2D_scale, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_Matrix2D_getScaleX(Ark_NativePointer thisPtr) { @@ -33033,7 +33033,7 @@ void impl_Matrix2D_setScaleX(Ark_NativePointer thisPtr, KSerializerBuffer thisAr scaleX_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number scaleX_value = scaleX_value_buf;; - GetAccessors()->getMatrix2DAccessor()->setScaleX(self, (const Opt_Number*)&scaleX_value); + GetAccessors()->getMatrix2DAccessor()->setScaleX(self, reinterpret_cast(&scaleX_value)); } KOALA_INTEROP_DIRECT_V3(Matrix2D_setScaleX, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_Matrix2D_getRotateY(Ark_NativePointer thisPtr) { @@ -33061,7 +33061,7 @@ void impl_Matrix2D_setRotateY(Ark_NativePointer thisPtr, KSerializerBuffer thisA rotateY_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number rotateY_value = rotateY_value_buf;; - GetAccessors()->getMatrix2DAccessor()->setRotateY(self, (const Opt_Number*)&rotateY_value); + GetAccessors()->getMatrix2DAccessor()->setRotateY(self, reinterpret_cast(&rotateY_value)); } KOALA_INTEROP_DIRECT_V3(Matrix2D_setRotateY, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_Matrix2D_getRotateX(Ark_NativePointer thisPtr) { @@ -33089,7 +33089,7 @@ void impl_Matrix2D_setRotateX(Ark_NativePointer thisPtr, KSerializerBuffer thisA rotateX_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number rotateX_value = rotateX_value_buf;; - GetAccessors()->getMatrix2DAccessor()->setRotateX(self, (const Opt_Number*)&rotateX_value); + GetAccessors()->getMatrix2DAccessor()->setRotateX(self, reinterpret_cast(&rotateX_value)); } KOALA_INTEROP_DIRECT_V3(Matrix2D_setRotateX, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_Matrix2D_getScaleY(Ark_NativePointer thisPtr) { @@ -33117,7 +33117,7 @@ void impl_Matrix2D_setScaleY(Ark_NativePointer thisPtr, KSerializerBuffer thisAr scaleY_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number scaleY_value = scaleY_value_buf;; - GetAccessors()->getMatrix2DAccessor()->setScaleY(self, (const Opt_Number*)&scaleY_value); + GetAccessors()->getMatrix2DAccessor()->setScaleY(self, reinterpret_cast(&scaleY_value)); } KOALA_INTEROP_DIRECT_V3(Matrix2D_setScaleY, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_Matrix2D_getTranslateX(Ark_NativePointer thisPtr) { @@ -33145,7 +33145,7 @@ void impl_Matrix2D_setTranslateX(Ark_NativePointer thisPtr, KSerializerBuffer th translateX_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number translateX_value = translateX_value_buf;; - GetAccessors()->getMatrix2DAccessor()->setTranslateX(self, (const Opt_Number*)&translateX_value); + GetAccessors()->getMatrix2DAccessor()->setTranslateX(self, reinterpret_cast(&translateX_value)); } KOALA_INTEROP_DIRECT_V3(Matrix2D_setTranslateX, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_Matrix2D_getTranslateY(Ark_NativePointer thisPtr) { @@ -33173,7 +33173,7 @@ void impl_Matrix2D_setTranslateY(Ark_NativePointer thisPtr, KSerializerBuffer th translateY_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number translateY_value = translateY_value_buf;; - GetAccessors()->getMatrix2DAccessor()->setTranslateY(self, (const Opt_Number*)&translateY_value); + GetAccessors()->getMatrix2DAccessor()->setTranslateY(self, reinterpret_cast(&translateY_value)); } KOALA_INTEROP_DIRECT_V3(Matrix2D_setTranslateY, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_matrix4_Matrix4Transit_ctor() { @@ -33203,14 +33203,14 @@ Ark_NativePointer impl_matrix4_Matrix4Transit_translate(Ark_NativePointer thisPt Ark_matrix4_Matrix4Transit self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_TranslateOptions options_value = TranslateOptions_serializer::read(thisDeserializer);; - return GetAccessors()->getMatrix4_Matrix4TransitAccessor()->translate(self, (const Ark_TranslateOptions*)&options_value); + return GetAccessors()->getMatrix4_Matrix4TransitAccessor()->translate(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_3(matrix4_Matrix4Transit_translate, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_matrix4_Matrix4Transit_scale(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_matrix4_Matrix4Transit self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_ScaleOptions options_value = ScaleOptions_serializer::read(thisDeserializer);; - return GetAccessors()->getMatrix4_Matrix4TransitAccessor()->scale(self, (const Ark_ScaleOptions*)&options_value); + return GetAccessors()->getMatrix4_Matrix4TransitAccessor()->scale(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_3(matrix4_Matrix4Transit_scale, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_matrix4_Matrix4Transit_skew(Ark_NativePointer thisPtr, KInteropNumber x, KInteropNumber y) { @@ -33222,7 +33222,7 @@ Ark_NativePointer impl_matrix4_Matrix4Transit_rotate(Ark_NativePointer thisPtr, Ark_matrix4_Matrix4Transit self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_RotateOptions options_value = RotateOptions_serializer::read(thisDeserializer);; - return GetAccessors()->getMatrix4_Matrix4TransitAccessor()->rotate(self, (const Ark_RotateOptions*)&options_value); + return GetAccessors()->getMatrix4_Matrix4TransitAccessor()->rotate(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_3(matrix4_Matrix4Transit_rotate, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_matrix4_Matrix4Transit_transformPoint(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -33232,7 +33232,7 @@ KInteropReturnBuffer impl_matrix4_Matrix4Transit_transformPoint(Ark_NativePointe options_value_buf.value0 = static_cast(thisDeserializer.readNumber()); options_value_buf.value1 = static_cast(thisDeserializer.readNumber()); Ark_matrix4_Matrix4TransformPoint options_value = options_value_buf;; - const auto &retValue = GetAccessors()->getMatrix4_Matrix4TransitAccessor()->transformPoint(self, (const Ark_matrix4_Matrix4TransformPoint*)&options_value); + const auto &retValue = GetAccessors()->getMatrix4_Matrix4TransitAccessor()->transformPoint(self, reinterpret_cast(&options_value)); SerializerBase _retSerializer {}; const auto retValue_0 = retValue.value0; _retSerializer.writeNumber(retValue_0); @@ -33245,7 +33245,7 @@ Ark_NativePointer impl_matrix4_Matrix4Transit_setPolyToPoly(Ark_NativePointer th Ark_matrix4_Matrix4Transit self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_matrix4_PolyToPolyOptions options_value = matrix4_PolyToPolyOptions_serializer::read(thisDeserializer);; - return GetAccessors()->getMatrix4_Matrix4TransitAccessor()->setPolyToPoly(self, (const Ark_matrix4_PolyToPolyOptions*)&options_value); + return GetAccessors()->getMatrix4_Matrix4TransitAccessor()->setPolyToPoly(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_3(matrix4_Matrix4Transit_setPolyToPoly, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Measurable_ctor() { @@ -33260,7 +33260,7 @@ KInteropReturnBuffer impl_Measurable_measure(Ark_NativePointer thisPtr, KSeriali Ark_Measurable self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_ConstraintSizeOptions constraint_value = ConstraintSizeOptions_serializer::read(thisDeserializer);; - const auto &retValue = GetAccessors()->getMeasurableAccessor()->measure(self, (const Ark_ConstraintSizeOptions*)&constraint_value); + const auto &retValue = GetAccessors()->getMeasurableAccessor()->measure(self, reinterpret_cast(&constraint_value)); SerializerBase _retSerializer {}; MeasureResult_serializer::write(_retSerializer, retValue); return _retSerializer.toReturnBuffer(); @@ -33408,7 +33408,7 @@ void impl_MouseEvent_setStopPropagation(Ark_NativePointer thisPtr, KSerializerBu Ark_MouseEvent self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Void stopPropagation_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))};; - GetAccessors()->getMouseEventAccessor()->setStopPropagation(self, (const Callback_Void*)&stopPropagation_value); + GetAccessors()->getMouseEventAccessor()->setStopPropagation(self, reinterpret_cast(&stopPropagation_value)); } KOALA_INTEROP_DIRECT_V3(MouseEvent_setStopPropagation, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_MouseEvent_getRawDeltaX(Ark_NativePointer thisPtr) { @@ -33478,7 +33478,7 @@ void impl_MouseEvent_setPressedButtons(Ark_NativePointer thisPtr, KSerializerBuf pressedButtons_value_buf.array[pressedButtons_value_buf_i] = static_cast(thisDeserializer.readInt32()); } Array_MouseButton pressedButtons_value = pressedButtons_value_buf;; - GetAccessors()->getMouseEventAccessor()->setPressedButtons(self, (const Array_MouseButton*)&pressedButtons_value); + GetAccessors()->getMouseEventAccessor()->setPressedButtons(self, reinterpret_cast(&pressedButtons_value)); } KOALA_INTEROP_DIRECT_V3(MouseEvent_setPressedButtons, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_MutableStyledString_ctor() { @@ -33508,14 +33508,14 @@ void impl_MutableStyledString_replaceStyle(Ark_NativePointer thisPtr, KSerialize Ark_MutableStyledString self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_SpanStyle spanStyle_value = SpanStyle_serializer::read(thisDeserializer);; - GetAccessors()->getMutableStyledStringAccessor()->replaceStyle(self, (const Ark_SpanStyle*)&spanStyle_value); + GetAccessors()->getMutableStyledStringAccessor()->replaceStyle(self, reinterpret_cast(&spanStyle_value)); } KOALA_INTEROP_DIRECT_V3(MutableStyledString_replaceStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MutableStyledString_setStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_MutableStyledString self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_SpanStyle spanStyle_value = SpanStyle_serializer::read(thisDeserializer);; - GetAccessors()->getMutableStyledStringAccessor()->setStyle(self, (const Ark_SpanStyle*)&spanStyle_value); + GetAccessors()->getMutableStyledStringAccessor()->setStyle(self, reinterpret_cast(&spanStyle_value)); } KOALA_INTEROP_DIRECT_V3(MutableStyledString_setStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_MutableStyledString_removeStyle(Ark_NativePointer thisPtr, KInteropNumber start, KInteropNumber length, Ark_Int32 styledKey) { @@ -33616,7 +33616,7 @@ KOALA_INTEROP_DIRECT_V2(NavExtender_setNavigationOptions, Ark_NativePointer, Ark void impl_NavExtender_setUpdateStackCallback(Ark_NativePointer peer, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); NavExtender_OnUpdateStack callback_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_NavExtender_OnUpdateStack)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_NavExtender_OnUpdateStack))))};; - GetAccessors()->getNavExtenderAccessor()->setUpdateStackCallback(static_cast(peer), (const NavExtender_OnUpdateStack*)&callback_value); + GetAccessors()->getNavExtenderAccessor()->setUpdateStackCallback(static_cast(peer), reinterpret_cast(&callback_value)); } KOALA_INTEROP_DIRECT_V3(NavExtender_setUpdateStackCallback, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavExtender_syncStack(Ark_NativePointer peer) { @@ -33634,13 +33634,13 @@ KOALA_INTEROP_DIRECT_V3(NavExtender_setNavDestinationNode, Ark_NativePointer, Ar void impl_NavExtender_pushPath(Ark_NativePointer pathStack, Ark_NativePointer info, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_NavigationOptions options_value = NavigationOptions_serializer::read(thisDeserializer);; - GetAccessors()->getNavExtenderAccessor()->pushPath(static_cast(pathStack), static_cast(info), (const Ark_NavigationOptions*)&options_value); + GetAccessors()->getNavExtenderAccessor()->pushPath(static_cast(pathStack), static_cast(info), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V4(NavExtender_pushPath, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavExtender_replacePath(Ark_NativePointer pathStack, Ark_NativePointer info, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_NavigationOptions options_value = NavigationOptions_serializer::read(thisDeserializer);; - GetAccessors()->getNavExtenderAccessor()->replacePath(static_cast(pathStack), static_cast(info), (const Ark_NavigationOptions*)&options_value); + GetAccessors()->getNavExtenderAccessor()->replacePath(static_cast(pathStack), static_cast(info), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V4(NavExtender_replacePath, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_String impl_NavExtender_pop(Ark_NativePointer pathStack, Ark_Boolean animated) { @@ -33650,7 +33650,7 @@ KOALA_INTEROP_2(NavExtender_pop, KStringPtr, Ark_NativePointer, Ark_Boolean) void impl_NavExtender_setOnPopCallback(Ark_NativePointer pathStack, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Callback_String_Void popCallback_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_String_Void))))};; - GetAccessors()->getNavExtenderAccessor()->setOnPopCallback(static_cast(pathStack), (const Callback_String_Void*)&popCallback_value); + GetAccessors()->getNavExtenderAccessor()->setOnPopCallback(static_cast(pathStack), reinterpret_cast(&popCallback_value)); } KOALA_INTEROP_DIRECT_V3(NavExtender_setOnPopCallback, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_String impl_NavExtender_getIdByIndex(Ark_NativePointer pathStack, Ark_Int32 index) { @@ -33701,7 +33701,7 @@ void impl_NavigationTransitionProxy_setFrom(Ark_NativePointer thisPtr, KSerializ Ark_NavigationTransitionProxy self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_NavContentInfo from_value = NavContentInfo_serializer::read(thisDeserializer);; - GetAccessors()->getNavigationTransitionProxyAccessor()->setFrom(self, (const Ark_NavContentInfo*)&from_value); + GetAccessors()->getNavigationTransitionProxyAccessor()->setFrom(self, reinterpret_cast(&from_value)); } KOALA_INTEROP_DIRECT_V3(NavigationTransitionProxy_setFrom, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_NavigationTransitionProxy_getTo(Ark_NativePointer thisPtr) { @@ -33716,7 +33716,7 @@ void impl_NavigationTransitionProxy_setTo(Ark_NativePointer thisPtr, KSerializer Ark_NavigationTransitionProxy self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_NavContentInfo to_value = NavContentInfo_serializer::read(thisDeserializer);; - GetAccessors()->getNavigationTransitionProxyAccessor()->setTo(self, (const Ark_NavContentInfo*)&to_value); + GetAccessors()->getNavigationTransitionProxyAccessor()->setTo(self, reinterpret_cast(&to_value)); } KOALA_INTEROP_DIRECT_V3(NavigationTransitionProxy_setTo, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_NavigationTransitionProxy_getIsInteractive(Ark_NativePointer thisPtr) { @@ -33758,7 +33758,7 @@ void impl_NavigationTransitionProxy_setCancelTransition(Ark_NativePointer thisPt Ark_NavigationTransitionProxy self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); VoidCallback cancelTransition_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_VoidCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_VoidCallback))))};; - GetAccessors()->getNavigationTransitionProxyAccessor()->setCancelTransition(self, (const VoidCallback*)&cancelTransition_value); + GetAccessors()->getNavigationTransitionProxyAccessor()->setCancelTransition(self, reinterpret_cast(&cancelTransition_value)); } KOALA_INTEROP_DIRECT_V3(NavigationTransitionProxy_setCancelTransition, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_NavigationTransitionProxy_getUpdateTransition(Ark_NativePointer thisPtr) { @@ -33781,7 +33781,7 @@ void impl_NavigationTransitionProxy_setUpdateTransition(Ark_NativePointer thisPt Ark_NavigationTransitionProxy self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); UpdateTransitionCallback updateTransition_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_UpdateTransitionCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_UpdateTransitionCallback))))};; - GetAccessors()->getNavigationTransitionProxyAccessor()->setUpdateTransition(self, (const UpdateTransitionCallback*)&updateTransition_value); + GetAccessors()->getNavigationTransitionProxyAccessor()->setUpdateTransition(self, reinterpret_cast(&updateTransition_value)); } KOALA_INTEROP_DIRECT_V3(NavigationTransitionProxy_setUpdateTransition, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_NavPathInfo_ctor(const KStringPtr& name, KSerializerBuffer thisArray, int32_t thisLength) { @@ -33810,7 +33810,7 @@ Ark_NativePointer impl_NavPathInfo_ctor(const KStringPtr& name, KSerializerBuffe isEntry_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean isEntry_value = isEntry_value_buf;; - return GetAccessors()->getNavPathInfoAccessor()->ctor((const Ark_String*) (&name), (const Opt_Object*)¶m_value, (const Opt_Callback_PopInfo_Void*)&onPop_value, (const Opt_Boolean*)&isEntry_value); + return GetAccessors()->getNavPathInfoAccessor()->ctor((const Ark_String*) (&name), reinterpret_cast(¶m_value), reinterpret_cast(&onPop_value), reinterpret_cast(&isEntry_value)); } KOALA_INTEROP_3(NavPathInfo_ctor, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) Ark_NativePointer impl_NavPathInfo_getFinalizer() { @@ -33852,7 +33852,7 @@ void impl_NavPathInfo_setParam(Ark_NativePointer thisPtr, KSerializerBuffer this param_value_buf.value = static_cast(thisDeserializer.readObject()); } Opt_Object param_value = param_value_buf;; - GetAccessors()->getNavPathInfoAccessor()->setParam(self, (const Opt_Object*)¶m_value); + GetAccessors()->getNavPathInfoAccessor()->setParam(self, reinterpret_cast(¶m_value)); } KOALA_INTEROP_DIRECT_V3(NavPathInfo_setParam, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_NavPathInfo_getOnPop(Ark_NativePointer thisPtr) { @@ -33882,7 +33882,7 @@ void impl_NavPathInfo_setOnPop(Ark_NativePointer thisPtr, KSerializerBuffer this onPop_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_PopInfo_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_PopInfo_Void))))}; } Opt_Callback_PopInfo_Void onPop_value = onPop_value_buf;; - GetAccessors()->getNavPathInfoAccessor()->setOnPop(self, (const Opt_Callback_PopInfo_Void*)&onPop_value); + GetAccessors()->getNavPathInfoAccessor()->setOnPop(self, reinterpret_cast(&onPop_value)); } KOALA_INTEROP_DIRECT_V3(NavPathInfo_setOnPop, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_NavPathInfo_getIsEntry(Ark_NativePointer thisPtr) { @@ -33910,7 +33910,7 @@ void impl_NavPathInfo_setIsEntry(Ark_NativePointer thisPtr, KSerializerBuffer th isEntry_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean isEntry_value = isEntry_value_buf;; - GetAccessors()->getNavPathInfoAccessor()->setIsEntry(self, (const Opt_Boolean*)&isEntry_value); + GetAccessors()->getNavPathInfoAccessor()->setIsEntry(self, reinterpret_cast(&isEntry_value)); } KOALA_INTEROP_DIRECT_V3(NavPathInfo_setIsEntry, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_NavPathInfo_getNavDestinationId(Ark_NativePointer thisPtr) { @@ -33938,7 +33938,7 @@ void impl_NavPathInfo_setNavDestinationId(Ark_NativePointer thisPtr, KSerializer navDestinationId_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String navDestinationId_value = navDestinationId_value_buf;; - GetAccessors()->getNavPathInfoAccessor()->setNavDestinationId(self, (const Opt_String*)&navDestinationId_value); + GetAccessors()->getNavPathInfoAccessor()->setNavDestinationId(self, reinterpret_cast(&navDestinationId_value)); } KOALA_INTEROP_DIRECT_V3(NavPathInfo_setNavDestinationId, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_NavPathStack_ctor() { @@ -33960,7 +33960,7 @@ void impl_NavPathStack_pushPath0(Ark_NativePointer thisPtr, Ark_NativePointer in animated_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean animated_value = animated_value_buf;; - GetAccessors()->getNavPathStackAccessor()->pushPath0(self, static_cast(info), (const Opt_Boolean*)&animated_value); + GetAccessors()->getNavPathStackAccessor()->pushPath0(self, static_cast(info), reinterpret_cast(&animated_value)); } KOALA_INTEROP_DIRECT_V4(NavPathStack_pushPath0, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavPathStack_pushPath1(Ark_NativePointer thisPtr, Ark_NativePointer info, KSerializerBuffer thisArray, int32_t thisLength) { @@ -33974,7 +33974,7 @@ void impl_NavPathStack_pushPath1(Ark_NativePointer thisPtr, Ark_NativePointer in options_value_buf.value = NavigationOptions_serializer::read(thisDeserializer); } Opt_NavigationOptions options_value = options_value_buf;; - GetAccessors()->getNavPathStackAccessor()->pushPath1(self, static_cast(info), (const Opt_NavigationOptions*)&options_value); + GetAccessors()->getNavPathStackAccessor()->pushPath1(self, static_cast(info), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V4(NavPathStack_pushPath1, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavPathStack_pushDestination0(KVMContext vmContext, Ark_NativePointer thisPtr, Ark_NativePointer info, KSerializerBuffer thisArray, int32_t thisLength) { @@ -33989,7 +33989,7 @@ void impl_NavPathStack_pushDestination0(KVMContext vmContext, Ark_NativePointer } Opt_Boolean animated_value = animated_value_buf;; Callback_Opt_Array_String_Void outputArgumentForReturningPromise_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Opt_Array_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Opt_Array_String_Void))))};; - GetAccessors()->getNavPathStackAccessor()->pushDestination0(reinterpret_cast(vmContext), GetAsyncWorker(), self, static_cast(info), (const Opt_Boolean*)&animated_value, (const Callback_Opt_Array_String_Void*)&outputArgumentForReturningPromise_value); + GetAccessors()->getNavPathStackAccessor()->pushDestination0(reinterpret_cast(vmContext), GetAsyncWorker(), self, static_cast(info), reinterpret_cast(&animated_value), reinterpret_cast(&outputArgumentForReturningPromise_value)); } KOALA_INTEROP_CTX_V4(NavPathStack_pushDestination0, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavPathStack_pushDestination1(KVMContext vmContext, Ark_NativePointer thisPtr, Ark_NativePointer info, KSerializerBuffer thisArray, int32_t thisLength) { @@ -34004,7 +34004,7 @@ void impl_NavPathStack_pushDestination1(KVMContext vmContext, Ark_NativePointer } Opt_NavigationOptions options_value = options_value_buf;; Callback_Opt_Array_String_Void outputArgumentForReturningPromise_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Opt_Array_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Opt_Array_String_Void))))};; - GetAccessors()->getNavPathStackAccessor()->pushDestination1(reinterpret_cast(vmContext), GetAsyncWorker(), self, static_cast(info), (const Opt_NavigationOptions*)&options_value, (const Callback_Opt_Array_String_Void*)&outputArgumentForReturningPromise_value); + GetAccessors()->getNavPathStackAccessor()->pushDestination1(reinterpret_cast(vmContext), GetAsyncWorker(), self, static_cast(info), reinterpret_cast(&options_value), reinterpret_cast(&outputArgumentForReturningPromise_value)); } KOALA_INTEROP_CTX_V4(NavPathStack_pushDestination1, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavPathStack_pushPathByName0(Ark_NativePointer thisPtr, const KStringPtr& name, KSerializerBuffer thisArray, int32_t thisLength) { @@ -34026,7 +34026,7 @@ void impl_NavPathStack_pushPathByName0(Ark_NativePointer thisPtr, const KStringP animated_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean animated_value = animated_value_buf;; - GetAccessors()->getNavPathStackAccessor()->pushPathByName0(self, (const Ark_String*) (&name), (const Opt_Object*)¶m_value, (const Opt_Boolean*)&animated_value); + GetAccessors()->getNavPathStackAccessor()->pushPathByName0(self, (const Ark_String*) (&name), reinterpret_cast(¶m_value), reinterpret_cast(&animated_value)); } KOALA_INTEROP_V4(NavPathStack_pushPathByName0, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) void impl_NavPathStack_pushPathByName1(Ark_NativePointer thisPtr, const KStringPtr& name, KSerializerBuffer thisArray, int32_t thisLength) { @@ -34042,7 +34042,7 @@ void impl_NavPathStack_pushPathByName1(Ark_NativePointer thisPtr, const KStringP animated_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean animated_value = animated_value_buf;; - GetAccessors()->getNavPathStackAccessor()->pushPathByName1(self, (const Ark_String*) (&name), (const Ark_Object*)¶m_value, (const Callback_PopInfo_Void*)&onPop_value, (const Opt_Boolean*)&animated_value); + GetAccessors()->getNavPathStackAccessor()->pushPathByName1(self, (const Ark_String*) (&name), reinterpret_cast(¶m_value), reinterpret_cast(&onPop_value), reinterpret_cast(&animated_value)); } KOALA_INTEROP_V4(NavPathStack_pushPathByName1, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) void impl_NavPathStack_pushDestinationByName0(KVMContext vmContext, Ark_NativePointer thisPtr, const KStringPtr& name, KSerializerBuffer thisArray, int32_t thisLength) { @@ -34058,7 +34058,7 @@ void impl_NavPathStack_pushDestinationByName0(KVMContext vmContext, Ark_NativePo } Opt_Boolean animated_value = animated_value_buf;; Callback_Opt_Array_String_Void outputArgumentForReturningPromise_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Opt_Array_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Opt_Array_String_Void))))};; - GetAccessors()->getNavPathStackAccessor()->pushDestinationByName0(reinterpret_cast(vmContext), GetAsyncWorker(), self, (const Ark_String*) (&name), (const Ark_Object*)¶m_value, (const Opt_Boolean*)&animated_value, (const Callback_Opt_Array_String_Void*)&outputArgumentForReturningPromise_value); + GetAccessors()->getNavPathStackAccessor()->pushDestinationByName0(reinterpret_cast(vmContext), GetAsyncWorker(), self, (const Ark_String*) (&name), reinterpret_cast(¶m_value), reinterpret_cast(&animated_value), reinterpret_cast(&outputArgumentForReturningPromise_value)); } KOALA_INTEROP_CTX_V4(NavPathStack_pushDestinationByName0, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) void impl_NavPathStack_pushDestinationByName1(KVMContext vmContext, Ark_NativePointer thisPtr, const KStringPtr& name, KSerializerBuffer thisArray, int32_t thisLength) { @@ -34075,7 +34075,7 @@ void impl_NavPathStack_pushDestinationByName1(KVMContext vmContext, Ark_NativePo } Opt_Boolean animated_value = animated_value_buf;; Callback_Opt_Array_String_Void outputArgumentForReturningPromise_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Opt_Array_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Opt_Array_String_Void))))};; - GetAccessors()->getNavPathStackAccessor()->pushDestinationByName1(reinterpret_cast(vmContext), GetAsyncWorker(), self, (const Ark_String*) (&name), (const Ark_Object*)¶m_value, (const Callback_PopInfo_Void*)&onPop_value, (const Opt_Boolean*)&animated_value, (const Callback_Opt_Array_String_Void*)&outputArgumentForReturningPromise_value); + GetAccessors()->getNavPathStackAccessor()->pushDestinationByName1(reinterpret_cast(vmContext), GetAsyncWorker(), self, (const Ark_String*) (&name), reinterpret_cast(¶m_value), reinterpret_cast(&onPop_value), reinterpret_cast(&animated_value), reinterpret_cast(&outputArgumentForReturningPromise_value)); } KOALA_INTEROP_CTX_V4(NavPathStack_pushDestinationByName1, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) void impl_NavPathStack_replacePath0(Ark_NativePointer thisPtr, Ark_NativePointer info, KSerializerBuffer thisArray, int32_t thisLength) { @@ -34089,7 +34089,7 @@ void impl_NavPathStack_replacePath0(Ark_NativePointer thisPtr, Ark_NativePointer animated_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean animated_value = animated_value_buf;; - GetAccessors()->getNavPathStackAccessor()->replacePath0(self, static_cast(info), (const Opt_Boolean*)&animated_value); + GetAccessors()->getNavPathStackAccessor()->replacePath0(self, static_cast(info), reinterpret_cast(&animated_value)); } KOALA_INTEROP_DIRECT_V4(NavPathStack_replacePath0, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavPathStack_replacePath1(Ark_NativePointer thisPtr, Ark_NativePointer info, KSerializerBuffer thisArray, int32_t thisLength) { @@ -34103,7 +34103,7 @@ void impl_NavPathStack_replacePath1(Ark_NativePointer thisPtr, Ark_NativePointer options_value_buf.value = NavigationOptions_serializer::read(thisDeserializer); } Opt_NavigationOptions options_value = options_value_buf;; - GetAccessors()->getNavPathStackAccessor()->replacePath1(self, static_cast(info), (const Opt_NavigationOptions*)&options_value); + GetAccessors()->getNavPathStackAccessor()->replacePath1(self, static_cast(info), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V4(NavPathStack_replacePath1, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavPathStack_replaceDestination(KVMContext vmContext, Ark_NativePointer thisPtr, Ark_NativePointer info, KSerializerBuffer thisArray, int32_t thisLength) { @@ -34118,7 +34118,7 @@ void impl_NavPathStack_replaceDestination(KVMContext vmContext, Ark_NativePointe } Opt_NavigationOptions options_value = options_value_buf;; Callback_Opt_Array_String_Void outputArgumentForReturningPromise_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Opt_Array_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Opt_Array_String_Void))))};; - GetAccessors()->getNavPathStackAccessor()->replaceDestination(reinterpret_cast(vmContext), GetAsyncWorker(), self, static_cast(info), (const Opt_NavigationOptions*)&options_value, (const Callback_Opt_Array_String_Void*)&outputArgumentForReturningPromise_value); + GetAccessors()->getNavPathStackAccessor()->replaceDestination(reinterpret_cast(vmContext), GetAsyncWorker(), self, static_cast(info), reinterpret_cast(&options_value), reinterpret_cast(&outputArgumentForReturningPromise_value)); } KOALA_INTEROP_CTX_V4(NavPathStack_replaceDestination, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_NavPathStack_replacePathByName(Ark_NativePointer thisPtr, const KStringPtr& name, KSerializerBuffer thisArray, int32_t thisLength) { @@ -34133,7 +34133,7 @@ void impl_NavPathStack_replacePathByName(Ark_NativePointer thisPtr, const KStrin animated_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean animated_value = animated_value_buf;; - GetAccessors()->getNavPathStackAccessor()->replacePathByName(self, (const Ark_String*) (&name), (const Ark_Object*)¶m_value, (const Opt_Boolean*)&animated_value); + GetAccessors()->getNavPathStackAccessor()->replacePathByName(self, (const Ark_String*) (&name), reinterpret_cast(¶m_value), reinterpret_cast(&animated_value)); } KOALA_INTEROP_V4(NavPathStack_replacePathByName, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) Ark_Number impl_NavPathStack_removeByIndexes(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -34147,7 +34147,7 @@ Ark_Number impl_NavPathStack_removeByIndexes(Ark_NativePointer thisPtr, KSeriali indexes_value_buf.array[indexes_value_buf_i] = static_cast(thisDeserializer.readNumber()); } Array_Number indexes_value = indexes_value_buf;; - return GetAccessors()->getNavPathStackAccessor()->removeByIndexes(self, (const Array_Number*)&indexes_value); + return GetAccessors()->getNavPathStackAccessor()->removeByIndexes(self, reinterpret_cast(&indexes_value)); } KOALA_INTEROP_DIRECT_3(NavPathStack_removeByIndexes, KInteropNumber, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_Number impl_NavPathStack_removeByName(Ark_NativePointer thisPtr, const KStringPtr& name) { @@ -34171,7 +34171,7 @@ KInteropReturnBuffer impl_NavPathStack_pop0(Ark_NativePointer thisPtr, KSerializ animated_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean animated_value = animated_value_buf;; - const auto &retValue = GetAccessors()->getNavPathStackAccessor()->pop0(self, (const Opt_Boolean*)&animated_value); + const auto &retValue = GetAccessors()->getNavPathStackAccessor()->pop0(self, reinterpret_cast(&animated_value)); SerializerBase _retSerializer {}; Ark_Int32 retValue_type = INTEROP_RUNTIME_UNDEFINED; retValue_type = runtimeType(retValue); @@ -34195,7 +34195,7 @@ KInteropReturnBuffer impl_NavPathStack_pop1(Ark_NativePointer thisPtr, KSerializ animated_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean animated_value = animated_value_buf;; - const auto &retValue = GetAccessors()->getNavPathStackAccessor()->pop1(self, (const Ark_Object*)&result_value, (const Opt_Boolean*)&animated_value); + const auto &retValue = GetAccessors()->getNavPathStackAccessor()->pop1(self, reinterpret_cast(&result_value), reinterpret_cast(&animated_value)); SerializerBase _retSerializer {}; Ark_Int32 retValue_type = INTEROP_RUNTIME_UNDEFINED; retValue_type = runtimeType(retValue); @@ -34218,7 +34218,7 @@ Ark_Number impl_NavPathStack_popToName0(Ark_NativePointer thisPtr, const KString animated_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean animated_value = animated_value_buf;; - return GetAccessors()->getNavPathStackAccessor()->popToName0(self, (const Ark_String*) (&name), (const Opt_Boolean*)&animated_value); + return GetAccessors()->getNavPathStackAccessor()->popToName0(self, (const Ark_String*) (&name), reinterpret_cast(&animated_value)); } KOALA_INTEROP_4(NavPathStack_popToName0, KInteropNumber, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) Ark_Number impl_NavPathStack_popToName1(Ark_NativePointer thisPtr, const KStringPtr& name, KSerializerBuffer thisArray, int32_t thisLength) { @@ -34233,7 +34233,7 @@ Ark_Number impl_NavPathStack_popToName1(Ark_NativePointer thisPtr, const KString animated_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean animated_value = animated_value_buf;; - return GetAccessors()->getNavPathStackAccessor()->popToName1(self, (const Ark_String*) (&name), (const Ark_Object*)&result_value, (const Opt_Boolean*)&animated_value); + return GetAccessors()->getNavPathStackAccessor()->popToName1(self, (const Ark_String*) (&name), reinterpret_cast(&result_value), reinterpret_cast(&animated_value)); } KOALA_INTEROP_4(NavPathStack_popToName1, KInteropNumber, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) void impl_NavPathStack_popToIndex0(Ark_NativePointer thisPtr, KInteropNumber index, KSerializerBuffer thisArray, int32_t thisLength) { @@ -34247,7 +34247,7 @@ void impl_NavPathStack_popToIndex0(Ark_NativePointer thisPtr, KInteropNumber ind animated_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean animated_value = animated_value_buf;; - GetAccessors()->getNavPathStackAccessor()->popToIndex0(self, (const Ark_Number*) (&index), (const Opt_Boolean*)&animated_value); + GetAccessors()->getNavPathStackAccessor()->popToIndex0(self, (const Ark_Number*) (&index), reinterpret_cast(&animated_value)); } KOALA_INTEROP_DIRECT_V4(NavPathStack_popToIndex0, Ark_NativePointer, KInteropNumber, KSerializerBuffer, int32_t) void impl_NavPathStack_popToIndex1(Ark_NativePointer thisPtr, KInteropNumber index, KSerializerBuffer thisArray, int32_t thisLength) { @@ -34262,7 +34262,7 @@ void impl_NavPathStack_popToIndex1(Ark_NativePointer thisPtr, KInteropNumber ind animated_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean animated_value = animated_value_buf;; - GetAccessors()->getNavPathStackAccessor()->popToIndex1(self, (const Ark_Number*) (&index), (const Ark_Object*)&result_value, (const Opt_Boolean*)&animated_value); + GetAccessors()->getNavPathStackAccessor()->popToIndex1(self, (const Ark_Number*) (&index), reinterpret_cast(&result_value), reinterpret_cast(&animated_value)); } KOALA_INTEROP_DIRECT_V4(NavPathStack_popToIndex1, Ark_NativePointer, KInteropNumber, KSerializerBuffer, int32_t) Ark_Number impl_NavPathStack_moveToTop(Ark_NativePointer thisPtr, const KStringPtr& name, KSerializerBuffer thisArray, int32_t thisLength) { @@ -34276,7 +34276,7 @@ Ark_Number impl_NavPathStack_moveToTop(Ark_NativePointer thisPtr, const KStringP animated_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean animated_value = animated_value_buf;; - return GetAccessors()->getNavPathStackAccessor()->moveToTop(self, (const Ark_String*) (&name), (const Opt_Boolean*)&animated_value); + return GetAccessors()->getNavPathStackAccessor()->moveToTop(self, (const Ark_String*) (&name), reinterpret_cast(&animated_value)); } KOALA_INTEROP_4(NavPathStack_moveToTop, KInteropNumber, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) void impl_NavPathStack_moveIndexToTop(Ark_NativePointer thisPtr, KInteropNumber index, KSerializerBuffer thisArray, int32_t thisLength) { @@ -34290,7 +34290,7 @@ void impl_NavPathStack_moveIndexToTop(Ark_NativePointer thisPtr, KInteropNumber animated_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean animated_value = animated_value_buf;; - GetAccessors()->getNavPathStackAccessor()->moveIndexToTop(self, (const Ark_Number*) (&index), (const Opt_Boolean*)&animated_value); + GetAccessors()->getNavPathStackAccessor()->moveIndexToTop(self, (const Ark_Number*) (&index), reinterpret_cast(&animated_value)); } KOALA_INTEROP_DIRECT_V4(NavPathStack_moveIndexToTop, Ark_NativePointer, KInteropNumber, KSerializerBuffer, int32_t) void impl_NavPathStack_clear(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -34304,7 +34304,7 @@ void impl_NavPathStack_clear(Ark_NativePointer thisPtr, KSerializerBuffer thisAr animated_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean animated_value = animated_value_buf;; - GetAccessors()->getNavPathStackAccessor()->clear(self, (const Opt_Boolean*)&animated_value); + GetAccessors()->getNavPathStackAccessor()->clear(self, reinterpret_cast(&animated_value)); } KOALA_INTEROP_DIRECT_V3(NavPathStack_clear, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_NavPathStack_getAllPathName(Ark_NativePointer thisPtr) { @@ -34391,7 +34391,7 @@ void impl_NavPathStack_setInterception(Ark_NativePointer thisPtr, KSerializerBuf Ark_NavPathStack self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_NavigationInterception interception_value = NavigationInterception_serializer::read(thisDeserializer);; - GetAccessors()->getNavPathStackAccessor()->setInterception(self, (const Ark_NavigationInterception*)&interception_value); + GetAccessors()->getNavPathStackAccessor()->setInterception(self, reinterpret_cast(&interception_value)); } KOALA_INTEROP_DIRECT_V3(NavPathStack_setInterception, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_NavPathStack_getPathStack(Ark_NativePointer thisPtr) { @@ -34425,7 +34425,7 @@ void impl_NavPathStack_setPathStack(Ark_NativePointer thisPtr, KSerializerBuffer animated_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean animated_value = animated_value_buf;; - GetAccessors()->getNavPathStackAccessor()->setPathStack(self, (const Array_NavPathInfo*)&pathStack_value, (const Opt_Boolean*)&animated_value); + GetAccessors()->getNavPathStackAccessor()->setPathStack(self, reinterpret_cast(&pathStack_value), reinterpret_cast(&animated_value)); } KOALA_INTEROP_DIRECT_V3(NavPathStack_setPathStack, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_NodeContent_ctor() { @@ -34456,7 +34456,7 @@ Ark_NativePointer impl_OffscreenCanvas_ctor(KInteropNumber width, KInteropNumber unit_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_LengthMetricsUnit unit_value = unit_value_buf;; - return GetAccessors()->getOffscreenCanvasAccessor()->ctor((const Ark_Number*) (&width), (const Ark_Number*) (&height), (const Opt_LengthMetricsUnit*)&unit_value); + return GetAccessors()->getOffscreenCanvasAccessor()->ctor((const Ark_Number*) (&width), (const Ark_Number*) (&height), reinterpret_cast(&unit_value)); } KOALA_INTEROP_DIRECT_4(OffscreenCanvas_ctor, Ark_NativePointer, KInteropNumber, KInteropNumber, KSerializerBuffer, int32_t) Ark_NativePointer impl_OffscreenCanvas_getFinalizer() { @@ -34479,7 +34479,7 @@ Ark_NativePointer impl_OffscreenCanvas_getContext2d(Ark_NativePointer thisPtr, K options_value_buf.value = static_cast(RenderingContextSettings_serializer::read(thisDeserializer)); } Opt_RenderingContextSettings options_value = options_value_buf;; - return GetAccessors()->getOffscreenCanvasAccessor()->getContext2d(self, (const Opt_RenderingContextSettings*)&options_value); + return GetAccessors()->getOffscreenCanvasAccessor()->getContext2d(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_3(OffscreenCanvas_getContext2d, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_Number impl_OffscreenCanvas_getHeight(Ark_NativePointer thisPtr) { @@ -34520,7 +34520,7 @@ Ark_NativePointer impl_OffscreenCanvasRenderingContext2D_ctor(KInteropNumber wid unit_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_LengthMetricsUnit unit_value = unit_value_buf;; - return GetAccessors()->getOffscreenCanvasRenderingContext2DAccessor()->ctor((const Ark_Number*) (&width), (const Ark_Number*) (&height), (const Opt_RenderingContextSettings*)&settings_value, (const Opt_LengthMetricsUnit*)&unit_value); + return GetAccessors()->getOffscreenCanvasRenderingContext2DAccessor()->ctor((const Ark_Number*) (&width), (const Ark_Number*) (&height), reinterpret_cast(&settings_value), reinterpret_cast(&unit_value)); } KOALA_INTEROP_DIRECT_4(OffscreenCanvasRenderingContext2D_ctor, Ark_NativePointer, KInteropNumber, KInteropNumber, KSerializerBuffer, int32_t) Ark_NativePointer impl_OffscreenCanvasRenderingContext2D_getFinalizer() { @@ -34546,7 +34546,7 @@ Ark_String impl_OffscreenCanvasRenderingContext2D_toDataURL(Ark_NativePointer th quality_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number quality_value = quality_value_buf;; - return GetAccessors()->getOffscreenCanvasRenderingContext2DAccessor()->toDataURL(self, (const Opt_String*)&type_value, (const Opt_Number*)&quality_value); + return GetAccessors()->getOffscreenCanvasRenderingContext2DAccessor()->toDataURL(self, reinterpret_cast(&type_value), reinterpret_cast(&quality_value)); } KOALA_INTEROP_3(OffscreenCanvasRenderingContext2D_toDataURL, KStringPtr, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_OffscreenCanvasRenderingContext2D_transferToImageBitmap(Ark_NativePointer thisPtr) { @@ -34593,7 +34593,7 @@ void impl_PageLifeCycle_onNewParam(Ark_NativePointer thisPtr, KSerializerBuffer param_value_buf.value = static_cast(thisDeserializer.readObject()); } Opt_Object param_value = param_value_buf;; - GetAccessors()->getPageLifeCycleAccessor()->onNewParam(self, (const Opt_Object*)¶m_value); + GetAccessors()->getPageLifeCycleAccessor()->onNewParam(self, reinterpret_cast(¶m_value)); } KOALA_INTEROP_DIRECT_V3(PageLifeCycle_onNewParam, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_PanGestureEvent_ctor() { @@ -34671,7 +34671,7 @@ Ark_NativePointer impl_PanGestureInterface_ctor(KSerializerBuffer thisArray, int INTEROP_FATAL("One of the branches for value_value_buf has to be chosen through deserialisation."); } Ark_Union_PanGestureInterface_Invoke_Literal_PanGestureOptions value_value = static_cast(value_value_buf);; - return GetAccessors()->getPanGestureInterfaceAccessor()->ctor((const Ark_Union_PanGestureInterface_Invoke_Literal_PanGestureOptions*)&value_value); + return GetAccessors()->getPanGestureInterfaceAccessor()->ctor(reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_2(PanGestureInterface_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_PanGestureInterface_getFinalizer() { @@ -34682,35 +34682,35 @@ Ark_NativePointer impl_PanGestureInterface_onActionStart(Ark_NativePointer thisP Ark_PanGestureInterface self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_GestureEvent_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_GestureEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_GestureEvent_Void))))};; - return GetAccessors()->getPanGestureInterfaceAccessor()->onActionStart(self, (const Callback_GestureEvent_Void*)&event_value); + return GetAccessors()->getPanGestureInterfaceAccessor()->onActionStart(self, reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_3(PanGestureInterface_onActionStart, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_PanGestureInterface_onActionUpdate(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_PanGestureInterface self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_GestureEvent_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_GestureEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_GestureEvent_Void))))};; - return GetAccessors()->getPanGestureInterfaceAccessor()->onActionUpdate(self, (const Callback_GestureEvent_Void*)&event_value); + return GetAccessors()->getPanGestureInterfaceAccessor()->onActionUpdate(self, reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_3(PanGestureInterface_onActionUpdate, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_PanGestureInterface_onActionEnd(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_PanGestureInterface self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_GestureEvent_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_GestureEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_GestureEvent_Void))))};; - return GetAccessors()->getPanGestureInterfaceAccessor()->onActionEnd(self, (const Callback_GestureEvent_Void*)&event_value); + return GetAccessors()->getPanGestureInterfaceAccessor()->onActionEnd(self, reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_3(PanGestureInterface_onActionEnd, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_PanGestureInterface_onActionCancel0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_PanGestureInterface self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))};; - return GetAccessors()->getPanGestureInterfaceAccessor()->onActionCancel0(self, (const Callback_Void*)&event_value); + return GetAccessors()->getPanGestureInterfaceAccessor()->onActionCancel0(self, reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_3(PanGestureInterface_onActionCancel0, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_PanGestureInterface_onActionCancel1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_PanGestureInterface self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_GestureEvent_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_GestureEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_GestureEvent_Void))))};; - return GetAccessors()->getPanGestureInterfaceAccessor()->onActionCancel1(self, (const Callback_GestureEvent_Void*)&event_value); + return GetAccessors()->getPanGestureInterfaceAccessor()->onActionCancel1(self, reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_3(PanGestureInterface_onActionCancel1, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_PanGestureOptions_ctor(KSerializerBuffer thisArray, int32_t thisLength) { @@ -34723,7 +34723,7 @@ Ark_NativePointer impl_PanGestureOptions_ctor(KSerializerBuffer thisArray, int32 value_value_buf.value = PanGestureHandlerOptions_serializer::read(thisDeserializer); } Opt_PanGestureHandlerOptions value_value = value_value_buf;; - return GetAccessors()->getPanGestureOptionsAccessor()->ctor((const Opt_PanGestureHandlerOptions*)&value_value); + return GetAccessors()->getPanGestureOptionsAccessor()->ctor(reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_2(PanGestureOptions_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_PanGestureOptions_getFinalizer() { @@ -34778,7 +34778,7 @@ Ark_NativePointer impl_ParagraphStyle_ctor(KSerializerBuffer thisArray, int32_t value_value_buf.value = ParagraphStyleInterface_serializer::read(thisDeserializer); } Opt_ParagraphStyleInterface value_value = value_value_buf;; - return GetAccessors()->getParagraphStyleAccessor()->ctor((const Opt_ParagraphStyleInterface*)&value_value); + return GetAccessors()->getParagraphStyleAccessor()->ctor(reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_2(ParagraphStyle_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_ParagraphStyle_getFinalizer() { @@ -34933,7 +34933,7 @@ void impl_Path2D_addPath(Ark_NativePointer thisPtr, Ark_NativePointer path, KSer transform_value_buf.value = static_cast(Matrix2D_serializer::read(thisDeserializer)); } Opt_Matrix2D transform_value = transform_value_buf;; - GetAccessors()->getPath2DAccessor()->addPath(self, static_cast(path), (const Opt_Matrix2D*)&transform_value); + GetAccessors()->getPath2DAccessor()->addPath(self, static_cast(path), reinterpret_cast(&transform_value)); } KOALA_INTEROP_DIRECT_V4(Path2D_addPath, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_PathShape_ctor(KSerializerBuffer thisArray, int32_t thisLength) { @@ -34946,7 +34946,7 @@ Ark_NativePointer impl_PathShape_ctor(KSerializerBuffer thisArray, int32_t thisL options_value_buf.value = PathShapeOptions_serializer::read(thisDeserializer); } Opt_PathShapeOptions options_value = options_value_buf;; - return GetAccessors()->getPathShapeAccessor()->ctor((const Opt_PathShapeOptions*)&options_value); + return GetAccessors()->getPathShapeAccessor()->ctor(reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_2(PathShape_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_PathShape_getFinalizer() { @@ -34957,7 +34957,7 @@ Ark_NativePointer impl_PathShape_offset(Ark_NativePointer thisPtr, KSerializerBu Ark_PathShape self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Position offset_value = Position_serializer::read(thisDeserializer);; - return GetAccessors()->getPathShapeAccessor()->offset(self, (const Ark_Position*)&offset_value); + return GetAccessors()->getPathShapeAccessor()->offset(self, reinterpret_cast(&offset_value)); } KOALA_INTEROP_DIRECT_3(PathShape_offset, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_PathShape_fill(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -34986,14 +34986,14 @@ Ark_NativePointer impl_PathShape_fill(Ark_NativePointer thisPtr, KSerializerBuff INTEROP_FATAL("One of the branches for color_value_buf has to be chosen through deserialisation."); } Ark_ResourceColor color_value = static_cast(color_value_buf);; - return GetAccessors()->getPathShapeAccessor()->fill(self, (const Ark_ResourceColor*)&color_value); + return GetAccessors()->getPathShapeAccessor()->fill(self, reinterpret_cast(&color_value)); } KOALA_INTEROP_DIRECT_3(PathShape_fill, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_PathShape_position(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_PathShape self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Position position_value = Position_serializer::read(thisDeserializer);; - return GetAccessors()->getPathShapeAccessor()->position(self, (const Ark_Position*)&position_value); + return GetAccessors()->getPathShapeAccessor()->position(self, reinterpret_cast(&position_value)); } KOALA_INTEROP_DIRECT_3(PathShape_position, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_PathShape_commands(Ark_NativePointer thisPtr, const KStringPtr& commands) { @@ -35060,7 +35060,7 @@ KOALA_INTEROP_DIRECT_V2(PinchGestureEvent_setPinchCenterY, Ark_NativePointer, KI Ark_NativePointer impl_PinchGestureInterface_ctor(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_PinchGestureInterface_Invoke_Literal value_value = PinchGestureInterface_Invoke_Literal_serializer::read(thisDeserializer);; - return GetAccessors()->getPinchGestureInterfaceAccessor()->ctor((const Ark_PinchGestureInterface_Invoke_Literal*)&value_value); + return GetAccessors()->getPinchGestureInterfaceAccessor()->ctor(reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_2(PinchGestureInterface_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_PinchGestureInterface_getFinalizer() { @@ -35071,35 +35071,35 @@ Ark_NativePointer impl_PinchGestureInterface_onActionStart(Ark_NativePointer thi Ark_PinchGestureInterface self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_GestureEvent_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_GestureEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_GestureEvent_Void))))};; - return GetAccessors()->getPinchGestureInterfaceAccessor()->onActionStart(self, (const Callback_GestureEvent_Void*)&event_value); + return GetAccessors()->getPinchGestureInterfaceAccessor()->onActionStart(self, reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_3(PinchGestureInterface_onActionStart, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_PinchGestureInterface_onActionUpdate(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_PinchGestureInterface self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_GestureEvent_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_GestureEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_GestureEvent_Void))))};; - return GetAccessors()->getPinchGestureInterfaceAccessor()->onActionUpdate(self, (const Callback_GestureEvent_Void*)&event_value); + return GetAccessors()->getPinchGestureInterfaceAccessor()->onActionUpdate(self, reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_3(PinchGestureInterface_onActionUpdate, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_PinchGestureInterface_onActionEnd(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_PinchGestureInterface self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_GestureEvent_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_GestureEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_GestureEvent_Void))))};; - return GetAccessors()->getPinchGestureInterfaceAccessor()->onActionEnd(self, (const Callback_GestureEvent_Void*)&event_value); + return GetAccessors()->getPinchGestureInterfaceAccessor()->onActionEnd(self, reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_3(PinchGestureInterface_onActionEnd, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_PinchGestureInterface_onActionCancel0(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_PinchGestureInterface self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))};; - return GetAccessors()->getPinchGestureInterfaceAccessor()->onActionCancel0(self, (const Callback_Void*)&event_value); + return GetAccessors()->getPinchGestureInterfaceAccessor()->onActionCancel0(self, reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_3(PinchGestureInterface_onActionCancel0, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_PinchGestureInterface_onActionCancel1(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_PinchGestureInterface self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_GestureEvent_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_GestureEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_GestureEvent_Void))))};; - return GetAccessors()->getPinchGestureInterfaceAccessor()->onActionCancel1(self, (const Callback_GestureEvent_Void*)&event_value); + return GetAccessors()->getPinchGestureInterfaceAccessor()->onActionCancel1(self, reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_3(PinchGestureInterface_onActionCancel1, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_PinchRecognizer_ctor() { @@ -35153,7 +35153,7 @@ Ark_NativePointer impl_ProgressMask_ctor(KInteropNumber value, KInteropNumber to INTEROP_FATAL("One of the branches for color_value_buf has to be chosen through deserialisation."); } Ark_ResourceColor color_value = static_cast(color_value_buf);; - return GetAccessors()->getProgressMaskAccessor()->ctor((const Ark_Number*) (&value), (const Ark_Number*) (&total), (const Ark_ResourceColor*)&color_value); + return GetAccessors()->getProgressMaskAccessor()->ctor((const Ark_Number*) (&value), (const Ark_Number*) (&total), reinterpret_cast(&color_value)); } KOALA_INTEROP_DIRECT_4(ProgressMask_ctor, Ark_NativePointer, KInteropNumber, KInteropNumber, KSerializerBuffer, int32_t) Ark_NativePointer impl_ProgressMask_getFinalizer() { @@ -35191,7 +35191,7 @@ void impl_ProgressMask_updateColor(Ark_NativePointer thisPtr, KSerializerBuffer INTEROP_FATAL("One of the branches for value_value_buf has to be chosen through deserialisation."); } Ark_ResourceColor value_value = static_cast(value_value_buf);; - GetAccessors()->getProgressMaskAccessor()->updateColor(self, (const Ark_ResourceColor*)&value_value); + GetAccessors()->getProgressMaskAccessor()->updateColor(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(ProgressMask_updateColor, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ProgressMask_enableBreathingAnimation(Ark_NativePointer thisPtr, Ark_Boolean value) { @@ -35231,7 +35231,7 @@ Ark_NativePointer impl_RectShape_ctor(KSerializerBuffer thisArray, int32_t thisL options_value_buf.value = static_cast(options_value_buf_); } Opt_Union_RectShapeOptions_RoundRectShapeOptions options_value = options_value_buf;; - return GetAccessors()->getRectShapeAccessor()->ctor((const Opt_Union_RectShapeOptions_RoundRectShapeOptions*)&options_value); + return GetAccessors()->getRectShapeAccessor()->ctor(reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_2(RectShape_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RectShape_getFinalizer() { @@ -35242,7 +35242,7 @@ Ark_NativePointer impl_RectShape_offset(Ark_NativePointer thisPtr, KSerializerBu Ark_RectShape self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Position offset_value = Position_serializer::read(thisDeserializer);; - return GetAccessors()->getRectShapeAccessor()->offset(self, (const Ark_Position*)&offset_value); + return GetAccessors()->getRectShapeAccessor()->offset(self, reinterpret_cast(&offset_value)); } KOALA_INTEROP_DIRECT_3(RectShape_offset, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RectShape_fill(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -35271,14 +35271,14 @@ Ark_NativePointer impl_RectShape_fill(Ark_NativePointer thisPtr, KSerializerBuff INTEROP_FATAL("One of the branches for color_value_buf has to be chosen through deserialisation."); } Ark_ResourceColor color_value = static_cast(color_value_buf);; - return GetAccessors()->getRectShapeAccessor()->fill(self, (const Ark_ResourceColor*)&color_value); + return GetAccessors()->getRectShapeAccessor()->fill(self, reinterpret_cast(&color_value)); } KOALA_INTEROP_DIRECT_3(RectShape_fill, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RectShape_position(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_RectShape self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Position position_value = Position_serializer::read(thisDeserializer);; - return GetAccessors()->getRectShapeAccessor()->position(self, (const Ark_Position*)&position_value); + return GetAccessors()->getRectShapeAccessor()->position(self, reinterpret_cast(&position_value)); } KOALA_INTEROP_DIRECT_3(RectShape_position, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RectShape_width(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -35303,7 +35303,7 @@ Ark_NativePointer impl_RectShape_width(Ark_NativePointer thisPtr, KSerializerBuf INTEROP_FATAL("One of the branches for width_value_buf has to be chosen through deserialisation."); } Ark_Length width_value = static_cast(width_value_buf);; - return GetAccessors()->getRectShapeAccessor()->width(self, (const Ark_Length*)&width_value); + return GetAccessors()->getRectShapeAccessor()->width(self, reinterpret_cast(&width_value)); } KOALA_INTEROP_DIRECT_3(RectShape_width, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RectShape_height(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -35328,14 +35328,14 @@ Ark_NativePointer impl_RectShape_height(Ark_NativePointer thisPtr, KSerializerBu INTEROP_FATAL("One of the branches for height_value_buf has to be chosen through deserialisation."); } Ark_Length height_value = static_cast(height_value_buf);; - return GetAccessors()->getRectShapeAccessor()->height(self, (const Ark_Length*)&height_value); + return GetAccessors()->getRectShapeAccessor()->height(self, reinterpret_cast(&height_value)); } KOALA_INTEROP_DIRECT_3(RectShape_height, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RectShape_size(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_RectShape self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_SizeOptions size_value = SizeOptions_serializer::read(thisDeserializer);; - return GetAccessors()->getRectShapeAccessor()->size(self, (const Ark_SizeOptions*)&size_value); + return GetAccessors()->getRectShapeAccessor()->size(self, reinterpret_cast(&size_value)); } KOALA_INTEROP_DIRECT_3(RectShape_size, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RectShape_radiusWidth(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -35356,7 +35356,7 @@ Ark_NativePointer impl_RectShape_radiusWidth(Ark_NativePointer thisPtr, KSeriali INTEROP_FATAL("One of the branches for rWidth_value_buf has to be chosen through deserialisation."); } Ark_Union_Number_String rWidth_value = static_cast(rWidth_value_buf);; - return GetAccessors()->getRectShapeAccessor()->radiusWidth(self, (const Ark_Union_Number_String*)&rWidth_value); + return GetAccessors()->getRectShapeAccessor()->radiusWidth(self, reinterpret_cast(&rWidth_value)); } KOALA_INTEROP_DIRECT_3(RectShape_radiusWidth, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RectShape_radiusHeight(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -35377,7 +35377,7 @@ Ark_NativePointer impl_RectShape_radiusHeight(Ark_NativePointer thisPtr, KSerial INTEROP_FATAL("One of the branches for rHeight_value_buf has to be chosen through deserialisation."); } Ark_Union_Number_String rHeight_value = static_cast(rHeight_value_buf);; - return GetAccessors()->getRectShapeAccessor()->radiusHeight(self, (const Ark_Union_Number_String*)&rHeight_value); + return GetAccessors()->getRectShapeAccessor()->radiusHeight(self, reinterpret_cast(&rHeight_value)); } KOALA_INTEROP_DIRECT_3(RectShape_radiusHeight, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RectShape_radius(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -35423,7 +35423,7 @@ Ark_NativePointer impl_RectShape_radius(Ark_NativePointer thisPtr, KSerializerBu INTEROP_FATAL("One of the branches for radius_value_buf has to be chosen through deserialisation."); } Ark_Union_Number_String_Array_Union_Number_String radius_value = static_cast(radius_value_buf);; - return GetAccessors()->getRectShapeAccessor()->radius(self, (const Ark_Union_Number_String_Array_Union_Number_String*)&radius_value); + return GetAccessors()->getRectShapeAccessor()->radius(self, reinterpret_cast(&radius_value)); } KOALA_INTEROP_DIRECT_3(RectShape_radius, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RenderingContextSettings_ctor(KSerializerBuffer thisArray, int32_t thisLength) { @@ -35436,7 +35436,7 @@ Ark_NativePointer impl_RenderingContextSettings_ctor(KSerializerBuffer thisArray antialias_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean antialias_value = antialias_value_buf;; - return GetAccessors()->getRenderingContextSettingsAccessor()->ctor((const Opt_Boolean*)&antialias_value); + return GetAccessors()->getRenderingContextSettingsAccessor()->ctor(reinterpret_cast(&antialias_value)); } KOALA_INTEROP_DIRECT_2(RenderingContextSettings_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RenderingContextSettings_getFinalizer() { @@ -35468,7 +35468,7 @@ void impl_RenderingContextSettings_setAntialias(Ark_NativePointer thisPtr, KSeri antialias_value_buf.value = thisDeserializer.readBoolean(); } Opt_Boolean antialias_value = antialias_value_buf;; - GetAccessors()->getRenderingContextSettingsAccessor()->setAntialias(self, (const Opt_Boolean*)&antialias_value); + GetAccessors()->getRenderingContextSettingsAccessor()->setAntialias(self, reinterpret_cast(&antialias_value)); } KOALA_INTEROP_DIRECT_V3(RenderingContextSettings_setAntialias, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RenderNode_ctor() { @@ -35495,7 +35495,7 @@ void impl_RenderNode_insertChildAfter(Ark_NativePointer thisPtr, Ark_NativePoint sibling_value_buf.value = static_cast(RenderNode_serializer::read(thisDeserializer)); } Opt_RenderNode sibling_value = sibling_value_buf;; - GetAccessors()->getRenderNodeAccessor()->insertChildAfter(self, static_cast(child), (const Opt_RenderNode*)&sibling_value); + GetAccessors()->getRenderNodeAccessor()->insertChildAfter(self, static_cast(child), reinterpret_cast(&sibling_value)); } KOALA_INTEROP_DIRECT_V4(RenderNode_insertChildAfter, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RenderNode_removeChild(Ark_NativePointer thisPtr, Ark_NativePointer node) { @@ -35621,7 +35621,7 @@ void impl_RenderNode_setSize(Ark_NativePointer thisPtr, KSerializerBuffer thisAr Ark_RenderNode self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Size size_value = Size_serializer::read(thisDeserializer);; - GetAccessors()->getRenderNodeAccessor()->setSize(self, (const Ark_Size*)&size_value); + GetAccessors()->getRenderNodeAccessor()->setSize(self, reinterpret_cast(&size_value)); } KOALA_INTEROP_DIRECT_V3(RenderNode_setSize, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_RenderNode_getPosition(Ark_NativePointer thisPtr) { @@ -35636,7 +35636,7 @@ void impl_RenderNode_setPosition(Ark_NativePointer thisPtr, KSerializerBuffer th Ark_RenderNode self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Vector2 position_value = Vector2_serializer::read(thisDeserializer);; - GetAccessors()->getRenderNodeAccessor()->setPosition(self, (const Ark_Vector2*)&position_value); + GetAccessors()->getRenderNodeAccessor()->setPosition(self, reinterpret_cast(&position_value)); } KOALA_INTEROP_DIRECT_V3(RenderNode_setPosition, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_RenderNode_getFrame(Ark_NativePointer thisPtr) { @@ -35651,7 +35651,7 @@ void impl_RenderNode_setFrame(Ark_NativePointer thisPtr, KSerializerBuffer thisA Ark_RenderNode self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Frame frame_value = Frame_serializer::read(thisDeserializer);; - GetAccessors()->getRenderNodeAccessor()->setFrame(self, (const Ark_Frame*)&frame_value); + GetAccessors()->getRenderNodeAccessor()->setFrame(self, reinterpret_cast(&frame_value)); } KOALA_INTEROP_DIRECT_V3(RenderNode_setFrame, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_RenderNode_getPivot(Ark_NativePointer thisPtr) { @@ -35666,7 +35666,7 @@ void impl_RenderNode_setPivot(Ark_NativePointer thisPtr, KSerializerBuffer thisA Ark_RenderNode self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Vector2 pivot_value = Vector2_serializer::read(thisDeserializer);; - GetAccessors()->getRenderNodeAccessor()->setPivot(self, (const Ark_Vector2*)&pivot_value); + GetAccessors()->getRenderNodeAccessor()->setPivot(self, reinterpret_cast(&pivot_value)); } KOALA_INTEROP_DIRECT_V3(RenderNode_setPivot, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_RenderNode_getScale(Ark_NativePointer thisPtr) { @@ -35681,7 +35681,7 @@ void impl_RenderNode_setScale(Ark_NativePointer thisPtr, KSerializerBuffer thisA Ark_RenderNode self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Vector2 scale_value = Vector2_serializer::read(thisDeserializer);; - GetAccessors()->getRenderNodeAccessor()->setScale(self, (const Ark_Vector2*)&scale_value); + GetAccessors()->getRenderNodeAccessor()->setScale(self, reinterpret_cast(&scale_value)); } KOALA_INTEROP_DIRECT_V3(RenderNode_setScale, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_RenderNode_getTranslation(Ark_NativePointer thisPtr) { @@ -35696,7 +35696,7 @@ void impl_RenderNode_setTranslation(Ark_NativePointer thisPtr, KSerializerBuffer Ark_RenderNode self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Vector2 translation_value = Vector2_serializer::read(thisDeserializer);; - GetAccessors()->getRenderNodeAccessor()->setTranslation(self, (const Ark_Vector2*)&translation_value); + GetAccessors()->getRenderNodeAccessor()->setTranslation(self, reinterpret_cast(&translation_value)); } KOALA_INTEROP_DIRECT_V3(RenderNode_setTranslation, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_RenderNode_getRotation(Ark_NativePointer thisPtr) { @@ -35711,7 +35711,7 @@ void impl_RenderNode_setRotation(Ark_NativePointer thisPtr, KSerializerBuffer th Ark_RenderNode self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Vector3 rotation_value = Vector3_serializer::read(thisDeserializer);; - GetAccessors()->getRenderNodeAccessor()->setRotation(self, (const Ark_Vector3*)&rotation_value); + GetAccessors()->getRenderNodeAccessor()->setRotation(self, reinterpret_cast(&rotation_value)); } KOALA_INTEROP_DIRECT_V3(RenderNode_setRotation, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_RenderNode_getTransform(Ark_NativePointer thisPtr) { @@ -35774,7 +35774,7 @@ void impl_RenderNode_setTransform(Ark_NativePointer thisPtr, KSerializerBuffer t transform_value_buf.value14 = static_cast(thisDeserializer.readNumber()); transform_value_buf.value15 = static_cast(thisDeserializer.readNumber()); Ark_Matrix4 transform_value = transform_value_buf;; - GetAccessors()->getRenderNodeAccessor()->setTransform(self, (const Ark_Matrix4*)&transform_value); + GetAccessors()->getRenderNodeAccessor()->setTransform(self, reinterpret_cast(&transform_value)); } KOALA_INTEROP_DIRECT_V3(RenderNode_setTransform, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_Number impl_RenderNode_getShadowColor(Ark_NativePointer thisPtr) { @@ -35799,7 +35799,7 @@ void impl_RenderNode_setShadowOffset(Ark_NativePointer thisPtr, KSerializerBuffe Ark_RenderNode self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Vector2 shadowOffset_value = Vector2_serializer::read(thisDeserializer);; - GetAccessors()->getRenderNodeAccessor()->setShadowOffset(self, (const Ark_Vector2*)&shadowOffset_value); + GetAccessors()->getRenderNodeAccessor()->setShadowOffset(self, reinterpret_cast(&shadowOffset_value)); } KOALA_INTEROP_DIRECT_V3(RenderNode_setShadowOffset, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_String impl_RenderNode_getLabel(Ark_NativePointer thisPtr) { @@ -35854,7 +35854,7 @@ void impl_RenderNode_setBorderStyle(Ark_NativePointer thisPtr, KSerializerBuffer Ark_RenderNode self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_EdgeStyles borderStyle_value = EdgeStyles_serializer::read(thisDeserializer);; - GetAccessors()->getRenderNodeAccessor()->setBorderStyle(self, (const Ark_EdgeStyles*)&borderStyle_value); + GetAccessors()->getRenderNodeAccessor()->setBorderStyle(self, reinterpret_cast(&borderStyle_value)); } KOALA_INTEROP_DIRECT_V3(RenderNode_setBorderStyle, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_RenderNode_getBorderWidth(Ark_NativePointer thisPtr) { @@ -35869,7 +35869,7 @@ void impl_RenderNode_setBorderWidth(Ark_NativePointer thisPtr, KSerializerBuffer Ark_RenderNode self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Edges borderWidth_value = Edges_serializer::read(thisDeserializer);; - GetAccessors()->getRenderNodeAccessor()->setBorderWidth(self, (const Ark_Edges*)&borderWidth_value); + GetAccessors()->getRenderNodeAccessor()->setBorderWidth(self, reinterpret_cast(&borderWidth_value)); } KOALA_INTEROP_DIRECT_V3(RenderNode_setBorderWidth, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_RenderNode_getBorderColor(Ark_NativePointer thisPtr) { @@ -35884,7 +35884,7 @@ void impl_RenderNode_setBorderColor(Ark_NativePointer thisPtr, KSerializerBuffer Ark_RenderNode self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Edges borderColor_value = Edges_serializer::read(thisDeserializer);; - GetAccessors()->getRenderNodeAccessor()->setBorderColor(self, (const Ark_Edges*)&borderColor_value); + GetAccessors()->getRenderNodeAccessor()->setBorderColor(self, reinterpret_cast(&borderColor_value)); } KOALA_INTEROP_DIRECT_V3(RenderNode_setBorderColor, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_RenderNode_getBorderRadius(Ark_NativePointer thisPtr) { @@ -35899,7 +35899,7 @@ void impl_RenderNode_setBorderRadius(Ark_NativePointer thisPtr, KSerializerBuffe Ark_RenderNode self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_BorderRadiuses_graphics borderRadius_value = BorderRadiuses_graphics_serializer::read(thisDeserializer);; - GetAccessors()->getRenderNodeAccessor()->setBorderRadius(self, (const Ark_BorderRadiuses_graphics*)&borderRadius_value); + GetAccessors()->getRenderNodeAccessor()->setBorderRadius(self, reinterpret_cast(&borderRadius_value)); } KOALA_INTEROP_DIRECT_V3(RenderNode_setBorderRadius, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RenderNode_getShapeMask(Ark_NativePointer thisPtr) { @@ -35952,7 +35952,7 @@ Ark_NativePointer impl_ReplaceSymbolEffect_ctor(KSerializerBuffer thisArray, int scope_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EffectScope scope_value = scope_value_buf;; - return GetAccessors()->getReplaceSymbolEffectAccessor()->ctor((const Opt_EffectScope*)&scope_value); + return GetAccessors()->getReplaceSymbolEffectAccessor()->ctor(reinterpret_cast(&scope_value)); } KOALA_INTEROP_DIRECT_2(ReplaceSymbolEffect_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_ReplaceSymbolEffect_getFinalizer() { @@ -35984,7 +35984,7 @@ void impl_ReplaceSymbolEffect_setScope(Ark_NativePointer thisPtr, KSerializerBuf scope_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EffectScope scope_value = scope_value_buf;; - GetAccessors()->getReplaceSymbolEffectAccessor()->setScope(self, (const Opt_EffectScope*)&scope_value); + GetAccessors()->getReplaceSymbolEffectAccessor()->setScope(self, reinterpret_cast(&scope_value)); } KOALA_INTEROP_DIRECT_V3(ReplaceSymbolEffect_setScope, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RestrictedWorker_ctor(const KStringPtr& scriptURL, KSerializerBuffer thisArray, int32_t thisLength) { @@ -35997,7 +35997,7 @@ Ark_NativePointer impl_RestrictedWorker_ctor(const KStringPtr& scriptURL, KSeria options_value_buf.value = WorkerOptions_serializer::read(thisDeserializer); } Opt_WorkerOptions options_value = options_value_buf;; - return GetAccessors()->getRestrictedWorkerAccessor()->ctor((const Ark_String*) (&scriptURL), (const Opt_WorkerOptions*)&options_value); + return GetAccessors()->getRestrictedWorkerAccessor()->ctor((const Ark_String*) (&scriptURL), reinterpret_cast(&options_value)); } KOALA_INTEROP_3(RestrictedWorker_ctor, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) Ark_NativePointer impl_RestrictedWorker_getFinalizer() { @@ -36016,7 +36016,7 @@ void impl_RestrictedWorker_postMessage0(KVMContext vmContext, Ark_NativePointer transfer_value_buf.array[transfer_value_buf_i] = static_cast(thisDeserializer.readBuffer()); } Array_Buffer transfer_value = transfer_value_buf;; - GetAccessors()->getRestrictedWorkerAccessor()->postMessage0(reinterpret_cast(vmContext), self, (const Ark_Object*)&message_value, (const Array_Buffer*)&transfer_value); + GetAccessors()->getRestrictedWorkerAccessor()->postMessage0(reinterpret_cast(vmContext), self, reinterpret_cast(&message_value), reinterpret_cast(&transfer_value)); } KOALA_INTEROP_CTX_V3(RestrictedWorker_postMessage0, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RestrictedWorker_postMessage1(KVMContext vmContext, Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -36031,7 +36031,7 @@ void impl_RestrictedWorker_postMessage1(KVMContext vmContext, Ark_NativePointer options_value_buf.value = PostMessageOptions_serializer::read(thisDeserializer); } Opt_PostMessageOptions options_value = options_value_buf;; - GetAccessors()->getRestrictedWorkerAccessor()->postMessage1(reinterpret_cast(vmContext), self, (const Ark_Object*)&message_value, (const Opt_PostMessageOptions*)&options_value); + GetAccessors()->getRestrictedWorkerAccessor()->postMessage1(reinterpret_cast(vmContext), self, reinterpret_cast(&message_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_CTX_V3(RestrictedWorker_postMessage1, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RestrictedWorker_postMessageWithSharedSendable(KVMContext vmContext, Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -36053,21 +36053,21 @@ void impl_RestrictedWorker_postMessageWithSharedSendable(KVMContext vmContext, A transfer_value_buf.value = transfer_value_buf_; } Opt_Array_Buffer transfer_value = transfer_value_buf;; - GetAccessors()->getRestrictedWorkerAccessor()->postMessageWithSharedSendable(reinterpret_cast(vmContext), self, (const Ark_Object*)&message_value, (const Opt_Array_Buffer*)&transfer_value); + GetAccessors()->getRestrictedWorkerAccessor()->postMessageWithSharedSendable(reinterpret_cast(vmContext), self, reinterpret_cast(&message_value), reinterpret_cast(&transfer_value)); } KOALA_INTEROP_CTX_V3(RestrictedWorker_postMessageWithSharedSendable, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RestrictedWorker_on(KVMContext vmContext, Ark_NativePointer thisPtr, const KStringPtr& Type, KSerializerBuffer thisArray, int32_t thisLength) { Ark_RestrictedWorker self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_WorkerEventListener listener_value = WorkerEventListener_serializer::read(thisDeserializer);; - GetAccessors()->getRestrictedWorkerAccessor()->on(reinterpret_cast(vmContext), self, (const Ark_String*) (&Type), (const Ark_WorkerEventListener*)&listener_value); + GetAccessors()->getRestrictedWorkerAccessor()->on(reinterpret_cast(vmContext), self, (const Ark_String*) (&Type), reinterpret_cast(&listener_value)); } KOALA_INTEROP_CTX_V4(RestrictedWorker_on, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) void impl_RestrictedWorker_once(KVMContext vmContext, Ark_NativePointer thisPtr, const KStringPtr& Type, KSerializerBuffer thisArray, int32_t thisLength) { Ark_RestrictedWorker self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_WorkerEventListener listener_value = WorkerEventListener_serializer::read(thisDeserializer);; - GetAccessors()->getRestrictedWorkerAccessor()->once(reinterpret_cast(vmContext), self, (const Ark_String*) (&Type), (const Ark_WorkerEventListener*)&listener_value); + GetAccessors()->getRestrictedWorkerAccessor()->once(reinterpret_cast(vmContext), self, (const Ark_String*) (&Type), reinterpret_cast(&listener_value)); } KOALA_INTEROP_CTX_V4(RestrictedWorker_once, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) void impl_RestrictedWorker_off(KVMContext vmContext, Ark_NativePointer thisPtr, const KStringPtr& Type, KSerializerBuffer thisArray, int32_t thisLength) { @@ -36081,7 +36081,7 @@ void impl_RestrictedWorker_off(KVMContext vmContext, Ark_NativePointer thisPtr, listener_value_buf.value = WorkerEventListener_serializer::read(thisDeserializer); } Opt_WorkerEventListener listener_value = listener_value_buf;; - GetAccessors()->getRestrictedWorkerAccessor()->off(reinterpret_cast(vmContext), self, (const Ark_String*) (&Type), (const Opt_WorkerEventListener*)&listener_value); + GetAccessors()->getRestrictedWorkerAccessor()->off(reinterpret_cast(vmContext), self, (const Ark_String*) (&Type), reinterpret_cast(&listener_value)); } KOALA_INTEROP_CTX_V4(RestrictedWorker_off, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) void impl_RestrictedWorker_terminate(KVMContext vmContext, Ark_NativePointer thisPtr) { @@ -36093,14 +36093,14 @@ void impl_RestrictedWorker_addEventListener(KVMContext vmContext, Ark_NativePoin Ark_RestrictedWorker self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_WorkerEventListener listener_value = WorkerEventListener_serializer::read(thisDeserializer);; - GetAccessors()->getRestrictedWorkerAccessor()->addEventListener(reinterpret_cast(vmContext), self, (const Ark_String*) (&Type), (const Ark_WorkerEventListener*)&listener_value); + GetAccessors()->getRestrictedWorkerAccessor()->addEventListener(reinterpret_cast(vmContext), self, (const Ark_String*) (&Type), reinterpret_cast(&listener_value)); } KOALA_INTEROP_CTX_V4(RestrictedWorker_addEventListener, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) Ark_Boolean impl_RestrictedWorker_dispatchEvent(KVMContext vmContext, Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_RestrictedWorker self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Event event_value = Event_serializer::read(thisDeserializer);; - return GetAccessors()->getRestrictedWorkerAccessor()->dispatchEvent(reinterpret_cast(vmContext), self, (const Ark_Event*)&event_value); + return GetAccessors()->getRestrictedWorkerAccessor()->dispatchEvent(reinterpret_cast(vmContext), self, reinterpret_cast(&event_value)); } KOALA_INTEROP_CTX_3(RestrictedWorker_dispatchEvent, Ark_Boolean, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RestrictedWorker_removeEventListener(KVMContext vmContext, Ark_NativePointer thisPtr, const KStringPtr& Type, KSerializerBuffer thisArray, int32_t thisLength) { @@ -36114,7 +36114,7 @@ void impl_RestrictedWorker_removeEventListener(KVMContext vmContext, Ark_NativeP callback__value_buf.value = WorkerEventListener_serializer::read(thisDeserializer); } Opt_WorkerEventListener callback__value = callback__value_buf;; - GetAccessors()->getRestrictedWorkerAccessor()->removeEventListener(reinterpret_cast(vmContext), self, (const Ark_String*) (&Type), (const Opt_WorkerEventListener*)&callback__value); + GetAccessors()->getRestrictedWorkerAccessor()->removeEventListener(reinterpret_cast(vmContext), self, (const Ark_String*) (&Type), reinterpret_cast(&callback__value)); } KOALA_INTEROP_CTX_V4(RestrictedWorker_removeEventListener, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) void impl_RestrictedWorker_removeAllListener(KVMContext vmContext, Ark_NativePointer thisPtr) { @@ -36126,7 +36126,7 @@ void impl_RestrictedWorker_registerGlobalCallObject(KVMContext vmContext, Ark_Na Ark_RestrictedWorker self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Object globalCallObject_value = static_cast(thisDeserializer.readObject());; - GetAccessors()->getRestrictedWorkerAccessor()->registerGlobalCallObject(reinterpret_cast(vmContext), self, (const Ark_String*) (&instanceName), (const Ark_Object*)&globalCallObject_value); + GetAccessors()->getRestrictedWorkerAccessor()->registerGlobalCallObject(reinterpret_cast(vmContext), self, (const Ark_String*) (&instanceName), reinterpret_cast(&globalCallObject_value)); } KOALA_INTEROP_CTX_V4(RestrictedWorker_registerGlobalCallObject, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) void impl_RestrictedWorker_unregisterGlobalCallObject(KVMContext vmContext, Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -36140,7 +36140,7 @@ void impl_RestrictedWorker_unregisterGlobalCallObject(KVMContext vmContext, Ark_ instanceName_value_buf.value = static_cast(thisDeserializer.readString()); } Opt_String instanceName_value = instanceName_value_buf;; - GetAccessors()->getRestrictedWorkerAccessor()->unregisterGlobalCallObject(reinterpret_cast(vmContext), self, (const Opt_String*)&instanceName_value); + GetAccessors()->getRestrictedWorkerAccessor()->unregisterGlobalCallObject(reinterpret_cast(vmContext), self, reinterpret_cast(&instanceName_value)); } KOALA_INTEROP_CTX_V3(RestrictedWorker_unregisterGlobalCallObject, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_RestrictedWorker_getOnexit(Ark_NativePointer thisPtr) { @@ -36163,7 +36163,7 @@ void impl_RestrictedWorker_setOnexit(Ark_NativePointer thisPtr, KSerializerBuffe Ark_RestrictedWorker self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); RestrictedWorker_onexit_Callback onexit_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_RestrictedWorker_onexit_Callback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_RestrictedWorker_onexit_Callback))))};; - GetAccessors()->getRestrictedWorkerAccessor()->setOnexit(self, (const RestrictedWorker_onexit_Callback*)&onexit_value); + GetAccessors()->getRestrictedWorkerAccessor()->setOnexit(self, reinterpret_cast(&onexit_value)); } KOALA_INTEROP_DIRECT_V3(RestrictedWorker_setOnexit, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_RestrictedWorker_getOnerror(Ark_NativePointer thisPtr) { @@ -36186,7 +36186,7 @@ void impl_RestrictedWorker_setOnerror(Ark_NativePointer thisPtr, KSerializerBuff Ark_RestrictedWorker self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); RestrictedWorker_onerror_Callback onerror_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_RestrictedWorker_onerror_Callback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_RestrictedWorker_onerror_Callback))))};; - GetAccessors()->getRestrictedWorkerAccessor()->setOnerror(self, (const RestrictedWorker_onerror_Callback*)&onerror_value); + GetAccessors()->getRestrictedWorkerAccessor()->setOnerror(self, reinterpret_cast(&onerror_value)); } KOALA_INTEROP_DIRECT_V3(RestrictedWorker_setOnerror, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_RestrictedWorker_getOnmessage(Ark_NativePointer thisPtr) { @@ -36209,7 +36209,7 @@ void impl_RestrictedWorker_setOnmessage(Ark_NativePointer thisPtr, KSerializerBu Ark_RestrictedWorker self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); RestrictedWorker_onmessage_Callback onmessage_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_RestrictedWorker_onmessage_Callback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_RestrictedWorker_onmessage_Callback))))};; - GetAccessors()->getRestrictedWorkerAccessor()->setOnmessage(self, (const RestrictedWorker_onmessage_Callback*)&onmessage_value); + GetAccessors()->getRestrictedWorkerAccessor()->setOnmessage(self, reinterpret_cast(&onmessage_value)); } KOALA_INTEROP_DIRECT_V3(RestrictedWorker_setOnmessage, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_RestrictedWorker_getOnmessageerror(Ark_NativePointer thisPtr) { @@ -36232,7 +36232,7 @@ void impl_RestrictedWorker_setOnmessageerror(Ark_NativePointer thisPtr, KSeriali Ark_RestrictedWorker self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); RestrictedWorker_onmessage_Callback onmessageerror_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_RestrictedWorker_onmessage_Callback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_RestrictedWorker_onmessage_Callback))))};; - GetAccessors()->getRestrictedWorkerAccessor()->setOnmessageerror(self, (const RestrictedWorker_onmessage_Callback*)&onmessageerror_value); + GetAccessors()->getRestrictedWorkerAccessor()->setOnmessageerror(self, reinterpret_cast(&onmessageerror_value)); } KOALA_INTEROP_DIRECT_V3(RestrictedWorker_setOnmessageerror, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RichEditorBaseController_ctor() { @@ -36270,7 +36270,7 @@ void impl_RichEditorBaseController_setTypingStyle(Ark_NativePointer thisPtr, KSe Ark_RichEditorBaseController self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_RichEditorTextStyle value_value = RichEditorTextStyle_serializer::read(thisDeserializer);; - GetAccessors()->getRichEditorBaseControllerAccessor()->setTypingStyle(self, (const Ark_RichEditorTextStyle*)&value_value); + GetAccessors()->getRichEditorBaseControllerAccessor()->setTypingStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorBaseController_setTypingStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorBaseController_setSelection(Ark_NativePointer thisPtr, KInteropNumber selectionStart, KInteropNumber selectionEnd, KSerializerBuffer thisArray, int32_t thisLength) { @@ -36284,7 +36284,7 @@ void impl_RichEditorBaseController_setSelection(Ark_NativePointer thisPtr, KInte options_value_buf.value = SelectionOptions_serializer::read(thisDeserializer); } Opt_SelectionOptions options_value = options_value_buf;; - GetAccessors()->getRichEditorBaseControllerAccessor()->setSelection(self, (const Ark_Number*) (&selectionStart), (const Ark_Number*) (&selectionEnd), (const Opt_SelectionOptions*)&options_value); + GetAccessors()->getRichEditorBaseControllerAccessor()->setSelection(self, (const Ark_Number*) (&selectionStart), (const Ark_Number*) (&selectionEnd), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V5(RichEditorBaseController_setSelection, Ark_NativePointer, KInteropNumber, KInteropNumber, KSerializerBuffer, int32_t) Ark_Boolean impl_RichEditorBaseController_isEditing(Ark_NativePointer thisPtr) { @@ -36343,7 +36343,7 @@ Ark_Number impl_RichEditorController_addTextSpan(Ark_NativePointer thisPtr, cons options_value_buf.value = RichEditorTextSpanOptions_serializer::read(thisDeserializer); } Opt_RichEditorTextSpanOptions options_value = options_value_buf;; - return GetAccessors()->getRichEditorControllerAccessor()->addTextSpan(self, (const Ark_String*) (&value), (const Opt_RichEditorTextSpanOptions*)&options_value); + return GetAccessors()->getRichEditorControllerAccessor()->addTextSpan(self, (const Ark_String*) (&value), reinterpret_cast(&options_value)); } KOALA_INTEROP_4(RichEditorController_addTextSpan, KInteropNumber, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) Ark_Number impl_RichEditorController_addImageSpan(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -36386,7 +36386,7 @@ Ark_Number impl_RichEditorController_addImageSpan(Ark_NativePointer thisPtr, KSe options_value_buf.value = RichEditorImageSpanOptions_serializer::read(thisDeserializer); } Opt_RichEditorImageSpanOptions options_value = options_value_buf;; - return GetAccessors()->getRichEditorControllerAccessor()->addImageSpan(self, (const Ark_Union_PixelMap_ResourceStr*)&value_value, (const Opt_RichEditorImageSpanOptions*)&options_value); + return GetAccessors()->getRichEditorControllerAccessor()->addImageSpan(self, reinterpret_cast(&value_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_3(RichEditorController_addImageSpan, KInteropNumber, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_Number impl_RichEditorController_addBuilderSpan(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -36401,7 +36401,7 @@ Ark_Number impl_RichEditorController_addBuilderSpan(Ark_NativePointer thisPtr, K options_value_buf.value = RichEditorBuilderSpanOptions_serializer::read(thisDeserializer); } Opt_RichEditorBuilderSpanOptions options_value = options_value_buf;; - return GetAccessors()->getRichEditorControllerAccessor()->addBuilderSpan(self, (const CustomNodeBuilder*)&value_value, (const Opt_RichEditorBuilderSpanOptions*)&options_value); + return GetAccessors()->getRichEditorControllerAccessor()->addBuilderSpan(self, reinterpret_cast(&value_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_3(RichEditorController_addBuilderSpan, KInteropNumber, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_Number impl_RichEditorController_addSymbolSpan(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -36416,7 +36416,7 @@ Ark_Number impl_RichEditorController_addSymbolSpan(Ark_NativePointer thisPtr, KS options_value_buf.value = RichEditorSymbolSpanOptions_serializer::read(thisDeserializer); } Opt_RichEditorSymbolSpanOptions options_value = options_value_buf;; - return GetAccessors()->getRichEditorControllerAccessor()->addSymbolSpan(self, (const Ark_Resource*)&value_value, (const Opt_RichEditorSymbolSpanOptions*)&options_value); + return GetAccessors()->getRichEditorControllerAccessor()->addSymbolSpan(self, reinterpret_cast(&value_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_3(RichEditorController_addSymbolSpan, KInteropNumber, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorController_updateSpanStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -36441,14 +36441,14 @@ void impl_RichEditorController_updateSpanStyle(Ark_NativePointer thisPtr, KSeria INTEROP_FATAL("One of the branches for value_value_buf has to be chosen through deserialisation."); } Ark_Union_RichEditorUpdateTextSpanStyleOptions_RichEditorUpdateImageSpanStyleOptions_RichEditorUpdateSymbolSpanStyleOptions value_value = static_cast(value_value_buf);; - GetAccessors()->getRichEditorControllerAccessor()->updateSpanStyle(self, (const Ark_Union_RichEditorUpdateTextSpanStyleOptions_RichEditorUpdateImageSpanStyleOptions_RichEditorUpdateSymbolSpanStyleOptions*)&value_value); + GetAccessors()->getRichEditorControllerAccessor()->updateSpanStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorController_updateSpanStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorController_updateParagraphStyle(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_RichEditorController self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_RichEditorParagraphStyleOptions value_value = RichEditorParagraphStyleOptions_serializer::read(thisDeserializer);; - GetAccessors()->getRichEditorControllerAccessor()->updateParagraphStyle(self, (const Ark_RichEditorParagraphStyleOptions*)&value_value); + GetAccessors()->getRichEditorControllerAccessor()->updateParagraphStyle(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorController_updateParagraphStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RichEditorController_deleteSpans(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -36462,7 +36462,7 @@ void impl_RichEditorController_deleteSpans(Ark_NativePointer thisPtr, KSerialize value_value_buf.value = RichEditorRange_serializer::read(thisDeserializer); } Opt_RichEditorRange value_value = value_value_buf;; - GetAccessors()->getRichEditorControllerAccessor()->deleteSpans(self, (const Opt_RichEditorRange*)&value_value); + GetAccessors()->getRichEditorControllerAccessor()->deleteSpans(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorController_deleteSpans, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_RichEditorController_getSpans(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -36476,7 +36476,7 @@ KInteropReturnBuffer impl_RichEditorController_getSpans(Ark_NativePointer thisPt value_value_buf.value = RichEditorRange_serializer::read(thisDeserializer); } Opt_RichEditorRange value_value = value_value_buf;; - const auto &retValue = GetAccessors()->getRichEditorControllerAccessor()->getSpans(self, (const Opt_RichEditorRange*)&value_value); + const auto &retValue = GetAccessors()->getRichEditorControllerAccessor()->getSpans(self, reinterpret_cast(&value_value)); SerializerBase _retSerializer {}; _retSerializer.writeInt32(retValue.length); for (int i = 0; i < retValue.length; i++) { @@ -36508,7 +36508,7 @@ KInteropReturnBuffer impl_RichEditorController_getParagraphs(Ark_NativePointer t value_value_buf.value = RichEditorRange_serializer::read(thisDeserializer); } Opt_RichEditorRange value_value = value_value_buf;; - const auto &retValue = GetAccessors()->getRichEditorControllerAccessor()->getParagraphs(self, (const Opt_RichEditorRange*)&value_value); + const auto &retValue = GetAccessors()->getRichEditorControllerAccessor()->getParagraphs(self, reinterpret_cast(&value_value)); SerializerBase _retSerializer {}; _retSerializer.writeInt32(retValue.length); for (int i = 0; i < retValue.length; i++) { @@ -36553,7 +36553,7 @@ Ark_NativePointer impl_RichEditorController_toStyledString(Ark_NativePointer thi Ark_RichEditorController self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_RichEditorRange value_value = RichEditorRange_serializer::read(thisDeserializer);; - return GetAccessors()->getRichEditorControllerAccessor()->toStyledString(self, (const Ark_RichEditorRange*)&value_value); + return GetAccessors()->getRichEditorControllerAccessor()->toStyledString(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_3(RichEditorController_toStyledString, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RichEditorStyledStringController_ctor() { @@ -36586,7 +36586,7 @@ void impl_RichEditorStyledStringController_onContentChanged(Ark_NativePointer th Ark_RichEditorStyledStringController self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_StyledStringChangedListener listener_value = StyledStringChangedListener_serializer::read(thisDeserializer);; - GetAccessors()->getRichEditorStyledStringControllerAccessor()->onContentChanged(self, (const Ark_StyledStringChangedListener*)&listener_value); + GetAccessors()->getRichEditorStyledStringControllerAccessor()->onContentChanged(self, reinterpret_cast(&listener_value)); } KOALA_INTEROP_DIRECT_V3(RichEditorStyledStringController_onContentChanged, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RotationGesture_ctor() { @@ -36608,35 +36608,35 @@ Ark_NativePointer impl_RotationGesture_$_instantiate(KSerializerBuffer thisArray value_value_buf.value = RotationGestureHandlerOptions_serializer::read(thisDeserializer); } Opt_RotationGestureHandlerOptions value_value = value_value_buf;; - return GetAccessors()->getRotationGestureAccessor()->$_instantiate((const Callback_RotationGesture*)&factory_value, (const Opt_RotationGestureHandlerOptions*)&value_value); + return GetAccessors()->getRotationGestureAccessor()->$_instantiate(reinterpret_cast(&factory_value), reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_2(RotationGesture_$_instantiate, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RotationGesture_onActionStart(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_RotationGesture self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_GestureEvent_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_GestureEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_GestureEvent_Void))))};; - GetAccessors()->getRotationGestureAccessor()->onActionStart(self, (const Callback_GestureEvent_Void*)&event_value); + GetAccessors()->getRotationGestureAccessor()->onActionStart(self, reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_V3(RotationGesture_onActionStart, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RotationGesture_onActionUpdate(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_RotationGesture self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_GestureEvent_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_GestureEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_GestureEvent_Void))))};; - GetAccessors()->getRotationGestureAccessor()->onActionUpdate(self, (const Callback_GestureEvent_Void*)&event_value); + GetAccessors()->getRotationGestureAccessor()->onActionUpdate(self, reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_V3(RotationGesture_onActionUpdate, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RotationGesture_onActionEnd(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_RotationGesture self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_GestureEvent_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_GestureEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_GestureEvent_Void))))};; - GetAccessors()->getRotationGestureAccessor()->onActionEnd(self, (const Callback_GestureEvent_Void*)&event_value); + GetAccessors()->getRotationGestureAccessor()->onActionEnd(self, reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_V3(RotationGesture_onActionEnd, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_RotationGesture_onActionCancel(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_RotationGesture self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_GestureEvent_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_GestureEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_GestureEvent_Void))))};; - GetAccessors()->getRotationGestureAccessor()->onActionCancel(self, (const Callback_GestureEvent_Void*)&event_value); + GetAccessors()->getRotationGestureAccessor()->onActionCancel(self, reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_V3(RotationGesture_onActionCancel, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_RotationGestureEvent_ctor() { @@ -36688,7 +36688,7 @@ Ark_NativePointer impl_ScaleSymbolEffect_ctor(KSerializerBuffer thisArray, int32 direction_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EffectDirection direction_value = direction_value_buf;; - return GetAccessors()->getScaleSymbolEffectAccessor()->ctor((const Opt_EffectScope*)&scope_value, (const Opt_EffectDirection*)&direction_value); + return GetAccessors()->getScaleSymbolEffectAccessor()->ctor(reinterpret_cast(&scope_value), reinterpret_cast(&direction_value)); } KOALA_INTEROP_DIRECT_2(ScaleSymbolEffect_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_ScaleSymbolEffect_getFinalizer() { @@ -36720,7 +36720,7 @@ void impl_ScaleSymbolEffect_setScope(Ark_NativePointer thisPtr, KSerializerBuffe scope_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EffectScope scope_value = scope_value_buf;; - GetAccessors()->getScaleSymbolEffectAccessor()->setScope(self, (const Opt_EffectScope*)&scope_value); + GetAccessors()->getScaleSymbolEffectAccessor()->setScope(self, reinterpret_cast(&scope_value)); } KOALA_INTEROP_DIRECT_V3(ScaleSymbolEffect_setScope, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_ScaleSymbolEffect_getDirection(Ark_NativePointer thisPtr) { @@ -36748,7 +36748,7 @@ void impl_ScaleSymbolEffect_setDirection(Ark_NativePointer thisPtr, KSerializerB direction_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_EffectDirection direction_value = direction_value_buf;; - GetAccessors()->getScaleSymbolEffectAccessor()->setDirection(self, (const Opt_EffectDirection*)&direction_value); + GetAccessors()->getScaleSymbolEffectAccessor()->setDirection(self, reinterpret_cast(&direction_value)); } KOALA_INTEROP_DIRECT_V3(ScaleSymbolEffect_setDirection, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_Scene_ctor() { @@ -36784,7 +36784,7 @@ void impl_Scene_load(KVMContext vmContext, KSerializerBuffer thisArray, int32_t } Opt_ResourceStr uri_value = uri_value_buf;; Callback_Opt_Scene_Opt_Array_String_Void outputArgumentForReturningPromise_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Opt_Scene_Opt_Array_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Opt_Scene_Opt_Array_String_Void))))};; - GetAccessors()->getSceneAccessor()->load(reinterpret_cast(vmContext), GetAsyncWorker(), (const Opt_ResourceStr*)&uri_value, (const Callback_Opt_Scene_Opt_Array_String_Void*)&outputArgumentForReturningPromise_value); + GetAccessors()->getSceneAccessor()->load(reinterpret_cast(vmContext), GetAsyncWorker(), reinterpret_cast(&uri_value), reinterpret_cast(&outputArgumentForReturningPromise_value)); } KOALA_INTEROP_CTX_V2(Scene_load, KSerializerBuffer, int32_t) void impl_Scene_destroy(Ark_NativePointer thisPtr) { @@ -36822,7 +36822,7 @@ void impl_Scroller_scrollTo(Ark_NativePointer thisPtr, KSerializerBuffer thisArr Ark_Scroller self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_ScrollOptions options_value = ScrollOptions_serializer::read(thisDeserializer);; - GetAccessors()->getScrollerAccessor()->scrollTo(self, (const Ark_ScrollOptions*)&options_value); + GetAccessors()->getScrollerAccessor()->scrollTo(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(Scroller_scrollTo, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_Scroller_scrollEdge(Ark_NativePointer thisPtr, Ark_Int32 value, KSerializerBuffer thisArray, int32_t thisLength) { @@ -36836,7 +36836,7 @@ void impl_Scroller_scrollEdge(Ark_NativePointer thisPtr, Ark_Int32 value, KSeria options_value_buf.value = ScrollEdgeOptions_serializer::read(thisDeserializer); } Opt_ScrollEdgeOptions options_value = options_value_buf;; - GetAccessors()->getScrollerAccessor()->scrollEdge(self, static_cast(value), (const Opt_ScrollEdgeOptions*)&options_value); + GetAccessors()->getScrollerAccessor()->scrollEdge(self, static_cast(value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V4(Scroller_scrollEdge, Ark_NativePointer, Ark_Int32, KSerializerBuffer, int32_t) void impl_Scroller_fling(Ark_NativePointer thisPtr, KInteropNumber velocity) { @@ -36848,7 +36848,7 @@ void impl_Scroller_scrollPage(Ark_NativePointer thisPtr, KSerializerBuffer thisA Ark_Scroller self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_ScrollPageOptions value_value = ScrollPageOptions_serializer::read(thisDeserializer);; - GetAccessors()->getScrollerAccessor()->scrollPage(self, (const Ark_ScrollPageOptions*)&value_value); + GetAccessors()->getScrollerAccessor()->scrollPage(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_V3(Scroller_scrollPage, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_Scroller_currentOffset(Ark_NativePointer thisPtr) { @@ -36886,7 +36886,7 @@ void impl_Scroller_scrollToIndex(Ark_NativePointer thisPtr, KInteropNumber value options_value_buf.value = ScrollToIndexOptions_serializer::read(thisDeserializer); } Opt_ScrollToIndexOptions options_value = options_value_buf;; - GetAccessors()->getScrollerAccessor()->scrollToIndex(self, (const Ark_Number*) (&value), (const Opt_Boolean*)&smooth_value, (const Opt_ScrollAlign*)&align_value, (const Opt_ScrollToIndexOptions*)&options_value); + GetAccessors()->getScrollerAccessor()->scrollToIndex(self, (const Ark_Number*) (&value), reinterpret_cast(&smooth_value), reinterpret_cast(&align_value), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V4(Scroller_scrollToIndex, Ark_NativePointer, KInteropNumber, KSerializerBuffer, int32_t) void impl_Scroller_scrollBy(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -36930,7 +36930,7 @@ void impl_Scroller_scrollBy(Ark_NativePointer thisPtr, KSerializerBuffer thisArr INTEROP_FATAL("One of the branches for dy_value_buf has to be chosen through deserialisation."); } Ark_Length dy_value = static_cast(dy_value_buf);; - GetAccessors()->getScrollerAccessor()->scrollBy(self, (const Ark_Length*)&dx_value, (const Ark_Length*)&dy_value); + GetAccessors()->getScrollerAccessor()->scrollBy(self, reinterpret_cast(&dx_value), reinterpret_cast(&dy_value)); } KOALA_INTEROP_DIRECT_V3(Scroller_scrollBy, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_Boolean impl_Scroller_isAtEnd(Ark_NativePointer thisPtr) { @@ -37006,13 +37006,13 @@ void impl_SearchController_setTextSelection(Ark_NativePointer thisPtr, KInteropN options_value_buf.value = SelectionOptions_serializer::read(thisDeserializer); } Opt_SelectionOptions options_value = options_value_buf;; - GetAccessors()->getSearchControllerAccessor()->setTextSelection(self, (const Ark_Number*) (&selectionStart), (const Ark_Number*) (&selectionEnd), (const Opt_SelectionOptions*)&options_value); + GetAccessors()->getSearchControllerAccessor()->setTextSelection(self, (const Ark_Number*) (&selectionStart), (const Ark_Number*) (&selectionEnd), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V5(SearchController_setTextSelection, Ark_NativePointer, KInteropNumber, KInteropNumber, KSerializerBuffer, int32_t) Ark_NativePointer impl_SearchOps_registerSearchValueCallback(Ark_NativePointer node, const KStringPtr& value, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); SearchValueCallback callback_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_SearchValueCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_SearchValueCallback))))};; - return GetAccessors()->getSearchOpsAccessor()->registerSearchValueCallback(node, (const Ark_String*) (&value), (const SearchValueCallback*)&callback_value); + return GetAccessors()->getSearchOpsAccessor()->registerSearchValueCallback(node, (const Ark_String*) (&value), reinterpret_cast(&callback_value)); } KOALA_INTEROP_4(SearchOps_registerSearchValueCallback, Ark_NativePointer, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) Ark_NativePointer impl_ShapeClip_ctor() { @@ -37027,35 +37027,35 @@ void impl_ShapeClip_setRectShape(Ark_NativePointer thisPtr, KSerializerBuffer th Ark_ShapeClip self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Rect rect_value = common2D_Rect_serializer::read(thisDeserializer);; - GetAccessors()->getShapeClipAccessor()->setRectShape(self, (const Ark_common2D_Rect*)&rect_value); + GetAccessors()->getShapeClipAccessor()->setRectShape(self, reinterpret_cast(&rect_value)); } KOALA_INTEROP_DIRECT_V3(ShapeClip_setRectShape, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ShapeClip_setRoundRectShape(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_ShapeClip self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_RoundRect roundRect_value = RoundRect_serializer::read(thisDeserializer);; - GetAccessors()->getShapeClipAccessor()->setRoundRectShape(self, (const Ark_RoundRect*)&roundRect_value); + GetAccessors()->getShapeClipAccessor()->setRoundRectShape(self, reinterpret_cast(&roundRect_value)); } KOALA_INTEROP_DIRECT_V3(ShapeClip_setRoundRectShape, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ShapeClip_setCircleShape(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_ShapeClip self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Circle circle_value = Circle_serializer::read(thisDeserializer);; - GetAccessors()->getShapeClipAccessor()->setCircleShape(self, (const Ark_Circle*)&circle_value); + GetAccessors()->getShapeClipAccessor()->setCircleShape(self, reinterpret_cast(&circle_value)); } KOALA_INTEROP_DIRECT_V3(ShapeClip_setCircleShape, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ShapeClip_setOvalShape(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_ShapeClip self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Rect oval_value = common2D_Rect_serializer::read(thisDeserializer);; - GetAccessors()->getShapeClipAccessor()->setOvalShape(self, (const Ark_common2D_Rect*)&oval_value); + GetAccessors()->getShapeClipAccessor()->setOvalShape(self, reinterpret_cast(&oval_value)); } KOALA_INTEROP_DIRECT_V3(ShapeClip_setOvalShape, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ShapeClip_setCommandPath(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_ShapeClip self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_CommandPath path_value = CommandPath_serializer::read(thisDeserializer);; - GetAccessors()->getShapeClipAccessor()->setCommandPath(self, (const Ark_CommandPath*)&path_value); + GetAccessors()->getShapeClipAccessor()->setCommandPath(self, reinterpret_cast(&path_value)); } KOALA_INTEROP_DIRECT_V3(ShapeClip_setCommandPath, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_ShapeMask_ctor() { @@ -37070,35 +37070,35 @@ void impl_ShapeMask_setRectShape(Ark_NativePointer thisPtr, KSerializerBuffer th Ark_ShapeMask self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Rect rect_value = common2D_Rect_serializer::read(thisDeserializer);; - GetAccessors()->getShapeMaskAccessor()->setRectShape(self, (const Ark_common2D_Rect*)&rect_value); + GetAccessors()->getShapeMaskAccessor()->setRectShape(self, reinterpret_cast(&rect_value)); } KOALA_INTEROP_DIRECT_V3(ShapeMask_setRectShape, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ShapeMask_setRoundRectShape(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_ShapeMask self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_RoundRect roundRect_value = RoundRect_serializer::read(thisDeserializer);; - GetAccessors()->getShapeMaskAccessor()->setRoundRectShape(self, (const Ark_RoundRect*)&roundRect_value); + GetAccessors()->getShapeMaskAccessor()->setRoundRectShape(self, reinterpret_cast(&roundRect_value)); } KOALA_INTEROP_DIRECT_V3(ShapeMask_setRoundRectShape, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ShapeMask_setCircleShape(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_ShapeMask self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Circle circle_value = Circle_serializer::read(thisDeserializer);; - GetAccessors()->getShapeMaskAccessor()->setCircleShape(self, (const Ark_Circle*)&circle_value); + GetAccessors()->getShapeMaskAccessor()->setCircleShape(self, reinterpret_cast(&circle_value)); } KOALA_INTEROP_DIRECT_V3(ShapeMask_setCircleShape, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ShapeMask_setOvalShape(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_ShapeMask self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Rect oval_value = common2D_Rect_serializer::read(thisDeserializer);; - GetAccessors()->getShapeMaskAccessor()->setOvalShape(self, (const Ark_common2D_Rect*)&oval_value); + GetAccessors()->getShapeMaskAccessor()->setOvalShape(self, reinterpret_cast(&oval_value)); } KOALA_INTEROP_DIRECT_V3(ShapeMask_setOvalShape, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_ShapeMask_setCommandPath(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_ShapeMask self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_CommandPath path_value = CommandPath_serializer::read(thisDeserializer);; - GetAccessors()->getShapeMaskAccessor()->setCommandPath(self, (const Ark_CommandPath*)&path_value); + GetAccessors()->getShapeMaskAccessor()->setCommandPath(self, reinterpret_cast(&path_value)); } KOALA_INTEROP_DIRECT_V3(ShapeMask_setCommandPath, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_Number impl_ShapeMask_getFillColor(Ark_NativePointer thisPtr) { @@ -37150,7 +37150,7 @@ KOALA_INTEROP_DIRECT_0(SpringProp_getFinalizer, Ark_NativePointer) void impl_StateStylesOps_onStateStyleChange(Ark_NativePointer node, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Callback_StateStylesChange stateStyleChange_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_StateStylesChange)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_StateStylesChange))))};; - GetAccessors()->getStateStylesOpsAccessor()->onStateStyleChange(node, (const Callback_StateStylesChange*)&stateStyleChange_value); + GetAccessors()->getStateStylesOpsAccessor()->onStateStyleChange(node, reinterpret_cast(&stateStyleChange_value)); } KOALA_INTEROP_DIRECT_V3(StateStylesOps_onStateStyleChange, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_StyledString_ctor(KSerializerBuffer thisArray, int32_t thisLength) { @@ -37189,7 +37189,7 @@ Ark_NativePointer impl_StyledString_ctor(KSerializerBuffer thisArray, int32_t th styles_value_buf.value = styles_value_buf_; } Opt_Array_StyleOptions styles_value = styles_value_buf;; - return GetAccessors()->getStyledStringAccessor()->ctor((const Ark_Union_String_ImageAttachment_CustomSpan*)&value_value, (const Opt_Array_StyleOptions*)&styles_value); + return GetAccessors()->getStyledStringAccessor()->ctor(reinterpret_cast(&value_value), reinterpret_cast(&styles_value)); } KOALA_INTEROP_DIRECT_2(StyledString_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_StyledString_getFinalizer() { @@ -37212,7 +37212,7 @@ KInteropReturnBuffer impl_StyledString_getStyles(Ark_NativePointer thisPtr, KInt styledKey_value_buf.value = static_cast(thisDeserializer.readInt32()); } Opt_StyledStringKey styledKey_value = styledKey_value_buf;; - const auto &retValue = GetAccessors()->getStyledStringAccessor()->getStyles(self, (const Ark_Number*) (&start), (const Ark_Number*) (&length), (const Opt_StyledStringKey*)&styledKey_value); + const auto &retValue = GetAccessors()->getStyledStringAccessor()->getStyles(self, (const Ark_Number*) (&start), (const Ark_Number*) (&length), reinterpret_cast(&styledKey_value)); SerializerBase _retSerializer {}; _retSerializer.writeInt32(retValue.length); for (int i = 0; i < retValue.length; i++) { @@ -37238,13 +37238,13 @@ Ark_NativePointer impl_StyledString_subStyledString(Ark_NativePointer thisPtr, K length_value_buf.value = static_cast(thisDeserializer.readNumber()); } Opt_Number length_value = length_value_buf;; - return GetAccessors()->getStyledStringAccessor()->subStyledString(self, (const Ark_Number*) (&start), (const Opt_Number*)&length_value); + return GetAccessors()->getStyledStringAccessor()->subStyledString(self, (const Ark_Number*) (&start), reinterpret_cast(&length_value)); } KOALA_INTEROP_DIRECT_4(StyledString_subStyledString, Ark_NativePointer, Ark_NativePointer, KInteropNumber, KSerializerBuffer, int32_t) void impl_StyledString_fromHtml(KVMContext vmContext, const KStringPtr& html, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Opt_StyledString_Opt_Array_String_Void outputArgumentForReturningPromise_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Opt_StyledString_Opt_Array_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Opt_StyledString_Opt_Array_String_Void))))};; - GetAccessors()->getStyledStringAccessor()->fromHtml(reinterpret_cast(vmContext), GetAsyncWorker(), (const Ark_String*) (&html), (const Callback_Opt_StyledString_Opt_Array_String_Void*)&outputArgumentForReturningPromise_value); + GetAccessors()->getStyledStringAccessor()->fromHtml(reinterpret_cast(vmContext), GetAsyncWorker(), (const Ark_String*) (&html), reinterpret_cast(&outputArgumentForReturningPromise_value)); } KOALA_INTEROP_CTX_V3(StyledString_fromHtml, KStringPtr, KSerializerBuffer, int32_t) Ark_String impl_StyledString_toHtml(Ark_NativePointer styledString) { @@ -37254,7 +37254,7 @@ KOALA_INTEROP_1(StyledString_toHtml, KStringPtr, Ark_NativePointer) KInteropReturnBuffer impl_StyledString_marshalling0(Ark_NativePointer styledString, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); StyledStringMarshallCallback callback__value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_StyledStringMarshallCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_StyledStringMarshallCallback))))};; - const auto &retValue = GetAccessors()->getStyledStringAccessor()->marshalling0(static_cast(styledString), (const StyledStringMarshallCallback*)&callback__value); + const auto &retValue = GetAccessors()->getStyledStringAccessor()->marshalling0(static_cast(styledString), reinterpret_cast(&callback__value)); SerializerBase _retSerializer {}; _retSerializer.writeBuffer(retValue); return _retSerializer.toReturnBuffer(); @@ -37265,7 +37265,7 @@ void impl_StyledString_unmarshalling0(KVMContext vmContext, KSerializerBuffer th Ark_Buffer buffer_value = static_cast(thisDeserializer.readBuffer());; StyledStringUnmarshallCallback callback__value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_StyledStringUnmarshallCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_StyledStringUnmarshallCallback))))};; Callback_Opt_StyledString_Opt_Array_String_Void outputArgumentForReturningPromise_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Opt_StyledString_Opt_Array_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Opt_StyledString_Opt_Array_String_Void))))};; - GetAccessors()->getStyledStringAccessor()->unmarshalling0(reinterpret_cast(vmContext), GetAsyncWorker(), (const Ark_Buffer*)&buffer_value, (const StyledStringUnmarshallCallback*)&callback__value, (const Callback_Opt_StyledString_Opt_Array_String_Void*)&outputArgumentForReturningPromise_value); + GetAccessors()->getStyledStringAccessor()->unmarshalling0(reinterpret_cast(vmContext), GetAsyncWorker(), reinterpret_cast(&buffer_value), reinterpret_cast(&callback__value), reinterpret_cast(&outputArgumentForReturningPromise_value)); } KOALA_INTEROP_CTX_V2(StyledString_unmarshalling0, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_StyledString_marshalling1(Ark_NativePointer styledString) { @@ -37279,7 +37279,7 @@ void impl_StyledString_unmarshalling1(KVMContext vmContext, KSerializerBuffer th DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Buffer buffer_value = static_cast(thisDeserializer.readBuffer());; Callback_Opt_StyledString_Opt_Array_String_Void outputArgumentForReturningPromise_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Opt_StyledString_Opt_Array_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Opt_StyledString_Opt_Array_String_Void))))};; - GetAccessors()->getStyledStringAccessor()->unmarshalling1(reinterpret_cast(vmContext), GetAsyncWorker(), (const Ark_Buffer*)&buffer_value, (const Callback_Opt_StyledString_Opt_Array_String_Void*)&outputArgumentForReturningPromise_value); + GetAccessors()->getStyledStringAccessor()->unmarshalling1(reinterpret_cast(vmContext), GetAsyncWorker(), reinterpret_cast(&buffer_value), reinterpret_cast(&outputArgumentForReturningPromise_value)); } KOALA_INTEROP_CTX_V2(StyledString_unmarshalling1, KSerializerBuffer, int32_t) Ark_Number impl_StyledString_getLength(Ark_NativePointer thisPtr) { @@ -37347,14 +37347,14 @@ Ark_NativePointer impl_SwipeGesture_$_instantiate(KSerializerBuffer thisArray, i value_value_buf.value = SwipeGestureHandlerOptions_serializer::read(thisDeserializer); } Opt_SwipeGestureHandlerOptions value_value = value_value_buf;; - return GetAccessors()->getSwipeGestureAccessor()->$_instantiate((const Callback_SwipeGesture*)&factory_value, (const Opt_SwipeGestureHandlerOptions*)&value_value); + return GetAccessors()->getSwipeGestureAccessor()->$_instantiate(reinterpret_cast(&factory_value), reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_2(SwipeGesture_$_instantiate, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwipeGesture_onAction(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_SwipeGesture self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_GestureEvent_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_GestureEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_GestureEvent_Void))))};; - GetAccessors()->getSwipeGestureAccessor()->onAction(self, (const Callback_GestureEvent_Void*)&event_value); + GetAccessors()->getSwipeGestureAccessor()->onAction(self, reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_V3(SwipeGesture_onAction, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_SwipeGestureEvent_ctor() { @@ -37481,7 +37481,7 @@ void impl_SwiperController_changeIndex(Ark_NativePointer thisPtr, KInteropNumber animationMode_value_buf.value = static_cast(animationMode_value_buf_); } Opt_Union_SwiperAnimationMode_Boolean animationMode_value = animationMode_value_buf;; - GetAccessors()->getSwiperControllerAccessor()->changeIndex(self, (const Ark_Number*) (&index), (const Opt_Union_SwiperAnimationMode_Boolean*)&animationMode_value); + GetAccessors()->getSwiperControllerAccessor()->changeIndex(self, (const Ark_Number*) (&index), reinterpret_cast(&animationMode_value)); } KOALA_INTEROP_DIRECT_V4(SwiperController_changeIndex, Ark_NativePointer, KInteropNumber, KSerializerBuffer, int32_t) void impl_SwiperController_finishAnimation(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -37495,7 +37495,7 @@ void impl_SwiperController_finishAnimation(Ark_NativePointer thisPtr, KSerialize callback__value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_VoidCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_VoidCallback))))}; } Opt_VoidCallback callback__value = callback__value_buf;; - GetAccessors()->getSwiperControllerAccessor()->finishAnimation(self, (const Opt_VoidCallback*)&callback__value); + GetAccessors()->getSwiperControllerAccessor()->finishAnimation(self, reinterpret_cast(&callback__value)); } KOALA_INTEROP_DIRECT_V3(SwiperController_finishAnimation, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_SwiperController_preloadItems(KVMContext vmContext, Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -37517,7 +37517,7 @@ void impl_SwiperController_preloadItems(KVMContext vmContext, Ark_NativePointer } Opt_Array_Number indices_value = indices_value_buf;; Callback_Opt_Array_String_Void outputArgumentForReturningPromise_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Opt_Array_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Opt_Array_String_Void))))};; - GetAccessors()->getSwiperControllerAccessor()->preloadItems(reinterpret_cast(vmContext), GetAsyncWorker(), self, (const Opt_Array_Number*)&indices_value, (const Callback_Opt_Array_String_Void*)&outputArgumentForReturningPromise_value); + GetAccessors()->getSwiperControllerAccessor()->preloadItems(reinterpret_cast(vmContext), GetAsyncWorker(), self, reinterpret_cast(&indices_value), reinterpret_cast(&outputArgumentForReturningPromise_value)); } KOALA_INTEROP_CTX_V3(SwiperController_preloadItems, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_SwipeRecognizer_ctor() { @@ -37572,7 +37572,7 @@ Ark_Int32 impl_SystemOps_getResourceId(const KStringPtr& bundleName, const KStri params_value_buf.array[params_value_buf_i] = static_cast(thisDeserializer.readString()); } Array_String params_value = params_value_buf;; - return GetAccessors()->getSystemOpsAccessor()->getResourceId((const Ark_String*) (&bundleName), (const Ark_String*) (&moduleName), (const Array_String*)¶ms_value); + return GetAccessors()->getSystemOpsAccessor()->getResourceId((const Ark_String*) (&bundleName), (const Ark_String*) (&moduleName), reinterpret_cast(¶ms_value)); } KOALA_INTEROP_4(SystemOps_getResourceId, Ark_Int32, KStringPtr, KStringPtr, KSerializerBuffer, int32_t) void impl_SystemOps_resourceManagerReset() { @@ -37583,7 +37583,7 @@ void impl_SystemOps_setFrameCallback(KSerializerBuffer thisArray, int32_t thisLe DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Number_Void onFrameCallback_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Void))))};; Callback_Number_Void onIdleCallback_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Void))))};; - GetAccessors()->getSystemOpsAccessor()->setFrameCallback((const Callback_Number_Void*)&onFrameCallback_value, (const Callback_Number_Void*)&onIdleCallback_value, (const Ark_Number*) (&delayTime)); + GetAccessors()->getSystemOpsAccessor()->setFrameCallback(reinterpret_cast(&onFrameCallback_value), reinterpret_cast(&onIdleCallback_value), (const Ark_Number*) (&delayTime)); } KOALA_INTEROP_DIRECT_V3(SystemOps_setFrameCallback, KSerializerBuffer, int32_t, KInteropNumber) Ark_NativePointer impl_TabBarSymbol_ctor() { @@ -37606,7 +37606,7 @@ void impl_TabBarSymbol_setNormal(Ark_NativePointer thisPtr, KSerializerBuffer th Ark_TabBarSymbol self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_SymbolGlyphModifier normal_value = SymbolGlyphModifier_serializer::read(thisDeserializer);; - GetAccessors()->getTabBarSymbolAccessor()->setNormal(self, (const Ark_SymbolGlyphModifier*)&normal_value); + GetAccessors()->getTabBarSymbolAccessor()->setNormal(self, reinterpret_cast(&normal_value)); } KOALA_INTEROP_DIRECT_V3(TabBarSymbol_setNormal, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_TabBarSymbol_getSelected(Ark_NativePointer thisPtr) { @@ -37634,7 +37634,7 @@ void impl_TabBarSymbol_setSelected(Ark_NativePointer thisPtr, KSerializerBuffer selected_value_buf.value = SymbolGlyphModifier_serializer::read(thisDeserializer); } Opt_SymbolGlyphModifier selected_value = selected_value_buf;; - GetAccessors()->getTabBarSymbolAccessor()->setSelected(self, (const Opt_SymbolGlyphModifier*)&selected_value); + GetAccessors()->getTabBarSymbolAccessor()->setSelected(self, reinterpret_cast(&selected_value)); } KOALA_INTEROP_DIRECT_V3(TabBarSymbol_setSelected, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TabContentTransitionProxy_ctor() { @@ -37702,14 +37702,14 @@ void impl_TabsController_preloadItems(KVMContext vmContext, Ark_NativePointer th } Opt_Array_Number indices_value = indices_value_buf;; Callback_Opt_Array_String_Void outputArgumentForReturningPromise_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Opt_Array_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Opt_Array_String_Void))))};; - GetAccessors()->getTabsControllerAccessor()->preloadItems(reinterpret_cast(vmContext), GetAsyncWorker(), self, (const Opt_Array_Number*)&indices_value, (const Callback_Opt_Array_String_Void*)&outputArgumentForReturningPromise_value); + GetAccessors()->getTabsControllerAccessor()->preloadItems(reinterpret_cast(vmContext), GetAsyncWorker(), self, reinterpret_cast(&indices_value), reinterpret_cast(&outputArgumentForReturningPromise_value)); } KOALA_INTEROP_CTX_V3(TabsController_preloadItems, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsController_setTabBarTranslate(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_TabsController self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_TranslateOptions translate_value = TranslateOptions_serializer::read(thisDeserializer);; - GetAccessors()->getTabsControllerAccessor()->setTabBarTranslate(self, (const Ark_TranslateOptions*)&translate_value); + GetAccessors()->getTabsControllerAccessor()->setTabBarTranslate(self, reinterpret_cast(&translate_value)); } KOALA_INTEROP_DIRECT_V3(TabsController_setTabBarTranslate, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_TabsController_setTabBarOpacity(Ark_NativePointer thisPtr, KInteropNumber opacity) { @@ -37728,7 +37728,7 @@ KOALA_INTEROP_DIRECT_0(TapGestureEvent_getFinalizer, Ark_NativePointer) Ark_NativePointer impl_TapGestureInterface_ctor(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_TapGestureParameters value_value = TapGestureParameters_serializer::read(thisDeserializer);; - return GetAccessors()->getTapGestureInterfaceAccessor()->ctor((const Ark_TapGestureParameters*)&value_value); + return GetAccessors()->getTapGestureInterfaceAccessor()->ctor(reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_2(TapGestureInterface_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TapGestureInterface_getFinalizer() { @@ -37739,7 +37739,7 @@ Ark_NativePointer impl_TapGestureInterface_onAction(Ark_NativePointer thisPtr, K Ark_TapGestureInterface self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_GestureEvent_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_GestureEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_GestureEvent_Void))))};; - return GetAccessors()->getTapGestureInterfaceAccessor()->onAction(self, (const Callback_GestureEvent_Void*)&event_value); + return GetAccessors()->getTapGestureInterfaceAccessor()->onAction(self, reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_3(TapGestureInterface_onAction, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TapRecognizer_ctor() { @@ -37785,7 +37785,7 @@ void impl_text_FontCollection_loadFontSync(Ark_NativePointer thisPtr, const KStr INTEROP_FATAL("One of the branches for path_value_buf has to be chosen through deserialisation."); } Ark_Union_String_Resource path_value = static_cast(path_value_buf);; - GetAccessors()->getText_FontCollectionAccessor()->loadFontSync(self, (const Ark_String*) (&name), (const Ark_Union_String_Resource*)&path_value); + GetAccessors()->getText_FontCollectionAccessor()->loadFontSync(self, (const Ark_String*) (&name), reinterpret_cast(&path_value)); } KOALA_INTEROP_V4(text_FontCollection_loadFontSync, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) void impl_text_FontCollection_loadFont(KVMContext vmContext, Ark_NativePointer thisPtr, const KStringPtr& name, KSerializerBuffer thisArray, int32_t thisLength) { @@ -37807,7 +37807,7 @@ void impl_text_FontCollection_loadFont(KVMContext vmContext, Ark_NativePointer t } Ark_Union_String_Resource path_value = static_cast(path_value_buf);; Callback_Opt_Array_String_Void outputArgumentForReturningPromise_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Opt_Array_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Opt_Array_String_Void))))};; - GetAccessors()->getText_FontCollectionAccessor()->loadFont(reinterpret_cast(vmContext), GetAsyncWorker(), self, (const Ark_String*) (&name), (const Ark_Union_String_Resource*)&path_value, (const Callback_Opt_Array_String_Void*)&outputArgumentForReturningPromise_value); + GetAccessors()->getText_FontCollectionAccessor()->loadFont(reinterpret_cast(vmContext), GetAsyncWorker(), self, (const Ark_String*) (&name), reinterpret_cast(&path_value), reinterpret_cast(&outputArgumentForReturningPromise_value)); } KOALA_INTEROP_CTX_V4(text_FontCollection_loadFont, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) void impl_text_FontCollection_clearCaches(Ark_NativePointer thisPtr) { @@ -37850,7 +37850,7 @@ void impl_text_Paragraph_layout(KVMContext vmContext, Ark_NativePointer thisPtr, Ark_text_Paragraph self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Opt_Array_String_Void outputArgumentForReturningPromise_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Opt_Array_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Opt_Array_String_Void))))};; - GetAccessors()->getText_ParagraphAccessor()->layout(reinterpret_cast(vmContext), GetAsyncWorker(), self, (const Ark_Number*) (&width), (const Callback_Opt_Array_String_Void*)&outputArgumentForReturningPromise_value); + GetAccessors()->getText_ParagraphAccessor()->layout(reinterpret_cast(vmContext), GetAsyncWorker(), self, (const Ark_Number*) (&width), reinterpret_cast(&outputArgumentForReturningPromise_value)); } KOALA_INTEROP_CTX_V4(text_Paragraph_layout, Ark_NativePointer, KInteropNumber, KSerializerBuffer, int32_t) void impl_text_Paragraph_paint(Ark_NativePointer thisPtr, Ark_NativePointer canvas, KInteropNumber x, KInteropNumber y) { @@ -37907,7 +37907,7 @@ KInteropReturnBuffer impl_text_Paragraph_getRectsForRange(Ark_NativePointer this Ark_text_Paragraph self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_text_Range range_value = text_Range_serializer::read(thisDeserializer);; - const auto &retValue = GetAccessors()->getText_ParagraphAccessor()->getRectsForRange(self, (const Ark_text_Range*)&range_value, static_cast(widthStyle), static_cast(heightStyle)); + const auto &retValue = GetAccessors()->getText_ParagraphAccessor()->getRectsForRange(self, reinterpret_cast(&range_value), static_cast(widthStyle), static_cast(heightStyle)); SerializerBase _retSerializer {}; _retSerializer.writeInt32(retValue.length); for (int i = 0; i < retValue.length; i++) { @@ -38014,7 +38014,7 @@ KOALA_INTEROP_2(text_Paragraph_getLineMetrics1, KInteropReturnBuffer, Ark_Native Ark_NativePointer impl_text_ParagraphBuilder_ctor(KSerializerBuffer thisArray, int32_t thisLength, Ark_NativePointer fontCollection) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_text_ParagraphStyle paragraphStyle_value = text_ParagraphStyle_serializer::read(thisDeserializer);; - return GetAccessors()->getText_ParagraphBuilderAccessor()->ctor((const Ark_text_ParagraphStyle*)¶graphStyle_value, static_cast(fontCollection)); + return GetAccessors()->getText_ParagraphBuilderAccessor()->ctor(reinterpret_cast(¶graphStyle_value), static_cast(fontCollection)); } KOALA_INTEROP_DIRECT_3(text_ParagraphBuilder_ctor, Ark_NativePointer, KSerializerBuffer, int32_t, Ark_NativePointer) Ark_NativePointer impl_text_ParagraphBuilder_getFinalizer() { @@ -38025,7 +38025,7 @@ void impl_text_ParagraphBuilder_pushStyle(Ark_NativePointer thisPtr, KSerializer Ark_text_ParagraphBuilder self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_text_TextStyle textStyle_value = text_TextStyle_serializer::read(thisDeserializer);; - GetAccessors()->getText_ParagraphBuilderAccessor()->pushStyle(self, (const Ark_text_TextStyle*)&textStyle_value); + GetAccessors()->getText_ParagraphBuilderAccessor()->pushStyle(self, reinterpret_cast(&textStyle_value)); } KOALA_INTEROP_DIRECT_V3(text_ParagraphBuilder_pushStyle, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_text_ParagraphBuilder_popStyle(Ark_NativePointer thisPtr) { @@ -38042,7 +38042,7 @@ void impl_text_ParagraphBuilder_addPlaceholder(Ark_NativePointer thisPtr, KSeria Ark_text_ParagraphBuilder self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_text_PlaceholderSpan placeholderSpan_value = text_PlaceholderSpan_serializer::read(thisDeserializer);; - GetAccessors()->getText_ParagraphBuilderAccessor()->addPlaceholder(self, (const Ark_text_PlaceholderSpan*)&placeholderSpan_value); + GetAccessors()->getText_ParagraphBuilderAccessor()->addPlaceholder(self, reinterpret_cast(&placeholderSpan_value)); } KOALA_INTEROP_DIRECT_V3(text_ParagraphBuilder_addPlaceholder, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_text_ParagraphBuilder_build(Ark_NativePointer thisPtr) { @@ -38089,7 +38089,7 @@ KInteropReturnBuffer impl_text_Run_getGlyphs1(Ark_NativePointer thisPtr, KSerial Ark_text_Run self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_text_Range range_value = text_Range_serializer::read(thisDeserializer);; - const auto &retValue = GetAccessors()->getText_RunAccessor()->getGlyphs1(self, (const Ark_text_Range*)&range_value); + const auto &retValue = GetAccessors()->getText_RunAccessor()->getGlyphs1(self, reinterpret_cast(&range_value)); SerializerBase _retSerializer {}; _retSerializer.writeInt32(retValue.length); for (int i = 0; i < retValue.length; i++) { @@ -38115,7 +38115,7 @@ KInteropReturnBuffer impl_text_Run_getPositions1(Ark_NativePointer thisPtr, KSer Ark_text_Run self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_text_Range range_value = text_Range_serializer::read(thisDeserializer);; - const auto &retValue = GetAccessors()->getText_RunAccessor()->getPositions1(self, (const Ark_text_Range*)&range_value); + const auto &retValue = GetAccessors()->getText_RunAccessor()->getPositions1(self, reinterpret_cast(&range_value)); SerializerBase _retSerializer {}; _retSerializer.writeInt32(retValue.length); for (int i = 0; i < retValue.length; i++) { @@ -38151,7 +38151,7 @@ KInteropReturnBuffer impl_text_Run_getStringIndices(Ark_NativePointer thisPtr, K Ark_text_Run self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_text_Range range_value = text_Range_serializer::read(thisDeserializer);; - const auto &retValue = GetAccessors()->getText_RunAccessor()->getStringIndices(self, (const Ark_text_Range*)&range_value); + const auto &retValue = GetAccessors()->getText_RunAccessor()->getStringIndices(self, reinterpret_cast(&range_value)); SerializerBase _retSerializer {}; _retSerializer.writeInt32(retValue.length); for (int i = 0; i < retValue.length; i++) { @@ -38253,7 +38253,7 @@ Ark_Number impl_text_TextLine_getStringIndexForPosition(Ark_NativePointer thisPt Ark_text_TextLine self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_common2D_Point point_value = common2D_Point_serializer::read(thisDeserializer);; - return GetAccessors()->getText_TextLineAccessor()->getStringIndexForPosition(self, (const Ark_common2D_Point*)&point_value); + return GetAccessors()->getText_TextLineAccessor()->getStringIndexForPosition(self, reinterpret_cast(&point_value)); } KOALA_INTEROP_DIRECT_3(text_TextLine_getStringIndexForPosition, KInteropNumber, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_Number impl_text_TextLine_getOffsetForStringIndex(Ark_NativePointer thisPtr, KInteropNumber index) { @@ -38265,7 +38265,7 @@ void impl_text_TextLine_enumerateCaretOffsets(Ark_NativePointer thisPtr, KSerial Ark_text_TextLine self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); text_Callback_Number_Number_Boolean_Boolean callback__value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_Number_Boolean_Boolean)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_Number_Boolean_Boolean))))};; - GetAccessors()->getText_TextLineAccessor()->enumerateCaretOffsets(self, (const text_Callback_Number_Number_Boolean_Boolean*)&callback__value); + GetAccessors()->getText_TextLineAccessor()->enumerateCaretOffsets(self, reinterpret_cast(&callback__value)); } KOALA_INTEROP_DIRECT_V3(text_TextLine_enumerateCaretOffsets, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_Number impl_text_TextLine_getAlignmentOffset(Ark_NativePointer thisPtr, KInteropNumber alignmentFactor, KInteropNumber alignmentWidth) { @@ -38297,7 +38297,7 @@ void impl_TextAreaController_setTextSelection(Ark_NativePointer thisPtr, KIntero options_value_buf.value = SelectionOptions_serializer::read(thisDeserializer); } Opt_SelectionOptions options_value = options_value_buf;; - GetAccessors()->getTextAreaControllerAccessor()->setTextSelection(self, (const Ark_Number*) (&selectionStart), (const Ark_Number*) (&selectionEnd), (const Opt_SelectionOptions*)&options_value); + GetAccessors()->getTextAreaControllerAccessor()->setTextSelection(self, (const Ark_Number*) (&selectionStart), (const Ark_Number*) (&selectionEnd), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V5(TextAreaController_setTextSelection, Ark_NativePointer, KInteropNumber, KInteropNumber, KSerializerBuffer, int32_t) void impl_TextAreaController_stopEditing(Ark_NativePointer thisPtr) { @@ -38324,7 +38324,7 @@ void impl_TextBaseController_setSelection(Ark_NativePointer thisPtr, KInteropNum options_value_buf.value = SelectionOptions_serializer::read(thisDeserializer); } Opt_SelectionOptions options_value = options_value_buf;; - GetAccessors()->getTextBaseControllerAccessor()->setSelection(self, (const Ark_Number*) (&selectionStart), (const Ark_Number*) (&selectionEnd), (const Opt_SelectionOptions*)&options_value); + GetAccessors()->getTextBaseControllerAccessor()->setSelection(self, (const Ark_Number*) (&selectionStart), (const Ark_Number*) (&selectionEnd), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V5(TextBaseController_setSelection, Ark_NativePointer, KInteropNumber, KInteropNumber, KSerializerBuffer, int32_t) void impl_TextBaseController_closeSelectionMenu(Ark_NativePointer thisPtr) { @@ -38395,7 +38395,7 @@ Ark_Number impl_TextContentControllerBase_addText(Ark_NativePointer thisPtr, con textOperationOptions_value_buf.value = TextContentControllerOptions_serializer::read(thisDeserializer); } Opt_TextContentControllerOptions textOperationOptions_value = textOperationOptions_value_buf;; - return GetAccessors()->getTextContentControllerBaseAccessor()->addText(self, (const Ark_String*) (&text), (const Opt_TextContentControllerOptions*)&textOperationOptions_value); + return GetAccessors()->getTextContentControllerBaseAccessor()->addText(self, (const Ark_String*) (&text), reinterpret_cast(&textOperationOptions_value)); } KOALA_INTEROP_4(TextContentControllerBase_addText, KInteropNumber, Ark_NativePointer, KStringPtr, KSerializerBuffer, int32_t) void impl_TextContentControllerBase_deleteText(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -38409,7 +38409,7 @@ void impl_TextContentControllerBase_deleteText(Ark_NativePointer thisPtr, KSeria range_value_buf.value = TextRange_serializer::read(thisDeserializer); } Opt_TextRange range_value = range_value_buf;; - GetAccessors()->getTextContentControllerBaseAccessor()->deleteText(self, (const Opt_TextRange*)&range_value); + GetAccessors()->getTextContentControllerBaseAccessor()->deleteText(self, reinterpret_cast(&range_value)); } KOALA_INTEROP_DIRECT_V3(TextContentControllerBase_deleteText, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_TextContentControllerBase_getSelection(Ark_NativePointer thisPtr) { @@ -38436,7 +38436,7 @@ Ark_String impl_TextContentControllerBase_getText(Ark_NativePointer thisPtr, KSe range_value_buf.value = TextRange_serializer::read(thisDeserializer); } Opt_TextRange range_value = range_value_buf;; - return GetAccessors()->getTextContentControllerBaseAccessor()->getText(self, (const Opt_TextRange*)&range_value); + return GetAccessors()->getTextContentControllerBaseAccessor()->getText(self, reinterpret_cast(&range_value)); } KOALA_INTEROP_3(TextContentControllerBase_getText, KStringPtr, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TextController_ctor() { @@ -38516,7 +38516,7 @@ Ark_NativePointer impl_TextFieldOps_registerTextFieldValueCallback(Ark_NativePoi } Ark_ResourceStr value_value = static_cast(value_value_buf);; TextFieldValueCallback callback_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_TextFieldValueCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_TextFieldValueCallback))))};; - return GetAccessors()->getTextFieldOpsAccessor()->registerTextFieldValueCallback(node, (const Ark_ResourceStr*)&value_value, (const TextFieldValueCallback*)&callback_value); + return GetAccessors()->getTextFieldOpsAccessor()->registerTextFieldValueCallback(node, reinterpret_cast(&value_value), reinterpret_cast(&callback_value)); } KOALA_INTEROP_DIRECT_3(TextFieldOps_registerTextFieldValueCallback, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TextInputController_ctor() { @@ -38543,7 +38543,7 @@ void impl_TextInputController_setTextSelection(Ark_NativePointer thisPtr, KInter options_value_buf.value = SelectionOptions_serializer::read(thisDeserializer); } Opt_SelectionOptions options_value = options_value_buf;; - GetAccessors()->getTextInputControllerAccessor()->setTextSelection(self, (const Ark_Number*) (&selectionStart), (const Ark_Number*) (&selectionEnd), (const Opt_SelectionOptions*)&options_value); + GetAccessors()->getTextInputControllerAccessor()->setTextSelection(self, (const Ark_Number*) (&selectionStart), (const Ark_Number*) (&selectionEnd), reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V5(TextInputController_setTextSelection, Ark_NativePointer, KInteropNumber, KInteropNumber, KSerializerBuffer, int32_t) void impl_TextInputController_stopEditing(Ark_NativePointer thisPtr) { @@ -38563,7 +38563,7 @@ void impl_TextMenuController_setMenuOptions(Ark_NativePointer thisPtr, KSerializ Ark_TextMenuController self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_TextMenuOptions options_value = TextMenuOptions_serializer::read(thisDeserializer);; - GetAccessors()->getTextMenuControllerAccessor()->setMenuOptions(self, (const Ark_TextMenuOptions*)&options_value); + GetAccessors()->getTextMenuControllerAccessor()->setMenuOptions(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(TextMenuController_setMenuOptions, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TextMenuItemId_ctor() { @@ -38591,7 +38591,7 @@ Ark_NativePointer impl_TextMenuItemId_of(KSerializerBuffer thisArray, int32_t th INTEROP_FATAL("One of the branches for id_value_buf has to be chosen through deserialisation."); } Ark_ResourceStr id_value = static_cast(id_value_buf);; - return GetAccessors()->getTextMenuItemIdAccessor()->of((const Ark_ResourceStr*)&id_value); + return GetAccessors()->getTextMenuItemIdAccessor()->of(reinterpret_cast(&id_value)); } KOALA_INTEROP_DIRECT_2(TextMenuItemId_of, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_Boolean impl_TextMenuItemId_equals(Ark_NativePointer thisPtr, Ark_NativePointer id) { @@ -38671,7 +38671,7 @@ Ark_NativePointer impl_TextShadowStyle_ctor(KSerializerBuffer thisArray, int32_t INTEROP_FATAL("One of the branches for value_value_buf has to be chosen through deserialisation."); } Ark_Union_ShadowOptions_Array_ShadowOptions value_value = static_cast(value_value_buf);; - return GetAccessors()->getTextShadowStyleAccessor()->ctor((const Ark_Union_ShadowOptions_Array_ShadowOptions*)&value_value); + return GetAccessors()->getTextShadowStyleAccessor()->ctor(reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_2(TextShadowStyle_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TextShadowStyle_getFinalizer() { @@ -38700,7 +38700,7 @@ Ark_NativePointer impl_TextStyle_ctor(KSerializerBuffer thisArray, int32_t thisL value_value_buf.value = TextStyleInterface_serializer::read(thisDeserializer); } Opt_TextStyleInterface value_value = value_value_buf;; - return GetAccessors()->getTextStyleAccessor()->ctor((const Opt_TextStyleInterface*)&value_value); + return GetAccessors()->getTextStyleAccessor()->ctor(reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_2(TextStyle_ctor, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TextStyle_getFinalizer() { @@ -38832,7 +38832,7 @@ KOALA_INTEROP_DIRECT_0(ThemeControl_getFinalizer, Ark_NativePointer) void impl_ThemeControl_setDefaultTheme(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_CustomTheme theme_value = CustomTheme_serializer::read(thisDeserializer);; - GetAccessors()->getThemeControlAccessor()->setDefaultTheme((const Ark_CustomTheme*)&theme_value); + GetAccessors()->getThemeControlAccessor()->setDefaultTheme(reinterpret_cast(&theme_value)); } KOALA_INTEROP_DIRECT_V2(ThemeControl_setDefaultTheme, KSerializerBuffer, int32_t) Ark_NativePointer impl_TimePickerDialog_ctor() { @@ -38896,7 +38896,7 @@ void impl_TouchEvent_setTouches(Ark_NativePointer thisPtr, KSerializerBuffer thi touches_value_buf.array[touches_value_buf_i] = TouchObject_serializer::read(thisDeserializer); } Array_TouchObject touches_value = touches_value_buf;; - GetAccessors()->getTouchEventAccessor()->setTouches(self, (const Array_TouchObject*)&touches_value); + GetAccessors()->getTouchEventAccessor()->setTouches(self, reinterpret_cast(&touches_value)); } KOALA_INTEROP_DIRECT_V3(TouchEvent_setTouches, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_TouchEvent_getChangedTouches(Ark_NativePointer thisPtr) { @@ -38922,7 +38922,7 @@ void impl_TouchEvent_setChangedTouches(Ark_NativePointer thisPtr, KSerializerBuf changedTouches_value_buf.array[changedTouches_value_buf_i] = TouchObject_serializer::read(thisDeserializer); } Array_TouchObject changedTouches_value = changedTouches_value_buf;; - GetAccessors()->getTouchEventAccessor()->setChangedTouches(self, (const Array_TouchObject*)&changedTouches_value); + GetAccessors()->getTouchEventAccessor()->setChangedTouches(self, reinterpret_cast(&changedTouches_value)); } KOALA_INTEROP_DIRECT_V3(TouchEvent_setChangedTouches, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TouchEvent_getStopPropagation(Ark_NativePointer thisPtr) { @@ -38936,7 +38936,7 @@ void impl_TouchEvent_setStopPropagation(Ark_NativePointer thisPtr, KSerializerBu Ark_TouchEvent self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Void stopPropagation_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))};; - GetAccessors()->getTouchEventAccessor()->setStopPropagation(self, (const Callback_Void*)&stopPropagation_value); + GetAccessors()->getTouchEventAccessor()->setStopPropagation(self, reinterpret_cast(&stopPropagation_value)); } KOALA_INTEROP_DIRECT_V3(TouchEvent_setStopPropagation, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TouchEvent_getPreventDefault(Ark_NativePointer thisPtr) { @@ -38950,7 +38950,7 @@ void impl_TouchEvent_setPreventDefault(Ark_NativePointer thisPtr, KSerializerBuf Ark_TouchEvent self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Void preventDefault_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))};; - GetAccessors()->getTouchEventAccessor()->setPreventDefault(self, (const Callback_Void*)&preventDefault_value); + GetAccessors()->getTouchEventAccessor()->setPreventDefault(self, reinterpret_cast(&preventDefault_value)); } KOALA_INTEROP_DIRECT_V3(TouchEvent_setPreventDefault, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TransitionEffect_ctor0(const KStringPtr& type) { @@ -38968,25 +38968,25 @@ KOALA_INTEROP_DIRECT_1(TransitionEffect_ctor2, Ark_NativePointer, Ark_Int32) Ark_NativePointer impl_TransitionEffect_ctor3(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_TranslateOptions effect_value = TranslateOptions_serializer::read(thisDeserializer);; - return GetAccessors()->getTransitionEffectAccessor()->ctor3((const Ark_TranslateOptions*)&effect_value); + return GetAccessors()->getTransitionEffectAccessor()->ctor3(reinterpret_cast(&effect_value)); } KOALA_INTEROP_DIRECT_2(TransitionEffect_ctor3, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TransitionEffect_ctor4(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_RotateOptions effect_value = RotateOptions_serializer::read(thisDeserializer);; - return GetAccessors()->getTransitionEffectAccessor()->ctor4((const Ark_RotateOptions*)&effect_value); + return GetAccessors()->getTransitionEffectAccessor()->ctor4(reinterpret_cast(&effect_value)); } KOALA_INTEROP_DIRECT_2(TransitionEffect_ctor4, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TransitionEffect_ctor5(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_ScaleOptions effect_value = ScaleOptions_serializer::read(thisDeserializer);; - return GetAccessors()->getTransitionEffectAccessor()->ctor5((const Ark_ScaleOptions*)&effect_value); + return GetAccessors()->getTransitionEffectAccessor()->ctor5(reinterpret_cast(&effect_value)); } KOALA_INTEROP_DIRECT_2(TransitionEffect_ctor5, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TransitionEffect_ctor6(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_AsymmetricTransitionOption effect_value = AsymmetricTransitionOption_serializer::read(thisDeserializer);; - return GetAccessors()->getTransitionEffectAccessor()->ctor6((const Ark_AsymmetricTransitionOption*)&effect_value); + return GetAccessors()->getTransitionEffectAccessor()->ctor6(reinterpret_cast(&effect_value)); } KOALA_INTEROP_DIRECT_2(TransitionEffect_ctor6, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TransitionEffect_getFinalizer() { @@ -38996,19 +38996,19 @@ KOALA_INTEROP_DIRECT_0(TransitionEffect_getFinalizer, Ark_NativePointer) Ark_NativePointer impl_TransitionEffect_translate(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_TranslateOptions options_value = TranslateOptions_serializer::read(thisDeserializer);; - return GetAccessors()->getTransitionEffectAccessor()->translate((const Ark_TranslateOptions*)&options_value); + return GetAccessors()->getTransitionEffectAccessor()->translate(reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_2(TransitionEffect_translate, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TransitionEffect_rotate(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_RotateOptions options_value = RotateOptions_serializer::read(thisDeserializer);; - return GetAccessors()->getTransitionEffectAccessor()->rotate((const Ark_RotateOptions*)&options_value); + return GetAccessors()->getTransitionEffectAccessor()->rotate(reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_2(TransitionEffect_rotate, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TransitionEffect_scale(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_ScaleOptions options_value = ScaleOptions_serializer::read(thisDeserializer);; - return GetAccessors()->getTransitionEffectAccessor()->scale((const Ark_ScaleOptions*)&options_value); + return GetAccessors()->getTransitionEffectAccessor()->scale(reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_2(TransitionEffect_scale, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TransitionEffect_opacity(KInteropNumber alpha) { @@ -39027,7 +39027,7 @@ Ark_NativePointer impl_TransitionEffect_animation(Ark_NativePointer thisPtr, KSe Ark_TransitionEffect self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_AnimateParam value_value = AnimateParam_serializer::read(thisDeserializer);; - return GetAccessors()->getTransitionEffectAccessor()->animation(self, (const Ark_AnimateParam*)&value_value); + return GetAccessors()->getTransitionEffectAccessor()->animation(self, reinterpret_cast(&value_value)); } KOALA_INTEROP_DIRECT_3(TransitionEffect_animation, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_TransitionEffect_combine(Ark_NativePointer thisPtr, Ark_NativePointer transitionEffect) { @@ -39070,7 +39070,7 @@ void impl_UICommonEvent_setOnClick(Ark_NativePointer thisPtr, KSerializerBuffer callback__value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_ClickEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_ClickEvent_Void))))}; } Opt_Callback_ClickEvent_Void callback__value = callback__value_buf;; - GetAccessors()->getUICommonEventAccessor()->setOnClick(self, (const Opt_Callback_ClickEvent_Void*)&callback__value); + GetAccessors()->getUICommonEventAccessor()->setOnClick(self, reinterpret_cast(&callback__value)); } KOALA_INTEROP_DIRECT_V3(UICommonEvent_setOnClick, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UICommonEvent_setOnTouch(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -39084,7 +39084,7 @@ void impl_UICommonEvent_setOnTouch(Ark_NativePointer thisPtr, KSerializerBuffer callback__value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_TouchEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_TouchEvent_Void))))}; } Opt_Callback_TouchEvent_Void callback__value = callback__value_buf;; - GetAccessors()->getUICommonEventAccessor()->setOnTouch(self, (const Opt_Callback_TouchEvent_Void*)&callback__value); + GetAccessors()->getUICommonEventAccessor()->setOnTouch(self, reinterpret_cast(&callback__value)); } KOALA_INTEROP_DIRECT_V3(UICommonEvent_setOnTouch, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UICommonEvent_setOnAppear(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -39098,7 +39098,7 @@ void impl_UICommonEvent_setOnAppear(Ark_NativePointer thisPtr, KSerializerBuffer callback__value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void callback__value = callback__value_buf;; - GetAccessors()->getUICommonEventAccessor()->setOnAppear(self, (const Opt_Callback_Void*)&callback__value); + GetAccessors()->getUICommonEventAccessor()->setOnAppear(self, reinterpret_cast(&callback__value)); } KOALA_INTEROP_DIRECT_V3(UICommonEvent_setOnAppear, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UICommonEvent_setOnDisappear(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -39112,7 +39112,7 @@ void impl_UICommonEvent_setOnDisappear(Ark_NativePointer thisPtr, KSerializerBuf callback__value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void callback__value = callback__value_buf;; - GetAccessors()->getUICommonEventAccessor()->setOnDisappear(self, (const Opt_Callback_Void*)&callback__value); + GetAccessors()->getUICommonEventAccessor()->setOnDisappear(self, reinterpret_cast(&callback__value)); } KOALA_INTEROP_DIRECT_V3(UICommonEvent_setOnDisappear, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UICommonEvent_setOnKeyEvent(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -39126,7 +39126,7 @@ void impl_UICommonEvent_setOnKeyEvent(Ark_NativePointer thisPtr, KSerializerBuff callback__value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_KeyEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_KeyEvent_Void))))}; } Opt_Callback_KeyEvent_Void callback__value = callback__value_buf;; - GetAccessors()->getUICommonEventAccessor()->setOnKeyEvent(self, (const Opt_Callback_KeyEvent_Void*)&callback__value); + GetAccessors()->getUICommonEventAccessor()->setOnKeyEvent(self, reinterpret_cast(&callback__value)); } KOALA_INTEROP_DIRECT_V3(UICommonEvent_setOnKeyEvent, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UICommonEvent_setOnFocus(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -39140,7 +39140,7 @@ void impl_UICommonEvent_setOnFocus(Ark_NativePointer thisPtr, KSerializerBuffer callback__value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void callback__value = callback__value_buf;; - GetAccessors()->getUICommonEventAccessor()->setOnFocus(self, (const Opt_Callback_Void*)&callback__value); + GetAccessors()->getUICommonEventAccessor()->setOnFocus(self, reinterpret_cast(&callback__value)); } KOALA_INTEROP_DIRECT_V3(UICommonEvent_setOnFocus, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UICommonEvent_setOnBlur(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -39154,7 +39154,7 @@ void impl_UICommonEvent_setOnBlur(Ark_NativePointer thisPtr, KSerializerBuffer t callback__value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))}; } Opt_Callback_Void callback__value = callback__value_buf;; - GetAccessors()->getUICommonEventAccessor()->setOnBlur(self, (const Opt_Callback_Void*)&callback__value); + GetAccessors()->getUICommonEventAccessor()->setOnBlur(self, reinterpret_cast(&callback__value)); } KOALA_INTEROP_DIRECT_V3(UICommonEvent_setOnBlur, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UICommonEvent_setOnHover(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -39168,7 +39168,7 @@ void impl_UICommonEvent_setOnHover(Ark_NativePointer thisPtr, KSerializerBuffer callback__value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_HoverCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_HoverCallback))))}; } Opt_HoverCallback callback__value = callback__value_buf;; - GetAccessors()->getUICommonEventAccessor()->setOnHover(self, (const Opt_HoverCallback*)&callback__value); + GetAccessors()->getUICommonEventAccessor()->setOnHover(self, reinterpret_cast(&callback__value)); } KOALA_INTEROP_DIRECT_V3(UICommonEvent_setOnHover, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UICommonEvent_setOnMouse(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -39182,7 +39182,7 @@ void impl_UICommonEvent_setOnMouse(Ark_NativePointer thisPtr, KSerializerBuffer callback__value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_MouseEvent_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_MouseEvent_Void))))}; } Opt_Callback_MouseEvent_Void callback__value = callback__value_buf;; - GetAccessors()->getUICommonEventAccessor()->setOnMouse(self, (const Opt_Callback_MouseEvent_Void*)&callback__value); + GetAccessors()->getUICommonEventAccessor()->setOnMouse(self, reinterpret_cast(&callback__value)); } KOALA_INTEROP_DIRECT_V3(UICommonEvent_setOnMouse, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UICommonEvent_setOnSizeChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -39196,7 +39196,7 @@ void impl_UICommonEvent_setOnSizeChange(Ark_NativePointer thisPtr, KSerializerBu callback__value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_SizeChangeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_SizeChangeCallback))))}; } Opt_SizeChangeCallback callback__value = callback__value_buf;; - GetAccessors()->getUICommonEventAccessor()->setOnSizeChange(self, (const Opt_SizeChangeCallback*)&callback__value); + GetAccessors()->getUICommonEventAccessor()->setOnSizeChange(self, reinterpret_cast(&callback__value)); } KOALA_INTEROP_DIRECT_V3(UICommonEvent_setOnSizeChange, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UICommonEvent_setOnVisibleAreaApproximateChange(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -39211,7 +39211,7 @@ void impl_UICommonEvent_setOnVisibleAreaApproximateChange(Ark_NativePointer this event_value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_VisibleAreaChangeCallback)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_VisibleAreaChangeCallback))))}; } Opt_VisibleAreaChangeCallback event_value = event_value_buf;; - GetAccessors()->getUICommonEventAccessor()->setOnVisibleAreaApproximateChange(self, (const Ark_VisibleAreaEventOptions*)&options_value, (const Opt_VisibleAreaChangeCallback*)&event_value); + GetAccessors()->getUICommonEventAccessor()->setOnVisibleAreaApproximateChange(self, reinterpret_cast(&options_value), reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_V3(UICommonEvent_setOnVisibleAreaApproximateChange, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_UIContext_ctor() { @@ -39245,7 +39245,7 @@ Ark_String impl_UIContext_getFilteredInspectorTree(KVMContext vmContext, Ark_Nat filters_value_buf.value = filters_value_buf_; } Opt_Array_String filters_value = filters_value_buf;; - return GetAccessors()->getUIContextAccessor()->getFilteredInspectorTree(reinterpret_cast(vmContext), self, (const Opt_Array_String*)&filters_value); + return GetAccessors()->getUIContextAccessor()->getFilteredInspectorTree(reinterpret_cast(vmContext), self, reinterpret_cast(&filters_value)); } KOALA_INTEROP_CTX_3(UIContext_getFilteredInspectorTree, KStringPtr, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_String impl_UIContext_getFilteredInspectorTreeById(KVMContext vmContext, Ark_NativePointer thisPtr, const KStringPtr& id, KInteropNumber depth, KSerializerBuffer thisArray, int32_t thisLength) { @@ -39266,7 +39266,7 @@ Ark_String impl_UIContext_getFilteredInspectorTreeById(KVMContext vmContext, Ark filters_value_buf.value = filters_value_buf_; } Opt_Array_String filters_value = filters_value_buf;; - return GetAccessors()->getUIContextAccessor()->getFilteredInspectorTreeById(reinterpret_cast(vmContext), self, (const Ark_String*) (&id), (const Ark_Number*) (&depth), (const Opt_Array_String*)&filters_value); + return GetAccessors()->getUIContextAccessor()->getFilteredInspectorTreeById(reinterpret_cast(vmContext), self, (const Ark_String*) (&id), (const Ark_Number*) (&depth), reinterpret_cast(&filters_value)); } KOALA_INTEROP_CTX_5(UIContext_getFilteredInspectorTreeById, KStringPtr, Ark_NativePointer, KStringPtr, KInteropNumber, KSerializerBuffer, int32_t) void impl_UIContext_animateTo(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -39274,21 +39274,21 @@ void impl_UIContext_animateTo(Ark_NativePointer thisPtr, KSerializerBuffer thisA DeserializerBase thisDeserializer(thisArray, thisLength); Ark_AnimateParam value_value = AnimateParam_serializer::read(thisDeserializer);; Callback_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))};; - GetAccessors()->getUIContextAccessor()->animateTo(self, (const Ark_AnimateParam*)&value_value, (const Callback_Void*)&event_value); + GetAccessors()->getUIContextAccessor()->animateTo(self, reinterpret_cast(&value_value), reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_V3(UIContext_animateTo, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UIContext_showTextPickerDialog(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_UIContext self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_TextPickerDialogOptions options_value = TextPickerDialogOptions_serializer::read(thisDeserializer);; - GetAccessors()->getUIContextAccessor()->showTextPickerDialog(self, (const Ark_TextPickerDialogOptions*)&options_value); + GetAccessors()->getUIContextAccessor()->showTextPickerDialog(self, reinterpret_cast(&options_value)); } KOALA_INTEROP_DIRECT_V3(UIContext_showTextPickerDialog, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UIContext_runScopedTask(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_UIContext self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Void callback__value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))};; - GetAccessors()->getUIContextAccessor()->runScopedTask(self, (const Callback_Void*)&callback__value); + GetAccessors()->getUIContextAccessor()->runScopedTask(self, reinterpret_cast(&callback__value)); } KOALA_INTEROP_DIRECT_V3(UIContext_runScopedTask, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UIContext_animateToImmediately(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -39296,7 +39296,7 @@ void impl_UIContext_animateToImmediately(Ark_NativePointer thisPtr, KSerializerB DeserializerBase thisDeserializer(thisArray, thisLength); Ark_AnimateParam param_value = AnimateParam_serializer::read(thisDeserializer);; Callback_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))};; - GetAccessors()->getUIContextAccessor()->animateToImmediately(self, (const Ark_AnimateParam*)¶m_value, (const Callback_Void*)&event_value); + GetAccessors()->getUIContextAccessor()->animateToImmediately(self, reinterpret_cast(¶m_value), reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_V3(UIContext_animateToImmediately, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_UIContext_getFrameNodeById(Ark_NativePointer thisPtr, const KStringPtr& id) { @@ -39434,7 +39434,7 @@ void impl_UIContext_openBindSheet(KVMContext vmContext, Ark_NativePointer thisPt } Opt_Number targetId_value = targetId_value_buf;; Callback_Opt_Array_String_Void outputArgumentForReturningPromise_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Opt_Array_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Opt_Array_String_Void))))};; - GetAccessors()->getUIContextAccessor()->openBindSheet(reinterpret_cast(vmContext), GetAsyncWorker(), self, static_cast(bindSheetContent), (const Opt_SheetOptions*)&sheetOptions_value, (const Opt_Number*)&targetId_value, (const Callback_Opt_Array_String_Void*)&outputArgumentForReturningPromise_value); + GetAccessors()->getUIContextAccessor()->openBindSheet(reinterpret_cast(vmContext), GetAsyncWorker(), self, static_cast(bindSheetContent), reinterpret_cast(&sheetOptions_value), reinterpret_cast(&targetId_value), reinterpret_cast(&outputArgumentForReturningPromise_value)); } KOALA_INTEROP_CTX_V4(UIContext_openBindSheet, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UIContext_updateBindSheet(KVMContext vmContext, Ark_NativePointer thisPtr, Ark_NativePointer bindSheetContent, KSerializerBuffer thisArray, int32_t thisLength) { @@ -39450,14 +39450,14 @@ void impl_UIContext_updateBindSheet(KVMContext vmContext, Ark_NativePointer this } Opt_Boolean partialUpdate_value = partialUpdate_value_buf;; Callback_Opt_Array_String_Void outputArgumentForReturningPromise_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Opt_Array_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Opt_Array_String_Void))))};; - GetAccessors()->getUIContextAccessor()->updateBindSheet(reinterpret_cast(vmContext), GetAsyncWorker(), self, static_cast(bindSheetContent), (const Ark_SheetOptions*)&sheetOptions_value, (const Opt_Boolean*)&partialUpdate_value, (const Callback_Opt_Array_String_Void*)&outputArgumentForReturningPromise_value); + GetAccessors()->getUIContextAccessor()->updateBindSheet(reinterpret_cast(vmContext), GetAsyncWorker(), self, static_cast(bindSheetContent), reinterpret_cast(&sheetOptions_value), reinterpret_cast(&partialUpdate_value), reinterpret_cast(&outputArgumentForReturningPromise_value)); } KOALA_INTEROP_CTX_V4(UIContext_updateBindSheet, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UIContext_closeBindSheet(KVMContext vmContext, Ark_NativePointer thisPtr, Ark_NativePointer bindSheetContent, KSerializerBuffer thisArray, int32_t thisLength) { Ark_UIContext self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Opt_Array_String_Void outputArgumentForReturningPromise_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Opt_Array_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Opt_Array_String_Void))))};; - GetAccessors()->getUIContextAccessor()->closeBindSheet(reinterpret_cast(vmContext), GetAsyncWorker(), self, static_cast(bindSheetContent), (const Callback_Opt_Array_String_Void*)&outputArgumentForReturningPromise_value); + GetAccessors()->getUIContextAccessor()->closeBindSheet(reinterpret_cast(vmContext), GetAsyncWorker(), self, static_cast(bindSheetContent), reinterpret_cast(&outputArgumentForReturningPromise_value)); } KOALA_INTEROP_CTX_V4(UIContext_closeBindSheet, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UIContext_clearResourceCache(KVMContext vmContext, Ark_NativePointer thisPtr) { @@ -39494,7 +39494,7 @@ Ark_NativePointer impl_uiEffect_VisualEffect_backgroundColorBlender(Ark_NativePo Ark_uiEffect_VisualEffect self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_uiEffect_BrightnessBlender blender_value = uiEffect_BrightnessBlender_serializer::read(thisDeserializer);; - return GetAccessors()->getUiEffect_VisualEffectAccessor()->backgroundColorBlender(self, (const Ark_uiEffect_BrightnessBlender*)&blender_value); + return GetAccessors()->getUiEffect_VisualEffectAccessor()->backgroundColorBlender(self, reinterpret_cast(&blender_value)); } KOALA_INTEROP_DIRECT_3(uiEffect_VisualEffect_backgroundColorBlender, Ark_NativePointer, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_UIExtensionProxy_ctor() { @@ -39518,7 +39518,7 @@ void impl_UIExtensionProxy_send(Ark_NativePointer thisPtr, KSerializerBuffer thi data_value_buf.values[data_value_buf_i] = data_value_buf_value; } Map_String_Object data_value = data_value_buf;; - GetAccessors()->getUIExtensionProxyAccessor()->send(self, (const Map_String_Object*)&data_value); + GetAccessors()->getUIExtensionProxyAccessor()->send(self, reinterpret_cast(&data_value)); } KOALA_INTEROP_DIRECT_V3(UIExtensionProxy_send, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_UIExtensionProxy_sendSync(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -39534,7 +39534,7 @@ KInteropReturnBuffer impl_UIExtensionProxy_sendSync(Ark_NativePointer thisPtr, K data_value_buf.values[data_value_buf_i] = data_value_buf_value; } Map_String_Object data_value = data_value_buf;; - const auto &retValue = GetAccessors()->getUIExtensionProxyAccessor()->sendSync(self, (const Map_String_Object*)&data_value); + const auto &retValue = GetAccessors()->getUIExtensionProxyAccessor()->sendSync(self, reinterpret_cast(&data_value)); SerializerBase _retSerializer {}; _retSerializer.writeInt32(retValue.size); for (int32_t i = 0; i < retValue.size; i++) { @@ -39550,14 +39550,14 @@ void impl_UIExtensionProxy_onAsyncReceiverRegister(Ark_NativePointer thisPtr, KS Ark_UIExtensionProxy self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_UIExtensionProxy_Void callback__value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_UIExtensionProxy_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_UIExtensionProxy_Void))))};; - GetAccessors()->getUIExtensionProxyAccessor()->onAsyncReceiverRegister(self, (const Callback_UIExtensionProxy_Void*)&callback__value); + GetAccessors()->getUIExtensionProxyAccessor()->onAsyncReceiverRegister(self, reinterpret_cast(&callback__value)); } KOALA_INTEROP_DIRECT_V3(UIExtensionProxy_onAsyncReceiverRegister, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UIExtensionProxy_onSyncReceiverRegister(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_UIExtensionProxy self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_UIExtensionProxy_Void callback__value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_UIExtensionProxy_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_UIExtensionProxy_Void))))};; - GetAccessors()->getUIExtensionProxyAccessor()->onSyncReceiverRegister(self, (const Callback_UIExtensionProxy_Void*)&callback__value); + GetAccessors()->getUIExtensionProxyAccessor()->onSyncReceiverRegister(self, reinterpret_cast(&callback__value)); } KOALA_INTEROP_DIRECT_V3(UIExtensionProxy_onSyncReceiverRegister, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UIExtensionProxy_offAsyncReceiverRegister(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -39571,7 +39571,7 @@ void impl_UIExtensionProxy_offAsyncReceiverRegister(Ark_NativePointer thisPtr, K callback__value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_UIExtensionProxy_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_UIExtensionProxy_Void))))}; } Opt_Callback_UIExtensionProxy_Void callback__value = callback__value_buf;; - GetAccessors()->getUIExtensionProxyAccessor()->offAsyncReceiverRegister(self, (const Opt_Callback_UIExtensionProxy_Void*)&callback__value); + GetAccessors()->getUIExtensionProxyAccessor()->offAsyncReceiverRegister(self, reinterpret_cast(&callback__value)); } KOALA_INTEROP_DIRECT_V3(UIExtensionProxy_offAsyncReceiverRegister, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_UIExtensionProxy_offSyncReceiverRegister(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { @@ -39585,7 +39585,7 @@ void impl_UIExtensionProxy_offSyncReceiverRegister(Ark_NativePointer thisPtr, KS callback__value_buf.value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_UIExtensionProxy_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_UIExtensionProxy_Void))))}; } Opt_Callback_UIExtensionProxy_Void callback__value = callback__value_buf;; - GetAccessors()->getUIExtensionProxyAccessor()->offSyncReceiverRegister(self, (const Opt_Callback_UIExtensionProxy_Void*)&callback__value); + GetAccessors()->getUIExtensionProxyAccessor()->offSyncReceiverRegister(self, reinterpret_cast(&callback__value)); } KOALA_INTEROP_DIRECT_V3(UIExtensionProxy_offSyncReceiverRegister, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_unifiedDataChannel_UnifiedData_ctor() { @@ -39716,21 +39716,21 @@ Ark_Boolean impl_WaterFlowSections_splice(Ark_NativePointer thisPtr, KInteropNum sections_value_buf.value = sections_value_buf_; } Opt_Array_SectionOptions sections_value = sections_value_buf;; - return GetAccessors()->getWaterFlowSectionsAccessor()->splice(self, (const Ark_Number*) (&start), (const Opt_Number*)&deleteCount_value, (const Opt_Array_SectionOptions*)§ions_value); + return GetAccessors()->getWaterFlowSectionsAccessor()->splice(self, (const Ark_Number*) (&start), reinterpret_cast(&deleteCount_value), reinterpret_cast(§ions_value)); } KOALA_INTEROP_DIRECT_4(WaterFlowSections_splice, Ark_Boolean, Ark_NativePointer, KInteropNumber, KSerializerBuffer, int32_t) Ark_Boolean impl_WaterFlowSections_push(Ark_NativePointer thisPtr, KSerializerBuffer thisArray, int32_t thisLength) { Ark_WaterFlowSections self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_SectionOptions section_value = SectionOptions_serializer::read(thisDeserializer);; - return GetAccessors()->getWaterFlowSectionsAccessor()->push(self, (const Ark_SectionOptions*)§ion_value); + return GetAccessors()->getWaterFlowSectionsAccessor()->push(self, reinterpret_cast(§ion_value)); } KOALA_INTEROP_DIRECT_3(WaterFlowSections_push, Ark_Boolean, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_Boolean impl_WaterFlowSections_update(Ark_NativePointer thisPtr, KInteropNumber sectionIndex, KSerializerBuffer thisArray, int32_t thisLength) { Ark_WaterFlowSections self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_SectionOptions section_value = SectionOptions_serializer::read(thisDeserializer);; - return GetAccessors()->getWaterFlowSectionsAccessor()->update(self, (const Ark_Number*) (§ionIndex), (const Ark_SectionOptions*)§ion_value); + return GetAccessors()->getWaterFlowSectionsAccessor()->update(self, (const Ark_Number*) (§ionIndex), reinterpret_cast(§ion_value)); } KOALA_INTEROP_DIRECT_4(WaterFlowSections_update, Ark_Boolean, Ark_NativePointer, KInteropNumber, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_WaterFlowSections_values(Ark_NativePointer thisPtr) { @@ -39790,7 +39790,7 @@ void impl_XComponentController_setXComponentSurfaceRect(Ark_NativePointer thisPt Ark_XComponentController self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_SurfaceRect rect_value = SurfaceRect_serializer::read(thisDeserializer);; - GetAccessors()->getXComponentControllerAccessor()->setXComponentSurfaceRect(self, (const Ark_SurfaceRect*)&rect_value); + GetAccessors()->getXComponentControllerAccessor()->setXComponentSurfaceRect(self, reinterpret_cast(&rect_value)); } KOALA_INTEROP_DIRECT_V3(XComponentController_setXComponentSurfaceRect, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_XComponentController_getXComponentSurfaceRect(Ark_NativePointer thisPtr) { @@ -39805,7 +39805,7 @@ void impl_XComponentController_setXComponentSurfaceRotation(Ark_NativePointer th Ark_XComponentController self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Ark_SurfaceRotationOptions rotationOptions_value = SurfaceRotationOptions_serializer::read(thisDeserializer);; - GetAccessors()->getXComponentControllerAccessor()->setXComponentSurfaceRotation(self, (const Ark_SurfaceRotationOptions*)&rotationOptions_value); + GetAccessors()->getXComponentControllerAccessor()->setXComponentSurfaceRotation(self, reinterpret_cast(&rotationOptions_value)); } KOALA_INTEROP_DIRECT_V3(XComponentController_setXComponentSurfaceRotation, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_XComponentController_getXComponentSurfaceRotation(Ark_NativePointer thisPtr) { @@ -39821,7 +39821,7 @@ void impl_XComponentController_startImageAnalyzer(KVMContext vmContext, Ark_Nati DeserializerBase thisDeserializer(thisArray, thisLength); Ark_ImageAnalyzerConfig config_value = ImageAnalyzerConfig_serializer::read(thisDeserializer);; Callback_Opt_Array_String_Void outputArgumentForReturningPromise_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Opt_Array_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Opt_Array_String_Void))))};; - GetAccessors()->getXComponentControllerAccessor()->startImageAnalyzer(reinterpret_cast(vmContext), GetAsyncWorker(), self, (const Ark_ImageAnalyzerConfig*)&config_value, (const Callback_Opt_Array_String_Void*)&outputArgumentForReturningPromise_value); + GetAccessors()->getXComponentControllerAccessor()->startImageAnalyzer(reinterpret_cast(vmContext), GetAsyncWorker(), self, reinterpret_cast(&config_value), reinterpret_cast(&outputArgumentForReturningPromise_value)); } KOALA_INTEROP_CTX_V3(XComponentController_startImageAnalyzer, Ark_NativePointer, KSerializerBuffer, int32_t) void impl_XComponentController_stopImageAnalyzer(Ark_NativePointer thisPtr) { @@ -39840,7 +39840,7 @@ void impl_XComponentController_setOnSurfaceCreated(Ark_NativePointer thisPtr, KS Ark_XComponentController self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_String_Void onSurfaceCreated_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_String_Void))))};; - GetAccessors()->getXComponentControllerAccessor()->setOnSurfaceCreated(self, (const Callback_String_Void*)&onSurfaceCreated_value); + GetAccessors()->getXComponentControllerAccessor()->setOnSurfaceCreated(self, reinterpret_cast(&onSurfaceCreated_value)); } KOALA_INTEROP_DIRECT_V3(XComponentController_setOnSurfaceCreated, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_XComponentController_getOnSurfaceChanged(Ark_NativePointer thisPtr) { @@ -39854,7 +39854,7 @@ void impl_XComponentController_setOnSurfaceChanged(Ark_NativePointer thisPtr, KS Ark_XComponentController self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_String_SurfaceRect_Void onSurfaceChanged_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_String_SurfaceRect_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_String_SurfaceRect_Void))))};; - GetAccessors()->getXComponentControllerAccessor()->setOnSurfaceChanged(self, (const Callback_String_SurfaceRect_Void*)&onSurfaceChanged_value); + GetAccessors()->getXComponentControllerAccessor()->setOnSurfaceChanged(self, reinterpret_cast(&onSurfaceChanged_value)); } KOALA_INTEROP_DIRECT_V3(XComponentController_setOnSurfaceChanged, Ark_NativePointer, KSerializerBuffer, int32_t) Ark_NativePointer impl_XComponentController_getOnSurfaceDestroyed(Ark_NativePointer thisPtr) { @@ -39868,7 +39868,7 @@ void impl_XComponentController_setOnSurfaceDestroyed(Ark_NativePointer thisPtr, Ark_XComponentController self = reinterpret_cast(thisPtr); DeserializerBase thisDeserializer(thisArray, thisLength); Callback_String_Void onSurfaceDestroyed_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_String_Void))))};; - GetAccessors()->getXComponentControllerAccessor()->setOnSurfaceDestroyed(self, (const Callback_String_Void*)&onSurfaceDestroyed_value); + GetAccessors()->getXComponentControllerAccessor()->setOnSurfaceDestroyed(self, reinterpret_cast(&onSurfaceDestroyed_value)); } KOALA_INTEROP_DIRECT_V3(XComponentController_setOnSurfaceDestroyed, Ark_NativePointer, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_GlobalScope_$r(const KStringPtr& value, KSerializerBuffer thisArray, int32_t thisLength) { @@ -39888,7 +39888,7 @@ KInteropReturnBuffer impl_GlobalScope_$r(const KStringPtr& value, KSerializerBuf params_value_buf.array[params_value_buf_i] = params_value_buf_buf; } Array_Opt_Object params_value = params_value_buf;; - const auto &retValue = GetAccessors()->getGlobalScopeAccessor()->$r((const Ark_String*) (&value), (const Array_Opt_Object*)¶ms_value); + const auto &retValue = GetAccessors()->getGlobalScopeAccessor()->$r((const Ark_String*) (&value), reinterpret_cast(¶ms_value)); SerializerBase _retSerializer {}; Resource_serializer::write(_retSerializer, retValue); return _retSerializer.toReturnBuffer(); @@ -39905,21 +39905,21 @@ void impl_GlobalScope_animateTo(KSerializerBuffer thisArray, int32_t thisLength) DeserializerBase thisDeserializer(thisArray, thisLength); Ark_AnimateParam value_value = AnimateParam_serializer::read(thisDeserializer);; Callback_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))};; - GetAccessors()->getGlobalScopeAccessor()->animateTo((const Ark_AnimateParam*)&value_value, (const Callback_Void*)&event_value); + GetAccessors()->getGlobalScopeAccessor()->animateTo(reinterpret_cast(&value_value), reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_V2(GlobalScope_animateTo, KSerializerBuffer, int32_t) void impl_GlobalScope_animateToImmediately(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_AnimateParam value_value = AnimateParam_serializer::read(thisDeserializer);; Callback_Void event_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Void))))};; - GetAccessors()->getGlobalScopeAccessor()->animateToImmediately((const Ark_AnimateParam*)&value_value, (const Callback_Void*)&event_value); + GetAccessors()->getGlobalScopeAccessor()->animateToImmediately(reinterpret_cast(&value_value), reinterpret_cast(&event_value)); } KOALA_INTEROP_DIRECT_V2(GlobalScope_animateToImmediately, KSerializerBuffer, int32_t) void impl_GlobalScope_ArkUICompatible(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Callback_InteropComponent init_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_InteropComponent)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_InteropComponent))))};; Callback_Number_ESObject_Void update_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Number_ESObject_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Number_ESObject_Void))))};; - GetAccessors()->getGlobalScopeAccessor()->ArkUICompatible((const Callback_InteropComponent*)&init_value, (const Callback_Number_ESObject_Void*)&update_value); + GetAccessors()->getGlobalScopeAccessor()->ArkUICompatible(reinterpret_cast(&init_value), reinterpret_cast(&update_value)); } KOALA_INTEROP_DIRECT_V2(GlobalScope_ArkUICompatible, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_GlobalScope_borderRadiuses(KInteropNumber all) { @@ -39980,13 +39980,13 @@ void impl_GlobalScope_postCardAction(KSerializerBuffer thisArray, int32_t thisLe DeserializerBase thisDeserializer(thisArray, thisLength); Ark_Object component_value = static_cast(thisDeserializer.readObject());; Ark_Object action_value = static_cast(thisDeserializer.readObject());; - GetAccessors()->getGlobalScopeAccessor()->postCardAction((const Ark_Object*)&component_value, (const Ark_Object*)&action_value); + GetAccessors()->getGlobalScopeAccessor()->postCardAction(reinterpret_cast(&component_value), reinterpret_cast(&action_value)); } KOALA_INTEROP_DIRECT_V2(GlobalScope_postCardAction, KSerializerBuffer, int32_t) void impl_GlobalScope_Profiler_registerVsyncCallback(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Profiler_Callback_String_Void callback__value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_String_Void))))};; - GetAccessors()->getGlobalScopeAccessor()->Profiler_registerVsyncCallback((const Profiler_Callback_String_Void*)&callback__value); + GetAccessors()->getGlobalScopeAccessor()->Profiler_registerVsyncCallback(reinterpret_cast(&callback__value)); } KOALA_INTEROP_DIRECT_V2(GlobalScope_Profiler_registerVsyncCallback, KSerializerBuffer, int32_t) void impl_GlobalScope_Profiler_unregisterVsyncCallback() { @@ -40004,26 +40004,26 @@ KOALA_INTEROP_V1(GlobalScope_setAppBgColor, KStringPtr) void impl_GlobalScope_text_getFontDescriptorByFullName(KVMContext vmContext, const KStringPtr& fullName, Ark_Int32 fontType, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Opt_FontDescriptor_Opt_Array_String_Void outputArgumentForReturningPromise_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Opt_FontDescriptor_Opt_Array_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Opt_FontDescriptor_Opt_Array_String_Void))))};; - GetAccessors()->getGlobalScopeAccessor()->text_getFontDescriptorByFullName(reinterpret_cast(vmContext), GetAsyncWorker(), (const Ark_String*) (&fullName), static_cast(fontType), (const Callback_Opt_FontDescriptor_Opt_Array_String_Void*)&outputArgumentForReturningPromise_value); + GetAccessors()->getGlobalScopeAccessor()->text_getFontDescriptorByFullName(reinterpret_cast(vmContext), GetAsyncWorker(), (const Ark_String*) (&fullName), static_cast(fontType), reinterpret_cast(&outputArgumentForReturningPromise_value)); } KOALA_INTEROP_CTX_V4(GlobalScope_text_getFontDescriptorByFullName, KStringPtr, Ark_Int32, KSerializerBuffer, int32_t) void impl_GlobalScope_text_getSystemFontFullNamesByType(KVMContext vmContext, Ark_Int32 fontType, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Callback_Opt_Array_String_Opt_Array_String_Void outputArgumentForReturningPromise_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Opt_Array_String_Opt_Array_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Opt_Array_String_Opt_Array_String_Void))))};; - GetAccessors()->getGlobalScopeAccessor()->text_getSystemFontFullNamesByType(reinterpret_cast(vmContext), GetAsyncWorker(), static_cast(fontType), (const Callback_Opt_Array_String_Opt_Array_String_Void*)&outputArgumentForReturningPromise_value); + GetAccessors()->getGlobalScopeAccessor()->text_getSystemFontFullNamesByType(reinterpret_cast(vmContext), GetAsyncWorker(), static_cast(fontType), reinterpret_cast(&outputArgumentForReturningPromise_value)); } KOALA_INTEROP_CTX_V3(GlobalScope_text_getSystemFontFullNamesByType, Ark_Int32, KSerializerBuffer, int32_t) void impl_GlobalScope_text_matchFontDescriptors(KVMContext vmContext, KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_text_FontDescriptor desc_value = text_FontDescriptor_serializer::read(thisDeserializer);; Callback_Opt_Array_FontDescriptor_Opt_Array_String_Void outputArgumentForReturningPromise_value = {thisDeserializer.readCallbackResource(), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCaller(Kind_Callback_Opt_Array_FontDescriptor_Opt_Array_String_Void)))), reinterpret_cast(thisDeserializer.readPointerOrDefault(reinterpret_cast(getManagedCallbackCallerSync(Kind_Callback_Opt_Array_FontDescriptor_Opt_Array_String_Void))))};; - GetAccessors()->getGlobalScopeAccessor()->text_matchFontDescriptors(reinterpret_cast(vmContext), GetAsyncWorker(), (const Ark_text_FontDescriptor*)&desc_value, (const Callback_Opt_Array_FontDescriptor_Opt_Array_String_Void*)&outputArgumentForReturningPromise_value); + GetAccessors()->getGlobalScopeAccessor()->text_matchFontDescriptors(reinterpret_cast(vmContext), GetAsyncWorker(), reinterpret_cast(&desc_value), reinterpret_cast(&outputArgumentForReturningPromise_value)); } KOALA_INTEROP_CTX_V2(GlobalScope_text_matchFontDescriptors, KSerializerBuffer, int32_t) KInteropReturnBuffer impl_GlobalScope_uiEffect_createBrightnessBlender(KSerializerBuffer thisArray, int32_t thisLength) { DeserializerBase thisDeserializer(thisArray, thisLength); Ark_uiEffect_BrightnessBlenderParam param_value = uiEffect_BrightnessBlenderParam_serializer::read(thisDeserializer);; - const auto &retValue = GetAccessors()->getGlobalScopeAccessor()->uiEffect_createBrightnessBlender((const Ark_uiEffect_BrightnessBlenderParam*)¶m_value); + const auto &retValue = GetAccessors()->getGlobalScopeAccessor()->uiEffect_createBrightnessBlender(reinterpret_cast(¶m_value)); SerializerBase _retSerializer {}; uiEffect_BrightnessBlender_serializer::write(_retSerializer, retValue); return _retSerializer.toReturnBuffer(); diff --git a/arkoala-arkts/framework/native/src/generated/callback_kind.h b/arkoala-arkts/framework/native/src/generated/callback_kind.h index 5f7709a0edc40eca575d3b61b507e3b6432fa105..2031f21cdb5e0ef1c2db948bc9aa191504b9a803 100644 --- a/arkoala-arkts/framework/native/src/generated/callback_kind.h +++ b/arkoala-arkts/framework/native/src/generated/callback_kind.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Huawei Device Co., Ltd. + * Copyright (c) 2024-2025 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/arkoala-arkts/framework/native/src/generated/dummy_impl.cc b/arkoala-arkts/framework/native/src/generated/dummy_impl.cc index 187bd9e15f90f5e0809aadc04ff0d21cb4030ef6..b42bd0820fcec7fb81685f9b69dfdc82a8c64f64 100644 --- a/arkoala-arkts/framework/native/src/generated/dummy_impl.cc +++ b/arkoala-arkts/framework/native/src/generated/dummy_impl.cc @@ -28,6 +28,9 @@ #include "dynamic-loader.h" #include "arkoala_api_generated.h" +static const int DUMMY_RET_VAL_100 = 100; +static const int DUMMY_RET_VAL_300 = 300; + #undef max // For logging we use operations exposed via interop, SetLoggerSymbol() is called @@ -751,7 +754,7 @@ Ark_Int32 MeasureNode(Ark_VMContext vmContext, Ark_NodeHandle node, Ark_Float32* } Ark_Int32 LayoutNode(Ark_VMContext vmContext, Ark_NodeHandle node, Ark_Float32 (*data)[2]) { - return AsNode(node)->layout(vmContext, (Ark_Float32*)data); + return AsNode(node)->layout(vmContext, reinterpret_cast(data)); } Ark_Int32 DrawNode(Ark_VMContext vmContext, Ark_NodeHandle node, Ark_Float32* data) { @@ -868,6 +871,20 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(") \n"); appendGroupedLog(1, out); } + void DrawModifierImpl(Ark_NativePointer node, + const Opt_DrawModifier* value) + { + if (value->value) { + auto frameNode = AsNode(node); + frameNode->setDrawModifier(value->value); + } + if (!needGroupedLog(1)) + return; + string out("drawModifier("); + WriteToString(&out, value); + out.append(") \n"); + appendGroupedLog(1, out); + } } // CommonMethodModifier namespace EventEmulatorAccessor { @@ -2361,20 +2378,6 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(") \n"); appendGroupedLog(1, out); } - void DrawModifierImpl(Ark_NativePointer node, - const Opt_DrawModifier* value) - { - if (value->value) { - auto frameNode = AsNode(node); - frameNode->setDrawModifier(value->value); - } - if (!needGroupedLog(1)) - return; - string out("drawModifier("); - WriteToString(&out, value); - out.append(") \n"); - appendGroupedLog(1, out); - } void ResponseRegionImpl(Ark_NativePointer node, const Opt_Union_Array_Rectangle_Rectangle* value) { @@ -18918,12 +18921,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_AccessibilityHoverEvent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_AccessibilityHoverEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new AccessibilityHoverEvent("); out.append(") \n"); - out.append("[return (Ark_AccessibilityHoverEvent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_AccessibilityHoverEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -19152,13 +19155,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_AppearSymbolEffect CtorImpl(const Opt_EffectScope* scope) { if (!needGroupedLog(1)) - return (Ark_AppearSymbolEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new AppearSymbolEffect("); WriteToString(&out, scope); out.append(") \n"); - out.append("[return (Ark_AppearSymbolEffect) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_AppearSymbolEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -19203,12 +19206,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_AxisEvent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_AxisEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new AxisEvent("); out.append(") \n"); - out.append("[return (Ark_AxisEvent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_AxisEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -19433,13 +19436,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_BackgroundColorStyle CtorImpl(const Ark_TextBackgroundStyle* textBackgroundStyle) { if (!needGroupedLog(1)) - return (Ark_BackgroundColorStyle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new BackgroundColorStyle("); WriteToString(&out, textBackgroundStyle); out.append(") \n"); - out.append("[return (Ark_BackgroundColorStyle) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_BackgroundColorStyle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -19474,12 +19477,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_BaseContext CtorImpl() { if (!needGroupedLog(1)) - return (Ark_BaseContext) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new BaseContext("); out.append(") \n"); - out.append("[return (Ark_BaseContext) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_BaseContext) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -19504,12 +19507,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_BaseEvent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_BaseEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new BaseEvent("); out.append(") \n"); - out.append("[return (Ark_BaseEvent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_BaseEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -19794,12 +19797,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_BaseGestureEvent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_BaseGestureEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new BaseGestureEvent("); out.append(") \n"); - out.append("[return (Ark_BaseGestureEvent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_BaseGestureEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -19844,13 +19847,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_BaselineOffsetStyle CtorImpl(Ark_LengthMetrics value) { if (!needGroupedLog(1)) - return (Ark_BaselineOffsetStyle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new BaselineOffsetStyle("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_BaselineOffsetStyle) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_BaselineOffsetStyle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -19885,12 +19888,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_BaseShape CtorImpl() { if (!needGroupedLog(1)) - return (Ark_BaseShape) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new BaseShape("); out.append(") \n"); - out.append("[return (Ark_BaseShape) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_BaseShape) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -19906,37 +19909,37 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Length* width) { if (!needGroupedLog(1)) - return (Ark_BaseShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("width("); WriteToString(&out, width); out.append(") \n"); - out.append("[return (Ark_BaseShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_BaseShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_BaseShape HeightImpl(Ark_BaseShape peer, const Ark_Length* height) { if (!needGroupedLog(1)) - return (Ark_BaseShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("height("); WriteToString(&out, height); out.append(") \n"); - out.append("[return (Ark_BaseShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_BaseShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_BaseShape SizeImpl(Ark_BaseShape peer, const Ark_SizeOptions* size) { if (!needGroupedLog(1)) - return (Ark_BaseShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("size("); WriteToString(&out, size); out.append(") \n"); - out.append("[return (Ark_BaseShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_BaseShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // BaseShapeAccessor namespace BounceSymbolEffectAccessor { @@ -19952,15 +19955,15 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Opt_EffectDirection* direction) { if (!needGroupedLog(1)) - return (Ark_BounceSymbolEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new BounceSymbolEffect("); WriteToString(&out, scope); out.append(", "); WriteToString(&out, direction); out.append(") \n"); - out.append("[return (Ark_BounceSymbolEffect) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_BounceSymbolEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -20025,12 +20028,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_CalendarController CtorImpl() { if (!needGroupedLog(1)) - return (Ark_CalendarController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new CalendarController("); out.append(") \n"); - out.append("[return (Ark_CalendarController) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_CalendarController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -20073,12 +20076,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_CalendarPickerDialog CtorImpl() { if (!needGroupedLog(1)) - return (Ark_CalendarPickerDialog) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new CalendarPickerDialog("); out.append(") \n"); - out.append("[return (Ark_CalendarPickerDialog) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_CalendarPickerDialog) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -20112,12 +20115,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_CanvasGradient CtorImpl() { if (!needGroupedLog(1)) - return (Ark_CanvasGradient) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new CanvasGradient("); out.append(") \n"); - out.append("[return (Ark_CanvasGradient) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_CanvasGradient) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -20155,12 +20158,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_CanvasPath CtorImpl() { if (!needGroupedLog(1)) - return (Ark_CanvasPath) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new CanvasPath("); out.append(") \n"); - out.append("[return (Ark_CanvasPath) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_CanvasPath) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -20360,12 +20363,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_CanvasPattern CtorImpl() { if (!needGroupedLog(1)) - return (Ark_CanvasPattern) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new CanvasPattern("); out.append(") \n"); - out.append("[return (Ark_CanvasPattern) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_CanvasPattern) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -20400,12 +20403,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_CanvasRenderer CtorImpl() { if (!needGroupedLog(1)) - return (Ark_CanvasRenderer) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new CanvasRenderer("); out.append(") \n"); - out.append("[return (Ark_CanvasRenderer) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_CanvasRenderer) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -20560,7 +20563,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Number* y1) { if (!needGroupedLog(1)) - return (Ark_CanvasGradient) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createLinearGradient("); WriteToString(&out, x0); out.append(", "); @@ -20570,9 +20573,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, y1); out.append(") \n"); - out.append("[return (Ark_CanvasGradient) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_CanvasGradient) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Opt_CanvasPattern CreatePatternImpl(Ark_CanvasRenderer peer, Ark_ImageBitmap image, @@ -20598,7 +20601,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Number* r1) { if (!needGroupedLog(1)) - return (Ark_CanvasGradient) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createRadialGradient("); WriteToString(&out, x0); out.append(", "); @@ -20612,9 +20615,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, r1); out.append(") \n"); - out.append("[return (Ark_CanvasGradient) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_CanvasGradient) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_CanvasGradient CreateConicGradientImpl(Ark_CanvasRenderer peer, const Ark_Number* startAngle, @@ -20622,7 +20625,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Number* y) { if (!needGroupedLog(1)) - return (Ark_CanvasGradient) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createConicGradient("); WriteToString(&out, startAngle); out.append(", "); @@ -20630,36 +20633,36 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, y); out.append(") \n"); - out.append("[return (Ark_CanvasGradient) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_CanvasGradient) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_ImageData CreateImageData0Impl(Ark_CanvasRenderer peer, const Ark_Number* sw, const Ark_Number* sh) { if (!needGroupedLog(1)) - return (Ark_ImageData) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createImageData("); WriteToString(&out, sw); out.append(", "); WriteToString(&out, sh); out.append(") \n"); - out.append("[return (Ark_ImageData) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_ImageData) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_ImageData CreateImageData1Impl(Ark_CanvasRenderer peer, Ark_ImageData imagedata) { if (!needGroupedLog(1)) - return (Ark_ImageData) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createImageData("); WriteToString(&out, imagedata); out.append(") \n"); - out.append("[return (Ark_ImageData) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_ImageData) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_ImageData GetImageDataImpl(Ark_CanvasRenderer peer, const Ark_Number* sx, @@ -20668,7 +20671,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Number* sh) { if (!needGroupedLog(1)) - return (Ark_ImageData) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getImageData("); WriteToString(&out, sx); out.append(", "); @@ -20678,9 +20681,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, sh); out.append(") \n"); - out.append("[return (Ark_ImageData) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_ImageData) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_image_PixelMap GetPixelMapImpl(Ark_CanvasRenderer peer, const Ark_Number* sx, @@ -20689,7 +20692,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Number* sh) { if (!needGroupedLog(1)) - return (Ark_image_PixelMap) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getPixelMap("); WriteToString(&out, sx); out.append(", "); @@ -20699,9 +20702,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, sh); out.append(") \n"); - out.append("[return (Ark_image_PixelMap) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_image_PixelMap) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } void PutImageData0Impl(Ark_CanvasRenderer peer, Ark_ImageData imagedata, @@ -20893,12 +20896,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_Matrix2D GetTransformImpl(Ark_CanvasRenderer peer) { if (!needGroupedLog(1)) - return (Ark_Matrix2D) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getTransform("); out.append(") \n"); - out.append("[return (Ark_Matrix2D) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_Matrix2D) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } void ResetTransformImpl(Ark_CanvasRenderer peer) { @@ -21482,15 +21485,15 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Opt_LengthMetricsUnit* unit) { if (!needGroupedLog(1)) - return (Ark_CanvasRenderingContext2D) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new CanvasRenderingContext2D("); WriteToString(&out, settings); out.append(", "); WriteToString(&out, unit); out.append(") \n"); - out.append("[return (Ark_CanvasRenderingContext2D) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_CanvasRenderingContext2D) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -21625,12 +21628,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_FrameNode GetCanvasImpl(Ark_CanvasRenderingContext2D peer) { if (!needGroupedLog(1)) - return (Ark_FrameNode) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getCanvas("); out.append(") \n"); - out.append("[return (Ark_FrameNode) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_FrameNode) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } void SetCanvasImpl(Ark_CanvasRenderingContext2D peer, Ark_FrameNode canvas) @@ -21655,13 +21658,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ChildrenMainSize CtorImpl(const Ark_Number* childDefaultSize) { if (!needGroupedLog(1)) - return (Ark_ChildrenMainSize) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ChildrenMainSize("); WriteToString(&out, childDefaultSize); out.append(") \n"); - out.append("[return (Ark_ChildrenMainSize) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ChildrenMainSize) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -21735,13 +21738,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_CircleShape CtorImpl(const Opt_ShapeSize* options) { if (!needGroupedLog(1)) - return (Ark_CircleShape) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new CircleShape("); WriteToString(&out, options); out.append(") \n"); - out.append("[return (Ark_CircleShape) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_CircleShape) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -21757,73 +21760,73 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Position* offset) { if (!needGroupedLog(1)) - return (Ark_CircleShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("offset("); WriteToString(&out, offset); out.append(") \n"); - out.append("[return (Ark_CircleShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_CircleShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_CircleShape FillImpl(Ark_CircleShape peer, const Ark_ResourceColor* color) { if (!needGroupedLog(1)) - return (Ark_CircleShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("fill("); WriteToString(&out, color); out.append(") \n"); - out.append("[return (Ark_CircleShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_CircleShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_CircleShape PositionImpl(Ark_CircleShape peer, const Ark_Position* position) { if (!needGroupedLog(1)) - return (Ark_CircleShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("position("); WriteToString(&out, position); out.append(") \n"); - out.append("[return (Ark_CircleShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_CircleShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_CircleShape WidthImpl(Ark_CircleShape peer, const Ark_Length* width) { if (!needGroupedLog(1)) - return (Ark_CircleShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("width("); WriteToString(&out, width); out.append(") \n"); - out.append("[return (Ark_CircleShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_CircleShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_CircleShape HeightImpl(Ark_CircleShape peer, const Ark_Length* height) { if (!needGroupedLog(1)) - return (Ark_CircleShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("height("); WriteToString(&out, height); out.append(") \n"); - out.append("[return (Ark_CircleShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_CircleShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_CircleShape SizeImpl(Ark_CircleShape peer, const Ark_SizeOptions* size) { if (!needGroupedLog(1)) - return (Ark_CircleShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("size("); WriteToString(&out, size); out.append(") \n"); - out.append("[return (Ark_CircleShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_CircleShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // CircleShapeAccessor namespace ClickEventAccessor { @@ -21838,12 +21841,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ClickEvent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_ClickEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ClickEvent("); out.append(") \n"); - out.append("[return (Ark_ClickEvent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ClickEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -22028,12 +22031,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ColorContent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_ColorContent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ColorContent("); out.append(") \n"); - out.append("[return (Ark_ColorContent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ColorContent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -22048,12 +22051,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ColorContent GetORIGINImpl() { if (!needGroupedLog(1)) - return (Ark_ColorContent) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getORIGIN("); out.append(") \n"); - out.append("[return (Ark_ColorContent) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_ColorContent) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // ColorContentAccessor namespace ColorFilterAccessor { @@ -22068,13 +22071,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ColorFilter CtorImpl(const Array_Number* value) { if (!needGroupedLog(1)) - return (Ark_ColorFilter) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ColorFilter("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_ColorFilter) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ColorFilter) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -22099,12 +22102,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ColorMetrics CtorImpl() { if (!needGroupedLog(1)) - return (Ark_ColorMetrics) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ColorMetrics("); out.append(") \n"); - out.append("[return (Ark_ColorMetrics) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ColorMetrics) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -22119,13 +22122,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ColorMetrics NumericImpl(const Ark_Number* value) { if (!needGroupedLog(1)) - return (Ark_ColorMetrics) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("numeric("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_ColorMetrics) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_ColorMetrics) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_ColorMetrics RgbaImpl(const Ark_Number* red, const Ark_Number* green, @@ -22133,7 +22136,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Number* alpha) { if (!needGroupedLog(1)) - return (Ark_ColorMetrics) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("rgba("); WriteToString(&out, red); out.append(", "); @@ -22143,32 +22146,32 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, alpha); out.append(") \n"); - out.append("[return (Ark_ColorMetrics) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_ColorMetrics) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_ColorMetrics ResourceColorImpl(const Ark_ResourceColor* color) { if (!needGroupedLog(1)) - return (Ark_ColorMetrics) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("resourceColor("); WriteToString(&out, color); out.append(") \n"); - out.append("[return (Ark_ColorMetrics) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_ColorMetrics) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_ColorMetrics BlendColorImpl(Ark_ColorMetrics peer, Ark_ColorMetrics overlayColor) { if (!needGroupedLog(1)) - return (Ark_ColorMetrics) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("blendColor("); WriteToString(&out, overlayColor); out.append(") \n"); - out.append("[return (Ark_ColorMetrics) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_ColorMetrics) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_String ColorImpl(Ark_ColorMetrics peer) { @@ -22233,12 +22236,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_common_Context CtorImpl() { if (!needGroupedLog(1)) - return (Ark_common_Context) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new common_Context("); out.append(") \n"); - out.append("[return (Ark_common_Context) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_common_Context) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -22255,26 +22258,26 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_String* bundleName) { if (!needGroupedLog(1)) - return (Ark_common_Context) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createBundleContext("); WriteToString(&out, bundleName); out.append(") \n"); - out.append("[return (Ark_common_Context) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_common_Context) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_common_Context CreateModuleContext0Impl(Ark_VMContext vmContext, Ark_common_Context peer, const Ark_String* moduleName) { if (!needGroupedLog(1)) - return (Ark_common_Context) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createModuleContext("); WriteToString(&out, moduleName); out.append(") \n"); - out.append("[return (Ark_common_Context) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_common_Context) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_common_Context CreateModuleContext1Impl(Ark_VMContext vmContext, Ark_common_Context peer, @@ -22282,15 +22285,15 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_String* moduleName) { if (!needGroupedLog(1)) - return (Ark_common_Context) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createModuleContext("); WriteToString(&out, bundleName); out.append(", "); WriteToString(&out, moduleName); out.append(") \n"); - out.append("[return (Ark_common_Context) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_common_Context) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } void GetGroupDir0Impl(Ark_VMContext vmContext, Ark_common_Context peer, @@ -22514,12 +22517,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_CommonShape CtorImpl() { if (!needGroupedLog(1)) - return (Ark_CommonShape) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new CommonShape("); out.append(") \n"); - out.append("[return (Ark_CommonShape) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_CommonShape) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -22535,37 +22538,37 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Position* offset) { if (!needGroupedLog(1)) - return (Ark_CommonShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("offset("); WriteToString(&out, offset); out.append(") \n"); - out.append("[return (Ark_CommonShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_CommonShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_CommonShape FillImpl(Ark_CommonShape peer, const Ark_ResourceColor* color) { if (!needGroupedLog(1)) - return (Ark_CommonShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("fill("); WriteToString(&out, color); out.append(") \n"); - out.append("[return (Ark_CommonShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_CommonShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_CommonShape PositionImpl(Ark_CommonShape peer, const Ark_Position* position) { if (!needGroupedLog(1)) - return (Ark_CommonShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("position("); WriteToString(&out, position); out.append(") \n"); - out.append("[return (Ark_CommonShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_CommonShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // CommonShapeAccessor namespace ComponentContentAccessor { @@ -22580,12 +22583,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ComponentContent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_ComponentContent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ComponentContent("); out.append(") \n"); - out.append("[return (Ark_ComponentContent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ComponentContent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -22851,12 +22854,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_Context CtorImpl() { if (!needGroupedLog(1)) - return (Ark_Context) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new Context("); out.append(") \n"); - out.append("[return (Ark_Context) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_Context) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -22881,13 +22884,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_CustomDialogController CtorImpl(const Ark_CustomDialogControllerOptions* value) { if (!needGroupedLog(1)) - return (Ark_CustomDialogController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new CustomDialogController("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_CustomDialogController) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_CustomDialogController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -22928,12 +22931,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_CustomSpan CtorImpl() { if (!needGroupedLog(1)) - return (Ark_CustomSpan) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new CustomSpan("); out.append(") \n"); - out.append("[return (Ark_CustomSpan) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_CustomSpan) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -23006,12 +23009,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_DatePickerDialog CtorImpl() { if (!needGroupedLog(1)) - return (Ark_DatePickerDialog) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new DatePickerDialog("); out.append(") \n"); - out.append("[return (Ark_DatePickerDialog) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_DatePickerDialog) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -23036,13 +23039,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_DecorationStyle CtorImpl(const Ark_DecorationStyleInterface* value) { if (!needGroupedLog(1)) - return (Ark_DecorationStyle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new DecorationStyle("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_DecorationStyle) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_DecorationStyle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -23097,13 +23100,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_DisappearSymbolEffect CtorImpl(const Opt_EffectScope* scope) { if (!needGroupedLog(1)) - return (Ark_DisappearSymbolEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new DisappearSymbolEffect("); WriteToString(&out, scope); out.append(") \n"); - out.append("[return (Ark_DisappearSymbolEffect) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_DisappearSymbolEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -23148,12 +23151,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_DragEvent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_DragEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new DragEvent("); out.append(") \n"); - out.append("[return (Ark_DragEvent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_DragEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -23218,12 +23221,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_unifiedDataChannel_UnifiedData GetDataImpl(Ark_DragEvent peer) { if (!needGroupedLog(1)) - return (Ark_unifiedDataChannel_UnifiedData) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getData("); out.append(") \n"); - out.append("[return (Ark_unifiedDataChannel_UnifiedData) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_unifiedDataChannel_UnifiedData) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_unifiedDataChannel_Summary GetSummaryImpl(Ark_DragEvent peer) { @@ -23378,12 +23381,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_DrawableDescriptor CtorImpl() { if (!needGroupedLog(1)) - return (Ark_DrawableDescriptor) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new DrawableDescriptor("); out.append(") \n"); - out.append("[return (Ark_DrawableDescriptor) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_DrawableDescriptor) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -23398,12 +23401,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_image_PixelMap GetPixelMapImpl(Ark_DrawableDescriptor peer) { if (!needGroupedLog(1)) - return (Ark_image_PixelMap) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getPixelMap("); out.append(") \n"); - out.append("[return (Ark_image_PixelMap) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_image_PixelMap) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // DrawableDescriptorAccessor namespace DrawContextAccessor { @@ -23418,12 +23421,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_DrawContext CtorImpl() { if (!needGroupedLog(1)) - return (Ark_DrawContext) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new DrawContext("); out.append(") \n"); - out.append("[return (Ark_DrawContext) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_DrawContext) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -23458,12 +23461,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_Canvas CanvasImpl(Ark_DrawContext peer) { if (!needGroupedLog(1)) - return (Ark_drawing_Canvas) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("canvas("); out.append(") \n"); - out.append("[return (Ark_drawing_Canvas) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_Canvas) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // DrawContextAccessor namespace Drawing_BrushAccessor { @@ -23478,23 +23481,23 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_Brush Ctor0Impl() { if (!needGroupedLog(1)) - return (Ark_drawing_Brush) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new drawing_Brush("); out.append(") \n"); - out.append("[return (Ark_drawing_Brush) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_Brush) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_drawing_Brush Ctor1Impl(Ark_drawing_Brush brush) { if (!needGroupedLog(1)) - return (Ark_drawing_Brush) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new drawing_Brush("); WriteToString(&out, brush); out.append(") \n"); - out.append("[return (Ark_drawing_Brush) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_Brush) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -23618,12 +23621,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_ColorFilter GetColorFilterImpl(Ark_drawing_Brush peer) { if (!needGroupedLog(1)) - return (Ark_drawing_ColorFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getColorFilter("); out.append(") \n"); - out.append("[return (Ark_drawing_ColorFilter) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_ColorFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } void SetImageFilterImpl(Ark_drawing_Brush peer, const Opt_drawing_ImageFilter* filter) @@ -23696,13 +23699,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_Canvas CtorImpl(Ark_image_PixelMap pixelmap) { if (!needGroupedLog(1)) - return (Ark_drawing_Canvas) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new drawing_Canvas("); WriteToString(&out, pixelmap); out.append(") \n"); - out.append("[return (Ark_drawing_Canvas) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_Canvas) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -24249,12 +24252,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_Matrix GetTotalMatrixImpl(Ark_drawing_Canvas peer) { if (!needGroupedLog(1)) - return (Ark_drawing_Matrix) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getTotalMatrix("); out.append(") \n"); - out.append("[return (Ark_drawing_Matrix) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_Matrix) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } void ScaleImpl(Ark_drawing_Canvas peer, const Ark_Number* sx, @@ -24423,12 +24426,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_ColorFilter CtorImpl() { if (!needGroupedLog(1)) - return (Ark_drawing_ColorFilter) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new drawing_ColorFilter("); out.append(") \n"); - out.append("[return (Ark_drawing_ColorFilter) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_ColorFilter) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -24444,84 +24447,84 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_BlendMode mode) { if (!needGroupedLog(1)) - return (Ark_drawing_ColorFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createBlendModeColorFilter("); WriteToString(&out, color); out.append(", "); WriteToString(&out, mode); out.append(") \n"); - out.append("[return (Ark_drawing_ColorFilter) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_ColorFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_drawing_ColorFilter CreateBlendModeColorFilter1Impl(const Ark_Number* color, Ark_drawing_BlendMode mode) { if (!needGroupedLog(1)) - return (Ark_drawing_ColorFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createBlendModeColorFilter("); WriteToString(&out, color); out.append(", "); WriteToString(&out, mode); out.append(") \n"); - out.append("[return (Ark_drawing_ColorFilter) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_ColorFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_drawing_ColorFilter CreateComposeColorFilterImpl(Ark_drawing_ColorFilter outer, Ark_drawing_ColorFilter inner) { if (!needGroupedLog(1)) - return (Ark_drawing_ColorFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createComposeColorFilter("); WriteToString(&out, outer); out.append(", "); WriteToString(&out, inner); out.append(") \n"); - out.append("[return (Ark_drawing_ColorFilter) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_ColorFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_drawing_ColorFilter CreateLinearToSRGBGammaImpl() { if (!needGroupedLog(1)) - return (Ark_drawing_ColorFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createLinearToSRGBGamma("); out.append(") \n"); - out.append("[return (Ark_drawing_ColorFilter) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_ColorFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_drawing_ColorFilter CreateSRGBGammaToLinearImpl() { if (!needGroupedLog(1)) - return (Ark_drawing_ColorFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createSRGBGammaToLinear("); out.append(") \n"); - out.append("[return (Ark_drawing_ColorFilter) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_ColorFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_drawing_ColorFilter CreateLumaColorFilterImpl() { if (!needGroupedLog(1)) - return (Ark_drawing_ColorFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createLumaColorFilter("); out.append(") \n"); - out.append("[return (Ark_drawing_ColorFilter) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_ColorFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_drawing_ColorFilter CreateMatrixColorFilterImpl(const Array_Number* matrix) { if (!needGroupedLog(1)) - return (Ark_drawing_ColorFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createMatrixColorFilter("); WriteToString(&out, matrix); out.append(") \n"); - out.append("[return (Ark_drawing_ColorFilter) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_ColorFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // Drawing_ColorFilterAccessor namespace Drawing_FontAccessor { @@ -24536,12 +24539,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_Font CtorImpl() { if (!needGroupedLog(1)) - return (Ark_drawing_Font) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new drawing_Font("); out.append(") \n"); - out.append("[return (Ark_drawing_Font) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_Font) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -24616,12 +24619,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_Typeface GetTypefaceImpl(Ark_drawing_Font peer) { if (!needGroupedLog(1)) - return (Ark_drawing_Typeface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getTypeface("); out.append(") \n"); - out.append("[return (Ark_drawing_Typeface) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_Typeface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_drawing_FontMetrics GetMetricsImpl(Ark_drawing_Font peer) { @@ -24873,13 +24876,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Number* index) { if (!needGroupedLog(1)) - return (Ark_drawing_Path) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createPathForGlyph("); WriteToString(&out, index); out.append(") \n"); - out.append("[return (Ark_drawing_Path) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_Path) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Array_common2D_Rect GetBoundsImpl(Ark_drawing_Font peer, const Array_Number* glyphs) @@ -24900,7 +24903,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Number* y) { if (!needGroupedLog(1)) - return (Ark_drawing_Path) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getTextPath("); WriteToString(&out, text); out.append(", "); @@ -24910,9 +24913,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, y); out.append(") \n"); - out.append("[return (Ark_drawing_Path) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_Path) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // Drawing_FontAccessor namespace Drawing_ImageFilterAccessor { @@ -24927,12 +24930,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_ImageFilter CtorImpl() { if (!needGroupedLog(1)) - return (Ark_drawing_ImageFilter) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new drawing_ImageFilter("); out.append(") \n"); - out.append("[return (Ark_drawing_ImageFilter) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_ImageFilter) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -24950,7 +24953,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Opt_drawing_ImageFilter* imageFilter) { if (!needGroupedLog(1)) - return (Ark_drawing_ImageFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createBlurImageFilter("); WriteToString(&out, sigmaX); out.append(", "); @@ -24960,23 +24963,23 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, imageFilter); out.append(") \n"); - out.append("[return (Ark_drawing_ImageFilter) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_ImageFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_drawing_ImageFilter CreateFromColorFilterImpl(Ark_drawing_ColorFilter colorFilter, const Opt_drawing_ImageFilter* imageFilter) { if (!needGroupedLog(1)) - return (Ark_drawing_ImageFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createFromColorFilter("); WriteToString(&out, colorFilter); out.append(", "); WriteToString(&out, imageFilter); out.append(") \n"); - out.append("[return (Ark_drawing_ImageFilter) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_ImageFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // Drawing_ImageFilterAccessor namespace Drawing_LatticeAccessor { @@ -24991,12 +24994,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_Lattice CtorImpl() { if (!needGroupedLog(1)) - return (Ark_drawing_Lattice) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new drawing_Lattice("); out.append(") \n"); - out.append("[return (Ark_drawing_Lattice) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_Lattice) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -25017,7 +25020,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Opt_Array_CustomObject* fColors) { if (!needGroupedLog(1)) - return (Ark_drawing_Lattice) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createImageLattice("); WriteToString(&out, xDivs); out.append(", "); @@ -25033,9 +25036,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, fColors); out.append(") \n"); - out.append("[return (Ark_drawing_Lattice) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_Lattice) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // Drawing_LatticeAccessor namespace Drawing_MaskFilterAccessor { @@ -25050,12 +25053,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_MaskFilter CtorImpl() { if (!needGroupedLog(1)) - return (Ark_drawing_MaskFilter) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new drawing_MaskFilter("); out.append(") \n"); - out.append("[return (Ark_drawing_MaskFilter) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_MaskFilter) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -25071,15 +25074,15 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Number* sigma) { if (!needGroupedLog(1)) - return (Ark_drawing_MaskFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createBlurMaskFilter("); WriteToString(&out, blurType); out.append(", "); WriteToString(&out, sigma); out.append(") \n"); - out.append("[return (Ark_drawing_MaskFilter) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_MaskFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // Drawing_MaskFilterAccessor namespace Drawing_MatrixAccessor { @@ -25094,12 +25097,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_Matrix CtorImpl() { if (!needGroupedLog(1)) - return (Ark_drawing_Matrix) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new drawing_Matrix("); out.append(") \n"); - out.append("[return (Ark_drawing_Matrix) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_Matrix) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -25415,23 +25418,23 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_Path Ctor0Impl() { if (!needGroupedLog(1)) - return (Ark_drawing_Path) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new drawing_Path("); out.append(") \n"); - out.append("[return (Ark_drawing_Path) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_Path) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_drawing_Path Ctor1Impl(Ark_drawing_Path path) { if (!needGroupedLog(1)) - return (Ark_drawing_Path) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new drawing_Path("); WriteToString(&out, path); out.append(") \n"); - out.append("[return (Ark_drawing_Path) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_Path) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -25828,15 +25831,15 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Number* dy) { if (!needGroupedLog(1)) - return (Ark_drawing_Path) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("offset("); WriteToString(&out, dx); out.append(", "); WriteToString(&out, dy); out.append(") \n"); - out.append("[return (Ark_drawing_Path) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_Path) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } void ResetImpl(Ark_drawing_Path peer) { @@ -25935,12 +25938,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_PathEffect CtorImpl() { if (!needGroupedLog(1)) - return (Ark_drawing_PathEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new drawing_PathEffect("); out.append(") \n"); - out.append("[return (Ark_drawing_PathEffect) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_PathEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -25956,26 +25959,26 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Number* phase) { if (!needGroupedLog(1)) - return (Ark_drawing_PathEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createDashPathEffect("); WriteToString(&out, intervals); out.append(", "); WriteToString(&out, phase); out.append(") \n"); - out.append("[return (Ark_drawing_PathEffect) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_PathEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_drawing_PathEffect CreateCornerPathEffectImpl(const Ark_Number* radius) { if (!needGroupedLog(1)) - return (Ark_drawing_PathEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createCornerPathEffect("); WriteToString(&out, radius); out.append(") \n"); - out.append("[return (Ark_drawing_PathEffect) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_PathEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // Drawing_PathEffectAccessor namespace Drawing_PenAccessor { @@ -25990,23 +25993,23 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_Pen Ctor0Impl() { if (!needGroupedLog(1)) - return (Ark_drawing_Pen) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new drawing_Pen("); out.append(") \n"); - out.append("[return (Ark_drawing_Pen) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_Pen) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_drawing_Pen Ctor1Impl(Ark_drawing_Pen pen) { if (!needGroupedLog(1)) - return (Ark_drawing_Pen) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new drawing_Pen("); WriteToString(&out, pen); out.append(") \n"); - out.append("[return (Ark_drawing_Pen) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_Pen) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -26180,12 +26183,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_ColorFilter GetColorFilterImpl(Ark_drawing_Pen peer) { if (!needGroupedLog(1)) - return (Ark_drawing_ColorFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getColorFilter("); out.append(") \n"); - out.append("[return (Ark_drawing_ColorFilter) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_ColorFilter) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } void SetImageFilterImpl(Ark_drawing_Pen peer, const Opt_drawing_ImageFilter* filter) @@ -26323,12 +26326,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_Region CtorImpl() { if (!needGroupedLog(1)) - return (Ark_drawing_Region) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new drawing_Region("); out.append(") \n"); - out.append("[return (Ark_drawing_Region) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_Region) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -26454,7 +26457,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Number* yRadii) { if (!needGroupedLog(1)) - return (Ark_drawing_RoundRect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new drawing_RoundRect("); WriteToString(&out, rect); out.append(", "); @@ -26462,9 +26465,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, yRadii); out.append(") \n"); - out.append("[return (Ark_drawing_RoundRect) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_RoundRect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -26530,23 +26533,23 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_SamplingOptions Ctor0Impl() { if (!needGroupedLog(1)) - return (Ark_drawing_SamplingOptions) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new drawing_SamplingOptions("); out.append(") \n"); - out.append("[return (Ark_drawing_SamplingOptions) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_SamplingOptions) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_drawing_SamplingOptions Ctor1Impl(Ark_drawing_FilterMode filterMode) { if (!needGroupedLog(1)) - return (Ark_drawing_SamplingOptions) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new drawing_SamplingOptions("); WriteToString(&out, filterMode); out.append(") \n"); - out.append("[return (Ark_drawing_SamplingOptions) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_SamplingOptions) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -26571,12 +26574,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_ShaderEffect CtorImpl() { if (!needGroupedLog(1)) - return (Ark_drawing_ShaderEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new drawing_ShaderEffect("); out.append(") \n"); - out.append("[return (Ark_drawing_ShaderEffect) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_ShaderEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -26591,13 +26594,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_ShaderEffect CreateColorShaderImpl(const Ark_Number* color) { if (!needGroupedLog(1)) - return (Ark_drawing_ShaderEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createColorShader("); WriteToString(&out, color); out.append(") \n"); - out.append("[return (Ark_drawing_ShaderEffect) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_ShaderEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_drawing_ShaderEffect CreateLinearGradientImpl(const Ark_common2D_Point* startPt, const Ark_common2D_Point* endPt, @@ -26607,7 +26610,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Opt_drawing_Matrix* matrix) { if (!needGroupedLog(1)) - return (Ark_drawing_ShaderEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createLinearGradient("); WriteToString(&out, startPt); out.append(", "); @@ -26621,9 +26624,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, matrix); out.append(") \n"); - out.append("[return (Ark_drawing_ShaderEffect) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_ShaderEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_drawing_ShaderEffect CreateRadialGradientImpl(const Ark_common2D_Point* centerPt, const Ark_Number* radius, @@ -26633,7 +26636,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Opt_drawing_Matrix* matrix) { if (!needGroupedLog(1)) - return (Ark_drawing_ShaderEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createRadialGradient("); WriteToString(&out, centerPt); out.append(", "); @@ -26647,9 +26650,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, matrix); out.append(") \n"); - out.append("[return (Ark_drawing_ShaderEffect) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_ShaderEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_drawing_ShaderEffect CreateSweepGradientImpl(const Ark_common2D_Point* centerPt, const Array_Number* colors, @@ -26660,7 +26663,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Opt_drawing_Matrix* matrix) { if (!needGroupedLog(1)) - return (Ark_drawing_ShaderEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createSweepGradient("); WriteToString(&out, centerPt); out.append(", "); @@ -26676,9 +26679,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, matrix); out.append(") \n"); - out.append("[return (Ark_drawing_ShaderEffect) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_ShaderEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_drawing_ShaderEffect CreateConicalGradientImpl(const Ark_common2D_Point* startPt, const Ark_Number* startRadius, @@ -26690,7 +26693,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Opt_drawing_Matrix* matrix) { if (!needGroupedLog(1)) - return (Ark_drawing_ShaderEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createConicalGradient("); WriteToString(&out, startPt); out.append(", "); @@ -26708,9 +26711,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, matrix); out.append(") \n"); - out.append("[return (Ark_drawing_ShaderEffect) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_ShaderEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // Drawing_ShaderEffectAccessor namespace Drawing_ShadowLayerAccessor { @@ -26725,12 +26728,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_ShadowLayer CtorImpl() { if (!needGroupedLog(1)) - return (Ark_drawing_ShadowLayer) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new drawing_ShadowLayer("); out.append(") \n"); - out.append("[return (Ark_drawing_ShadowLayer) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_ShadowLayer) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -26748,7 +26751,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_common2D_Color* color) { if (!needGroupedLog(1)) - return (Ark_drawing_ShadowLayer) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("create("); WriteToString(&out, blurRadius); out.append(", "); @@ -26758,9 +26761,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, color); out.append(") \n"); - out.append("[return (Ark_drawing_ShadowLayer) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_ShadowLayer) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_drawing_ShadowLayer Create1Impl(const Ark_Number* blurRadius, const Ark_Number* x, @@ -26768,7 +26771,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Number* color) { if (!needGroupedLog(1)) - return (Ark_drawing_ShadowLayer) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("create("); WriteToString(&out, blurRadius); out.append(", "); @@ -26778,9 +26781,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, color); out.append(") \n"); - out.append("[return (Ark_drawing_ShadowLayer) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_ShadowLayer) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // Drawing_ShadowLayerAccessor namespace Drawing_TextBlobAccessor { @@ -26795,12 +26798,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_TextBlob CtorImpl() { if (!needGroupedLog(1)) - return (Ark_drawing_TextBlob) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new drawing_TextBlob("); out.append(") \n"); - out.append("[return (Ark_drawing_TextBlob) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_TextBlob) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -26817,7 +26820,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_TextEncoding encoding) { if (!needGroupedLog(1)) - return (Ark_drawing_TextBlob) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("makeFromString("); WriteToString(&out, text); out.append(", "); @@ -26825,9 +26828,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, encoding); out.append(") \n"); - out.append("[return (Ark_drawing_TextBlob) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_TextBlob) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_drawing_TextBlob MakeFromPosTextImpl(const Ark_String* text, const Ark_Number* len, @@ -26835,7 +26838,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_Font font) { if (!needGroupedLog(1)) - return (Ark_drawing_TextBlob) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("makeFromPosText("); WriteToString(&out, text); out.append(", "); @@ -26845,16 +26848,16 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, font); out.append(") \n"); - out.append("[return (Ark_drawing_TextBlob) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_TextBlob) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_drawing_TextBlob MakeFromRunBufferImpl(const Array_drawing_TextBlobRunBuffer* pos, Ark_drawing_Font font, const Ark_common2D_Rect* bounds) { if (!needGroupedLog(1)) - return (Ark_drawing_TextBlob) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("makeFromRunBuffer("); WriteToString(&out, pos); out.append(", "); @@ -26862,9 +26865,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, bounds); out.append(") \n"); - out.append("[return (Ark_drawing_TextBlob) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_TextBlob) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_common2D_Rect BoundsImpl(Ark_drawing_TextBlob peer) { @@ -26899,12 +26902,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_Typeface CtorImpl() { if (!needGroupedLog(1)) - return (Ark_drawing_Typeface) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new drawing_Typeface("); out.append(") \n"); - out.append("[return (Ark_drawing_Typeface) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_Typeface) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -26929,13 +26932,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_Typeface MakeFromFileImpl(const Ark_String* filePath) { if (!needGroupedLog(1)) - return (Ark_drawing_Typeface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("makeFromFile("); WriteToString(&out, filePath); out.append(") \n"); - out.append("[return (Ark_drawing_Typeface) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_Typeface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // Drawing_TypefaceAccessor namespace DrawingRenderingContextAccessor { @@ -26950,13 +26953,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_DrawingRenderingContext CtorImpl(const Opt_LengthMetricsUnit* unit) { if (!needGroupedLog(1)) - return (Ark_DrawingRenderingContext) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new DrawingRenderingContext("); WriteToString(&out, unit); out.append(") \n"); - out.append("[return (Ark_DrawingRenderingContext) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_DrawingRenderingContext) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -27009,12 +27012,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_DrawModifier CtorImpl() { if (!needGroupedLog(1)) - return (Ark_DrawModifier) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new DrawModifier("); out.append(") \n"); - out.append("[return (Ark_DrawModifier) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_DrawModifier) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -27069,13 +27072,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_EllipseShape CtorImpl(const Opt_ShapeSize* options) { if (!needGroupedLog(1)) - return (Ark_EllipseShape) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new EllipseShape("); WriteToString(&out, options); out.append(") \n"); - out.append("[return (Ark_EllipseShape) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_EllipseShape) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -27091,73 +27094,73 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Position* offset) { if (!needGroupedLog(1)) - return (Ark_EllipseShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("offset("); WriteToString(&out, offset); out.append(") \n"); - out.append("[return (Ark_EllipseShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_EllipseShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_EllipseShape FillImpl(Ark_EllipseShape peer, const Ark_ResourceColor* color) { if (!needGroupedLog(1)) - return (Ark_EllipseShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("fill("); WriteToString(&out, color); out.append(") \n"); - out.append("[return (Ark_EllipseShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_EllipseShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_EllipseShape PositionImpl(Ark_EllipseShape peer, const Ark_Position* position) { if (!needGroupedLog(1)) - return (Ark_EllipseShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("position("); WriteToString(&out, position); out.append(") \n"); - out.append("[return (Ark_EllipseShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_EllipseShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_EllipseShape WidthImpl(Ark_EllipseShape peer, const Ark_Length* width) { if (!needGroupedLog(1)) - return (Ark_EllipseShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("width("); WriteToString(&out, width); out.append(") \n"); - out.append("[return (Ark_EllipseShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_EllipseShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_EllipseShape HeightImpl(Ark_EllipseShape peer, const Ark_Length* height) { if (!needGroupedLog(1)) - return (Ark_EllipseShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("height("); WriteToString(&out, height); out.append(") \n"); - out.append("[return (Ark_EllipseShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_EllipseShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_EllipseShape SizeImpl(Ark_EllipseShape peer, const Ark_SizeOptions* size) { if (!needGroupedLog(1)) - return (Ark_EllipseShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("size("); WriteToString(&out, size); out.append(") \n"); - out.append("[return (Ark_EllipseShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_EllipseShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // EllipseShapeAccessor namespace EventEmulatorAccessor { @@ -27186,12 +27189,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_EventTargetInfo CtorImpl() { if (!needGroupedLog(1)) - return (Ark_EventTargetInfo) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new EventTargetInfo("); out.append(") \n"); - out.append("[return (Ark_EventTargetInfo) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_EventTargetInfo) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -27226,12 +27229,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ExtendableComponent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_ExtendableComponent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ExtendableComponent("); out.append(") \n"); - out.append("[return (Ark_ExtendableComponent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ExtendableComponent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -27246,12 +27249,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_UIContext GetUIContextImpl(Ark_ExtendableComponent peer) { if (!needGroupedLog(1)) - return (Ark_UIContext) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getUIContext("); out.append(") \n"); - out.append("[return (Ark_UIContext) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_UIContext) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_Int32 GetUniqueIdImpl(Ark_ExtendableComponent peer) { @@ -27276,12 +27279,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_FocusAxisEvent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_FocusAxisEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new FocusAxisEvent("); out.append(") \n"); - out.append("[return (Ark_FocusAxisEvent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_FocusAxisEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -27357,13 +27360,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_FrameNode CtorImpl(Ark_UIContext uiContext) { if (!needGroupedLog(1)) - return (Ark_FrameNode) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new FrameNode("); WriteToString(&out, uiContext); out.append(") \n"); - out.append("[return (Ark_FrameNode) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_FrameNode) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -27431,55 +27434,55 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Number* expandMode) { if (!needGroupedLog(1)) - return (Ark_FrameNode) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getChild("); WriteToString(&out, index); out.append(", "); WriteToString(&out, expandMode); out.append(") \n"); - out.append("[return (Ark_FrameNode) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_FrameNode) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_FrameNode GetFirstChildImpl(Ark_FrameNode peer) { if (!needGroupedLog(1)) - return (Ark_FrameNode) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getFirstChild("); out.append(") \n"); - out.append("[return (Ark_FrameNode) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_FrameNode) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_FrameNode GetNextSiblingImpl(Ark_FrameNode peer) { if (!needGroupedLog(1)) - return (Ark_FrameNode) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getNextSibling("); out.append(") \n"); - out.append("[return (Ark_FrameNode) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_FrameNode) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_FrameNode GetPreviousSiblingImpl(Ark_FrameNode peer) { if (!needGroupedLog(1)) - return (Ark_FrameNode) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getPreviousSibling("); out.append(") \n"); - out.append("[return (Ark_FrameNode) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_FrameNode) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_FrameNode GetParentImpl(Ark_FrameNode peer) { if (!needGroupedLog(1)) - return (Ark_FrameNode) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getParent("); out.append(") \n"); - out.append("[return (Ark_FrameNode) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_FrameNode) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_Int32 GetChildrenCountImpl(Ark_FrameNode peer) { @@ -27618,13 +27621,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_FrameNode GetFrameNodeByKeyImpl(const Ark_String* name) { if (!needGroupedLog(1)) - return (Ark_FrameNode) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getFrameNodeByKey("); WriteToString(&out, name); out.append(") \n"); - out.append("[return (Ark_FrameNode) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_FrameNode) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_Number GetIdByFrameNodeImpl(Ark_FrameNode peer, Ark_FrameNode node) @@ -27674,35 +27677,35 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_FrameNode GetAttachedFrameNodeByIdImpl(const Ark_String* id) { if (!needGroupedLog(1)) - return (Ark_FrameNode) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getAttachedFrameNodeById("); WriteToString(&out, id); out.append(") \n"); - out.append("[return (Ark_FrameNode) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_FrameNode) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_FrameNode GetFrameNodeByIdImpl(const Ark_Number* id) { if (!needGroupedLog(1)) - return (Ark_FrameNode) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getFrameNodeById("); WriteToString(&out, id); out.append(") \n"); - out.append("[return (Ark_FrameNode) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_FrameNode) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_FrameNode GetFrameNodeByUniqueIdImpl(const Ark_Number* id) { if (!needGroupedLog(1)) - return (Ark_FrameNode) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getFrameNodeByUniqueId("); WriteToString(&out, id); out.append(") \n"); - out.append("[return (Ark_FrameNode) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_FrameNode) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } void ReuseImpl(Ark_FrameNode peer) { @@ -27746,7 +27749,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Number* velocity) { if (!needGroupedLog(1)) - return (Ark_FrictionMotion) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new FrictionMotion("); WriteToString(&out, friction); out.append(", "); @@ -27754,9 +27757,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, velocity); out.append(") \n"); - out.append("[return (Ark_FrictionMotion) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_FrictionMotion) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -27781,12 +27784,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_Gesture CtorImpl() { if (!needGroupedLog(1)) - return (Ark_Gesture) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new Gesture("); out.append(") \n"); - out.append("[return (Ark_Gesture) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_Gesture) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -27831,12 +27834,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_GestureEvent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_GestureEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new GestureEvent("); out.append(") \n"); - out.append("[return (Ark_GestureEvent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_GestureEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -28102,15 +28105,15 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Array_GestureType* gesture) { if (!needGroupedLog(1)) - return (Ark_GestureGroupInterface) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new GestureGroupInterface("); WriteToString(&out, mode); out.append(", "); WriteToString(&out, gesture); out.append(") \n"); - out.append("[return (Ark_GestureGroupInterface) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_GestureGroupInterface) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -28126,13 +28129,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Callback_Void* event) { if (!needGroupedLog(1)) - return (Ark_GestureGroupInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("onCancel("); WriteToString(&out, event); out.append(") \n"); - out.append("[return (Ark_GestureGroupInterface) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_GestureGroupInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // GestureGroupInterfaceAccessor namespace GestureModifierAccessor { @@ -28147,12 +28150,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_GestureModifier CtorImpl() { if (!needGroupedLog(1)) - return (Ark_GestureModifier) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new GestureModifier("); out.append(") \n"); - out.append("[return (Ark_GestureModifier) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_GestureModifier) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -28187,12 +28190,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_GestureRecognizer CtorImpl() { if (!needGroupedLog(1)) - return (Ark_GestureRecognizer) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new GestureRecognizer("); out.append(") \n"); - out.append("[return (Ark_GestureRecognizer) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_GestureRecognizer) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -28267,12 +28270,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_EventTargetInfo GetEventTargetInfoImpl(Ark_GestureRecognizer peer) { if (!needGroupedLog(1)) - return (Ark_EventTargetInfo) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getEventTargetInfo("); out.append(") \n"); - out.append("[return (Ark_EventTargetInfo) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_EventTargetInfo) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_Boolean IsValidImpl(Ark_GestureRecognizer peer) { @@ -28317,13 +28320,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_GestureStyle CtorImpl(const Opt_GestureStyleInterface* value) { if (!needGroupedLog(1)) - return (Ark_GestureStyle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new GestureStyle("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_GestureStyle) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_GestureStyle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -28462,13 +28465,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_HierarchicalSymbolEffect CtorImpl(const Opt_EffectFillStyle* fillStyle) { if (!needGroupedLog(1)) - return (Ark_HierarchicalSymbolEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new HierarchicalSymbolEffect("); WriteToString(&out, fillStyle); out.append(") \n"); - out.append("[return (Ark_HierarchicalSymbolEffect) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_HierarchicalSymbolEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -28513,12 +28516,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_HoverEvent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_HoverEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new HoverEvent("); out.append(") \n"); - out.append("[return (Ark_HoverEvent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_HoverEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -28683,12 +28686,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ICurve CtorImpl() { if (!needGroupedLog(1)) - return (Ark_ICurve) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ICurve("); out.append(") \n"); - out.append("[return (Ark_ICurve) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ICurve) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -28725,12 +28728,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_image_PixelMap CtorImpl() { if (!needGroupedLog(1)) - return (Ark_image_PixelMap) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new image_PixelMap("); out.append(") \n"); - out.append("[return (Ark_image_PixelMap) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_image_PixelMap) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -28795,12 +28798,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ImageAnalyzerController CtorImpl() { if (!needGroupedLog(1)) - return (Ark_ImageAnalyzerController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ImageAnalyzerController("); out.append(") \n"); - out.append("[return (Ark_ImageAnalyzerController) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ImageAnalyzerController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -28835,13 +28838,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ImageAttachment CtorImpl(const Ark_Union_ImageAttachmentInterface_Opt_AttachmentType* value) { if (!needGroupedLog(1)) - return (Ark_ImageAttachment) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ImageAttachment("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_ImageAttachment) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ImageAttachment) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -28856,12 +28859,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_image_PixelMap GetValueImpl(Ark_ImageAttachment peer) { if (!needGroupedLog(1)) - return (Ark_image_PixelMap) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getValue("); out.append(") \n"); - out.append("[return (Ark_image_PixelMap) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_image_PixelMap) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Opt_SizeOptions GetSizeImpl(Ark_ImageAttachment peer) { @@ -28927,15 +28930,15 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Opt_LengthMetricsUnit* unit) { if (!needGroupedLog(1)) - return (Ark_ImageBitmap) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ImageBitmap("); WriteToString(&out, src); out.append(", "); WriteToString(&out, unit); out.append(") \n"); - out.append("[return (Ark_ImageBitmap) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ImageBitmap) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -29011,7 +29014,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Opt_LengthMetricsUnit* unit) { if (!needGroupedLog(1)) - return (Ark_ImageData) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ImageData("); WriteToString(&out, width); out.append(", "); @@ -29021,9 +29024,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, unit); out.append(") \n"); - out.append("[return (Ark_ImageData) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ImageData) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -29108,12 +29111,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_IndicatorComponentController CtorImpl() { if (!needGroupedLog(1)) - return (Ark_IndicatorComponentController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new IndicatorComponentController("); out.append(") \n"); - out.append("[return (Ark_IndicatorComponentController) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_IndicatorComponentController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -29193,12 +29196,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_KeyEvent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_KeyEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new KeyEvent("); out.append(") \n"); - out.append("[return (Ark_KeyEvent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_KeyEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -29443,12 +29446,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_Layoutable CtorImpl() { if (!needGroupedLog(1)) - return (Ark_Layoutable) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new Layoutable("); out.append(") \n"); - out.append("[return (Ark_Layoutable) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_Layoutable) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -29553,12 +29556,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_LayoutCallback CtorImpl() { if (!needGroupedLog(1)) - return (Ark_LayoutCallback) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new LayoutCallback("); out.append(") \n"); - out.append("[return (Ark_LayoutCallback) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_LayoutCallback) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -29617,12 +29620,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_LayoutChild CtorImpl() { if (!needGroupedLog(1)) - return (Ark_LayoutChild) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new LayoutChild("); out.append(") \n"); - out.append("[return (Ark_LayoutChild) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_LayoutChild) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -29717,12 +29720,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_LayoutManager CtorImpl() { if (!needGroupedLog(1)) - return (Ark_LayoutManager) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new LayoutManager("); out.append(") \n"); - out.append("[return (Ark_LayoutManager) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_LayoutManager) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -29772,12 +29775,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_LayoutPolicy CtorImpl() { if (!needGroupedLog(1)) - return (Ark_LayoutPolicy) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new LayoutPolicy("); out.append(") \n"); - out.append("[return (Ark_LayoutPolicy) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_LayoutPolicy) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -29792,12 +29795,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_LayoutPolicy GetMatchParentImpl() { if (!needGroupedLog(1)) - return (Ark_LayoutPolicy) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getMatchParent("); out.append(") \n"); - out.append("[return (Ark_LayoutPolicy) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_LayoutPolicy) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // LayoutPolicyAccessor namespace LazyForEachOpsAccessor { @@ -29833,15 +29836,15 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_LengthUnit unit) { if (!needGroupedLog(1)) - return (Ark_LengthMetrics) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new LengthMetrics("); WriteToString(&out, value); out.append(", "); WriteToString(&out, unit); out.append(") \n"); - out.append("[return (Ark_LengthMetrics) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_LengthMetrics) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -29856,68 +29859,68 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_LengthMetrics PxImpl(const Ark_Number* value) { if (!needGroupedLog(1)) - return (Ark_LengthMetrics) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("px("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_LengthMetrics) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_LengthMetrics) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_LengthMetrics VpImpl(const Ark_Number* value) { if (!needGroupedLog(1)) - return (Ark_LengthMetrics) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("vp("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_LengthMetrics) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_LengthMetrics) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_LengthMetrics FpImpl(const Ark_Number* value) { if (!needGroupedLog(1)) - return (Ark_LengthMetrics) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("fp("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_LengthMetrics) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_LengthMetrics) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_LengthMetrics PercentImpl(const Ark_Number* value) { if (!needGroupedLog(1)) - return (Ark_LengthMetrics) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("percent("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_LengthMetrics) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_LengthMetrics) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_LengthMetrics LpxImpl(const Ark_Number* value) { if (!needGroupedLog(1)) - return (Ark_LengthMetrics) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("lpx("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_LengthMetrics) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_LengthMetrics) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_LengthMetrics ResourceImpl(const Ark_Resource* value) { if (!needGroupedLog(1)) - return (Ark_LengthMetrics) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("resource("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_LengthMetrics) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_LengthMetrics) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_LengthUnit GetUnitImpl(Ark_LengthMetrics peer) { @@ -29972,13 +29975,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_LetterSpacingStyle CtorImpl(Ark_LengthMetrics value) { if (!needGroupedLog(1)) - return (Ark_LetterSpacingStyle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new LetterSpacingStyle("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_LetterSpacingStyle) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_LetterSpacingStyle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -30013,12 +30016,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_LifeCycle CtorImpl() { if (!needGroupedLog(1)) - return (Ark_LifeCycle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new LifeCycle("); out.append(") \n"); - out.append("[return (Ark_LifeCycle) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_LifeCycle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -30075,13 +30078,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_LinearGradient CtorImpl(const Array_ColorStop* colorStops) { if (!needGroupedLog(1)) - return (Ark_LinearGradient) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new LinearGradient("); WriteToString(&out, colorStops); out.append(") \n"); - out.append("[return (Ark_LinearGradient) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_LinearGradient) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -30106,12 +30109,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_LinearIndicatorController CtorImpl() { if (!needGroupedLog(1)) - return (Ark_LinearIndicatorController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new LinearIndicatorController("); out.append(") \n"); - out.append("[return (Ark_LinearIndicatorController) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_LinearIndicatorController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -30175,13 +30178,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_LineHeightStyle CtorImpl(Ark_LengthMetrics lineHeight) { if (!needGroupedLog(1)) - return (Ark_LineHeightStyle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new LineHeightStyle("); WriteToString(&out, lineHeight); out.append(") \n"); - out.append("[return (Ark_LineHeightStyle) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_LineHeightStyle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -30216,12 +30219,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ListScroller CtorImpl() { if (!needGroupedLog(1)) - return (Ark_ListScroller) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ListScroller("); out.append(") \n"); - out.append("[return (Ark_ListScroller) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ListScroller) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -30305,12 +30308,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_LongPressGestureEvent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_LongPressGestureEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new LongPressGestureEvent("); out.append(") \n"); - out.append("[return (Ark_LongPressGestureEvent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_LongPressGestureEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -30355,13 +30358,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_LongPressGestureInterface CtorImpl(const Ark_LongPressGestureInterface_Invoke_Literal* value) { if (!needGroupedLog(1)) - return (Ark_LongPressGestureInterface) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new LongPressGestureInterface("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_LongPressGestureInterface) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_LongPressGestureInterface) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -30377,49 +30380,49 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Callback_GestureEvent_Void* event) { if (!needGroupedLog(1)) - return (Ark_LongPressGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("onAction("); WriteToString(&out, event); out.append(") \n"); - out.append("[return (Ark_LongPressGestureInterface) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_LongPressGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_LongPressGestureInterface OnActionEndImpl(Ark_LongPressGestureInterface peer, const Callback_GestureEvent_Void* event) { if (!needGroupedLog(1)) - return (Ark_LongPressGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("onActionEnd("); WriteToString(&out, event); out.append(") \n"); - out.append("[return (Ark_LongPressGestureInterface) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_LongPressGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_LongPressGestureInterface OnActionCancel0Impl(Ark_LongPressGestureInterface peer, const Callback_Void* event) { if (!needGroupedLog(1)) - return (Ark_LongPressGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("onActionCancel("); WriteToString(&out, event); out.append(") \n"); - out.append("[return (Ark_LongPressGestureInterface) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_LongPressGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_LongPressGestureInterface OnActionCancel1Impl(Ark_LongPressGestureInterface peer, const Callback_GestureEvent_Void* event) { if (!needGroupedLog(1)) - return (Ark_LongPressGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("onActionCancel("); WriteToString(&out, event); out.append(") \n"); - out.append("[return (Ark_LongPressGestureInterface) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_LongPressGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // LongPressGestureInterfaceAccessor namespace LongPressRecognizerAccessor { @@ -30434,12 +30437,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_LongPressRecognizer CtorImpl() { if (!needGroupedLog(1)) - return (Ark_LongPressRecognizer) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new LongPressRecognizer("); out.append(") \n"); - out.append("[return (Ark_LongPressRecognizer) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_LongPressRecognizer) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -30484,23 +30487,23 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_Matrix2D Ctor0Impl() { if (!needGroupedLog(1)) - return (Ark_Matrix2D) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new Matrix2D("); out.append(") \n"); - out.append("[return (Ark_Matrix2D) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_Matrix2D) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_Matrix2D Ctor1Impl(Ark_LengthMetricsUnit unit) { if (!needGroupedLog(1)) - return (Ark_Matrix2D) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new Matrix2D("); WriteToString(&out, unit); out.append(") \n"); - out.append("[return (Ark_Matrix2D) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_Matrix2D) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -30515,22 +30518,22 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_Matrix2D IdentityImpl(Ark_Matrix2D peer) { if (!needGroupedLog(1)) - return (Ark_Matrix2D) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("identity("); out.append(") \n"); - out.append("[return (Ark_Matrix2D) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_Matrix2D) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_Matrix2D InvertImpl(Ark_Matrix2D peer) { if (!needGroupedLog(1)) - return (Ark_Matrix2D) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("invert("); out.append(") \n"); - out.append("[return (Ark_Matrix2D) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_Matrix2D) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_Matrix2D RotateImpl(Ark_Matrix2D peer, const Ark_Number* degree, @@ -30538,7 +30541,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Opt_Number* ry) { if (!needGroupedLog(1)) - return (Ark_Matrix2D) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("rotate("); WriteToString(&out, degree); out.append(", "); @@ -30546,39 +30549,39 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, ry); out.append(") \n"); - out.append("[return (Ark_Matrix2D) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_Matrix2D) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_Matrix2D TranslateImpl(Ark_Matrix2D peer, const Opt_Number* tx, const Opt_Number* ty) { if (!needGroupedLog(1)) - return (Ark_Matrix2D) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("translate("); WriteToString(&out, tx); out.append(", "); WriteToString(&out, ty); out.append(") \n"); - out.append("[return (Ark_Matrix2D) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_Matrix2D) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_Matrix2D ScaleImpl(Ark_Matrix2D peer, const Opt_Number* sx, const Opt_Number* sy) { if (!needGroupedLog(1)) - return (Ark_Matrix2D) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("scale("); WriteToString(&out, sx); out.append(", "); WriteToString(&out, sy); out.append(") \n"); - out.append("[return (Ark_Matrix2D) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_Matrix2D) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Opt_Number GetScaleXImpl(Ark_Matrix2D peer) { @@ -30713,12 +30716,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_matrix4_Matrix4Transit CtorImpl() { if (!needGroupedLog(1)) - return (Ark_matrix4_Matrix4Transit) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new matrix4_Matrix4Transit("); out.append(") \n"); - out.append("[return (Ark_matrix4_Matrix4Transit) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_matrix4_Matrix4Transit) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -30733,85 +30736,85 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_matrix4_Matrix4Transit CopyImpl(Ark_matrix4_Matrix4Transit peer) { if (!needGroupedLog(1)) - return (Ark_matrix4_Matrix4Transit) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("copy("); out.append(") \n"); - out.append("[return (Ark_matrix4_Matrix4Transit) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_matrix4_Matrix4Transit) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_matrix4_Matrix4Transit InvertImpl(Ark_matrix4_Matrix4Transit peer) { if (!needGroupedLog(1)) - return (Ark_matrix4_Matrix4Transit) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("invert("); out.append(") \n"); - out.append("[return (Ark_matrix4_Matrix4Transit) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_matrix4_Matrix4Transit) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_matrix4_Matrix4Transit CombineImpl(Ark_matrix4_Matrix4Transit peer, Ark_matrix4_Matrix4Transit options) { if (!needGroupedLog(1)) - return (Ark_matrix4_Matrix4Transit) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("combine("); WriteToString(&out, options); out.append(") \n"); - out.append("[return (Ark_matrix4_Matrix4Transit) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_matrix4_Matrix4Transit) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_matrix4_Matrix4Transit TranslateImpl(Ark_matrix4_Matrix4Transit peer, const Ark_TranslateOptions* options) { if (!needGroupedLog(1)) - return (Ark_matrix4_Matrix4Transit) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("translate("); WriteToString(&out, options); out.append(") \n"); - out.append("[return (Ark_matrix4_Matrix4Transit) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_matrix4_Matrix4Transit) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_matrix4_Matrix4Transit ScaleImpl(Ark_matrix4_Matrix4Transit peer, const Ark_ScaleOptions* options) { if (!needGroupedLog(1)) - return (Ark_matrix4_Matrix4Transit) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("scale("); WriteToString(&out, options); out.append(") \n"); - out.append("[return (Ark_matrix4_Matrix4Transit) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_matrix4_Matrix4Transit) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_matrix4_Matrix4Transit SkewImpl(Ark_matrix4_Matrix4Transit peer, const Ark_Number* x, const Ark_Number* y) { if (!needGroupedLog(1)) - return (Ark_matrix4_Matrix4Transit) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("skew("); WriteToString(&out, x); out.append(", "); WriteToString(&out, y); out.append(") \n"); - out.append("[return (Ark_matrix4_Matrix4Transit) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_matrix4_Matrix4Transit) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_matrix4_Matrix4Transit RotateImpl(Ark_matrix4_Matrix4Transit peer, const Ark_RotateOptions* options) { if (!needGroupedLog(1)) - return (Ark_matrix4_Matrix4Transit) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("rotate("); WriteToString(&out, options); out.append(") \n"); - out.append("[return (Ark_matrix4_Matrix4Transit) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_matrix4_Matrix4Transit) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_matrix4_Matrix4TransformPoint TransformPointImpl(Ark_matrix4_Matrix4Transit peer, const Ark_matrix4_Matrix4TransformPoint* options) @@ -30829,13 +30832,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_matrix4_PolyToPolyOptions* options) { if (!needGroupedLog(1)) - return (Ark_matrix4_Matrix4Transit) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("setPolyToPoly("); WriteToString(&out, options); out.append(") \n"); - out.append("[return (Ark_matrix4_Matrix4Transit) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_matrix4_Matrix4Transit) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // Matrix4_Matrix4TransitAccessor namespace MeasurableAccessor { @@ -30850,12 +30853,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_Measurable CtorImpl() { if (!needGroupedLog(1)) - return (Ark_Measurable) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new Measurable("); out.append(") \n"); - out.append("[return (Ark_Measurable) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_Measurable) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -30942,12 +30945,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_MouseEvent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_MouseEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new MouseEvent("); out.append(") \n"); - out.append("[return (Ark_MouseEvent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_MouseEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -31212,12 +31215,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_MutableStyledString CtorImpl() { if (!needGroupedLog(1)) - return (Ark_MutableStyledString) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new MutableStyledString("); out.append(") \n"); - out.append("[return (Ark_MutableStyledString) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_MutableStyledString) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -31380,12 +31383,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_NavDestinationContext CtorImpl() { if (!needGroupedLog(1)) - return (Ark_NavDestinationContext) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new NavDestinationContext("); out.append(") \n"); - out.append("[return (Ark_NavDestinationContext) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_NavDestinationContext) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -31410,12 +31413,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_NavPathInfo GetPathInfoImpl(Ark_NavDestinationContext peer) { if (!needGroupedLog(1)) - return (Ark_NavPathInfo) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getPathInfo("); out.append(") \n"); - out.append("[return (Ark_NavPathInfo) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_NavPathInfo) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } void SetPathInfoImpl(Ark_NavDestinationContext peer, Ark_NavPathInfo pathInfo) @@ -31430,12 +31433,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_NavPathStack GetPathStackImpl(Ark_NavDestinationContext peer) { if (!needGroupedLog(1)) - return (Ark_NavPathStack) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getPathStack("); out.append(") \n"); - out.append("[return (Ark_NavPathStack) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_NavPathStack) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } void SetPathStackImpl(Ark_NavDestinationContext peer, Ark_NavPathStack pathStack) @@ -31660,12 +31663,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_NavigationTransitionProxy CtorImpl() { if (!needGroupedLog(1)) - return (Ark_NavigationTransitionProxy) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new NavigationTransitionProxy("); out.append(") \n"); - out.append("[return (Ark_NavigationTransitionProxy) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_NavigationTransitionProxy) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -31801,7 +31804,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Opt_Boolean* isEntry) { if (!needGroupedLog(1)) - return (Ark_NavPathInfo) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new NavPathInfo("); WriteToString(&out, name); out.append(", "); @@ -31811,9 +31814,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, isEntry); out.append(") \n"); - out.append("[return (Ark_NavPathInfo) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_NavPathInfo) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -31938,12 +31941,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_NavPathStack CtorImpl() { if (!needGroupedLog(1)) - return (Ark_NavPathStack) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new NavPathStack("); out.append(") \n"); - out.append("[return (Ark_NavPathStack) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_NavPathStack) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -32442,12 +32445,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_NodeContent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_NodeContent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new NodeContent("); out.append(") \n"); - out.append("[return (Ark_NodeContent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_NodeContent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -32494,7 +32497,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Opt_LengthMetricsUnit* unit) { if (!needGroupedLog(1)) - return (Ark_OffscreenCanvas) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new OffscreenCanvas("); WriteToString(&out, width); out.append(", "); @@ -32502,9 +32505,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, unit); out.append(") \n"); - out.append("[return (Ark_OffscreenCanvas) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_OffscreenCanvas) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -32519,24 +32522,24 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ImageBitmap TransferToImageBitmapImpl(Ark_OffscreenCanvas peer) { if (!needGroupedLog(1)) - return (Ark_ImageBitmap) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("transferToImageBitmap("); out.append(") \n"); - out.append("[return (Ark_ImageBitmap) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_ImageBitmap) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_OffscreenCanvasRenderingContext2D GetContext2dImpl(Ark_OffscreenCanvas peer, const Opt_RenderingContextSettings* options) { if (!needGroupedLog(1)) - return (Ark_OffscreenCanvasRenderingContext2D) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getContext2d("); WriteToString(&out, options); out.append(") \n"); - out.append("[return (Ark_OffscreenCanvasRenderingContext2D) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_OffscreenCanvasRenderingContext2D) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_Number GetHeightImpl(Ark_OffscreenCanvas peer) { @@ -32594,7 +32597,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Opt_LengthMetricsUnit* unit) { if (!needGroupedLog(1)) - return (Ark_OffscreenCanvasRenderingContext2D) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new OffscreenCanvasRenderingContext2D("); WriteToString(&out, width); out.append(", "); @@ -32604,9 +32607,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, unit); out.append(") \n"); - out.append("[return (Ark_OffscreenCanvasRenderingContext2D) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_OffscreenCanvasRenderingContext2D) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -32636,12 +32639,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ImageBitmap TransferToImageBitmapImpl(Ark_OffscreenCanvasRenderingContext2D peer) { if (!needGroupedLog(1)) - return (Ark_ImageBitmap) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("transferToImageBitmap("); out.append(") \n"); - out.append("[return (Ark_ImageBitmap) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_ImageBitmap) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // OffscreenCanvasRenderingContext2DAccessor namespace PageLifeCycleAccessor { @@ -32656,12 +32659,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_PageLifeCycle CtorImpl() { if (!needGroupedLog(1)) - return (Ark_PageLifeCycle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new PageLifeCycle("); out.append(") \n"); - out.append("[return (Ark_PageLifeCycle) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_PageLifeCycle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -32730,12 +32733,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_PanGestureEvent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_PanGestureEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new PanGestureEvent("); out.append(") \n"); - out.append("[return (Ark_PanGestureEvent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_PanGestureEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -32860,13 +32863,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_PanGestureInterface CtorImpl(const Ark_Union_PanGestureInterface_Invoke_Literal_PanGestureOptions* value) { if (!needGroupedLog(1)) - return (Ark_PanGestureInterface) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new PanGestureInterface("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_PanGestureInterface) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_PanGestureInterface) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -32882,61 +32885,61 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Callback_GestureEvent_Void* event) { if (!needGroupedLog(1)) - return (Ark_PanGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("onActionStart("); WriteToString(&out, event); out.append(") \n"); - out.append("[return (Ark_PanGestureInterface) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_PanGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_PanGestureInterface OnActionUpdateImpl(Ark_PanGestureInterface peer, const Callback_GestureEvent_Void* event) { if (!needGroupedLog(1)) - return (Ark_PanGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("onActionUpdate("); WriteToString(&out, event); out.append(") \n"); - out.append("[return (Ark_PanGestureInterface) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_PanGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_PanGestureInterface OnActionEndImpl(Ark_PanGestureInterface peer, const Callback_GestureEvent_Void* event) { if (!needGroupedLog(1)) - return (Ark_PanGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("onActionEnd("); WriteToString(&out, event); out.append(") \n"); - out.append("[return (Ark_PanGestureInterface) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_PanGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_PanGestureInterface OnActionCancel0Impl(Ark_PanGestureInterface peer, const Callback_Void* event) { if (!needGroupedLog(1)) - return (Ark_PanGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("onActionCancel("); WriteToString(&out, event); out.append(") \n"); - out.append("[return (Ark_PanGestureInterface) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_PanGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_PanGestureInterface OnActionCancel1Impl(Ark_PanGestureInterface peer, const Callback_GestureEvent_Void* event) { if (!needGroupedLog(1)) - return (Ark_PanGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("onActionCancel("); WriteToString(&out, event); out.append(") \n"); - out.append("[return (Ark_PanGestureInterface) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_PanGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // PanGestureInterfaceAccessor namespace PanGestureOptionsAccessor { @@ -32951,13 +32954,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_PanGestureOptions CtorImpl(const Opt_PanGestureHandlerOptions* value) { if (!needGroupedLog(1)) - return (Ark_PanGestureOptions) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new PanGestureOptions("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_PanGestureOptions) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_PanGestureOptions) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -33032,12 +33035,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_PanRecognizer CtorImpl() { if (!needGroupedLog(1)) - return (Ark_PanRecognizer) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new PanRecognizer("); out.append(") \n"); - out.append("[return (Ark_PanRecognizer) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_PanRecognizer) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -33052,12 +33055,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_PanGestureOptions GetPanGestureOptionsImpl(Ark_PanRecognizer peer) { if (!needGroupedLog(1)) - return (Ark_PanGestureOptions) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getPanGestureOptions("); out.append(") \n"); - out.append("[return (Ark_PanGestureOptions) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_PanGestureOptions) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // PanRecognizerAccessor namespace ParagraphStyleAccessor { @@ -33072,13 +33075,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ParagraphStyle CtorImpl(const Opt_ParagraphStyleInterface* value) { if (!needGroupedLog(1)) - return (Ark_ParagraphStyle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ParagraphStyle("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_ParagraphStyle) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ParagraphStyle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -33173,73 +33176,73 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_Path2D Ctor0Impl() { if (!needGroupedLog(1)) - return (Ark_Path2D) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new Path2D("); out.append(") \n"); - out.append("[return (Ark_Path2D) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_Path2D) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_Path2D Ctor1Impl(Ark_LengthMetricsUnit unit) { if (!needGroupedLog(1)) - return (Ark_Path2D) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new Path2D("); WriteToString(&out, unit); out.append(") \n"); - out.append("[return (Ark_Path2D) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_Path2D) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_Path2D Ctor2Impl(Ark_Path2D path) { if (!needGroupedLog(1)) - return (Ark_Path2D) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new Path2D("); WriteToString(&out, path); out.append(") \n"); - out.append("[return (Ark_Path2D) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_Path2D) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_Path2D Ctor3Impl(Ark_Path2D path, Ark_LengthMetricsUnit unit) { if (!needGroupedLog(1)) - return (Ark_Path2D) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new Path2D("); WriteToString(&out, path); out.append(", "); WriteToString(&out, unit); out.append(") \n"); - out.append("[return (Ark_Path2D) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_Path2D) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_Path2D Ctor4Impl(const Ark_String* d) { if (!needGroupedLog(1)) - return (Ark_Path2D) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new Path2D("); WriteToString(&out, d); out.append(") \n"); - out.append("[return (Ark_Path2D) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_Path2D) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_Path2D Ctor5Impl(const Ark_String* description, Ark_LengthMetricsUnit unit) { if (!needGroupedLog(1)) - return (Ark_Path2D) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new Path2D("); WriteToString(&out, description); out.append(", "); WriteToString(&out, unit); out.append(") \n"); - out.append("[return (Ark_Path2D) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_Path2D) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -33277,13 +33280,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_PathShape CtorImpl(const Opt_PathShapeOptions* options) { if (!needGroupedLog(1)) - return (Ark_PathShape) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new PathShape("); WriteToString(&out, options); out.append(") \n"); - out.append("[return (Ark_PathShape) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_PathShape) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -33299,49 +33302,49 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Position* offset) { if (!needGroupedLog(1)) - return (Ark_PathShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("offset("); WriteToString(&out, offset); out.append(") \n"); - out.append("[return (Ark_PathShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_PathShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_PathShape FillImpl(Ark_PathShape peer, const Ark_ResourceColor* color) { if (!needGroupedLog(1)) - return (Ark_PathShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("fill("); WriteToString(&out, color); out.append(") \n"); - out.append("[return (Ark_PathShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_PathShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_PathShape PositionImpl(Ark_PathShape peer, const Ark_Position* position) { if (!needGroupedLog(1)) - return (Ark_PathShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("position("); WriteToString(&out, position); out.append(") \n"); - out.append("[return (Ark_PathShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_PathShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_PathShape CommandsImpl(Ark_PathShape peer, const Ark_String* commands) { if (!needGroupedLog(1)) - return (Ark_PathShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("commands("); WriteToString(&out, commands); out.append(") \n"); - out.append("[return (Ark_PathShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_PathShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // PathShapeAccessor namespace PatternLockControllerAccessor { @@ -33356,12 +33359,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_PatternLockController CtorImpl() { if (!needGroupedLog(1)) - return (Ark_PatternLockController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new PatternLockController("); out.append(") \n"); - out.append("[return (Ark_PatternLockController) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_PatternLockController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -33404,12 +33407,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_PinchGestureEvent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_PinchGestureEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new PinchGestureEvent("); out.append(") \n"); - out.append("[return (Ark_PinchGestureEvent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_PinchGestureEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -33494,13 +33497,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_PinchGestureInterface CtorImpl(const Ark_PinchGestureInterface_Invoke_Literal* value) { if (!needGroupedLog(1)) - return (Ark_PinchGestureInterface) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new PinchGestureInterface("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_PinchGestureInterface) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_PinchGestureInterface) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -33516,61 +33519,61 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Callback_GestureEvent_Void* event) { if (!needGroupedLog(1)) - return (Ark_PinchGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("onActionStart("); WriteToString(&out, event); out.append(") \n"); - out.append("[return (Ark_PinchGestureInterface) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_PinchGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_PinchGestureInterface OnActionUpdateImpl(Ark_PinchGestureInterface peer, const Callback_GestureEvent_Void* event) { if (!needGroupedLog(1)) - return (Ark_PinchGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("onActionUpdate("); WriteToString(&out, event); out.append(") \n"); - out.append("[return (Ark_PinchGestureInterface) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_PinchGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_PinchGestureInterface OnActionEndImpl(Ark_PinchGestureInterface peer, const Callback_GestureEvent_Void* event) { if (!needGroupedLog(1)) - return (Ark_PinchGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("onActionEnd("); WriteToString(&out, event); out.append(") \n"); - out.append("[return (Ark_PinchGestureInterface) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_PinchGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_PinchGestureInterface OnActionCancel0Impl(Ark_PinchGestureInterface peer, const Callback_Void* event) { if (!needGroupedLog(1)) - return (Ark_PinchGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("onActionCancel("); WriteToString(&out, event); out.append(") \n"); - out.append("[return (Ark_PinchGestureInterface) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_PinchGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_PinchGestureInterface OnActionCancel1Impl(Ark_PinchGestureInterface peer, const Callback_GestureEvent_Void* event) { if (!needGroupedLog(1)) - return (Ark_PinchGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("onActionCancel("); WriteToString(&out, event); out.append(") \n"); - out.append("[return (Ark_PinchGestureInterface) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_PinchGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // PinchGestureInterfaceAccessor namespace PinchRecognizerAccessor { @@ -33585,12 +33588,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_PinchRecognizer CtorImpl() { if (!needGroupedLog(1)) - return (Ark_PinchRecognizer) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new PinchRecognizer("); out.append(") \n"); - out.append("[return (Ark_PinchRecognizer) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_PinchRecognizer) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -33625,12 +33628,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_PixelMapMock CtorImpl() { if (!needGroupedLog(1)) - return (Ark_PixelMapMock) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new PixelMapMock("); out.append(") \n"); - out.append("[return (Ark_PixelMapMock) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_PixelMapMock) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -33665,7 +33668,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_ResourceColor* color) { if (!needGroupedLog(1)) - return (Ark_ProgressMask) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ProgressMask("); WriteToString(&out, value); out.append(", "); @@ -33673,9 +33676,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, color); out.append(") \n"); - out.append("[return (Ark_ProgressMask) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ProgressMask) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -33730,12 +33733,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_PulseSymbolEffect CtorImpl() { if (!needGroupedLog(1)) - return (Ark_PulseSymbolEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new PulseSymbolEffect("); out.append(") \n"); - out.append("[return (Ark_PulseSymbolEffect) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_PulseSymbolEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -33760,13 +33763,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_RectShape CtorImpl(const Opt_Union_RectShapeOptions_RoundRectShapeOptions* options) { if (!needGroupedLog(1)) - return (Ark_RectShape) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new RectShape("); WriteToString(&out, options); out.append(") \n"); - out.append("[return (Ark_RectShape) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_RectShape) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -33782,109 +33785,109 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Position* offset) { if (!needGroupedLog(1)) - return (Ark_RectShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("offset("); WriteToString(&out, offset); out.append(") \n"); - out.append("[return (Ark_RectShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_RectShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_RectShape FillImpl(Ark_RectShape peer, const Ark_ResourceColor* color) { if (!needGroupedLog(1)) - return (Ark_RectShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("fill("); WriteToString(&out, color); out.append(") \n"); - out.append("[return (Ark_RectShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_RectShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_RectShape PositionImpl(Ark_RectShape peer, const Ark_Position* position) { if (!needGroupedLog(1)) - return (Ark_RectShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("position("); WriteToString(&out, position); out.append(") \n"); - out.append("[return (Ark_RectShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_RectShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_RectShape WidthImpl(Ark_RectShape peer, const Ark_Length* width) { if (!needGroupedLog(1)) - return (Ark_RectShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("width("); WriteToString(&out, width); out.append(") \n"); - out.append("[return (Ark_RectShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_RectShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_RectShape HeightImpl(Ark_RectShape peer, const Ark_Length* height) { if (!needGroupedLog(1)) - return (Ark_RectShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("height("); WriteToString(&out, height); out.append(") \n"); - out.append("[return (Ark_RectShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_RectShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_RectShape SizeImpl(Ark_RectShape peer, const Ark_SizeOptions* size) { if (!needGroupedLog(1)) - return (Ark_RectShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("size("); WriteToString(&out, size); out.append(") \n"); - out.append("[return (Ark_RectShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_RectShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_RectShape RadiusWidthImpl(Ark_RectShape peer, const Ark_Union_Number_String* rWidth) { if (!needGroupedLog(1)) - return (Ark_RectShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("radiusWidth("); WriteToString(&out, rWidth); out.append(") \n"); - out.append("[return (Ark_RectShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_RectShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_RectShape RadiusHeightImpl(Ark_RectShape peer, const Ark_Union_Number_String* rHeight) { if (!needGroupedLog(1)) - return (Ark_RectShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("radiusHeight("); WriteToString(&out, rHeight); out.append(") \n"); - out.append("[return (Ark_RectShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_RectShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_RectShape RadiusImpl(Ark_RectShape peer, const Ark_Union_Number_String_Array_Union_Number_String* radius) { if (!needGroupedLog(1)) - return (Ark_RectShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("radius("); WriteToString(&out, radius); out.append(") \n"); - out.append("[return (Ark_RectShape) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_RectShape) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // RectShapeAccessor namespace RenderingContextSettingsAccessor { @@ -33899,13 +33902,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_RenderingContextSettings CtorImpl(const Opt_Boolean* antialias) { if (!needGroupedLog(1)) - return (Ark_RenderingContextSettings) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new RenderingContextSettings("); WriteToString(&out, antialias); out.append(") \n"); - out.append("[return (Ark_RenderingContextSettings) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_RenderingContextSettings) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -33950,12 +33953,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_RenderNode CtorImpl() { if (!needGroupedLog(1)) - return (Ark_RenderNode) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new RenderNode("); out.append(") \n"); - out.append("[return (Ark_RenderNode) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_RenderNode) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -34499,12 +34502,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ShapeMask GetShapeMaskImpl(Ark_RenderNode peer) { if (!needGroupedLog(1)) - return (Ark_ShapeMask) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getShapeMask("); out.append(") \n"); - out.append("[return (Ark_ShapeMask) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_ShapeMask) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } void SetShapeMaskImpl(Ark_RenderNode peer, Ark_ShapeMask shapeMask) @@ -34519,12 +34522,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ShapeClip GetShapeClipImpl(Ark_RenderNode peer) { if (!needGroupedLog(1)) - return (Ark_ShapeClip) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getShapeClip("); out.append(") \n"); - out.append("[return (Ark_ShapeClip) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_ShapeClip) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } void SetShapeClipImpl(Ark_RenderNode peer, Ark_ShapeClip shapeClip) @@ -34589,13 +34592,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ReplaceSymbolEffect CtorImpl(const Opt_EffectScope* scope) { if (!needGroupedLog(1)) - return (Ark_ReplaceSymbolEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ReplaceSymbolEffect("); WriteToString(&out, scope); out.append(") \n"); - out.append("[return (Ark_ReplaceSymbolEffect) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ReplaceSymbolEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -34641,15 +34644,15 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Opt_WorkerOptions* options) { if (!needGroupedLog(1)) - return (Ark_RestrictedWorker) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new RestrictedWorker("); WriteToString(&out, scriptURL); out.append(", "); WriteToString(&out, options); out.append(") \n"); - out.append("[return (Ark_RestrictedWorker) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_RestrictedWorker) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -34922,12 +34925,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_RichEditorBaseController CtorImpl() { if (!needGroupedLog(1)) - return (Ark_RichEditorBaseController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new RichEditorBaseController("); out.append(") \n"); - out.append("[return (Ark_RichEditorBaseController) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_RichEditorBaseController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -35026,12 +35029,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_LayoutManager GetLayoutManagerImpl(Ark_RichEditorBaseController peer) { if (!needGroupedLog(1)) - return (Ark_LayoutManager) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getLayoutManager("); out.append(") \n"); - out.append("[return (Ark_LayoutManager) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_LayoutManager) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_PreviewText GetPreviewTextImpl(Ark_RichEditorBaseController peer) { @@ -35066,12 +35069,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_RichEditorController CtorImpl() { if (!needGroupedLog(1)) - return (Ark_RichEditorController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new RichEditorController("); out.append(") \n"); - out.append("[return (Ark_RichEditorController) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_RichEditorController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -35223,13 +35226,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_RichEditorRange* value) { if (!needGroupedLog(1)) - return (Ark_StyledString) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("toStyledString("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_StyledString) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_StyledString) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // RichEditorControllerAccessor namespace RichEditorStyledStringControllerAccessor { @@ -35244,12 +35247,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_RichEditorStyledStringController CtorImpl() { if (!needGroupedLog(1)) - return (Ark_RichEditorStyledStringController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new RichEditorStyledStringController("); out.append(") \n"); - out.append("[return (Ark_RichEditorStyledStringController) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_RichEditorStyledStringController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -35274,12 +35277,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_MutableStyledString GetStyledStringImpl(Ark_RichEditorStyledStringController peer) { if (!needGroupedLog(1)) - return (Ark_MutableStyledString) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getStyledString("); out.append(") \n"); - out.append("[return (Ark_MutableStyledString) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_MutableStyledString) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_RichEditorRange GetSelectionImpl(Ark_RichEditorStyledStringController peer) { @@ -35314,12 +35317,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_RotationGesture CtorImpl() { if (!needGroupedLog(1)) - return (Ark_RotationGesture) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new RotationGesture("); out.append(") \n"); - out.append("[return (Ark_RotationGesture) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_RotationGesture) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -35335,15 +35338,15 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Opt_RotationGestureHandlerOptions* value) { if (!needGroupedLog(1)) - return (Ark_RotationGesture) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("$_instantiate("); WriteToString(&out, factory); out.append(", "); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_RotationGesture) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_RotationGesture) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } void OnActionStartImpl(Ark_RotationGesture peer, const Callback_GestureEvent_Void* event) @@ -35398,12 +35401,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_RotationGestureEvent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_RotationGestureEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new RotationGestureEvent("); out.append(") \n"); - out.append("[return (Ark_RotationGestureEvent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_RotationGestureEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -35448,12 +35451,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_RotationRecognizer CtorImpl() { if (!needGroupedLog(1)) - return (Ark_RotationRecognizer) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new RotationRecognizer("); out.append(") \n"); - out.append("[return (Ark_RotationRecognizer) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_RotationRecognizer) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -35489,15 +35492,15 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Opt_EffectDirection* direction) { if (!needGroupedLog(1)) - return (Ark_ScaleSymbolEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ScaleSymbolEffect("); WriteToString(&out, scope); out.append(", "); WriteToString(&out, direction); out.append(") \n"); - out.append("[return (Ark_ScaleSymbolEffect) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ScaleSymbolEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -35562,12 +35565,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_Scene CtorImpl() { if (!needGroupedLog(1)) - return (Ark_Scene) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new Scene("); out.append(") \n"); - out.append("[return (Ark_Scene) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_Scene) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -35614,12 +35617,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ScrollableTargetInfo CtorImpl() { if (!needGroupedLog(1)) - return (Ark_ScrollableTargetInfo) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ScrollableTargetInfo("); out.append(") \n"); - out.append("[return (Ark_ScrollableTargetInfo) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ScrollableTargetInfo) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -35664,12 +35667,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_Scroller CtorImpl() { if (!needGroupedLog(1)) - return (Ark_Scroller) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new Scroller("); out.append(") \n"); - out.append("[return (Ark_Scroller) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_Scroller) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -35820,7 +35823,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_SpringProp prop) { if (!needGroupedLog(1)) - return (Ark_ScrollMotion) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ScrollMotion("); WriteToString(&out, position); out.append(", "); @@ -35832,9 +35835,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, prop); out.append(") \n"); - out.append("[return (Ark_ScrollMotion) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ScrollMotion) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -35859,12 +35862,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ScrollResult CtorImpl() { if (!needGroupedLog(1)) - return (Ark_ScrollResult) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ScrollResult("); out.append(") \n"); - out.append("[return (Ark_ScrollResult) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ScrollResult) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -35909,12 +35912,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_SearchController CtorImpl() { if (!needGroupedLog(1)) - return (Ark_SearchController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new SearchController("); out.append(") \n"); - out.append("[return (Ark_SearchController) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_SearchController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -35992,12 +35995,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ShapeClip CtorImpl() { if (!needGroupedLog(1)) - return (Ark_ShapeClip) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ShapeClip("); out.append(") \n"); - out.append("[return (Ark_ShapeClip) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ShapeClip) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -36072,12 +36075,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ShapeMask CtorImpl() { if (!needGroupedLog(1)) - return (Ark_ShapeMask) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ShapeMask("); out.append(") \n"); - out.append("[return (Ark_ShapeMask) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ShapeMask) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -36215,7 +36218,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_SpringProp prop) { if (!needGroupedLog(1)) - return (Ark_SpringMotion) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new SpringMotion("); WriteToString(&out, start); out.append(", "); @@ -36225,9 +36228,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, prop); out.append(") \n"); - out.append("[return (Ark_SpringMotion) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_SpringMotion) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -36254,7 +36257,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Number* damping) { if (!needGroupedLog(1)) - return (Ark_SpringProp) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new SpringProp("); WriteToString(&out, mass); out.append(", "); @@ -36262,9 +36265,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, damping); out.append(") \n"); - out.append("[return (Ark_SpringProp) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_SpringProp) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -36304,15 +36307,15 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Opt_Array_StyleOptions* styles) { if (!needGroupedLog(1)) - return (Ark_StyledString) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new StyledString("); WriteToString(&out, value); out.append(", "); WriteToString(&out, styles); out.append(") \n"); - out.append("[return (Ark_StyledString) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_StyledString) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -36369,15 +36372,15 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Opt_Number* length) { if (!needGroupedLog(1)) - return (Ark_StyledString) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("subStyledString("); WriteToString(&out, start); out.append(", "); WriteToString(&out, length); out.append(") \n"); - out.append("[return (Ark_StyledString) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_StyledString) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } void FromHtmlImpl(Ark_VMContext vmContext, Ark_AsyncWorkerPtr asyncWorker, @@ -36483,12 +36486,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_StyledStringController CtorImpl() { if (!needGroupedLog(1)) - return (Ark_StyledStringController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new StyledStringController("); out.append(") \n"); - out.append("[return (Ark_StyledStringController) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_StyledStringController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -36513,12 +36516,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_MutableStyledString GetStyledStringImpl(Ark_StyledStringController peer) { if (!needGroupedLog(1)) - return (Ark_MutableStyledString) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getStyledString("); out.append(") \n"); - out.append("[return (Ark_MutableStyledString) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_MutableStyledString) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // StyledStringControllerAccessor namespace SubmitEventAccessor { @@ -36533,12 +36536,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_SubmitEvent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_SubmitEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new SubmitEvent("); out.append(") \n"); - out.append("[return (Ark_SubmitEvent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_SubmitEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -36591,12 +36594,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_SwipeGesture CtorImpl() { if (!needGroupedLog(1)) - return (Ark_SwipeGesture) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new SwipeGesture("); out.append(") \n"); - out.append("[return (Ark_SwipeGesture) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_SwipeGesture) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -36612,15 +36615,15 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Opt_SwipeGestureHandlerOptions* value) { if (!needGroupedLog(1)) - return (Ark_SwipeGesture) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("$_instantiate("); WriteToString(&out, factory); out.append(", "); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_SwipeGesture) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_SwipeGesture) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } void OnActionImpl(Ark_SwipeGesture peer, const Callback_GestureEvent_Void* event) @@ -36645,12 +36648,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_SwipeGestureEvent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_SwipeGestureEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new SwipeGestureEvent("); out.append(") \n"); - out.append("[return (Ark_SwipeGestureEvent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_SwipeGestureEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -36715,12 +36718,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_SwiperContentTransitionProxy CtorImpl() { if (!needGroupedLog(1)) - return (Ark_SwiperContentTransitionProxy) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new SwiperContentTransitionProxy("); out.append(") \n"); - out.append("[return (Ark_SwiperContentTransitionProxy) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_SwiperContentTransitionProxy) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -36833,12 +36836,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_SwiperController CtorImpl() { if (!needGroupedLog(1)) - return (Ark_SwiperController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new SwiperController("); out.append(") \n"); - out.append("[return (Ark_SwiperController) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_SwiperController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -36917,12 +36920,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_SwipeRecognizer CtorImpl() { if (!needGroupedLog(1)) - return (Ark_SwipeRecognizer) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new SwipeRecognizer("); out.append(") \n"); - out.append("[return (Ark_SwipeRecognizer) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_SwipeRecognizer) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -36967,12 +36970,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_SymbolEffect CtorImpl() { if (!needGroupedLog(1)) - return (Ark_SymbolEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new SymbolEffect("); out.append(") \n"); - out.append("[return (Ark_SymbolEffect) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_SymbolEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -37075,12 +37078,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TabBarSymbol CtorImpl() { if (!needGroupedLog(1)) - return (Ark_TabBarSymbol) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TabBarSymbol("); out.append(") \n"); - out.append("[return (Ark_TabBarSymbol) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TabBarSymbol) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -37145,12 +37148,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TabContentTransitionProxy CtorImpl() { if (!needGroupedLog(1)) - return (Ark_TabContentTransitionProxy) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TabContentTransitionProxy("); out.append(") \n"); - out.append("[return (Ark_TabContentTransitionProxy) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TabContentTransitionProxy) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -37223,12 +37226,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TabsController CtorImpl() { if (!needGroupedLog(1)) - return (Ark_TabsController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TabsController("); out.append(") \n"); - out.append("[return (Ark_TabsController) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TabsController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -37298,12 +37301,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TapGestureEvent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_TapGestureEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TapGestureEvent("); out.append(") \n"); - out.append("[return (Ark_TapGestureEvent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TapGestureEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -37328,13 +37331,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TapGestureInterface CtorImpl(const Ark_TapGestureParameters* value) { if (!needGroupedLog(1)) - return (Ark_TapGestureInterface) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TapGestureInterface("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_TapGestureInterface) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TapGestureInterface) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -37350,13 +37353,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Callback_GestureEvent_Void* event) { if (!needGroupedLog(1)) - return (Ark_TapGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("onAction("); WriteToString(&out, event); out.append(") \n"); - out.append("[return (Ark_TapGestureInterface) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TapGestureInterface) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // TapGestureInterfaceAccessor namespace TapRecognizerAccessor { @@ -37371,12 +37374,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TapRecognizer CtorImpl() { if (!needGroupedLog(1)) - return (Ark_TapRecognizer) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TapRecognizer("); out.append(") \n"); - out.append("[return (Ark_TapRecognizer) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TapRecognizer) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -37411,12 +37414,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_text_FontCollection CtorImpl() { if (!needGroupedLog(1)) - return (Ark_text_FontCollection) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new text_FontCollection("); out.append(") \n"); - out.append("[return (Ark_text_FontCollection) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_text_FontCollection) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -37431,12 +37434,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_text_FontCollection GetGlobalInstanceImpl() { if (!needGroupedLog(1)) - return (Ark_text_FontCollection) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getGlobalInstance("); out.append(") \n"); - out.append("[return (Ark_text_FontCollection) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_text_FontCollection) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } void LoadFontSyncImpl(Ark_text_FontCollection peer, const Ark_String* name, @@ -37490,12 +37493,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_text_LineTypeset CtorImpl() { if (!needGroupedLog(1)) - return (Ark_text_LineTypeset) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new text_LineTypeset("); out.append(") \n"); - out.append("[return (Ark_text_LineTypeset) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_text_LineTypeset) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -37527,15 +37530,15 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_Number* count) { if (!needGroupedLog(1)) - return (Ark_text_TextLine) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createLine("); WriteToString(&out, startIndex); out.append(", "); WriteToString(&out, count); out.append(") \n"); - out.append("[return (Ark_text_TextLine) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_text_TextLine) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // Text_LineTypesetAccessor namespace Text_ParagraphAccessor { @@ -37550,12 +37553,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_text_Paragraph CtorImpl() { if (!needGroupedLog(1)) - return (Ark_text_Paragraph) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new text_Paragraph("); out.append(") \n"); - out.append("[return (Ark_text_Paragraph) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_text_Paragraph) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -37867,15 +37870,15 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_text_FontCollection fontCollection) { if (!needGroupedLog(1)) - return (Ark_text_ParagraphBuilder) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new text_ParagraphBuilder("); WriteToString(&out, paragraphStyle); out.append(", "); WriteToString(&out, fontCollection); out.append(") \n"); - out.append("[return (Ark_text_ParagraphBuilder) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_text_ParagraphBuilder) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -37928,22 +37931,22 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_text_Paragraph BuildImpl(Ark_text_ParagraphBuilder peer) { if (!needGroupedLog(1)) - return (Ark_text_Paragraph) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("build("); out.append(") \n"); - out.append("[return (Ark_text_Paragraph) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_text_Paragraph) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_text_LineTypeset BuildLineTypesetImpl(Ark_text_ParagraphBuilder peer) { if (!needGroupedLog(1)) - return (Ark_text_LineTypeset) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("buildLineTypeset("); out.append(") \n"); - out.append("[return (Ark_text_LineTypeset) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_text_LineTypeset) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } void AddSymbolImpl(Ark_text_ParagraphBuilder peer, const Ark_Number* symbolId) @@ -37968,12 +37971,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_text_Run CtorImpl() { if (!needGroupedLog(1)) - return (Ark_text_Run) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new text_Run("); out.append(") \n"); - out.append("[return (Ark_text_Run) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_text_Run) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -38052,12 +38055,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_Font GetFontImpl(Ark_text_Run peer) { if (!needGroupedLog(1)) - return (Ark_drawing_Font) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getFont("); out.append(") \n"); - out.append("[return (Ark_drawing_Font) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_Font) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } void PaintImpl(Ark_text_Run peer, Ark_drawing_Canvas canvas, @@ -38130,12 +38133,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_text_TextLine CtorImpl() { if (!needGroupedLog(1)) - return (Ark_text_TextLine) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new text_TextLine("); out.append(") \n"); - out.append("[return (Ark_text_TextLine) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_text_TextLine) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -38199,7 +38202,7 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_String* ellipsis) { if (!needGroupedLog(1)) - return (Ark_text_TextLine) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("createTruncatedLine("); WriteToString(&out, width); out.append(", "); @@ -38207,9 +38210,9 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(", "); WriteToString(&out, ellipsis); out.append(") \n"); - out.append("[return (Ark_text_TextLine) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_text_TextLine) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_text_TypographicBounds GetTypographicBoundsImpl(Ark_text_TextLine peer) { @@ -38303,12 +38306,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TextAreaController CtorImpl() { if (!needGroupedLog(1)) - return (Ark_TextAreaController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TextAreaController("); out.append(") \n"); - out.append("[return (Ark_TextAreaController) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TextAreaController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -38367,12 +38370,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TextBaseController CtorImpl() { if (!needGroupedLog(1)) - return (Ark_TextBaseController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TextBaseController("); out.append(") \n"); - out.append("[return (Ark_TextBaseController) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TextBaseController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -38411,12 +38414,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_LayoutManager GetLayoutManagerImpl(Ark_TextBaseController peer) { if (!needGroupedLog(1)) - return (Ark_LayoutManager) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getLayoutManager("); out.append(") \n"); - out.append("[return (Ark_LayoutManager) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_LayoutManager) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // TextBaseControllerAccessor namespace TextClockControllerAccessor { @@ -38431,12 +38434,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TextClockController CtorImpl() { if (!needGroupedLog(1)) - return (Ark_TextClockController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TextClockController("); out.append(") \n"); - out.append("[return (Ark_TextClockController) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TextClockController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -38477,12 +38480,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TextContentControllerBase CtorImpl() { if (!needGroupedLog(1)) - return (Ark_TextContentControllerBase) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TextContentControllerBase("); out.append(") \n"); - out.append("[return (Ark_TextContentControllerBase) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TextContentControllerBase) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -38592,12 +38595,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TextController CtorImpl() { if (!needGroupedLog(1)) - return (Ark_TextController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TextController("); out.append(") \n"); - out.append("[return (Ark_TextController) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TextController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -38630,12 +38633,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_LayoutManager GetLayoutManagerImpl(Ark_TextController peer) { if (!needGroupedLog(1)) - return (Ark_LayoutManager) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getLayoutManager("); out.append(") \n"); - out.append("[return (Ark_LayoutManager) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_LayoutManager) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // TextControllerAccessor namespace TextEditControllerExAccessor { @@ -38650,12 +38653,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TextEditControllerEx CtorImpl() { if (!needGroupedLog(1)) - return (Ark_TextEditControllerEx) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TextEditControllerEx("); out.append(") \n"); - out.append("[return (Ark_TextEditControllerEx) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TextEditControllerEx) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -38749,12 +38752,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TextInputController CtorImpl() { if (!needGroupedLog(1)) - return (Ark_TextInputController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TextInputController("); out.append(") \n"); - out.append("[return (Ark_TextInputController) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TextInputController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -38813,12 +38816,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TextMenuController CtorImpl() { if (!needGroupedLog(1)) - return (Ark_TextMenuController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TextMenuController("); out.append(") \n"); - out.append("[return (Ark_TextMenuController) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TextMenuController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -38853,12 +38856,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TextMenuItemId CtorImpl() { if (!needGroupedLog(1)) - return (Ark_TextMenuItemId) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TextMenuItemId("); out.append(") \n"); - out.append("[return (Ark_TextMenuItemId) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TextMenuItemId) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -38873,13 +38876,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TextMenuItemId OfImpl(const Ark_ResourceStr* id) { if (!needGroupedLog(1)) - return (Ark_TextMenuItemId) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("of("); WriteToString(&out, id); out.append(") \n"); - out.append("[return (Ark_TextMenuItemId) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TextMenuItemId) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_Boolean EqualsImpl(Ark_TextMenuItemId peer, Ark_TextMenuItemId id) @@ -38896,102 +38899,102 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TextMenuItemId GetCUTImpl() { if (!needGroupedLog(1)) - return (Ark_TextMenuItemId) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getCUT("); out.append(") \n"); - out.append("[return (Ark_TextMenuItemId) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TextMenuItemId) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_TextMenuItemId GetCOPYImpl() { if (!needGroupedLog(1)) - return (Ark_TextMenuItemId) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getCOPY("); out.append(") \n"); - out.append("[return (Ark_TextMenuItemId) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TextMenuItemId) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_TextMenuItemId GetPASTEImpl() { if (!needGroupedLog(1)) - return (Ark_TextMenuItemId) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getPASTE("); out.append(") \n"); - out.append("[return (Ark_TextMenuItemId) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TextMenuItemId) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_TextMenuItemId GetSELECT_ALLImpl() { if (!needGroupedLog(1)) - return (Ark_TextMenuItemId) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getSELECT_ALL("); out.append(") \n"); - out.append("[return (Ark_TextMenuItemId) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TextMenuItemId) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_TextMenuItemId GetCOLLABORATION_SERVICEImpl() { if (!needGroupedLog(1)) - return (Ark_TextMenuItemId) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getCOLLABORATION_SERVICE("); out.append(") \n"); - out.append("[return (Ark_TextMenuItemId) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TextMenuItemId) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_TextMenuItemId GetCAMERA_INPUTImpl() { if (!needGroupedLog(1)) - return (Ark_TextMenuItemId) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getCAMERA_INPUT("); out.append(") \n"); - out.append("[return (Ark_TextMenuItemId) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TextMenuItemId) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_TextMenuItemId GetAI_WRITERImpl() { if (!needGroupedLog(1)) - return (Ark_TextMenuItemId) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getAI_WRITER("); out.append(") \n"); - out.append("[return (Ark_TextMenuItemId) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TextMenuItemId) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_TextMenuItemId GetTRANSLATEImpl() { if (!needGroupedLog(1)) - return (Ark_TextMenuItemId) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getTRANSLATE("); out.append(") \n"); - out.append("[return (Ark_TextMenuItemId) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TextMenuItemId) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_TextMenuItemId GetSEARCHImpl() { if (!needGroupedLog(1)) - return (Ark_TextMenuItemId) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getSEARCH("); out.append(") \n"); - out.append("[return (Ark_TextMenuItemId) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TextMenuItemId) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_TextMenuItemId GetSHAREImpl() { if (!needGroupedLog(1)) - return (Ark_TextMenuItemId) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getSHARE("); out.append(") \n"); - out.append("[return (Ark_TextMenuItemId) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TextMenuItemId) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // TextMenuItemIdAccessor namespace TextPickerDialogAccessor { @@ -39006,12 +39009,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TextPickerDialog CtorImpl() { if (!needGroupedLog(1)) - return (Ark_TextPickerDialog) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TextPickerDialog("); out.append(") \n"); - out.append("[return (Ark_TextPickerDialog) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TextPickerDialog) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -39036,13 +39039,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TextShadowStyle CtorImpl(const Ark_Union_ShadowOptions_Array_ShadowOptions* value) { if (!needGroupedLog(1)) - return (Ark_TextShadowStyle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TextShadowStyle("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_TextShadowStyle) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TextShadowStyle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -39077,13 +39080,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TextStyle CtorImpl(const Opt_TextStyleInterface* value) { if (!needGroupedLog(1)) - return (Ark_TextStyle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TextStyle("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_TextStyle) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TextStyle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -39158,12 +39161,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TextTimerController CtorImpl() { if (!needGroupedLog(1)) - return (Ark_TextTimerController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TextTimerController("); out.append(") \n"); - out.append("[return (Ark_TextTimerController) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TextTimerController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -39212,12 +39215,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_ThemeControl CtorImpl() { if (!needGroupedLog(1)) - return (Ark_ThemeControl) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new ThemeControl("); out.append(") \n"); - out.append("[return (Ark_ThemeControl) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_ThemeControl) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -39251,12 +39254,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TimePickerDialog CtorImpl() { if (!needGroupedLog(1)) - return (Ark_TimePickerDialog) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TimePickerDialog("); out.append(") \n"); - out.append("[return (Ark_TimePickerDialog) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TimePickerDialog) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -39281,12 +39284,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TouchEvent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_TouchEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TouchEvent("); out.append(") \n"); - out.append("[return (Ark_TouchEvent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TouchEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -39421,79 +39424,79 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TransitionEffect Ctor0Impl(const Ark_String* type) { if (!needGroupedLog(1)) - return (Ark_TransitionEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TransitionEffect("); WriteToString(&out, type); out.append(") \n"); - out.append("[return (Ark_TransitionEffect) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TransitionEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_TransitionEffect Ctor1Impl(const Ark_Number* effect) { if (!needGroupedLog(1)) - return (Ark_TransitionEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TransitionEffect("); WriteToString(&out, effect); out.append(") \n"); - out.append("[return (Ark_TransitionEffect) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TransitionEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_TransitionEffect Ctor2Impl(Ark_TransitionEdge effect) { if (!needGroupedLog(1)) - return (Ark_TransitionEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TransitionEffect("); WriteToString(&out, effect); out.append(") \n"); - out.append("[return (Ark_TransitionEffect) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TransitionEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_TransitionEffect Ctor3Impl(const Ark_TranslateOptions* effect) { if (!needGroupedLog(1)) - return (Ark_TransitionEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TransitionEffect("); WriteToString(&out, effect); out.append(") \n"); - out.append("[return (Ark_TransitionEffect) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TransitionEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_TransitionEffect Ctor4Impl(const Ark_RotateOptions* effect) { if (!needGroupedLog(1)) - return (Ark_TransitionEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TransitionEffect("); WriteToString(&out, effect); out.append(") \n"); - out.append("[return (Ark_TransitionEffect) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TransitionEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_TransitionEffect Ctor5Impl(const Ark_ScaleOptions* effect) { if (!needGroupedLog(1)) - return (Ark_TransitionEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TransitionEffect("); WriteToString(&out, effect); out.append(") \n"); - out.append("[return (Ark_TransitionEffect) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TransitionEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_TransitionEffect Ctor6Impl(const Ark_AsymmetricTransitionOption* effect) { if (!needGroupedLog(1)) - return (Ark_TransitionEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new TransitionEffect("); WriteToString(&out, effect); out.append(") \n"); - out.append("[return (Ark_TransitionEffect) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_TransitionEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -39508,135 +39511,135 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_TransitionEffect TranslateImpl(const Ark_TranslateOptions* options) { if (!needGroupedLog(1)) - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("translate("); WriteToString(&out, options); out.append(") \n"); - out.append("[return (Ark_TransitionEffect) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_TransitionEffect RotateImpl(const Ark_RotateOptions* options) { if (!needGroupedLog(1)) - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("rotate("); WriteToString(&out, options); out.append(") \n"); - out.append("[return (Ark_TransitionEffect) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_TransitionEffect ScaleImpl(const Ark_ScaleOptions* options) { if (!needGroupedLog(1)) - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("scale("); WriteToString(&out, options); out.append(") \n"); - out.append("[return (Ark_TransitionEffect) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_TransitionEffect OpacityImpl(const Ark_Number* alpha) { if (!needGroupedLog(1)) - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("opacity("); WriteToString(&out, alpha); out.append(") \n"); - out.append("[return (Ark_TransitionEffect) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_TransitionEffect MoveImpl(Ark_TransitionEdge edge) { if (!needGroupedLog(1)) - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("move("); WriteToString(&out, edge); out.append(") \n"); - out.append("[return (Ark_TransitionEffect) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_TransitionEffect AsymmetricImpl(Ark_TransitionEffect appear, Ark_TransitionEffect disappear) { if (!needGroupedLog(1)) - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("asymmetric("); WriteToString(&out, appear); out.append(", "); WriteToString(&out, disappear); out.append(") \n"); - out.append("[return (Ark_TransitionEffect) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_TransitionEffect AnimationImpl(Ark_TransitionEffect peer, const Ark_AnimateParam* value) { if (!needGroupedLog(1)) - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("animation("); WriteToString(&out, value); out.append(") \n"); - out.append("[return (Ark_TransitionEffect) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_TransitionEffect CombineImpl(Ark_TransitionEffect peer, Ark_TransitionEffect transitionEffect) { if (!needGroupedLog(1)) - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("combine("); WriteToString(&out, transitionEffect); out.append(") \n"); - out.append("[return (Ark_TransitionEffect) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_TransitionEffect GetIDENTITYImpl() { if (!needGroupedLog(1)) - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getIDENTITY("); out.append(") \n"); - out.append("[return (Ark_TransitionEffect) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_TransitionEffect GetOPACITYImpl() { if (!needGroupedLog(1)) - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getOPACITY("); out.append(") \n"); - out.append("[return (Ark_TransitionEffect) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_TransitionEffect GetSLIDEImpl() { if (!needGroupedLog(1)) - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getSLIDE("); out.append(") \n"); - out.append("[return (Ark_TransitionEffect) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_TransitionEffect GetSLIDE_SWITCHImpl() { if (!needGroupedLog(1)) - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getSLIDE_SWITCH("); out.append(") \n"); - out.append("[return (Ark_TransitionEffect) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_TransitionEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // TransitionEffectAccessor namespace UICommonEventAccessor { @@ -39651,12 +39654,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_UICommonEvent CtorImpl() { if (!needGroupedLog(1)) - return (Ark_UICommonEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new UICommonEvent("); out.append(") \n"); - out.append("[return (Ark_UICommonEvent) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_UICommonEvent) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -39794,12 +39797,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_UIContext CtorImpl() { if (!needGroupedLog(1)) - return (Ark_UIContext) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new UIContext("); out.append(") \n"); - out.append("[return (Ark_UIContext) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_UIContext) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -39814,12 +39817,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_drawing_Font GetFontImpl(Ark_UIContext peer) { if (!needGroupedLog(1)) - return (Ark_drawing_Font) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("getFont("); out.append(") \n"); - out.append("[return (Ark_drawing_Font) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_drawing_Font) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_String GetFilteredInspectorTreeImpl(Ark_VMContext vmContext, Ark_UIContext peer, @@ -40171,12 +40174,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_uiEffect_VisualEffect CtorImpl() { if (!needGroupedLog(1)) - return (Ark_uiEffect_VisualEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new uiEffect_VisualEffect("); out.append(") \n"); - out.append("[return (Ark_uiEffect_VisualEffect) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_uiEffect_VisualEffect) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -40192,13 +40195,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Ark_uiEffect_BrightnessBlender* blender) { if (!needGroupedLog(1)) - return (Ark_uiEffect_VisualEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("backgroundColorBlender("); WriteToString(&out, blender); out.append(") \n"); - out.append("[return (Ark_uiEffect_VisualEffect) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_uiEffect_VisualEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } } // UiEffect_VisualEffectAccessor namespace UIExtensionProxyAccessor { @@ -40213,12 +40216,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_UIExtensionProxy CtorImpl() { if (!needGroupedLog(1)) - return (Ark_UIExtensionProxy) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new UIExtensionProxy("); out.append(") \n"); - out.append("[return (Ark_UIExtensionProxy) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_UIExtensionProxy) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -40305,12 +40308,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_unifiedDataChannel_UnifiedData CtorImpl() { if (!needGroupedLog(1)) - return (Ark_unifiedDataChannel_UnifiedData) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new unifiedDataChannel_UnifiedData("); out.append(") \n"); - out.append("[return (Ark_unifiedDataChannel_UnifiedData) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_unifiedDataChannel_UnifiedData) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -40357,13 +40360,13 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_UrlStyle CtorImpl(const Ark_String* url) { if (!needGroupedLog(1)) - return (Ark_UrlStyle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new UrlStyle("); WriteToString(&out, url); out.append(") \n"); - out.append("[return (Ark_UrlStyle) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_UrlStyle) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -40398,12 +40401,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_UserDataSpan CtorImpl() { if (!needGroupedLog(1)) - return (Ark_UserDataSpan) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new UserDataSpan("); out.append(") \n"); - out.append("[return (Ark_UserDataSpan) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_UserDataSpan) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -40428,12 +40431,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_VideoController CtorImpl() { if (!needGroupedLog(1)) - return (Ark_VideoController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new VideoController("); out.append(") \n"); - out.append("[return (Ark_VideoController) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_VideoController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -40531,12 +40534,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_WaterFlowSections CtorImpl() { if (!needGroupedLog(1)) - return (Ark_WaterFlowSections) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new WaterFlowSections("); out.append(") \n"); - out.append("[return (Ark_WaterFlowSections) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_WaterFlowSections) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -40626,12 +40629,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_WebCookie CtorImpl() { if (!needGroupedLog(1)) - return (Ark_WebCookie) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new WebCookie("); out.append(") \n"); - out.append("[return (Ark_WebCookie) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_WebCookie) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -40672,12 +40675,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_XComponentController CtorImpl() { if (!needGroupedLog(1)) - return (Ark_XComponentController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); string out("new XComponentController("); out.append(") \n"); - out.append("[return (Ark_XComponentController) 100] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_100)] \n"); appendGroupedLog(1, out); - return (Ark_XComponentController) 100; + return reinterpret_cast(DUMMY_RET_VAL_100); } Ark_NativePointer GetFinalizerImpl() { @@ -41096,12 +41099,12 @@ namespace OHOS::Ace::NG::GeneratedModifier { Ark_uiEffect_VisualEffect UiEffect_createEffectImpl() { if (!needGroupedLog(1)) - return (Ark_uiEffect_VisualEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); string out("uiEffect_createEffect("); out.append(") \n"); - out.append("[return (Ark_uiEffect_VisualEffect) 300] \n"); + out.append("[return reinterpret_cast(DUMMY_RET_VAL_300)] \n"); appendGroupedLog(1, out); - return (Ark_uiEffect_VisualEffect) 300; + return reinterpret_cast(DUMMY_RET_VAL_300); } Ark_Number Vp2pxImpl(const Ark_Number* value) { diff --git a/arkoala-arkts/framework/native/src/generated/real_impl.cc b/arkoala-arkts/framework/native/src/generated/real_impl.cc index 8512dd5653d3444246fc6747363912fe163d82ee..76bedddc3ca69ee146796953908758fdb78921fa 100644 --- a/arkoala-arkts/framework/native/src/generated/real_impl.cc +++ b/arkoala-arkts/framework/native/src/generated/real_impl.cc @@ -751,7 +751,7 @@ Ark_Int32 MeasureNode(Ark_VMContext vmContext, Ark_NodeHandle node, Ark_Float32* } Ark_Int32 LayoutNode(Ark_VMContext vmContext, Ark_NodeHandle node, Ark_Float32 (*data)[2]) { - return AsNode(node)->layout(vmContext, (Ark_Float32*)data); + return AsNode(node)->layout(vmContext, reinterpret_cast(data)); } Ark_Int32 DrawNode(Ark_VMContext vmContext, Ark_NodeHandle node, Ark_Float32* data) { @@ -868,6 +868,20 @@ namespace OHOS::Ace::NG::GeneratedModifier { out.append(") \n"); appendGroupedLog(1, out); } + void DrawModifierImpl(Ark_NativePointer node, + const Opt_DrawModifier* value) + { + if (value->value) { + auto frameNode = AsNode(node); + frameNode->setDrawModifier(value->value); + } + if (!needGroupedLog(1)) + return; + string out("drawModifier("); + WriteToString(&out, value); + out.append(") \n"); + appendGroupedLog(1, out); + } } // CommonMethodModifier namespace EventEmulatorAccessor { @@ -1536,10 +1550,6 @@ namespace OHOS::Ace::NG::GeneratedModifier { const Opt_Union_Length_LayoutPolicy* value) { } - void DrawModifierImpl(Ark_NativePointer node, - const Opt_DrawModifier* value) - { - } void ResponseRegionImpl(Ark_NativePointer node, const Opt_Union_Array_Rectangle_Rectangle* value) { diff --git a/subset/arkoala/arkui/src/main.ts b/subset/arkoala/arkui/src/main.ts index f00638393d287ba9cefedd0077524d448941ccfd..1095ae4683af5e865332a1e5251de4b508b6c76e 100644 --- a/subset/arkoala/arkui/src/main.ts +++ b/subset/arkoala/arkui/src/main.ts @@ -508,7 +508,7 @@ function checkCanvasRenderingContext2D() { checkResult("new CanvasRenderingContext2D()", () => canvasRenderingContext2D = new CanvasRenderingContext2D(), - `new CanvasRenderingContext2D({.tag=INTEROP_TAG_UNDEFINED, .value={}}, {.tag=INTEROP_TAG_UNDEFINED, .value={}})[return (Ark_CanvasRenderingContext2D) 100]getFinalizer()[return fnPtr(dummyClassFinalizer)]`) + `new CanvasRenderingContext2D({.tag=INTEROP_TAG_UNDEFINED, .value={}}, {.tag=INTEROP_TAG_UNDEFINED, .value={}})[return reinterpret_cast(DUMMY_RET_VAL_100)]getFinalizer()[return fnPtr(dummyClassFinalizer)]`) checkResult("CanvasRenderingContext2D width", () => canvasRenderingContext2D!.width,