mdb_version function

Pointer<Char> mdb_version(
  1. Pointer<Int> major,
  2. Pointer<Int> minor,
  3. Pointer<Int> patch
)

@brief Return the LMDB library version information.

@paramout major if non-NULL, the library major version number is copied here @paramout minor if non-NULL, the library minor version number is copied here @paramout patch if non-NULL, the library patch version number is copied here @retval "version string" The library version as a string

Implementation

@ffi.FfiNative<
    ffi.Pointer<ffi.Char> Function(ffi.Pointer<ffi.Int>, ffi.Pointer<ffi.Int>,
        ffi.Pointer<ffi.Int>)>('mdb_version')
external ffi.Pointer<ffi.Char> mdb_version(
  ffi.Pointer<ffi.Int> major,
  ffi.Pointer<ffi.Int> minor,
  ffi.Pointer<ffi.Int> patch,
);