mdb_env_info function

int mdb_env_info(
  1. Pointer<MDB_env> env,
  2. Pointer<MDB_envinfo> stat
)

@brief Return information about the LMDB environment.

@paramin env An environment handle returned by #mdb_env_create() @paramout stat The address of an #MDB_envinfo structure where the information will be copied

Implementation

@ffi.FfiNative<
    ffi.Int Function(
        ffi.Pointer<MDB_env>, ffi.Pointer<MDB_envinfo>)>('mdb_env_info')
external int mdb_env_info(
  ffi.Pointer<MDB_env> env,
  ffi.Pointer<MDB_envinfo> stat,
);