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");
#define __VOICE_CONTROL_MANAGER_H__
#include <voice_control_command.h>
-#include <voice_control_command_expand.h>
#include <voice_control_common.h>
/**
* @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
*
*
* @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