From: Günther Deschner Date: Fri, 29 Aug 2008 16:35:48 +0000 (+0200) Subject: netapi: add NetShareDel to public header. X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3ac8f83fcd9f92fe944de8c094d6aa6bda9074dc;p=thirdparty%2Fsamba.git netapi: add NetShareDel to public header. Guenther --- diff --git a/source/lib/netapi/netapi.h b/source/lib/netapi/netapi.h index 05c702cb3f2..89665371a07 100644 --- a/source/lib/netapi/netapi.h +++ b/source/lib/netapi/netapi.h @@ -1501,6 +1501,24 @@ NET_API_STATUS NetShareAdd(const char * server_name /* [in] */, uint8_t *buffer /* [in] [ref] */, uint32_t *parm_err /* [out] [ref] */); +/************************************************************//** + * + * NetShareDel + * + * @brief Delete Share + * + * @param[in] server_name The server name to connect to + * @param[in] net_name The name of the share to delete + * @param[in] reserved + * @return NET_API_STATUS + * + * example share/share_del.c + ***************************************************************/ + +NET_API_STATUS NetShareDel(const char * server_name /* [in] */, + const char * net_name /* [in] */, + uint32_t reserved /* [in] */); + #ifdef __cplusplus } #endif /* __cplusplus */