/**
     @brief The function add file with vocabulary
     @param[in] fileType             The vocabulary file type
     @param[in] vocabFileName        The full path to file.
     @return PXC_STATUS_NO_ERROR     Successful execution.
 */
 public pxcmStatus AddVocabToDictation(VocabFileType fileType, String vocabFileName)
 {
     return PXCMSpeechRecognition_AddVocabToDictation(instance, fileType, vocabFileName);
 }
 /**
  *  @brief The function add file with vocabulary
  *  @param[in] fileType             The vocabulary file type
  *  @param[in] vocabFileName        The full path to file.
  *  @return PXC_STATUS_NO_ERROR     Successful execution.
  */
 public pxcmStatus AddVocabToDictation(VocabFileType fileType, String vocabFileName)
 {
     return(PXCMSpeechRecognition_AddVocabToDictation(instance, fileType, vocabFileName));
 }
 internal static extern pxcmStatus PXCMSpeechRecognition_AddVocabToDictation(IntPtr voice, VocabFileType fileType, String vocabFileName);
 internal static extern pxcmStatus PXCMSpeechRecognition_AddVocabToDictation(IntPtr voice, VocabFileType fileType, String vocabFileName);