From 05cb539d57c63477ccec1b5c80d29bdedfef0af2 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Mon, 2 Jun 2008 13:41:35 +0200 Subject: netapi: add NetGroupAddUser() and NetGroupDelUser() to IDL. Guenther (This used to be commit 7fe8735104b8306734dd12ae87eed430e0ba4d37) --- source3/librpc/idl/libnetapi.idl | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'source3/librpc/idl') 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 + ); } -- cgit