MDB_assert_func typedef

MDB_assert_func = NativeFunction<Void Function(Pointer<MDB_env> env, Pointer<Char> msg)>

@brief A callback function for most LMDB assert() failures, called before printing the message and aborting.

@paramin env An environment handle returned by #mdb_env_create(). @paramin msg The assertion message, not including newline.

Implementation

typedef MDB_assert_func = ffi.NativeFunction<
    ffi.Void Function(ffi.Pointer<MDB_env> env, ffi.Pointer<ffi.Char> msg)>;