From b801b5bea9171450ed727f864801a1c6033ffeed Mon Sep 17 00:00:00 2001 From: "sungwook79.park" Date: Thu, 10 Aug 2023 18:28:35 +0900 Subject: [PATCH] Remove deprecated macro in callback function Change-Id: Ibdf1a1b4bb1c8018e25d871ebb911b5b6701c465 Signed-off-by: sungwook79.park --- include/gesture.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/gesture.h b/include/gesture.h index cfa0720..910f45f 100644 --- a/include/gesture.h +++ b/include/gesture.h @@ -64,7 +64,7 @@ typedef struct hand_gesture_s *hand_gesture_h; * * @see hand_gesture_start_recognition() */ -typedef void(* hand_gesture_recognition_cb)(hand_gesture_h handle, hand_gesture_type_e gesture, double timestamp, hand_gesture_error_e error, void *user_data) TIZEN_DEPRECATED_API; +typedef void(* hand_gesture_recognition_cb)(hand_gesture_h handle, hand_gesture_type_e gesture, double timestamp, hand_gesture_error_e error, void *user_data); /** * @deprecated Deprecated since 8.0. @@ -92,7 +92,7 @@ typedef void(* hand_gesture_recognition_cb)(hand_gesture_h handle, hand_gesture_ * @see hand_gesture_set_error_cb() * @see hand_gesture_unset_error_cb() */ -typedef void(* hand_gesture_error_cb)(hand_gesture_h handle, hand_gesture_error_e error, const char* msg, void *user_data) TIZEN_DEPRECATED_API; +typedef void(* hand_gesture_error_cb)(hand_gesture_h handle, hand_gesture_error_e error, const char* msg, void *user_data); /** * @deprecated Deprecated since 8.0. -- 2.7.4