From: sungrae jo Date: Thu, 16 Aug 2018 09:31:06 +0000 (+0900) Subject: Remove command expand header for voice_control_manager.h. X-Git-Tag: submit/tizen/20180828.101453~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F92%2F186892%2F2;p=platform%2Fcore%2Fuifw%2Fvoice-control.git Remove command expand header for voice_control_manager.h. Change-Id: Ie25445400f297e228701d4dd8938651fdf52a27e Signed-off-by: sungrae jo --- diff --git a/client/vc_mgr.c b/client/vc_mgr.c index ff628fc..bdc2028 100644 --- a/client/vc_mgr.c +++ b/client/vc_mgr.c @@ -803,7 +803,7 @@ int vc_mgr_unset_demandable_client_rule(void) return 0; } -int vc_mgr_is_command_format_supported(vc_cmd_format_e format, bool* support) +int vc_mgr_is_command_format_supported(int format, bool* support) { SLOG(LOG_ERROR, TAG_VCM, "@@@ [Manager] Is command type supported"); diff --git a/include/voice_control_manager.h b/include/voice_control_manager.h index a1aab2b..f906607 100644 --- a/include/voice_control_manager.h +++ b/include/voice_control_manager.h @@ -19,7 +19,6 @@ #define __VOICE_CONTROL_MANAGER_H__ #include -#include #include /** @@ -483,6 +482,8 @@ int vc_mgr_get_service_state(vc_service_state_e *state); * @privlevel platform * @privilege %http://tizen.org/privilege/voicecontrol.manager * + * @remarks The command formats are defined in the #voice_control_command.h. (e.g. #VC_COMMAND_FORMAT_FIXED, #VC_COMMAND_FORMAT_FIXED_AND_NONFIXED, and so on). Please refer to #voice_control_command.h. + * * @param[in] format The command format * @param[out] support The result status @c true = supported, @c false = not supported * @@ -495,7 +496,7 @@ int vc_mgr_get_service_state(vc_service_state_e *state); * * @pre The state should be #VC_STATE_READY. */ -int vc_mgr_is_command_format_supported(vc_cmd_format_e format, bool *support); +int vc_mgr_is_command_format_supported(int format, bool *support); /** * @platform