diff --git a/arkui/ace_engine/native/libace.ndk.json b/arkui/ace_engine/native/libace.ndk.json index 8427c518d111a786a903a914a8ec8020e2e3bf90..d832d4581748c208784727a09910756d4e57a1ed 100644 --- a/arkui/ace_engine/native/libace.ndk.json +++ b/arkui/ace_engine/native/libace.ndk.json @@ -2872,19 +2872,19 @@ "name": "OH_ArkUI_HostWindowInfo_Destroy" }, { - "first_introduced": "15", + "first_introduced": "18", "name": "OH_ArkUI_RegisterLayoutCallbackOnNodeHandle" }, { - "first_introduced": "15", + "first_introduced": "18", "name": "OH_ArkUI_RegisterDrawCallbackOnNodeHandle" }, { - "first_introduced": "15", + "first_introduced": "18", "name": "OH_ArkUI_UnregisterLayoutCallbackOnNodeHandle" }, { - "first_introduced": "15", + "first_introduced": "18", "name": "OH_ArkUI_UnregisterDrawCallbackOnNodeHandle" }, { diff --git a/arkui/ace_engine/native/native_node.h b/arkui/ace_engine/native/native_node.h index 3f647b43f42d77a5b9a0e7e50fc9458dc86cc5d9..705543b44f1673c4da38f0551c56845e61fe4b67 100644 --- a/arkui/ace_engine/native/native_node.h +++ b/arkui/ace_engine/native/native_node.h @@ -8623,7 +8623,7 @@ typedef enum { /** * @brief Enumerates the inspector error codes. - * @since 15 + * @since 18 */ typedef enum { /** @@ -9098,7 +9098,7 @@ int32_t OH_ArkUI_NodeUtils_GetCrossLanguageOption(ArkUI_NodeHandle node, ArkUI_C * @return error code {@link ARKUI_INSPECTOR_NATIVE_RESULT_SUCCESSFUL} if the operation is successful. * {@link ARKUI_INSPECTOR_NATIVE_RESULT_BAD_PARAMETER} if a parameter is incorrect. - * @since 15 + * @since 18 */ int32_t OH_ArkUI_RegisterLayoutCallbackOnNodeHandle(ArkUI_NodeHandle node, void* userData, void (*onLayoutCompleted)(void* userData)); @@ -9113,7 +9113,7 @@ int32_t OH_ArkUI_RegisterLayoutCallbackOnNodeHandle(ArkUI_NodeHandle node, * @return error code {@link ARKUI_INSPECTOR_NATIVE_RESULT_SUCCESSFUL} if the operation is successful. * {@link ARKUI_INSPECTOR_NATIVE_RESULT_BAD_PARAMETER} if a parameter is incorrect. - * @since 15 + * @since 18 */ int32_t OH_ArkUI_RegisterDrawCallbackOnNodeHandle(ArkUI_NodeHandle node, void* userData, void (*onDrawCompleted)(void* userData)); @@ -9125,7 +9125,7 @@ int32_t OH_ArkUI_RegisterDrawCallbackOnNodeHandle(ArkUI_NodeHandle node, * @return error code {@link ARKUI_INSPECTOR_NATIVE_RESULT_SUCCESSFUL} if the operation is successful. * {@link ARKUI_INSPECTOR_NATIVE_RESULT_BAD_PARAMETER} if a parameter is incorrect. - * @since 15 + * @since 18 */ int32_t OH_ArkUI_UnregisterLayoutCallbackOnNodeHandle(ArkUI_NodeHandle node); @@ -9136,7 +9136,7 @@ int32_t OH_ArkUI_UnregisterLayoutCallbackOnNodeHandle(ArkUI_NodeHandle node); * @return error code {@link ARKUI_INSPECTOR_NATIVE_RESULT_SUCCESSFUL} if the operation is successful. * {@link ARKUI_INSPECTOR_NATIVE_RESULT_BAD_PARAMETER} if a parameter is incorrect. - * @since 15 + * @since 18 */ int32_t OH_ArkUI_UnregisterDrawCallbackOnNodeHandle(ArkUI_NodeHandle node);