ailiaSpeechOpenDictionaryFileW method
- Pointer<
AILIASpeech> net, - Pointer<
WChar> dictionary_path, - int dictionary_type
~japanese @brief 誤り訂正辞書を指定します。(UTF16) @param net ネットワークオブジェクトポインタ @param dictionary_path 辞書ファイルのパス名(UTF16) @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 (UTF16) @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 ailiaSpeechOpenDictionaryFileW(
ffi.Pointer<AILIASpeech> net,
ffi.Pointer<ffi.WChar> dictionary_path,
int dictionary_type,
) {
return _ailiaSpeechOpenDictionaryFileW(
net,
dictionary_path,
dictionary_type,
);
}