ailiaVoiceSetUserDictionaryFileW method
- Pointer<
AILIAVoice> net, - Pointer<
WChar> dictionary_path, - int dictionary_type
~japanese @brief ユーザ辞書を指定します。(UTF16) @param net ネットワークオブジェクトポインタ @param dictionary_path ユーザ辞書ファイルのパス名(UTF16) @param dictionary_type AILIA_VOICE_DICTIONARY_TYPE_* @return 成功した場合は \ref AILIA_STATUS_SUCCESS 、そうでなければエラーコードを返す。 @details ailiaVoiceOpenDictionaryFileWの前に呼び出す必要があります。
~english @brief Set user dictionary into a network instance. @param net A network instance pointer @param dictionary_path The path name to the user dictionary file (UTF16) @param dictionary_type AILIA_VOICE_DICTIONARY_TYPE_* @return If this function is successful, it returns \ref AILIA_STATUS_SUCCESS , or an error code otherwise. @details You need to call before ailiaVoiceOpenDictionaryFileW.
Implementation
int ailiaVoiceSetUserDictionaryFileW(
ffi.Pointer<AILIAVoice> net,
ffi.Pointer<ffi.WChar> dictionary_path,
int dictionary_type,
) {
return _ailiaVoiceSetUserDictionaryFileW(
net,
dictionary_path,
dictionary_type,
);
}