ailiaVoiceGetErrorDetail method

Pointer<Char> ailiaVoiceGetErrorDetail(
  1. Pointer<AILIAVoice> net
)

~japanese @brief エラーの詳細を返します @param net ネットワークオブジェクトポインタ @return エラー詳細 @details 返値は解放する必要はありません。 文字列の有効期間は次にailiaVoiceのAPIを呼ぶまでです。

~english @brief Returns the details of errors. @param net The network instance pointer @return Error details @details The return value does not have to be released. The string is valid until the next ailiaVoice API function is called.

Implementation

ffi.Pointer<ffi.Char> ailiaVoiceGetErrorDetail(
  ffi.Pointer<AILIAVoice> net,
) {
  return _ailiaVoiceGetErrorDetail(
    net,
  );
}