From bb359c780aee3fd7e1074db93a28c95590ae5d36 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 3 Aug 2009 23:44:46 +0200 Subject: s3:winbind: Add async wb_lookupsid --- 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 641d960a1b..2cc59b3f96 100644 --- a/source3/librpc/gen_ndr/wbint.h +++ b/source3/librpc/gen_ndr/wbint.h @@ -4,6 +4,7 @@ #include "libcli/util/ntstatus.h" +#include "librpc/gen_ndr/lsa.h" #ifndef _HEADER_wbint #define _HEADER_wbint @@ -19,4 +20,19 @@ struct wbint_Ping { }; + +struct wbint_LookupSid { + struct { + struct dom_sid *sid;/* [ref] */ + } in; + + struct { + enum lsa_SidType *type;/* [ref] */ + const char **domain;/* [ref,charset(UTF8)] */ + const char **name;/* [ref,charset(UTF8)] */ + NTSTATUS result; + } out; + +}; + #endif /* _HEADER_wbint */ -- cgit