mirror of
https://github.com/samba-team/samba.git
synced 2025-06-23 11:17:06 +03:00
code. Yay! This first commit copies lib/ldb/ from Samba4. A huge congratulations should go to Simo on this - he has put an enormous amount of work into ldb, and it's great to see it go into the Samba3 tree. (This used to be commit bbedf2e34315f5c420a3a05dfe22b1d5cf79f042)
11 lines
298 B
C
11 lines
298 B
C
struct syntax_map {
|
|
const char *Standard_OID;
|
|
const char *AD_OID;
|
|
const char *equality;
|
|
const char *substring;
|
|
const char *comment;
|
|
};
|
|
|
|
const struct syntax_map *find_syntax_map_by_ad_oid(const char *ad_oid);
|
|
const struct syntax_map *find_syntax_map_by_standard_oid(const char *standard_oid);
|