From 5fc27f36ba4f94b75a99285cf0c4f94904f5d391 Mon Sep 17 00:00:00 2001 From: Suyeon Hwang Date: Wed, 15 Mar 2023 10:09:55 +0900 Subject: [PATCH] Add the version notification for new enum values - Requirements: New enum values require the version description. - Contents: This patch adds the version description for new enum values. Change-Id: I25f7db9189cb2594c92e70d6056ba9d6a2d79650 Signed-off-by: Suyeon Hwang --- include/tts.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/tts.h b/include/tts.h index 089e5146..0ceb0faa 100644 --- a/include/tts.h +++ b/include/tts.h @@ -90,11 +90,11 @@ typedef enum { * @since_tizen 7.0 */ typedef enum { - TTS_SERVICE_STATE_NONE = -1, /**< 'None' state */ + TTS_SERVICE_STATE_NONE = -1, /**< 'None' state (Since 7.5) */ TTS_SERVICE_STATE_READY = 0, /**< 'Ready' state */ TTS_SERVICE_STATE_SYNTHESIZING, /**< 'Synthesizing' state */ TTS_SERVICE_STATE_PLAYING, /**< 'Playing' state */ - TTS_SERVICE_STATE_BLOCKED /**< 'Blocked' state */ + TTS_SERVICE_STATE_BLOCKED /**< 'Blocked' state (Since 7.5) */ } tts_service_state_e; -- 2.34.1