summaryrefslogtreecommitdiff
path: root/source3/librpc
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-08-29 18:56:11 +0200
committerGünther Deschner <gd@samba.org>2008-09-05 12:54:07 +0200
commit523b7fdfd1faa2f2cb2669f3698afc257be0c09b (patch)
tree4792448423c6af6b957a873dad5d5703257daa40 /source3/librpc
parentd7b966714b2851c011845be50945796fddd3769f (diff)
downloadsamba-523b7fdfd1faa2f2cb2669f3698afc257be0c09b.tar.gz
samba-523b7fdfd1faa2f2cb2669f3698afc257be0c09b.tar.bz2
samba-523b7fdfd1faa2f2cb2669f3698afc257be0c09b.zip
netapi: add NetShareEnum to IDL.
Guenther (This used to be commit 25302d79bec5784a6dd27cf7b0f58a8ec287b2ad)
Diffstat (limited to 'source3/librpc')
-rw-r--r--source3/librpc/idl/libnetapi.idl14
1 files changed, 14 insertions, 0 deletions
diff --git a/source3/librpc/idl/libnetapi.idl b/source3/librpc/idl/libnetapi.idl
index a81a3c683b..48f1686682 100644
--- a/source3/librpc/idl/libnetapi.idl
+++ b/source3/librpc/idl/libnetapi.idl
@@ -1040,4 +1040,18 @@ interface libnetapi
[in] string net_name,
[in] uint32 reserved
);
+
+ /*******************************************/
+ /* NetShareEnum */
+ /*******************************************/
+
+ [nopush,nopull] NET_API_STATUS NetShareEnum(
+ [in] string server_name,
+ [in] uint32 level,
+ [out] uint8 **buffer,
+ [in] uint32 prefmaxlen,
+ [out] uint32 *entries_read,
+ [out] uint32 *total_entries,
+ [in,out] uint32 *resume_handle
+ );
}