From 056f8e8c033c9f4829a8006219c2689d0aff8f2f Mon Sep 17 00:00:00 2001 From: wanghao1717 Date: Wed, 4 Jun 2025 21:35:02 +0800 Subject: [PATCH] add dagger Signed-off-by: wanghao1717 --- 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..b0cc4082e 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, + /** + * Smart watch dagger click key + * @since 18 + */ + KEYCODE_DAGGER_CLICK = 3211, + /** + * Smart watch dagger double click key + * @since 18 + */ + KEYCODE_DAGGER_DOUBLE_CLICK = 3212, + /** + * Smart watch dagger long press key + * @since 18 + */ + KEYCODE_DAGGER_LONG_PRESS = 3213, } Input_KeyCode; #ifdef __cplusplus -- Gitee