mirror of
https://github.com/samba-team/samba.git
synced 2025-11-14 12:23:52 +03:00
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
16 lines
270 B
C
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[]);
|