ailiaSpeechComplete method

int ailiaSpeechComplete(
  1. Pointer<AILIASpeech> net,
  2. Pointer<UnsignedInt> complete
)

~japanese @brief 全てのデータの処理が完了したかどうかを判定します。 @param net ネットワークオブジェクトポインタ @param complete 完了フラグ(1で完了、0で完了していない) @return 成功した場合は \ref AILIA_STATUS_SUCCESS 、そうでなければエラーコードを返す。

~english @brief Determines whether all data has been processed. @param net A network instance pointer @param complete Is processing complete (1 : Complete, 0 : Not Complete) @return If this function is successful, it returns \ref AILIA_STATUS_SUCCESS , or an error code otherwise.

Implementation

int ailiaSpeechComplete(
  ffi.Pointer<AILIASpeech> net,
  ffi.Pointer<ffi.UnsignedInt> complete,
) {
  return _ailiaSpeechComplete(
    net,
    complete,
  );
}