blob: edf525f895cc4c18bfc4bfb05b2dbb765208c9e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* this private structure is used by the ltdb backend in the
ldb_context */
struct ltdb_private {
TDB_CONTEXT *tdb;
unsigned int connect_flags;
};
#define IVAL(p, ofs) (((unsigned *)((char *)(p) + (ofs)))[0])
#define SIVAL(p, ofs, v) do { IVAL(p, ofs) = (v); } while (0)
|