netapi: add NetLocalGroupDel() to public headers.
authorGünther Deschner <gd@samba.org>
Mon, 2 Jun 2008 17:45:23 +0000 (19:45 +0200)
committerGünther Deschner <gd@samba.org>
Mon, 2 Jun 2008 23:27:47 +0000 (01:27 +0200)
Guenther
(This used to be commit efd4a899f5d139b5e3e22660f5fb1c12f59525fc)

source3/lib/netapi/netapi.h

index d08f1b7f74b739caf3400dae4ca7539ab79863f4..28bb7fa68ac41fd03a428cf24db0ddeb7e7b8a73 100644 (file)
@@ -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