summaryrefslogtreecommitdiff
path: root/source3/lib/netapi/netapi.h
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-06-02 12:54:17 +0200
committerGünther Deschner <gd@samba.org>2008-06-03 01:27:42 +0200
commitb01a0a16a6dc167bf25fb2f90cb7d7a4471194c2 (patch)
tree0925e8e7f255bcf336e2a417e4fec175bdec89da /source3/lib/netapi/netapi.h
parente11081a672251fa0bd5b494cf7790954d19a1be1 (diff)
downloadsamba-b01a0a16a6dc167bf25fb2f90cb7d7a4471194c2.tar.gz
samba-b01a0a16a6dc167bf25fb2f90cb7d7a4471194c2.tar.bz2
samba-b01a0a16a6dc167bf25fb2f90cb7d7a4471194c2.zip
netapi: Add dummy implementation of NetGroupSetInfo().
Guenther (This used to be commit 7e47bdc0829d7ac856028a99389310f721a265ce)
Diffstat (limited to 'source3/lib/netapi/netapi.h')
-rw-r--r--source3/lib/netapi/netapi.h30
1 files changed, 29 insertions, 1 deletions
diff --git a/source3/lib/netapi/netapi.h b/source3/lib/netapi/netapi.h
index abfd53e0c9..bd4dc09079 100644
--- a/source3/lib/netapi/netapi.h
+++ b/source3/lib/netapi/netapi.h
@@ -136,6 +136,14 @@ struct GROUP_INFO_3 {
uint32_t grpi3_attributes;
};
+struct GROUP_INFO_1002 {
+ const char * grpi1002_comment;
+};
+
+struct GROUP_INFO_1005 {
+ uint32_t grpi1005_attributes;
+};
+
#endif /* _HEADER_libnetapi */
/****************************************************************
@@ -526,8 +534,28 @@ NET_API_STATUS NetGroupAdd(const char * server_name /* [in] */,
* example group/group_del.c
***************************************************************/
-
NET_API_STATUS NetGroupDel(const char * server_name /* [in] */,
const char * group_name /* [in] */);
+/************************************************************//**
+ *
+ * NetGroupSetInfo
+ *
+ * @brief Set Domain 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 structure type in buf
+ * @param[in] buf The buffer containing a GROUP_INFO_X structure
+ * @param[out] parm_err The returned parameter error number if any
+ * @return NET_API_STATUS
+ *
+ * example group/group_setinfo.c
+ ***************************************************************/
+
+NET_API_STATUS NetGroupSetInfo(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