ailiaSpeechGetErrorDetail method

Pointer<Char> ailiaSpeechGetErrorDetail(
  1. Pointer<AILIASpeech> net
)

~japanese @brief エラーの詳細を返します @param net ネットワークオブジェクトポインタ @return エラー詳細 @details 返値は解放する必要はありません。 文字列の有効期間は次にailiaSpeechの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 ailiaSpeech API function is called. If model is encrypted, this function returns empty string.

Implementation

ffi.Pointer<ffi.Char> ailiaSpeechGetErrorDetail(
  ffi.Pointer<AILIASpeech> net,
) {
  return _ailiaSpeechGetErrorDetail(
    net,
  );
}