diff options
author | Simo Sorce <idra@samba.org> | 2008-10-08 12:21:13 -0400 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2008-10-08 12:21:37 -0400 |
commit | 77db18dd9e52f3937af360f1a14c4b7cf0fef83d (patch) | |
tree | a9dc452193a8c2f894df680ea1a9e8ca03b41831 /ldb/include | |
parent | 0e9c6f1b6a7a15b76776bab3d384af680682ffcf (diff) | |
download | sssd-77db18dd9e52f3937af360f1a14c4b7cf0fef83d.tar.gz sssd-77db18dd9e52f3937af360f1a14c4b7cf0fef83d.tar.bz2 sssd-77db18dd9e52f3937af360f1a14c4b7cf0fef83d.zip |
Fix header file so that configure tests can work
Diffstat (limited to 'ldb/include')
-rw-r--r-- | ldb/include/ldb.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ldb/include/ldb.h b/ldb/include/ldb.h index b1ce3ef7..671a34c7 100644 --- a/ldb/include/ldb.h +++ b/ldb/include/ldb.h @@ -43,9 +43,13 @@ #ifndef _LDB_H_ /*! \cond DOXYGEN_IGNORE */ -#define _LDB_H_ 1 +#define _LDB_H_ /*! \endcond */ +#include <stdbool.h> +#include <talloc.h> +#include <events.h> + /* major restrictions as compared to normal LDAP: @@ -181,7 +185,6 @@ enum ldb_scope {LDB_SCOPE_DEFAULT=-1, LDB_SCOPE_SUBTREE=2}; struct ldb_context; -struct event_context; /* debugging uses one of the following levels */ enum ldb_debug_level {LDB_DEBUG_FATAL, LDB_DEBUG_ERROR, @@ -783,7 +786,6 @@ int ldb_set_timeout(struct ldb_context *ldb, struct ldb_request *req, int timeou int ldb_set_timeout_from_prev_req(struct ldb_context *ldb, struct ldb_request *oldreq, struct ldb_request *newreq); void ldb_set_create_perms(struct ldb_context *ldb, unsigned int perms); void ldb_set_modules_dir(struct ldb_context *ldb, const char *path); -struct event_context; void ldb_set_event_context(struct ldb_context *ldb, struct event_context *ev); struct event_context * ldb_get_event_context(struct ldb_context *ldb); |