From: Günther Deschner Date: Mon, 2 Jun 2008 15:31:38 +0000 (+0200) Subject: netapi: add NetLocalGroupAdd() to IDL. X-Git-Tag: samba-4.0.0alpha6~801^2~1215 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=be9332df6f2600b54da0c02baf4efdfee3932a79;p=thirdparty%2Fsamba.git netapi: add NetLocalGroupAdd() to IDL. Guenther (This used to be commit fa86b2cf5c6f5654fc7545de467c47626573f97c) --- diff --git a/source3/librpc/idl/libnetapi.idl b/source3/librpc/idl/libnetapi.idl index 1d62ecb564e..200beee28d2 100644 --- a/source3/librpc/idl/libnetapi.idl +++ b/source3/librpc/idl/libnetapi.idl @@ -248,4 +248,24 @@ interface libnetapi [in] string group_name, [in] string user_name ); + + typedef struct { + string lgrpi0_name; + } LOCALGROUP_INFO_0; + + typedef struct { + string lgrpi1_name; + string lgrpi1_comment; + } LOCALGROUP_INFO_1; + + typedef struct { + string lgrpi1002_comment; + } LOCALGROUP_INFO_1002; + + [nopush,nopull] NET_API_STATUS NetLocalGroupAdd( + [in] string server_name, + [in] uint32 level, + [in] uint8 *buf, + [out,ref] uint32 *parm_err + ); }