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/wbint.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'source3/librpc/gen_ndr/wbint.h') diff --git a/source3/librpc/gen_ndr/wbint.h b/source3/librpc/gen_ndr/wbint.h index 2cc59b3f96..a007b95b18 100644 --- a/source3/librpc/gen_ndr/wbint.h +++ b/source3/librpc/gen_ndr/wbint.h @@ -35,4 +35,20 @@ struct wbint_LookupSid { }; + +struct wbint_LookupName { + struct { + const char *domain;/* [ref,charset(UTF8)] */ + const char *name;/* [ref,charset(UTF8)] */ + uint32_t flags; + } in; + + struct { + enum lsa_SidType *type;/* [ref] */ + struct dom_sid *sid;/* [ref] */ + NTSTATUS result; + } out; + +}; + #endif /* _HEADER_wbint */ -- cgit