summaryrefslogtreecommitdiff
path: root/source3/librpc/gen_ndr/wbint.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-08-04 15:54:05 -0400
committerVolker Lendecke <vl@samba.org>2009-08-05 03:21:24 -0400
commitce42ea3ab8c69a3f650d4c9bc787e4805aad928d (patch)
treec54ca89752da885dfd3c930abdf6f7bbc1ffacb3 /source3/librpc/gen_ndr/wbint.h
parentf09a95aaff4542df4225f3828a0d737497f0f2e8 (diff)
downloadsamba-ce42ea3ab8c69a3f650d4c9bc787e4805aad928d.tar.gz
samba-ce42ea3ab8c69a3f650d4c9bc787e4805aad928d.tar.bz2
samba-ce42ea3ab8c69a3f650d4c9bc787e4805aad928d.zip
s3:winbind: Add async wb_lookupuseraliases
Diffstat (limited to 'source3/librpc/gen_ndr/wbint.h')
-rw-r--r--source3/librpc/gen_ndr/wbint.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/source3/librpc/gen_ndr/wbint.h b/source3/librpc/gen_ndr/wbint.h
index eb3dd0cd33..6eeef0ebdf 100644
--- a/source3/librpc/gen_ndr/wbint.h
+++ b/source3/librpc/gen_ndr/wbint.h
@@ -18,6 +18,16 @@ struct wbint_userinfo {
struct dom_sid group_sid;
}/* [public] */;
+struct wbint_SidArray {
+ uint32_t num_sids;
+ struct dom_sid *sids;/* [size_is(num_sids)] */
+}/* [public] */;
+
+struct wbint_RidArray {
+ uint32_t num_rids;
+ uint32_t *rids;/* [size_is(num_rids)] */
+}/* [public] */;
+
struct wbint_Ping {
struct {
@@ -130,4 +140,17 @@ struct wbint_QueryUser {
};
+
+struct wbint_LookupUserAliases {
+ struct {
+ struct wbint_SidArray *sids;/* [ref] */
+ } in;
+
+ struct {
+ struct wbint_RidArray *rids;/* [ref] */
+ NTSTATUS result;
+ } out;
+
+};
+
#endif /* _HEADER_wbint */