NSSpeechSynthesizer: define new constants

Define new constants in NSSpeechSynthesizer. These are not yet handled
by the implementation.
This commit is contained in:
Daniel Ferreira 2017-07-18 03:44:41 +10:00 committed by Ivan Vučica
parent 75dd71b149
commit f1abcb313a
2 changed files with 10 additions and 0 deletions

View file

@ -64,6 +64,12 @@ extern NSString *NSSpeechModePhoneme;
extern NSString *NSSpeechModeNormal;
extern NSString *NSSpeechModeLiteral;
#if OS_API_VERSION(MAC_OS_X_VERSION_10_5, GS_API_LATEST)
extern NSString *NSSpeechResetProperty;
extern NSString *NSSpeechOutputToFileURLProperty;
extern NSString *NSSpeechPitchBaseProperty;
#endif
// values for speech status...
extern NSString *NSSpeechStatusOutputBusy;
extern NSString *NSSpeechStatusOutputPaused;

View file

@ -58,6 +58,10 @@ NSString *NSSpeechModePhoneme = @"NSSpeechModePhoneme";
NSString *NSSpeechModeNormal = @"NSSpeechModeNormal";
NSString *NSSpeechModeLiteral = @"NSSpeechModeLiteral";
NSString *NSSpeechResetProperty = @"NSSpeechResetProperty";
NSString *NSSpeechOutputToFileURLProperty = @"NSSpeechOutputToFileURLProperty";
NSString *NSSpeechPitchBaseProperty = @"NSSpeechPitchBaseProperty";
// values for speech status...
NSString *NSSpeechStatusOutputBusy = @"NSSpeechStatusOutputBusy";
NSString *NSSpeechStatusOutputPaused = @"NSSpeechStatusOutputPaused";