From: mk5004.lee Date: Thu, 27 Feb 2020 01:08:07 +0000 (+0900) Subject: Change default sound, vibration name X-Git-Tag: submit/tizen_5.5/20200227.032843^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d18959df1c96404088bd4eceadf62f4e04f6ed87;p=platform%2Fcore%2Fapi%2Fnotification.git Change default sound, vibration name - NOTI_EX_SOUND_TYPE_DEFAULT NOTI_EX_VIBRATION_TYPE_DEFAULT Change-Id: Ic781fa182d07a84f0983b9b337df57ccc7ec1348 Signed-off-by: mk5004.lee --- diff --git a/notification-ex/api/notification_ex_item.h b/notification-ex/api/notification_ex_item.h index d609253b..822d78d6 100644 --- a/notification-ex/api/notification_ex_item.h +++ b/notification-ex/api/notification_ex_item.h @@ -63,13 +63,13 @@ extern "C" { * @brief Default sound. * @since_tizen 5.5 */ -#define NOTIFICATION_SOUND_TYPE_DEFAULT "__SOUND_TYPE_DEFAULT__" +#define NOTI_EX_SOUND_TYPE_DEFAULT "__SOUND_TYPE_DEFAULT__" /** * @brief Default vibration. * @since_tizen 5.5 */ -#define NOTIFICATION_VIBRATION_TYPE_DEFAULT "__VIBRATION_TYPE_DEFAULT__" +#define NOTI_EX_VIBRATION_TYPE_DEFAULT "__VIBRATION_TYPE_DEFAULT__" /** * @brief Enumeration for notification_ex item types. @@ -1869,7 +1869,7 @@ int noti_ex_item_get_led_info(noti_ex_item_h handle, noti_ex_led_info_h *led); * @since_tizen 5.5 * @param[in] handle The notification_ex item handle * @param[in] path The absolute path of sound for notification_ex item - * If you want to set a default sound, enter #NOTIFICATION_SOUND_TYPE_DEFAULT. + * If you want to set a default sound, enter #NOTI_EX_SOUND_TYPE_DEFAULT. * @return #NOTI_EX_ERROR_NONE On success, other value on failure * @retval #NOTI_EX_ERROR_NONE Success * @retval #NOTI_EX_ERROR_INVALID_PARAMETER Invalid parameter @@ -1894,7 +1894,7 @@ int noti_ex_item_set_sound_path(noti_ex_item_h handle, const char *path); * @param[in] handle The notification_ex item handle * @param[out] path The absolute path of sound for notification_ex item * If not set, you will get NULL. - * If set default, you will get #NOTIFICATION_SOUND_TYPE_DEFAULT. + * If set default, you will get #NOTI_EX_SOUND_TYPE_DEFAULT. * @return #NOTI_EX_ERROR_NONE On success, other value on failure * @retval #NOTI_EX_ERROR_NONE Success * @retval #NOTI_EX_ERROR_INVALID_PARAMETER Invalid parameter @@ -1918,7 +1918,7 @@ int noti_ex_item_get_sound_path(noti_ex_item_h handle, char **path); * @since_tizen 5.5 * @param[in] handle The notification_ex item handle * @param[in] path The absolute path of vibration for notification_ex item - * If you want to set a default sound, enter #NOTIFICATION_VIBRATION_TYPE_DEFAULT. + * If you want to set a default sound, enter #NOTI_EX_VIBRATION_TYPE_DEFAULT. * @return #NOTI_EX_ERROR_NONE On success, other value on failure * @retval #NOTI_EX_ERROR_NONE Success * @retval #NOTI_EX_ERROR_INVALID_PARAMETER Invalid parameter @@ -1943,7 +1943,7 @@ int noti_ex_item_set_vibration_path(noti_ex_item_h handle, const char *path); * @param[in] handle The notification_ex item handle * @param[out] path The absolute path of vibration for a notification_ex item * If not set, you will get NULL. - * If set default, you will get #NOTIFICATION_VIBRATION_TYPE_DEFAULT. + * If set default, you will get #NOTI_EX_VIBRATION_TYPE_DEFAULT. * @return #NOTI_EX_ERROR_NONE On success, other value on failure * @retval #NOTI_EX_ERROR_NONE Success * @retval #NOTI_EX_ERROR_INVALID_PARAMETER Invalid parameter