summaryrefslogtreecommitdiffstats
path: root/source3/lib/netapi/libnetapi.h
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-06-02 13:43:21 +0200
committerGünther Deschner <gd@samba.org>2008-06-03 01:27:44 +0200
commitc30b8c4eafc945f8641e39157e4bb70f17815eee (patch)
tree2d726ff412c41cbdf1a1d22f9c50c0c95369bfc8 /source3/lib/netapi/libnetapi.h
parent02db44188f6f1ad60a2ae820085aff2486d090d5 (diff)
downloadsamba-c30b8c4eafc945f8641e39157e4bb70f17815eee.tar.gz
samba-c30b8c4eafc945f8641e39157e4bb70f17815eee.tar.xz
samba-c30b8c4eafc945f8641e39157e4bb70f17815eee.zip
netapi: add dummy implementation for NetGroupAddUser() and NetGroupDelUser().
Guenther (This used to be commit 6eba84edc60829f0cdf3508520625e66fe88afde)
Diffstat (limited to 'source3/lib/netapi/libnetapi.h')
-rw-r--r--source3/lib/netapi/libnetapi.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/source3/lib/netapi/libnetapi.h b/source3/lib/netapi/libnetapi.h
index cd9a1b704a5..4faca46b227 100644
--- a/source3/lib/netapi/libnetapi.h
+++ b/source3/lib/netapi/libnetapi.h
@@ -142,4 +142,18 @@ WERROR NetGroupGetInfo_r(struct libnetapi_ctx *ctx,
struct NetGroupGetInfo *r);
WERROR NetGroupGetInfo_l(struct libnetapi_ctx *ctx,
struct NetGroupGetInfo *r);
+NET_API_STATUS NetGroupAddUser(const char * server_name /* [in] */,
+ const char * group_name /* [in] */,
+ const char * user_name /* [in] */);
+WERROR NetGroupAddUser_r(struct libnetapi_ctx *ctx,
+ struct NetGroupAddUser *r);
+WERROR NetGroupAddUser_l(struct libnetapi_ctx *ctx,
+ struct NetGroupAddUser *r);
+NET_API_STATUS NetGroupDelUser(const char * server_name /* [in] */,
+ const char * group_name /* [in] */,
+ const char * user_name /* [in] */);
+WERROR NetGroupDelUser_r(struct libnetapi_ctx *ctx,
+ struct NetGroupDelUser *r);
+WERROR NetGroupDelUser_l(struct libnetapi_ctx *ctx,
+ struct NetGroupDelUser *r);
#endif /* __LIBNETAPI_LIBNETAPI__ */