From f28fe95b6a039672e671cda08aea9691ba4cc47b Mon Sep 17 00:00:00 2001 From: chen-xiaoxue299 Date: Wed, 6 Aug 2025 20:12:01 +0800 Subject: [PATCH] add Signed-off-by: chen-xiaoxue299 --- arkui/ace_engine/native/native_animate.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/arkui/ace_engine/native/native_animate.h b/arkui/ace_engine/native/native_animate.h index efd745d5d..30a7fe07c 100644 --- a/arkui/ace_engine/native/native_animate.h +++ b/arkui/ace_engine/native/native_animate.h @@ -187,7 +187,7 @@ typedef struct { /** * @brief Disposes of an animator object. * - * @param animator Indicates the target animator object. + * @param animatorHandle Indicates the target animator object. */ void (*disposeAnimator)(ArkUI_AnimatorHandle animatorHandle); } ArkUI_NativeAnimateAPI_1; @@ -203,6 +203,7 @@ ArkUI_AnimateOption* OH_ArkUI_AnimateOption_Create(); /** * @brief Disposes of an animation configuration. * +* @param option Indicates the pointer to an animation configuration. * @since 12 */ void OH_ArkUI_AnimateOption_Dispose(ArkUI_AnimateOption* option); @@ -534,6 +535,7 @@ ArkUI_AnimatorOption* OH_ArkUI_AnimatorOption_Create(int32_t keyframeSize); /** * @brief Disposes of an animator parameter object. * + * @param option Indicates the target animator parameter object. * @since 12 */ void OH_ArkUI_AnimatorOption_Dispose(ArkUI_AnimatorOption* option); -- Gitee