blob: e59c2a7d13eed34d13f97f1845c8f6f3471fb5bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 2.0.12
*
* Do not make changes to this file unless you know what you are doing--modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */
namespace BerkeleyDB.Internal {
internal enum db_lockmode_t {
DB_LOCK_NG = 0,
DB_LOCK_READ = 1,
DB_LOCK_WRITE = 2,
DB_LOCK_WAIT = 3,
DB_LOCK_IWRITE = 4,
DB_LOCK_IREAD = 5,
DB_LOCK_IWR = 6,
DB_LOCK_READ_UNCOMMITTED = 7,
DB_LOCK_WWRITE = 8
}
}
|