diff options
-rw-r--r-- | source3/librpc/idl/libnetapi.idl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source3/librpc/idl/libnetapi.idl b/source3/librpc/idl/libnetapi.idl index 865d851c4b..1d62ecb564 100644 --- a/source3/librpc/idl/libnetapi.idl +++ b/source3/librpc/idl/libnetapi.idl @@ -236,4 +236,16 @@ interface libnetapi [in] uint32 level, [out] uint8 **buf ); + + [nopush,nopull] NET_API_STATUS NetGroupAddUser( + [in] string server_name, + [in] string group_name, + [in] string user_name + ); + + [nopush,nopull] NET_API_STATUS NetGroupDelUser( + [in] string server_name, + [in] string group_name, + [in] string user_name + ); } |