diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-20 03:09:19 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-20 03:09:19 +0000 |
commit | 308cc429eb7c07d94609f2818e9d81239cb4cbb9 (patch) | |
tree | 84c059b23956750a4ca196fb0faebb4c889f4718 /source4/librpc/idl | |
parent | cde87e39c68f599026cc350c37c0cafe0e7ebcb6 (diff) | |
download | samba-308cc429eb7c07d94609f2818e9d81239cb4cbb9.tar.gz samba-308cc429eb7c07d94609f2818e9d81239cb4cbb9.tar.bz2 samba-308cc429eb7c07d94609f2818e9d81239cb4cbb9.zip |
added samr_LookupNames() and test code
(This used to be commit f8397cbc8554b721093b8ae6ac6fb26d0ee9a7cf)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/samr.idl | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/source4/librpc/idl/samr.idl b/source4/librpc/idl/samr.idl index 7fc2847620..55df200c22 100644 --- a/source4/librpc/idl/samr.idl +++ b/source4/librpc/idl/samr.idl @@ -264,18 +264,25 @@ typedef struct { uint32 count; - [size_is(count)] uint32 *rids; - } samr_Rids; + [size_is(count)] uint32 *ids; + } samr_Ids; NTSTATUS samr_GetAliasMembership( [in,ref] policy_handle *handle, [in] samr_Sids *sids, - [out] samr_Rids *rids + [out] samr_Ids *rids ); /************************/ /* Function 0x11 */ - NTSTATUS samr_LOOKUP_NAMES(); + + NTSTATUS samr_LookupNames( + [in,ref] policy_handle *handle, + [in] uint32 num_names, + [in,ref,size_is(1000),length_is(num_names)] samr_Name *names, + [out] samr_Ids rids, + [out] samr_Ids types + ); /************************/ /* Function 0x12 */ |