From: Günther Deschner Date: Mon, 2 Jun 2008 17:45:23 +0000 (+0200) Subject: netapi: add NetLocalGroupDel() to public headers. X-Git-Tag: samba-3.3.0pre1~1068 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=efd4a899f5d139b5e3e22660f5fb1c12f59525fc;p=thirdparty%2Fsamba.git netapi: add NetLocalGroupDel() to public headers. Guenther --- diff --git a/source/lib/netapi/netapi.h b/source/lib/netapi/netapi.h index d08f1b7f74b..28bb7fa68ac 100644 --- a/source/lib/netapi/netapi.h +++ b/source/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