ggml_log_get function

  1. @Native<Void Function(Pointer<ggml_log_callback>, Pointer<Pointer<Void>>)>(ffi.Pointer<ggml_log_callback>, ffi.Pointer<ffi.Pointer<ffi.Void>>)>()
void ggml_log_get(
  1. Pointer<ggml_log_callback> log_callback,
  2. Pointer<Pointer<Void>> user_data
)

Implementation

@ffi.Native<
  ffi.Void Function(
    ffi.Pointer<ggml_log_callback>,
    ffi.Pointer<ffi.Pointer<ffi.Void>>,
  )
>()
external void ggml_log_get(
  ffi.Pointer<ggml_log_callback> log_callback,
  ffi.Pointer<ffi.Pointer<ffi.Void>> user_data,
);