From 8cf75770cf2b3905ca98c84b21fadca8e05f08b7 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 25 Apr 2009 20:02:24 +0200 Subject: Add fncall_send/recv --- source3/include/proto.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source3/include/proto.h') diff --git a/source3/include/proto.h b/source3/include/proto.h index 0d52e00760..9aa9265974 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -7098,4 +7098,12 @@ void *avahi_start_register(TALLOC_CTX *mem_ctx, struct tevent_context *ev, /* Misc protos */ +struct fncall_context *fncall_context_init(TALLOC_CTX *mem_ctx, + int max_threads); +struct tevent_req *fncall_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev, + struct fncall_context *ctx, + void (*fn)(void *private_data), + void *private_data); +int fncall_recv(struct tevent_req *req, int *perr); + #endif /* _PROTO_H_ */ -- cgit