Update since_tizen in header files 93/302393/1
authorsooyeon <sooyeon.kim@samsung.com>
Wed, 6 Dec 2023 06:33:13 +0000 (15:33 +0900)
committersooyeon <sooyeon.kim@samsung.com>
Wed, 6 Dec 2023 06:33:48 +0000 (15:33 +0900)
Change-Id: Id3c809b4682cde0d7754c46f6ade39401312b8bb
Signed-off-by: sooyeon <sooyeon.kim@samsung.com>
include/voice_control_elm.h

index c5a6638..f8c2d22 100644 (file)
@@ -43,7 +43,7 @@ extern "C" {
 
 /**
 * @brief Enumeration for status of voice control elementary after API call.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 */
 typedef enum {
        VC_ELM_ERROR_NONE = TIZEN_ERROR_NONE, /**< Successful */
@@ -61,7 +61,7 @@ typedef enum {
 
 /**
 * @brief Enumeration for directions of the widget hints.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @see vc_elm_set_command_hint_direction()
 * @image html hints_orientation.png Example: various hints orientations.
 */
@@ -80,14 +80,14 @@ typedef enum {
 
 /**
 * @brief The voice control elementary for object or item object handle.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 */
 typedef struct vc_elm_s* vc_elm_h;
 
 
 /**
 * @brief Called to retrieve supported language.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @param[in] language A language is specified as an ISO 3166 alpha-2 two letter country-code
 *                     followed by ISO 639-1 for the two-letter language code
 *                     For example, "ko_KR" for Korean, "en_US" for American English
@@ -102,7 +102,7 @@ typedef bool (*vc_elm_supported_language_cb)(const char* language, void* user_da
 
 /**
 * @brief Called when default language is changed.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @param[in] previous Previous language
 * @param[in] current Current language
 * @param[in] user_data The user data passed from the callback registration function
@@ -114,7 +114,7 @@ typedef void (*vc_elm_current_language_changed_cb)(const char* previous, const c
 
 /**
 * @brief Called to retrieve supported widget.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @param[in] widget Widget name
 * @param[in] user_data The user data passed from the callback registration function
 * @return @c true to continue with the next iteration of the loop,
@@ -127,7 +127,7 @@ typedef bool (*vc_elm_widget_cb)(const char* widget, void* user_data);
 
 /**
 * @brief Called to retrieve supported action.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @param[in] action Action name
 * @param[in] user_data The user data passed from the callback registration function
 * @return @c true to continue with the next iteration of the loop, 
@@ -140,7 +140,7 @@ typedef bool (*vc_elm_action_cb)(const char* action, void* user_data);
 
 /**
 * @brief Initializes voice control elementary module.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @remarks If the function succeeds, the voice control elementary must be released with vc_elm_deinitialize().
 * @return @c 0 on success, 
 *         otherwise a negative error value
@@ -156,7 +156,7 @@ int vc_elm_initialize(void);
 
 /**
 * @brief Deinitializes voice control elementary module.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @return @c 0 on success, 
 *         otherwise a negative error value
 * @retval #VC_ELM_ERROR_NONE Successful
@@ -172,7 +172,7 @@ int vc_elm_deinitialize(void);
 
 /**
 * @brief Retrieves all supported languages using callback function.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 * @param[in] callback Callback function to invoke
@@ -195,7 +195,7 @@ int vc_elm_foreach_supported_languages(vc_elm_supported_language_cb callback, vo
 
 /**
 * @brief Gets current language.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 * @remark If the function succeeds, @a language must be released with free() by you when you no longer need it.
@@ -218,7 +218,7 @@ int vc_elm_get_current_language(char** language);
 
 /**
 * @brief Retrieves all supported widget using callback function.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 * @param[in] callback Callback function to invoke
@@ -241,7 +241,7 @@ int vc_elm_foreach_supported_widgets(vc_elm_widget_cb callback, void* user_data)
 
 /**
 * @brief Retrieves all supported actions of widget using callback function.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 * @param[in] widget Widget name
@@ -265,7 +265,7 @@ int vc_elm_foreach_supported_actions(const char* widget, vc_elm_action_cb callba
 
 /**
 * @brief Gets action command of action.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 * @remark If the function succeeds, @a command must be released with free() by you when you no longer need it.
@@ -288,7 +288,7 @@ int vc_elm_get_action_command(const char* action, char** command);
 
 /**
 * @brief Creates vc elm handle for Evas object.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 * @remarks If the function succeeds, The vc elm handle must be released with vc_elm_destroy().
@@ -311,7 +311,7 @@ int vc_elm_create_object(Evas_Object* object, vc_elm_h* vc_elm);
 
 /**
 * @brief Creates vc elm handle for elm object item.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 * @remarks If the function succeeds, The vc elm handle must be released with vc_elm_destroy().
@@ -333,7 +333,7 @@ int vc_elm_create_item(Elm_Object_Item* item, vc_elm_h* vc_elm);
 
 /**
 * @brief Destroys the handle.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 * @param[in] vc_elm Handle containing pointer to widget
@@ -353,7 +353,7 @@ int vc_elm_destroy(vc_elm_h vc_elm);
 
 /**
 * @brief Sets command to the handle.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 * @param[in] vc_elm Handle containing pointer to widget
@@ -374,7 +374,7 @@ int vc_elm_set_command(vc_elm_h vc_elm, const char* command);
 
 /**
 * @brief Unsets command from the handle.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 * @param[in] vc_elm Handle to include pointer to widget
@@ -394,7 +394,7 @@ int vc_elm_unset_command(vc_elm_h vc_elm);
 
 /**
 * @brief Sets command hint for the handle.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 * @param[in] vc_elm Handle containing pointer to widget
@@ -415,7 +415,7 @@ int vc_elm_set_command_hint(vc_elm_h vc_elm, const char* hint);
 
 /**
 * @brief Unsets command hint for the handle.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 * @param[in] vc_elm Handle containing pointer to widget
@@ -435,7 +435,7 @@ int vc_elm_unset_command_hint(vc_elm_h vc_elm);
 
 /**
 * @brief Sets the direction of hint to the handle.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 * @remarks If direction is not set, default direction is pre-configured will be used.
@@ -458,7 +458,7 @@ int vc_elm_set_command_hint_direction(vc_elm_h vc_elm, vc_elm_direction_e direct
 
 /**
 * @brief Unsets the direction of hint from the handle.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 * @param[in] vc_elm Handle containing pointer to widget
@@ -479,7 +479,7 @@ int vc_elm_get_command_hint_direction(vc_elm_h vc_elm, vc_elm_direction_e* direc
 
 /**
 * @brief Sets command hint's x,y position to the handle.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 * @param[in] vc_elm Handle containing pointer to widget
@@ -502,7 +502,7 @@ int vc_elm_set_command_hint_offset(vc_elm_h vc_elm, int pos_x, int pos_y);
 
 /**
 * @brief Gets command hint's x,y position from the handle.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 * @param[in] vc_elm Handle containing pointer to widget
@@ -524,7 +524,7 @@ int vc_elm_get_command_hint_offset(vc_elm_h vc_elm, int* pos_x, int* pos_y);
 
 /**
 * @brief Registers a callback function to be called when current language is changed.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 * @param[in] callback Callback function to register
@@ -544,7 +544,7 @@ int vc_elm_set_current_language_changed_cb(vc_elm_current_language_changed_cb ca
 
 /**
 * @brief Unregisters the callback function.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 * @return @c 0 on success,