From 7dd3b4186b688891cbbba615d061a59daa3c8606 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Wed, 9 Apr 2008 13:42:48 +0200 Subject: Re-run make idl. Guenther (This used to be commit 285072479bebf09c94fccf55578ef587627c888e) --- source3/librpc/gen_ndr/libnetapi.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'source3/librpc/gen_ndr/libnetapi.h') diff --git a/source3/librpc/gen_ndr/libnetapi.h b/source3/librpc/gen_ndr/libnetapi.h index dda4fadd5f..08b45456f1 100644 --- a/source3/librpc/gen_ndr/libnetapi.h +++ b/source3/librpc/gen_ndr/libnetapi.h @@ -6,6 +6,7 @@ #ifndef _HEADER_libnetapi #define _HEADER_libnetapi +#define ERROR_MORE_DATA ( 234L ) enum NET_API_STATUS #ifndef USE_UINT_ENUMS { @@ -209,4 +210,24 @@ struct NetUserDel { }; + +struct NetUserEnum { + struct { + const char * server_name;/* [unique] */ + uint32_t level; + uint32_t filter; + uint32_t prefmaxlen; + uint32_t *resume_handle;/* [ref] */ + } in; + + struct { + uint8_t **buffer;/* [ref] */ + uint32_t *entries_read;/* [ref] */ + uint32_t *total_entries;/* [ref] */ + uint32_t *resume_handle;/* [ref] */ + enum NET_API_STATUS result; + } out; + +}; + #endif /* _HEADER_libnetapi */ -- cgit