From 04a02f7f8e33e84666e428c7dfbfdd45908c3ced Mon Sep 17 00:00:00 2001 From: wangyang2022 Date: Wed, 27 Aug 2025 14:10:41 +0000 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9sdk=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E5=8F=B7=20Signed-off-by:=20wangyang2022=20=20Change-Id:=20I6be2ed77669fcde03c3781b6cdb6b4025b696dd2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- arkui/ace_engine/native/libace.ndk.json | 6 +++--- arkui/ace_engine/native/native_interface.h | 2 +- arkui/ace_engine/native/native_node.h | 6 +++--- arkui/ace_engine/native/native_type.h | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/arkui/ace_engine/native/libace.ndk.json b/arkui/ace_engine/native/libace.ndk.json index 27725918d02..dc359a75005 100644 --- a/arkui/ace_engine/native/libace.ndk.json +++ b/arkui/ace_engine/native/libace.ndk.json @@ -4056,15 +4056,15 @@ "name": "OH_ArkUI_RenderNodeUtils_DisposeRenderNodeClipOption" }, { - "first_introduced": "20", + "first_introduced": "21", "name": "OH_ArkUI_PostAsyncUITask" }, { - "first_introduced": "20", + "first_introduced": "21", "name": "OH_ArkUI_PostUITask" }, { - "first_introduced": "20", + "first_introduced": "21", "name": "OH_ArkUI_PostUITaskAndWait" }, { diff --git a/arkui/ace_engine/native/native_interface.h b/arkui/ace_engine/native/native_interface.h index 4c340577951..0acd918d524 100644 --- a/arkui/ace_engine/native/native_interface.h +++ b/arkui/ace_engine/native/native_interface.h @@ -60,7 +60,7 @@ typedef enum { /** * API related to supported multi thread UI components. * For details, see the struct definition in . - * @since 20 + * @since 21 */ ARKUI_MULTI_THREAD_NATIVE_NODE, } ArkUI_NativeAPIVariantKind; diff --git a/arkui/ace_engine/native/native_node.h b/arkui/ace_engine/native/native_node.h index 07456c72e7a..3aa771346e1 100644 --- a/arkui/ace_engine/native/native_node.h +++ b/arkui/ace_engine/native/native_node.h @@ -10180,7 +10180,7 @@ int32_t OH_ArkUI_SetForceDarkConfig(ArkUI_ContextHandle uiContext, bool forceDar * @return Returns the result code. * Returns {@link ARKUI_ERROR_CODE_NO_ERROR} if the operation is successful. * Returns {@link ARKUI_ERROR_CODE_PARAM_INVALID} if context or asyncUITask is nullptr. - * @since 20 + * @since 21 */ int32_t OH_ArkUI_PostAsyncUITask(ArkUI_ContextHandle context, void* asyncUITaskData, void (*asyncUITask)(void* asyncUITaskData), void (*onFinish)(void* asyncUITaskData)); @@ -10194,7 +10194,7 @@ int32_t OH_ArkUI_PostAsyncUITask(ArkUI_ContextHandle context, void* asyncUITaskD * @return Returns the result code. * Returns {@link ARKUI_ERROR_CODE_NO_ERROR} if the operation is successful. * Returns {@link ARKUI_ERROR_CODE_PARAM_INVALID} if context or task is nullptr. - * @since 20 + * @since 21 */ int32_t OH_ArkUI_PostUITask(ArkUI_ContextHandle context, void* taskData, void (*task)(void* taskData)); @@ -10207,7 +10207,7 @@ int32_t OH_ArkUI_PostUITask(ArkUI_ContextHandle context, void* taskData, void (* * @return Returns the result code. * Returns {@link ARKUI_ERROR_CODE_NO_ERROR} if the operation is successful. * Returns {@link ARKUI_ERROR_CODE_PARAM_INVALID} if context or task is nullptr. - * @since 20 + * @since 21 */ int32_t OH_ArkUI_PostUITaskAndWait(ArkUI_ContextHandle context, void* taskData, void (*task)(void* taskData)); diff --git a/arkui/ace_engine/native/native_type.h b/arkui/ace_engine/native/native_type.h index 25626e7d1e5..92dc8f05d73 100644 --- a/arkui/ace_engine/native/native_type.h +++ b/arkui/ace_engine/native/native_type.h @@ -2326,7 +2326,7 @@ typedef enum { ARKUI_ERROR_CODE_NODE_NOT_ON_MAIN_TREE = 106203, /** * @error The node is running on invalid thread. - * @since 20 + * @since 21 */ ARKUI_ERROR_CODE_NODE_ON_INVALID_THREAD = 106204, /** -- Gitee