From bc615b4240f2281732c8511dbc59ed0b8dcaf44b Mon Sep 17 00:00:00 2001 From: liukaii Date: Tue, 6 May 2025 22:32:40 +0800 Subject: [PATCH] change api 19 Signed-off-by: liukaii --- arkui/ace_engine/native/libace.ndk.json | 6 +++--- arkui/ace_engine/native/native_key_event.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/arkui/ace_engine/native/libace.ndk.json b/arkui/ace_engine/native/libace.ndk.json index 3a129e851..c85340d71 100644 --- a/arkui/ace_engine/native/libace.ndk.json +++ b/arkui/ace_engine/native/libace.ndk.json @@ -3300,15 +3300,15 @@ "name": "OH_ArkUI_XComponent_IsInitialized" }, { - "first_introduced": "18", + "first_introduced": "19", "name": "OH_ArkUI_KeyEvent_IsNumLockOn" }, { - "first_introduced": "18", + "first_introduced": "19", "name": "OH_ArkUI_KeyEvent_IsCapsLockOn" }, { - "first_introduced": "18", + "first_introduced": "19", "name": "OH_ArkUI_KeyEvent_IsScrollLockOn" }, { diff --git a/arkui/ace_engine/native/native_key_event.h b/arkui/ace_engine/native/native_key_event.h index 34a568953..c18b311d3 100644 --- a/arkui/ace_engine/native/native_key_event.h +++ b/arkui/ace_engine/native/native_key_event.h @@ -574,7 +574,7 @@ void OH_ArkUI_KeyEvent_Dispatch(ArkUI_NodeHandle node, const ArkUI_UIInputEvent* * @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 a parameter error occurs. - * @since 18 + * @since 19 */ ArkUI_ErrorCode OH_ArkUI_KeyEvent_IsNumLockOn(const ArkUI_UIInputEvent* event, bool* state); @@ -586,7 +586,7 @@ ArkUI_ErrorCode OH_ArkUI_KeyEvent_IsNumLockOn(const ArkUI_UIInputEvent* event, b * @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 a parameter error occurs. - * @since 18 + * @since 19 */ ArkUI_ErrorCode OH_ArkUI_KeyEvent_IsCapsLockOn(const ArkUI_UIInputEvent* event, bool* state); @@ -598,7 +598,7 @@ ArkUI_ErrorCode OH_ArkUI_KeyEvent_IsCapsLockOn(const ArkUI_UIInputEvent* event, * @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 a parameter error occurs. - * @since 18 + * @since 19 */ ArkUI_ErrorCode OH_ArkUI_KeyEvent_IsScrollLockOn(const ArkUI_UIInputEvent* event, bool* state); #ifdef __cplusplus -- Gitee