diff options
author | Günther Deschner <gd@samba.org> | 2008-06-02 19:45:23 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-06-03 01:27:47 +0200 |
commit | 5800a52950ef3bd3509b3b332b9c890323f22a89 (patch) | |
tree | 6344d6aab39b29e97b0254da51a5be6de3d1aadb /source3 | |
parent | 4d6e66a42efc58e7ba119599f3436053f16a9bec (diff) | |
download | samba-5800a52950ef3bd3509b3b332b9c890323f22a89.tar.gz samba-5800a52950ef3bd3509b3b332b9c890323f22a89.tar.bz2 samba-5800a52950ef3bd3509b3b332b9c890323f22a89.zip |
netapi: add NetLocalGroupDel() to public headers.
Guenther
(This used to be commit efd4a899f5d139b5e3e22660f5fb1c12f59525fc)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/netapi/netapi.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/source3/lib/netapi/netapi.h b/source3/lib/netapi/netapi.h index d08f1b7f74..28bb7fa68a 100644 --- a/source3/lib/netapi/netapi.h +++ b/source3/lib/netapi/netapi.h @@ -650,4 +650,21 @@ NET_API_STATUS NetLocalGroupAdd(const char * server_name /* [in] */, uint8_t *buf /* [in] [ref] */, uint32_t *parm_err /* [out] [ref] */); +/************************************************************//** + * + * NetLocalGroupDel + * + * @brief Delete Local Group + * + * @param[in] server_name The server name to connect to + * @param[in] group_name The name of the group that is going to be deleted + * @return NET_API_STATUS + * + * example localgroup/localgroup_del.c + ***************************************************************/ + + +NET_API_STATUS NetLocalGroupDel(const char * server_name /* [in] */, + const char * group_name /* [in] */); + #endif |