From f050fc69d50cb8ec6e5814c1559a38edb01dba6a Mon Sep 17 00:00:00 2001 From: wanghao505 Date: Sat, 15 Mar 2025 11:05:16 +0800 Subject: [PATCH] fix dagger Signed-off-by: wanghao505 --- multimodalinput/kits/c/input/oh_key_code.h | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/multimodalinput/kits/c/input/oh_key_code.h b/multimodalinput/kits/c/input/oh_key_code.h index 32b3b9bcf..4ed2be0fa 100644 --- a/multimodalinput/kits/c/input/oh_key_code.h +++ b/multimodalinput/kits/c/input/oh_key_code.h @@ -310,7 +310,22 @@ typedef enum { /** Key ( on numeric keypad */ KEYCODE_NUMPAD_LEFT_PAREN = 2121, /** Key ) on numeric keypad */ - KEYCODE_NUMPAD_RIGHT_PAREN = 2122 + KEYCODE_NUMPAD_RIGHT_PAREN = 2122, + /** + * watch dagger click key + * @since 18 + */ + KEYCODE_DAGGER_CLICK = 3211, + /** + * watch dagger double click key + * @since 18 + */ + KEYCODE_DAGGER_DOUBLE_CLICK = 3212, + /** + * watch dagger long button + * @since 18 + */ + KEYCODE_DAGGER_LONG_PRESS = 3213, } Input_KeyCode; #ifdef __cplusplus -- Gitee