make a more recent snapshot of ldb available to interested
[kai/samba.git] / source4 / lib / ldb / ldb_tdb / ldb_tdb.h
1 /* this private structure is used by the ltdb backend in the
2    ldb_context */
3 struct ltdb_private {
4         TDB_CONTEXT *tdb;
5         unsigned int connect_flags;
6 };
7
8
9 #define IVAL(p, ofs) (((unsigned *)((char *)(p) + (ofs)))[0])
10 #define SIVAL(p, ofs, v) do { IVAL(p, ofs) = (v); } while (0)
11