diff options
| author | 2009-05-28 11:11:25 -0700 | |
|---|---|---|
| committer | 2009-05-28 11:11:25 -0700 | |
| commit | 8d336f9ab9ff4420d8885b9591722ab4695fe5b8 (patch) | |
| tree | 31359332d6f28864b5ea98808984808ad8fae03c /include | |
| parent | d290ad47a2073baf2a1a72a8f129e73ca18738c6 (diff) | |
Adding TTS error code to signal missing resources (for instance missing language files).
Diffstat (limited to 'include')
| -rw-r--r-- | include/tts/TtsEngine.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/tts/TtsEngine.h b/include/tts/TtsEngine.h index 06f3820030..bf629958ba 100644 --- a/include/tts/TtsEngine.h +++ b/include/tts/TtsEngine.h @@ -53,7 +53,8 @@ enum tts_result { TTS_FEATURE_UNSUPPORTED = -2, TTS_VALUE_INVALID = -3, TTS_PROPERTY_UNSUPPORTED = -4, - TTS_PROPERTY_SIZE_TOO_SMALL = -5 + TTS_PROPERTY_SIZE_TOO_SMALL = -5, + TTS_MISSING_RESOURCES = -6 }; class TtsEngine |