Fix API reference
[platform/core/uifw/stt.git] / client / stt_client.h
old mode 100755 (executable)
new mode 100644 (file)
index 9a1ad35..2a89e2f
@@ -1,5 +1,5 @@
 /*
-*  Copyright (c) 2011-2014 Samsung Electronics Co., Ltd All Rights Reserved 
+*  Copyright (c) 2011-2016 Samsung Electronics Co., Ltd All Rights Reserved
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
@@ -26,14 +26,14 @@ extern "C" {
 typedef enum {
        STT_INTERNAL_STATE_NONE         = 0,
        STT_INTERNAL_STATE_STARTING     = 1,
-       STT_INTERNAL_STATE_STOPING      = 2,
+       STT_INTERNAL_STATE_STOPPING     = 2,
        STT_INTERNAL_STATE_CANCELING    = 3
 } stt_internal_state_e;
 
 typedef struct {
        /* base info */
        stt_h   stt;
-       int     pid; 
+       int     pid;
        int     uid;    /*<< unique id = pid + handle */
 
        stt_recognition_result_cb       recognition_result_cb;
@@ -47,6 +47,8 @@ typedef struct {
        void*                           error_user_data;
        stt_default_language_changed_cb default_lang_changed_cb;
        void*                           default_lang_changed_user_data;
+       stt_engine_changed_cb           engine_changed_cb;
+       void*                           engine_changed_user_data;
 
        stt_supported_engine_cb         supported_engine_cb;
        void*                           supported_engine_user_data;
@@ -54,10 +56,12 @@ typedef struct {
        void*                           supported_lang_user_data;
 
        char*           current_engine_id;
+       char*           credential;
 
        /* option */
        bool            silence_supported;
        stt_option_silence_detection_e  silence;
+       bool            credential_needed;
 
        /* state */
        stt_state_e     before_state;
@@ -73,9 +77,10 @@ typedef struct {
        char**  data_list;
        int     data_count;
        char*   msg;
-       
+
        /* error data */
        int     reason;
+       char*   err_msg;
 } stt_client_s;