svn commit: samba r20320 - in branches/SAMBA_4_0/source/lib/ldb/include: .

metze at samba.org metze at samba.org
Fri Dec 22 17:27:07 GMT 2006


Author: metze
Date: 2006-12-22 17:27:07 +0000 (Fri, 22 Dec 2006)
New Revision: 20320

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=20320

Log:
add missing prototypes

metze
Modified:
   branches/SAMBA_4_0/source/lib/ldb/include/ldb.h


Changeset:
Modified: branches/SAMBA_4_0/source/lib/ldb/include/ldb.h
===================================================================
--- branches/SAMBA_4_0/source/lib/ldb/include/ldb.h	2006-12-22 17:26:09 UTC (rev 20319)
+++ branches/SAMBA_4_0/source/lib/ldb/include/ldb.h	2006-12-22 17:27:07 UTC (rev 20320)
@@ -827,12 +827,29 @@
 int ldb_connect(struct ldb_context *ldb, const char *url, unsigned int flags, const char *options[]);
 
 /*
+  return an automatic basedn from the rootDomainNamingContext of the rootDSE
+  This value have been set in an opaque pointer at connection time
+*/
+struct ldb_dn *ldb_get_root_basedn(struct ldb_context *ldb);
+
+/*
+  return an automatic basedn from the configurationNamingContext of the rootDSE
+  This value have been set in an opaque pointer at connection time
+*/
+struct ldb_dn *ldb_get_config_basedn(struct ldb_context *ldb);
+
+/*
+  return an automatic basedn from the schemaNamingContext of the rootDSE
+  This value have been set in an opaque pointer at connection time
+*/
+struct ldb_dn *ldb_get_schema_basedn(struct ldb_context *ldb);
+
+/*
   return an automatic baseDN from the defaultNamingContext of the rootDSE
   This value have been set in an opaque pointer at connection time
 */
 struct ldb_dn *ldb_get_default_basedn(struct ldb_context *ldb);
 
-
 /**
   The Default iasync search callback function 
 



More information about the samba-cvs mailing list