PropertyCallbackFunction typedef

PropertyCallbackFunction = Void Function(Pointer<Void> user_data, Pointer<Char> key, Int32 value_type, Pointer<Char> string_value, Double double_value, Int64 int_value, Uint64 uint_value, Bool bool_value)

Implementation

typedef PropertyCallbackFunction =
    ffi.Void Function(
      ffi.Pointer<ffi.Void> user_data,
      ffi.Pointer<ffi.Char> key,
      ffi.Int32 value_type,
      ffi.Pointer<ffi.Char> string_value,
      ffi.Double double_value,
      ffi.Int64 int_value,
      ffi.Uint64 uint_value,
      ffi.Bool bool_value,
    );