diff options
author | Günther Deschner <gd@samba.org> | 2008-06-02 23:37:42 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-06-03 01:27:49 +0200 |
commit | e46506866ae6c55aba6f65cff3f1889fea5227f4 (patch) | |
tree | 22c2bf25f5011b5d6e77f634df9aa64db76320c9 | |
parent | 1ecf67a18cd33f5f9f80fb3b8b97fcb43836a13a (diff) | |
download | samba-e46506866ae6c55aba6f65cff3f1889fea5227f4.tar.gz samba-e46506866ae6c55aba6f65cff3f1889fea5227f4.tar.bz2 samba-e46506866ae6c55aba6f65cff3f1889fea5227f4.zip |
netapi: add public header for NetLocalGroupSetInfo().
Guenther
(This used to be commit cb20271012e7713a28c302e199b676bdb821e5e4)
-rw-r--r-- | source3/lib/netapi/netapi.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/source3/lib/netapi/netapi.h b/source3/lib/netapi/netapi.h index 5b7a31f320..d80e78ebbf 100644 --- a/source3/lib/netapi/netapi.h +++ b/source3/lib/netapi/netapi.h @@ -686,4 +686,28 @@ NET_API_STATUS NetLocalGroupGetInfo(const char * server_name /* [in] */, const char * group_name /* [in] */, uint32_t level /* [in] */, uint8_t **buf /* [out] [ref] */); + +/************************************************************//** + * + * NetLocalGroupSetInfo + * + * @brief Set Local Group Information + * + * @param[in] server_name The server name to connect to + * @param[in] group_name The name of the group that is going to be modified + * @param[in] level The level defining the requested LOCALGROUP_INFO_X structure + * @param[in] buf The buffer containing a LOCALGROUP_INFO_X structure + * @param[out] parm_err The returned parameter error number if any + * @return NET_API_STATUS + * + * example localgroup/localgroup_setinfo.c + ***************************************************************/ + + +NET_API_STATUS NetLocalGroupSetInfo(const char * server_name /* [in] */, + const char * group_name /* [in] */, + uint32_t level /* [in] */, + uint8_t *buf /* [in] [ref] */, + uint32_t *parm_err /* [out] [ref] */); + #endif |