From 8a683f489695b094ef91960f6fda4c8c57407682 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 16 Aug 2009 10:58:43 +0200 Subject: s3:winbind: Add async wb_group_members --- source3/librpc/gen_ndr/wbint.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 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 c5caa79a4b..7ed1fb2753 100644 --- a/source3/librpc/gen_ndr/wbint.h +++ b/source3/librpc/gen_ndr/wbint.h @@ -28,6 +28,17 @@ struct wbint_RidArray { uint32_t *rids;/* [size_is(num_rids)] */ }/* [public] */; +struct wbint_GroupMember { + struct dom_sid sid; + const char *name;/* [unique,charset(UTF8)] */ + enum lsa_SidType type; +}/* [public] */; + +struct wbint_GroupMembers { + int32_t num_members; + struct wbint_GroupMember *members;/* [size_is(num_members)] */ +}/* [public] */; + struct wbint_Ping { struct { @@ -175,4 +186,18 @@ struct wbint_QuerySequenceNumber { }; + +struct wbint_LookupGroupMembers { + struct { + struct dom_sid *sid;/* [ref] */ + enum lsa_SidType type; + } in; + + struct { + struct wbint_GroupMembers *members;/* [ref] */ + NTSTATUS result; + } out; + +}; + #endif /* _HEADER_wbint */ -- cgit