From: Suyeon Hwang Date: Wed, 15 Mar 2023 01:09:55 +0000 (+0900) Subject: Add the version notification for new enum values X-Git-Tag: accepted/tizen/unified/20230316.174017~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5fc27f36ba4f94b75a99285cf0c4f94904f5d391;p=platform%2Fcore%2Fuifw%2Ftts.git 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 --- 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;