From 52cae6b9088cae3c2daa8d195dcaba0c481a87d3 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 20 Nov 2003 03:18:07 +0000 Subject: added samr_LookupRids() and test code (This used to be commit c32c33a791dd42676ca7fa47aae264e8d8ea8339) --- source4/librpc/idl/samr.idl | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'source4/librpc/idl/samr.idl') diff --git a/source4/librpc/idl/samr.idl b/source4/librpc/idl/samr.idl index 55df200c22..8092e64d5b 100644 --- a/source4/librpc/idl/samr.idl +++ b/source4/librpc/idl/samr.idl @@ -284,9 +284,22 @@ [out] samr_Ids types ); + /************************/ /* Function 0x12 */ - NTSTATUS samr_LOOKUP_RIDS(); + + typedef struct { + uint32 count; + [size_is(count)] samr_Name *names; + } samr_Names; + + NTSTATUS samr_LookupRids( + [in,ref] policy_handle *handle, + [in] uint32 num_rids, + [in,ref,size_is(1000),length_is(num_rids)] uint32 *rids, + [out] samr_Names names, + [out] samr_Ids types + ); /************************/ /* Function 0x13 */ -- cgit