/* InitLanguageModel ----------------- OSStatus InitLanguageModel (const char kLangModelName[], const char *kRecWordList[], long topRefCon, long listRefcon) Initializes the language model with the phrases we want the recognizer to LISTEN for. EnableSpeechModel ----------------- OSStatus EnableSpeechModel (void) Attach the speech model to the recognizer and instructs the speech recognizer to start listening. */ #ifndef SPEECHRECLIB_H_ #define SPEECHRECLIB_H_ #include "SpeechRecognition.h" /* exported entries */ OSStatus InitSpeech (void); OSStatus CloseSpeech (void); OSStatus InitLanguageModel (const char kLangModelName[], const char *kRecWordList[], long topRefCon, long listRefcon); OSStatus EnableSpeechModel (void); #endif