Revert "change Tizen version for wearable" 16/68216/1
authorWonnam Jang <wn.jang@samsung.com>
Tue, 3 May 2016 04:59:43 +0000 (21:59 -0700)
committerWonnam Jang <wn.jang@samsung.com>
Tue, 3 May 2016 04:59:43 +0000 (21:59 -0700)
This reverts commit 763f067da86e7f010df9d2f86367a95468c597c7.

Change-Id: I03e2ffddb65dacef6246c61bcd76ec777a920b80

client/vc.c
common/vc_command.h [changed mode: 0755->0644]
include/voice_control.h [changed mode: 0755->0644]
include/voice_control_command.h [changed mode: 0755->0644]
include/voice_control_command_expand.h [changed mode: 0755->0644]
include/voice_control_common.h [changed mode: 0755->0644]
include/voice_control_manager.h [changed mode: 0755->0644]
include/voice_control_setting.h [changed mode: 0755->0644]
include/voice_control_widget.h [changed mode: 0755->0644]

index 1ee1350..e3161b6 100755 (executable)
@@ -806,7 +806,7 @@ int vc_get_window_id(int* wid)
 
 /**
 * @brief Checks whether the command format is supported.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] format The command format
 * @param[out] support The result status @c true = supported, @c false = not supported
old mode 100755 (executable)
new mode 100644 (file)
index b99e140..605edd6
@@ -48,7 +48,7 @@ typedef struct {
 
 /**
 * @brief Enumerations of command type.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 */
 typedef enum {
        VC_COMMAND_TYPE_NONE = 0,       /**< No command position */
@@ -68,7 +68,7 @@ int vc_cmd_print_list(vc_cmd_list_h vc_cmd_list);
 
 /**
 * @brief Remove all commands from command list.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] vc_cmd_list The command list handle
 * @param[in] free_command The command free option @c true = release each commands in list,
@@ -86,7 +86,7 @@ int vc_cmd_list_remove_all(vc_cmd_list_h vc_cmd_list, bool free_command);
 
 /**
 * @brief Sets extra unfixed command.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] vc_command The command handle
 * @param[in] command The unfixed command
@@ -103,7 +103,7 @@ int vc_cmd_set_unfixed_command(vc_cmd_h vc_command, const char* command);
 
 /**
 * @brief Sets pid.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] vc_command The command handle
 * @param[in] pid process id
@@ -118,7 +118,7 @@ int vc_cmd_set_pid(vc_cmd_h vc_command, int pid);
 
 /**
 * @brief Sets command domain
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] vc_command The command handle
 * @param[in] domain domain
old mode 100755 (executable)
new mode 100644 (file)
index 8bf4d15..8e7b5f3
@@ -48,20 +48,20 @@ extern "C"
 
 /**
 * @brief Definitions for foreground command type.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 */
 #define VC_COMMAND_TYPE_FOREGROUND     1
 
 /**
 * @brief Definitions for background command type.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 */
 #define VC_COMMAND_TYPE_BACKGROUND     2
 
 
 /**
 * @brief Initializes voice control.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 *
@@ -82,7 +82,7 @@ int vc_initialize(void);
 
 /**
 * @brief Deinitializes voice control.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 *
@@ -99,7 +99,7 @@ int vc_deinitialize(void);
 
 /**
 * @brief Connects the voice control service.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 *
@@ -119,7 +119,7 @@ int vc_prepare(void);
 
 /**
 * @brief Disconnects the voice control service.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 *
@@ -138,7 +138,7 @@ int vc_unprepare(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
 *
@@ -163,7 +163,7 @@ int vc_foreach_supported_languages(vc_supported_language_cb callback, void* user
 
 /**
 * @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
 *
@@ -190,7 +190,7 @@ int vc_get_current_language(char** language);
 
 /**
 * @brief Gets current state of voice control client.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 *
@@ -209,7 +209,7 @@ int vc_get_state(vc_state_e* state);
 
 /**
 * @brief Gets current state of voice control service.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 *
@@ -233,7 +233,7 @@ int vc_get_service_state(vc_service_state_e* state);
 
 /**
 * @brief Sets command list.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 *
@@ -258,7 +258,7 @@ int vc_set_command_list(vc_cmd_list_h vc_cmd_list, int type);
 
 /**
 * @brief Unsets command list.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 *
@@ -280,7 +280,7 @@ int vc_unset_command_list(int type);
 
 /**
 * @brief Registers a callback function for getting recognition result.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 *
@@ -303,7 +303,7 @@ int vc_set_result_cb(vc_result_cb callback, void* user_data);
 
 /**
 * @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
 *
@@ -320,7 +320,7 @@ int vc_unset_result_cb(void);
 
 /**
 * @brief Registers a callback function to be called when state 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
 *
@@ -343,7 +343,7 @@ int vc_set_service_state_changed_cb(vc_service_state_changed_cb callback, void*
 
 /**
 * @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
 *
@@ -361,7 +361,7 @@ int vc_unset_service_state_changed_cb(void);
 
 /**
 * @brief Registers a callback function to be called when state 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
 *
@@ -384,7 +384,7 @@ int vc_set_state_changed_cb(vc_state_changed_cb callback, void* user_data);
 
 /**
 * @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
 *
@@ -402,7 +402,7 @@ int vc_unset_state_changed_cb(void);
 
 /**
 * @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
 *
@@ -425,7 +425,7 @@ int vc_set_current_language_changed_cb(vc_current_language_changed_cb callback,
 
 /**
 * @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
 *
@@ -443,7 +443,7 @@ int vc_unset_current_language_changed_cb(void);
 
 /**
 * @brief Registers a callback function to be called when an error occurred.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/recorder
 *
@@ -466,7 +466,7 @@ int vc_set_error_cb(vc_error_cb callback, void* user_data);
 
 /**
 * @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
 *
old mode 100755 (executable)
new mode 100644 (file)
index 82a7849..afb7810
@@ -37,19 +37,19 @@ extern "C"
 
 /**
 * @brief The voice command handle.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 */
 typedef struct vc_cmd_s* vc_cmd_h;
 
 /**
 * @brief The voice command list handle.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 */
 typedef struct vc_cmd_list_s* vc_cmd_list_h;
 
 /**
 * @brief Called to retrieve The commands in list.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] vc_command The command handle
 * @param[in] user_data The user data passed from the foreach function
@@ -64,7 +64,7 @@ typedef bool (*vc_cmd_list_cb)(vc_cmd_h vc_command, void* user_data);
 
 /**
 * @brief Creates a handle for command list.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @remarks If the function succeeds, @a The list handle must be released with vc_cmd_list_destroy().
 *
@@ -83,7 +83,7 @@ int vc_cmd_list_create(vc_cmd_list_h* vc_cmd_list);
 
 /**
 * @brief Destroys the handle for command list.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] vc_cmd_list The command list handle
 * @param[in] free_command The command free option @c true = release each commands in list,
@@ -101,7 +101,7 @@ int vc_cmd_list_destroy(vc_cmd_list_h vc_cmd_list, bool free_command);
 
 /**
 * @brief Gets command count of list.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] vc_cmd_list The command list handle
 * @param[out] count The count
@@ -116,7 +116,7 @@ int vc_cmd_list_get_count(vc_cmd_list_h vc_cmd_list, int* count);
 
 /**
 * @brief Adds command to command list.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] vc_cmd_list The command list handle
 * @param[in] vc_command The command handle
@@ -133,7 +133,7 @@ int vc_cmd_list_add(vc_cmd_list_h vc_cmd_list, vc_cmd_h vc_command);
 
 /**
 * @brief Removes command from command list.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] vc_cmd_list The command list handle
 * @param[in] vc_command The command handle
@@ -150,7 +150,7 @@ int vc_cmd_list_remove(vc_cmd_list_h vc_cmd_list, vc_cmd_h vc_command);
 
 /**
 * @brief Retrieves all commands of command list using callback function.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] vc_cmd_list The command list handle
 * @param[in] callback Callback function to invoke
@@ -170,7 +170,7 @@ int vc_cmd_list_foreach_commands(vc_cmd_list_h vc_cmd_list, vc_cmd_list_cb callb
 
 /**
 * @brief Moves index to first command.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] vc_cmd_list The command list handle
 *
@@ -187,7 +187,7 @@ int vc_cmd_list_first(vc_cmd_list_h vc_cmd_list);
 
 /**
 * @brief Moves index to last command.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] vc_cmd_list The command list handle
 *
@@ -204,7 +204,7 @@ int vc_cmd_list_last(vc_cmd_list_h vc_cmd_list);
 
 /**
 * @brief Moves index to next command.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] vc_cmd_list The command list handle
 *
@@ -222,7 +222,7 @@ int vc_cmd_list_next(vc_cmd_list_h vc_cmd_list);
 
 /**
 * @brief Moves index to previous command.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] vc_cmd_list The command list handle
 *
@@ -240,7 +240,7 @@ int vc_cmd_list_prev(vc_cmd_list_h vc_cmd_list);
 
 /**
 * @brief Get current command from command list by index.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] vc_cmd_list The command list handle
 * @param[out] vc_command The command handle
@@ -262,7 +262,7 @@ int vc_cmd_list_get_current(vc_cmd_list_h vc_cmd_list, vc_cmd_h* vc_command);
 
 /**
 * @brief Creates a handle for command.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @remarks If the function succeeds, @a The command handle must be released
 *      with vc_cmd_destroy() or vc_cmd_list_destroy().
@@ -283,7 +283,7 @@ int vc_cmd_create(vc_cmd_h* vc_command);
 
 /**
 * @brief Destroys the handle.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] vc_command The command handle
 *
@@ -299,7 +299,7 @@ int vc_cmd_destroy(vc_cmd_h vc_command);
 
 /**
 * @brief Sets command.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] vc_command The command handle
 * @param[in] command The command text
@@ -316,7 +316,7 @@ int vc_cmd_set_command(vc_cmd_h vc_command, const char* command);
 
 /**
 * @brief Gets command.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @remark If the function succeeds, @a command must be released with free() by you if they are not NULL.
 *
@@ -335,7 +335,7 @@ int vc_cmd_get_command(vc_cmd_h vc_command, char** command);
 
 /**
 * @brief Sets command type.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @remark If you do not set the command type, the default value is -1.
 *      You should set type if command is valid
@@ -355,7 +355,7 @@ int vc_cmd_set_type(vc_cmd_h vc_command, int type);
 
 /**
 * @brief Gets command type.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] vc_command The command handle
 * @param[out] type The command type
old mode 100755 (executable)
new mode 100644 (file)
index f767d83..8200285
@@ -30,7 +30,7 @@ extern "C"
 
 /**
 * @brief Enumerations of command format.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 */
 typedef enum {
        VC_CMD_FORMAT_FIXED = 0,        /**< fixed command only */
@@ -42,7 +42,7 @@ typedef enum {
 
 /**
 * @brief Gets extra unfixed command.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @remark If the function succeeds, @a The command must be released with free() by you if they are not NULL.
 *      If you get the result command list in result callback and the command type of commands has non-fixed format,
@@ -61,7 +61,7 @@ int vc_cmd_get_unfixed_command(vc_cmd_h vc_command, char** command);
 
 /**
 * @brief Sets command format.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] vc_command The command handle
 * @param[in] format The command format
@@ -78,7 +78,7 @@ int vc_cmd_set_format(vc_cmd_h vc_command, vc_cmd_format_e format);
 
 /**
 * @brief Gets command format.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @remark If you do not set the format, the default format is #VC_CMD_FORMAT_FIXED.
 *
@@ -97,7 +97,7 @@ int vc_cmd_get_format(vc_cmd_h vc_command, vc_cmd_format_e* format);
 
 /**
 * @brief Sets command domain
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] vc_command The command handle
 * @param[in] domain The domain
@@ -114,7 +114,7 @@ int vc_cmd_set_domain(vc_cmd_h vc_command, int domain);
 
 /**
 * @brief Gets command domain.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] vc_command The command handle
 * @param[out] domain The domain
old mode 100755 (executable)
new mode 100644 (file)
index 5724437..5d52a04
@@ -32,7 +32,7 @@ extern "C"
 
 /**
 * @brief Enumerations of error codes.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 */
 typedef enum {
        VC_ERROR_NONE                   = TIZEN_ERROR_NONE,                     /**< Successful */
@@ -54,7 +54,7 @@ typedef enum {
 
 /**
 * @brief Enumerations of result event.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 */
 typedef enum {
        VC_RESULT_EVENT_RESULT_SUCCESS  = 0,    /**< Normal result */
@@ -63,7 +63,7 @@ typedef enum {
 
 /**
 * @brief Enumerations of service state.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 */
 typedef enum {
        VC_SERVICE_STATE_NONE           = 0,    /**< 'None' state */
@@ -74,7 +74,7 @@ typedef enum {
 
 /**
 * @brief Enumerations of client state.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 */
 typedef enum {
        VC_STATE_NONE                   = 0,    /**< 'None' state */
@@ -85,7 +85,7 @@ typedef enum {
 
 /**
 * @brief Called when client gets the recognition result.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @remarks If the duplicated commands are recognized, the event(e.g. #VC_RESULT_EVENT_REJECTED) of command may be rejected \n
 *      for selecting command as priority. If you set similar or same commands or the recognized results are multi-results,
@@ -104,7 +104,7 @@ typedef void (*vc_result_cb)(vc_result_event_e event, vc_cmd_list_h vc_cmd_list,
 
 /**
 * @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
@@ -118,7 +118,7 @@ typedef void (*vc_current_language_changed_cb)(const char* previous, const char*
 
 /**
 * @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 \n
 *              followed by ISO 639-1 for the two-letter language code. \n
@@ -133,7 +133,7 @@ typedef bool (*vc_supported_language_cb)(const char* language, void* user_data);
 
 /**
 * @brief Called when the state of voice control client is changed.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] previous A previous state
 * @param[in] current A current state
@@ -147,7 +147,7 @@ typedef void (*vc_state_changed_cb)(vc_state_e previous, vc_state_e current, voi
 
 /**
 * @brief Called when the state of voice control service is changed.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] previous A previous state
 * @param[in] current A current state
@@ -161,7 +161,7 @@ typedef void (*vc_service_state_changed_cb)(vc_service_state_e previous, vc_serv
 
 /**
 * @brief Called when error occurred.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 *
 * @param[in] reason The error type (e.g. #VC_ERROR_OUT_OF_MEMORY, #VC_ERROR_TIMED_OUT)
 * @param[in] user_data The user data passed from the callback registration function
old mode 100755 (executable)
new mode 100644 (file)
index 80476c6..e1c96fa
@@ -40,31 +40,31 @@ extern "C"
 
 /**
 * @brief Definitions for foreground command type.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 */
 #define VC_COMMAND_TYPE_FOREGROUND     1
 
 /**
 * @brief Definitions for background command type.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 */
 #define VC_COMMAND_TYPE_BACKGROUND     2
 
 /**
 * @brief Definitions for widget command type.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 */
 #define VC_COMMAND_TYPE_WIDGET         3
 
 /**
 * @brief Definitions for system command type.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 */
 #define VC_COMMAND_TYPE_SYSTEM         4
 
 /**
 * @brief Definitions for exclusive command type.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 */
 #define VC_COMMAND_TYPE_EXCLUSIVE      5
 
old mode 100755 (executable)
new mode 100644 (file)
index 29b95bd..b5ea1e1
@@ -49,7 +49,7 @@ typedef void (*vc_setting_enabled_changed_cb)(bool enabled, void* user_data);
 
 /**
 * @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 \n
 *              followed by ISO 639-1 for the two-letter language code. \n
@@ -64,7 +64,7 @@ typedef bool(*vc_setting_supported_language_cb)(const char* language, void* user
 
 /**
 * @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
old mode 100755 (executable)
new mode 100644 (file)
index 91ddf74..f9ecd2c
@@ -35,7 +35,7 @@ extern "C"
 
 /**
 * @brief Definitions for widget command type.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
 */
 #define VC_COMMAND_TYPE_WIDGET         3