diff options
author | Günther Deschner <gd@samba.org> | 2008-06-02 20:19:18 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-06-03 01:27:47 +0200 |
commit | 8216c60265a06911c14ada33d5cf6d456c5b26d4 (patch) | |
tree | 732f0b63c08ef640a6618cb24db42c496b1881b9 | |
parent | 808c70340e49fcfd90b4d141ca87f0b0935803e5 (diff) | |
download | samba-8216c60265a06911c14ada33d5cf6d456c5b26d4.tar.gz samba-8216c60265a06911c14ada33d5cf6d456c5b26d4.tar.bz2 samba-8216c60265a06911c14ada33d5cf6d456c5b26d4.zip |
netapi: add NetLocalGroupGetInfo() to IDL.
Guenther
(This used to be commit c817c0c5bcf2578aa7f26403c0ce567281e4b019)
-rw-r--r-- | source3/librpc/idl/libnetapi.idl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/source3/librpc/idl/libnetapi.idl b/source3/librpc/idl/libnetapi.idl index 2bf862c4df..b68ea466bd 100644 --- a/source3/librpc/idl/libnetapi.idl +++ b/source3/librpc/idl/libnetapi.idl @@ -273,4 +273,11 @@ interface libnetapi [in] string server_name, [in] string group_name ); + + [nopush,nopull] NET_API_STATUS NetLocalGroupGetInfo( + [in] string server_name, + [in] string group_name, + [in] uint32 level, + [out,ref] uint8 **buf + ); } |