From 8bc8570aaf80159a68a1c3272e1aa6c0a96a63d0 Mon Sep 17 00:00:00 2001 From: c30053238 Date: Tue, 6 May 2025 11:21:36 +0800 Subject: [PATCH] api18->api19 Signed-off-by: c30053238 --- arkui/ace_engine/native/libace.ndk.json | 4 ++-- arkui/ace_engine/native/native_animate.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arkui/ace_engine/native/libace.ndk.json b/arkui/ace_engine/native/libace.ndk.json index 3a129e851..e339fcee9 100644 --- a/arkui/ace_engine/native/libace.ndk.json +++ b/arkui/ace_engine/native/libace.ndk.json @@ -2944,11 +2944,11 @@ "name": "OH_ArkUI_XComponent_StopImageAnalyzer" }, { - "first_introduced": "18", + "first_introduced": "19", "name": "OH_ArkUI_KeyframeAnimateOption_SetExpectedFrameRate" }, { - "first_introduced": "18", + "first_introduced": "19", "name": "OH_ArkUI_KeyframeAnimateOption_GetExpectedFrameRate" }, { diff --git a/arkui/ace_engine/native/native_animate.h b/arkui/ace_engine/native/native_animate.h index 0fbbe8c88..efd745d5d 100644 --- a/arkui/ace_engine/native/native_animate.h +++ b/arkui/ace_engine/native/native_animate.h @@ -421,7 +421,7 @@ int32_t OH_ArkUI_KeyframeAnimateOption_RegisterOnFinishCallback( * @return Returns the error code. * Returns {@link ARKUI_ERROR_CODE_NO_ERROR} if the operation is successful. * Returns {@link ARKUI_ERROR_CODE_PARAM_INVALID} if a parameter error occurs. - * @since 18 + * @since 19 */ int32_t OH_ArkUI_KeyframeAnimateOption_SetExpectedFrameRate( ArkUI_KeyframeAnimateOption* option, ArkUI_ExpectedFrameRateRange* frameRate); @@ -494,7 +494,7 @@ int32_t OH_ArkUI_KeyframeAnimateOption_GetIterations(ArkUI_KeyframeAnimateOption * * @param option Indicates the pointer to a keyframe animation configuration. * @return Returns the expected frame rate range of the keyframe animation. - * @since 18 + * @since 19 */ ArkUI_ExpectedFrameRateRange* OH_ArkUI_KeyframeAnimateOption_GetExpectedFrameRate(ArkUI_KeyframeAnimateOption* option); -- Gitee