From: Douglas Bagnall Date: Fri, 18 Dec 2020 22:43:56 +0000 (+1300) Subject: ldb.h: remove undefined async_ctx function signatures X-Git-Tag: tevent-0.11.0~1478 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1a05b58edaf96e7da707f9ad0a237551dbe13eb5;p=thirdparty%2Fsamba.git ldb.h: remove undefined async_ctx function signatures These functions do not exist. Signed-off-by: Douglas Bagnall Reviewed-by: Jeremy Allison --- diff --git a/lib/ldb/include/ldb.h b/lib/ldb/include/ldb.h index 08e2096b914..bc44157eaf4 100644 --- a/lib/ldb/include/ldb.h +++ b/lib/ldb/include/ldb.h @@ -1093,18 +1093,6 @@ int ldb_global_init(void); */ struct ldb_context *ldb_init(TALLOC_CTX *mem_ctx, struct tevent_context *ev_ctx); -typedef void (*ldb_async_timeout_fn) (void *); -typedef bool (*ldb_async_callback_fn) (void *); -typedef int (*ldb_async_ctx_add_op_fn)(void *, time_t, void *, ldb_async_timeout_fn, ldb_async_callback_fn); -typedef int (*ldb_async_ctx_wait_op_fn)(void *); - -void ldb_async_ctx_set_private_data(struct ldb_context *ldb, - void *private_data); -void ldb_async_ctx_set_add_op(struct ldb_context *ldb, - ldb_async_ctx_add_op_fn add_op); -void ldb_async_ctx_set_wait_op(struct ldb_context *ldb, - ldb_async_ctx_wait_op_fn wait_op); - /** Connect to a database.