mlx_vector_string_set_data function

  1. @Native<Int Function(Pointer<mlx_vector_string>, Pointer<Pointer<Char>>, Size)>(ffi.Pointer<mlx_vector_string>, ffi.Pointer<ffi.Pointer<ffi.Char>>, ffi.Size)>()
int mlx_vector_string_set_data(
  1. Pointer<mlx_vector_string> vec,
  2. Pointer<Pointer<Char>> data,
  3. int size
)

Implementation

@ffi.Native<
  ffi.Int Function(
    ffi.Pointer<mlx_vector_string>,
    ffi.Pointer<ffi.Pointer<ffi.Char>>,
    ffi.Size,
  )
>()
external int mlx_vector_string_set_data(
  ffi.Pointer<mlx_vector_string> vec,
  ffi.Pointer<ffi.Pointer<ffi.Char>> data,
  int size,
);