From dbbefb4e97df49dc28d47b5d9ba759f90efb9aab Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Wed, 9 Apr 2008 13:41:54 +0200 Subject: [PATCH] Add NetUserEnum to libnetapi IDL. Guenther --- source/librpc/idl/libnetapi.idl | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/source/librpc/idl/libnetapi.idl b/source/librpc/idl/libnetapi.idl index 82d26938dee..d74df187e6a 100644 --- a/source/librpc/idl/libnetapi.idl +++ b/source/librpc/idl/libnetapi.idl @@ -9,6 +9,8 @@ cpp_quote("#define LIBNETAPI_LOCAL_SERVER(x) (!x || is_myname_or_ipaddr(x))") ] interface libnetapi { + const int ERROR_MORE_DATA = 234L; + [public] typedef [v1_enum] enum { NERR_Success=0 } NET_API_STATUS; @@ -116,4 +118,15 @@ interface libnetapi [in,unique] string *server_name, [in,ref] string *user_name ); + + [nopush,nopull] NET_API_STATUS NetUserEnum( + [in,unique] string *server_name, + [in] uint32 level, + [in] uint32 filter, + [out,ref] uint8 **buffer, + [in] uint32 prefmaxlen, + [out,ref] uint32 *entries_read, + [out,ref] uint32 *total_entries, + [in,out,ref] uint32 *resume_handle + ); } -- 2.47.3