From a5416770776c0ade8518e8875d47097662b026a6 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 4 Aug 2009 07:22:34 -0400 Subject: s3:winbind: Add async wb_lookupname --- source3/librpc/gen_ndr/cli_wbint.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'source3/librpc/gen_ndr/cli_wbint.h') diff --git a/source3/librpc/gen_ndr/cli_wbint.h b/source3/librpc/gen_ndr/cli_wbint.h index b79fd19a36..e2cb963970 100644 --- a/source3/librpc/gen_ndr/cli_wbint.h +++ b/source3/librpc/gen_ndr/cli_wbint.h @@ -28,4 +28,22 @@ NTSTATUS rpccli_wbint_LookupSid(struct rpc_pipe_client *cli, enum lsa_SidType *type /* [out] [ref] */, const char **domain /* [out] [ref,charset(UTF8)] */, const char **name /* [out] [ref,charset(UTF8)] */); +struct tevent_req *rpccli_wbint_LookupName_send(TALLOC_CTX *mem_ctx, + struct tevent_context *ev, + struct rpc_pipe_client *cli, + const char *_domain /* [in] [ref,charset(UTF8)] */, + const char *_name /* [in] [ref,charset(UTF8)] */, + uint32_t _flags /* [in] */, + enum lsa_SidType *_type /* [out] [ref] */, + struct dom_sid *_sid /* [out] [ref] */); +NTSTATUS rpccli_wbint_LookupName_recv(struct tevent_req *req, + TALLOC_CTX *mem_ctx, + NTSTATUS *result); +NTSTATUS rpccli_wbint_LookupName(struct rpc_pipe_client *cli, + TALLOC_CTX *mem_ctx, + const char *domain /* [in] [ref,charset(UTF8)] */, + const char *name /* [in] [ref,charset(UTF8)] */, + uint32_t flags /* [in] */, + enum lsa_SidType *type /* [out] [ref] */, + struct dom_sid *sid /* [out] [ref] */); #endif /* __CLI_WBINT__ */ -- cgit