diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-08-15 21:16:40 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-08-15 21:16:40 +1000 |
commit | 489525a6390e50bd0442295ac45164f43a7576c8 (patch) | |
tree | 44a8715d7359c2efcc482f87bea82dd92bd080de /source4/dsdb/schema/schema_convert.h | |
parent | cd261ee651d3059f6973464115ff43da71d8a595 (diff) | |
parent | 4bdb752cc51c9f41859f1a43bf5721ae616fa230 (diff) | |
download | samba-489525a6390e50bd0442295ac45164f43a7576c8.tar.gz samba-489525a6390e50bd0442295ac45164f43a7576c8.tar.bz2 samba-489525a6390e50bd0442295ac45164f43a7576c8.zip |
Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into 4-0-abartlet
(This used to be commit fa03d750e4577a610dc410d45d49789110b1b4f1)
Diffstat (limited to 'source4/dsdb/schema/schema_convert.h')
-rw-r--r-- | source4/dsdb/schema/schema_convert.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source4/dsdb/schema/schema_convert.h b/source4/dsdb/schema/schema_convert.h new file mode 100644 index 0000000000..de379343a6 --- /dev/null +++ b/source4/dsdb/schema/schema_convert.h @@ -0,0 +1,10 @@ +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); |