ailiaVoiceOpenDictionaryFileW 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 、そうでなければエラーコードを返す。
~english @brief Set dictionary into a network instance. @param net A network instance pointer @param dictionary_path The path name to the dictionary folder (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.
Implementation
int ailiaVoiceOpenDictionaryFileW(
ffi.Pointer<AILIAVoice> net,
ffi.Pointer<ffi.WChar> dictionary_path,
int dictionary_type,
) {
return _ailiaVoiceOpenDictionaryFileW(
net,
dictionary_path,
dictionary_type,
);
}