1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

netapi: add NetShareDel to public header.

Guenther
This commit is contained in:
Günther Deschner 2008-08-29 18:35:48 +02:00
parent 5b6e4740ea
commit 3ac8f83fcd

View File

@ -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 */