blob: ae4ce53b54e422df98d6097035a3ef87ddb55f6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 2.0.4
*
* 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_lockop_t {
DB_LOCK_DUMP = 0,
DB_LOCK_GET = 1,
DB_LOCK_GET_TIMEOUT = 2,
DB_LOCK_INHERIT = 3,
DB_LOCK_PUT = 4,
DB_LOCK_PUT_ALL = 5,
DB_LOCK_PUT_OBJ = 6,
DB_LOCK_PUT_READ = 7,
DB_LOCK_TIMEOUT = 8,
DB_LOCK_TRADE = 9,
DB_LOCK_UPGRADE_WRITE = 10
}
}
|