1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-14 12:23:52 +03:00
Files
samba-mirror/source/lib/ldb/ldb_sqlite3/ldb_sqlite3.h
Derrell Lipman a80bced0b9 r7276: - moved static tdb function ltdb_dn_fold() into common/ so that it can be
called from multiple backends.  (ldb_sqlite3 needs it too.)  Added parameter
  for a callback function that determines whether an attribute needs case
  folding.
- begin to prepare for sqlite3 in build process
- work-in-progress updates, on ldb_sqlite3
2007-10-10 13:17:35 -05:00

16 lines
270 B
C

#include <sqlite3.h>
struct lsqlite3_private {
char **options;
const char *basedn;
sqlite3 * sqlite;
int lock_count;
};
void
lsqlite3_base160(unsigned long val,
unsigned char result[5]);
char *
lsqlite3_base160Next(char base160[]);