1/* ----------------------------------------------------------------------------
2 * This file was automatically generated by SWIG (http://www.swig.org).
3 * Version 1.3.38
4 *
5 * Do not make changes to this file unless you know what you are doing--modify
6 * the SWIG interface file instead.
7 * ----------------------------------------------------------------------------- */
8
9namespace BerkeleyDB.Internal {
10
11using System;
12using System.Runtime.InteropServices;
13
14internal class libdb_csharp {
15  internal static string db_strerror(int errno) {
16    string ret = libdb_csharpPINVOKE.db_strerror(errno);
17    return ret;
18  }
19
20  internal static int log_compare(DB_LSN lsn0, DB_LSN lsn1) {
21		return libdb_csharpPINVOKE.log_compare(DB_LSN.getCPtr(lsn0), DB_LSN.getCPtr(lsn1));
22}
23
24  internal static void __os_ufree(DB_ENV dbenv, IntPtr ptr) {
25    libdb_csharpPINVOKE.__os_ufree(DB_ENV.getCPtr(dbenv), ptr);
26  }
27
28}
29
30}
31