CreateStatus property

Pointer<NativeFunction<Pointer<OrtStatus> Function(UnsignedInt code, Pointer<Char> msg)>> CreateStatus
getter/setter pair

\brief Create an OrtStatus from a null terminated string

\paramin code \paramin msg A null-terminated string. Its contents will be copied. \return A new OrtStatus object, must be destroyed with OrtApi::ReleaseStatus

Implementation

external ffi.Pointer<
  ffi.NativeFunction<
    ffi.Pointer<OrtStatus> Function(
      ffi.UnsignedInt code,
      ffi.Pointer<ffi.Char> msg,
    )
  >
>
CreateStatus;