1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-31 20:22:15 +03:00

libnetapi: add dummy implementation for NetGroupAdd() and NetGroupDel().

Guenther
(This used to be commit d690f9e9f8)
This commit is contained in:
Günther Deschner
2008-05-27 12:11:28 +02:00
parent 2da5df92df
commit ee671b1982
4 changed files with 159 additions and 2 deletions

View File

@ -111,4 +111,18 @@ WERROR NetQueryDisplayInformation_r(struct libnetapi_ctx *ctx,
struct NetQueryDisplayInformation *r);
WERROR NetQueryDisplayInformation_l(struct libnetapi_ctx *ctx,
struct NetQueryDisplayInformation *r);
NET_API_STATUS NetGroupAdd(const char * server_name /* [in] */,
uint32_t level /* [in] */,
uint8_t *buf /* [in] [ref] */,
uint32_t *parm_err /* [out] [ref] */);
WERROR NetGroupAdd_r(struct libnetapi_ctx *ctx,
struct NetGroupAdd *r);
WERROR NetGroupAdd_l(struct libnetapi_ctx *ctx,
struct NetGroupAdd *r);
NET_API_STATUS NetGroupDel(const char * server_name /* [in] */,
const char * group_name /* [in] */);
WERROR NetGroupDel_r(struct libnetapi_ctx *ctx,
struct NetGroupDel *r);
WERROR NetGroupDel_l(struct libnetapi_ctx *ctx,
struct NetGroupDel *r);
#endif /* __LIBNETAPI_LIBNETAPI__ */