ailiaSpeechOpenDictionaryFileA method

int ailiaSpeechOpenDictionaryFileA(
  1. Pointer<AILIASpeech> net,
  2. Pointer<Char> dictionary_path,
  3. int dictionary_type
)

~japanese @brief 誤り訂正辞書を指定します。(MBSC) @param net ネットワークオブジェクトポインタ @param dictionary_path 辞書ファイルのパス名(MBSC) @param dictionary_type AILIA_SPEECH_DICTIONARY_TYPE_* @return 成功した場合は \ref AILIA_STATUS_SUCCESS 、そうでなければエラーコードを返す。

~english @brief Set dictionary for error correction. @param net A network instance pointer @param dictionary_path The path name to the dictionary file (MBSC) @param dictionary_type AILIA_SPEECH_DICTIONARY_TYPE_* @return If this function is successful, it returns \ref AILIA_STATUS_SUCCESS , or an error code otherwise.

Implementation

int ailiaSpeechOpenDictionaryFileA(
  ffi.Pointer<AILIASpeech> net,
  ffi.Pointer<ffi.Char> dictionary_path,
  int dictionary_type,
) {
  return _ailiaSpeechOpenDictionaryFileA(
    net,
    dictionary_path,
    dictionary_type,
  );
}