diff options
author | Volker Lendecke <vl@samba.org> | 2009-08-04 15:54:05 -0400 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-08-05 03:21:24 -0400 |
commit | ce42ea3ab8c69a3f650d4c9bc787e4805aad928d (patch) | |
tree | c54ca89752da885dfd3c930abdf6f7bbc1ffacb3 /source3/librpc/idl | |
parent | f09a95aaff4542df4225f3828a0d737497f0f2e8 (diff) | |
download | samba-ce42ea3ab8c69a3f650d4c9bc787e4805aad928d.tar.gz samba-ce42ea3ab8c69a3f650d4c9bc787e4805aad928d.tar.bz2 samba-ce42ea3ab8c69a3f650d4c9bc787e4805aad928d.zip |
s3:winbind: Add async wb_lookupuseraliases
Diffstat (limited to 'source3/librpc/idl')
-rw-r--r-- | source3/librpc/idl/wbint.idl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/source3/librpc/idl/wbint.idl b/source3/librpc/idl/wbint.idl index 15c4e1f302..571c212ecd 100644 --- a/source3/librpc/idl/wbint.idl +++ b/source3/librpc/idl/wbint.idl @@ -68,4 +68,19 @@ interface wbint [in] dom_sid *sid, [out] wbint_userinfo *info ); + + typedef [public] struct { + uint32 num_sids; + [size_is(num_sids)] dom_sid sids[]; + } wbint_SidArray; + + typedef [public] struct { + uint32 num_rids; + [size_is(num_rids)] uint32 rids[]; + } wbint_RidArray; + + NTSTATUS wbint_LookupUserAliases( + [in] wbint_SidArray *sids, + [out] wbint_RidArray *rids + ); }
\ No newline at end of file |