diff options
Diffstat (limited to 'source3/librpc/gen_ndr/wbint.h')
-rw-r--r-- | source3/librpc/gen_ndr/wbint.h | 25 |
1 files changed, 25 insertions, 0 deletions
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 */ |