Change internal function to static
[platform/core/uifw/tts.git] / common / tts_config_parser.h
index 87ba839..cbe0952 100644 (file)
@@ -54,6 +54,7 @@ typedef struct {
        int     speech_rate;
        int     pitch;
        bool    credential;
+       double bg_volume_ratio;
 } tts_config_s;
 
 
@@ -77,11 +78,15 @@ int tts_parser_set_speech_rate(int value);
 
 int tts_parser_set_pitch(int value);
 
+int tts_parser_set_bg_volume_ratio(double value);
+
 int tts_parser_find_config_changed(char** engine, char**setting, bool* auto_voice, char** language, int* voice_type, 
-                                  int* speech_rate, int* pitch);
+                                  int* speech_rate, int* pitch, double* bg_volume_ratio);
 
 int tts_parser_copy_xml(const char* original, const char* destination);
 
+int tts_parser_reset();
+
 #ifdef __cplusplus
 }
 #endif