From f5c2e5890ec704af546bf84404bbd4cad2d7a266 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 9 Sep 2008 13:40:39 +0200 Subject: re-run make idl. Guenther (This used to be commit 3c07bcfb30ae5bb849291a5ca61b54798f14ee0a) --- source3/librpc/gen_ndr/libnetapi.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 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 9c1430227f..d61a562a95 100644 --- a/source3/librpc/gen_ndr/libnetapi.h +++ b/source3/librpc/gen_ndr/libnetapi.h @@ -25,6 +25,7 @@ #define FILTER_INTERDOMAIN_TRUST_ACCOUNT ( 0x0008 ) #define FILTER_WORKSTATION_TRUST_ACCOUNT ( 0x0010 ) #define FILTER_SERVER_TRUST_ACCOUNT ( 0x0020 ) +#define LG_INCLUDE_INDIRECT ( 0x0001 ) #define TIMEQ_FOREVER ( (uint32_t)-1L ) #define CSC_MASK ( 0x30 ) enum NET_API_STATUS @@ -424,6 +425,10 @@ struct GROUP_USERS_INFO_1 { uint32_t grui1_attributes; }; +struct LOCALGROUP_USERS_INFO_0 { + const char * lgrui0_name; +}; + struct USER_MODALS_INFO_0 { uint32_t usrmod0_min_passwd_len; uint32_t usrmod0_max_passwd_age; @@ -943,6 +948,25 @@ struct NetUserSetGroups { }; +struct NetUserGetLocalGroups { + struct { + const char * server_name; + const char * user_name; + uint32_t level; + uint32_t flags; + uint32_t prefmaxlen; + } in; + + struct { + uint8_t **buffer;/* [ref] */ + uint32_t *entries_read;/* [ref] */ + uint32_t *total_entries;/* [ref] */ + enum NET_API_STATUS result; + } out; + +}; + + struct NetUserModalsGet { struct { const char * server_name; -- cgit