From 1e57302904d236cefad180885f4cb27f17275d72 Mon Sep 17 00:00:00 2001 From: eager1 Date: Fri, 7 Feb 2025 16:54:38 +0800 Subject: [PATCH] api level 16-->15 Signed-off-by: eager1 Change-Id: I8b275a76a488c8a1d506047e293d056272f9d4f6 --- arkui/ace_engine/native/libace.ndk.json | 8 ++++---- arkui/ace_engine/native/native_type.h | 8 ++++---- 2 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 2bf61a28a..bf77b63b2 100644 --- a/arkui/ace_engine/native/libace.ndk.json +++ b/arkui/ace_engine/native/libace.ndk.json @@ -1500,7 +1500,7 @@ "name": "OH_ArkUI_NodeUtils_GetNodeType" }, { - "first_introduced": "16", + "first_introduced": "15", "name": "OH_ArkUI_NodeUtils_GetWindowInfo" }, { @@ -1524,7 +1524,7 @@ "name": "OH_ArkUI_ActiveChildrenInfo_GetCount" }, { - "first_introduced": "16", + "first_introduced": "15", "name": "OH_ArkUI_NodeUtils_GetAttachedNodeHandleById" }, { @@ -2820,11 +2820,11 @@ "name": "OH_ArkUI_PostFrameCallback" }, { - "first_introduced": "16", + "first_introduced": "15", "name": "OH_ArkUI_HostWindowInfo_GetName" }, { - "first_introduced": "16", + "first_introduced": "15", "name": "OH_ArkUI_HostWindowInfo_Destroy" }, { diff --git a/arkui/ace_engine/native/native_type.h b/arkui/ace_engine/native/native_type.h index 55c439b83..2baa1e0df 100644 --- a/arkui/ace_engine/native/native_type.h +++ b/arkui/ace_engine/native/native_type.h @@ -217,7 +217,7 @@ typedef struct ArkUI_CustomProperty ArkUI_CustomProperty; /** * @brief Define the information of the HostWindowInfo class for window properties. * - * @since 16 + * @since 15 */ typedef struct ArkUI_HostWindowInfo ArkUI_HostWindowInfo; @@ -2159,7 +2159,7 @@ typedef enum { ARKUI_ERROR_CODE_BUFFER_SIZE_ERROR = 106202, /** * @error The node is not on main tree. - * @since 16 + * @since 15 */ ARKUI_ERROR_CODE_NODE_NOT_ON_MAIN_TREE = 106203, /** @@ -4679,7 +4679,7 @@ const char* OH_ArkUI_CustomProperty_GetStringValue(ArkUI_CustomProperty* handle) * * @param info HostWindowInfo object pointer. * @return Window name in HostWindowInfo. - * @since 16 + * @since 15 */ const char* OH_ArkUI_HostWindowInfo_GetName(ArkUI_HostWindowInfo* info); @@ -4687,7 +4687,7 @@ const char* OH_ArkUI_HostWindowInfo_GetName(ArkUI_HostWindowInfo* info); * @brief Destroy the instance of HostWindowInfo. * * @param info Instance of HostWindowInfo to be destroyed. - * @since 16 + * @since 15 */ void OH_ArkUI_HostWindowInfo_Destroy(ArkUI_HostWindowInfo* info); -- Gitee