summaryrefslogtreecommitdiff
path: root/source3/librpc
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-09-09 21:59:22 +0200
committerGünther Deschner <gd@samba.org>2008-09-11 14:37:25 +0200
commite5ae75d001782482d3112324ea2147da8e5f392f (patch)
tree242b3da1bc9b616a46b9a401dad19443ad0bbe3b /source3/librpc
parent939d969490857d7315744184ddfcbcb684988f8f (diff)
downloadsamba-e5ae75d001782482d3112324ea2147da8e5f392f.tar.gz
samba-e5ae75d001782482d3112324ea2147da8e5f392f.tar.bz2
samba-e5ae75d001782482d3112324ea2147da8e5f392f.zip
netapi: add NetFileEnum to IDL.
Guenther (This used to be commit 5c234a53739d74d3cc80c4409aa32238541b31d6)
Diffstat (limited to 'source3/librpc')
-rw-r--r--source3/librpc/idl/libnetapi.idl16
1 files changed, 16 insertions, 0 deletions
diff --git a/source3/librpc/idl/libnetapi.idl b/source3/librpc/idl/libnetapi.idl
index 6ecfdccdfd..039dcf4152 100644
--- a/source3/librpc/idl/libnetapi.idl
+++ b/source3/librpc/idl/libnetapi.idl
@@ -1218,4 +1218,20 @@ interface libnetapi
[in] uint32 level,
[out] uint8 **buffer
);
+
+ /*******************************************/
+ /* NetFileEnum */
+ /*******************************************/
+
+ [nopush,nopull] NET_API_STATUS NetFileEnum(
+ [in] string server_name,
+ [in] string base_path,
+ [in] string user_name,
+ [in] uint32 level,
+ [out] uint8 **buffer,
+ [in] uint32 prefmaxlen,
+ [out] uint32 *entries_read,
+ [out] uint32 *total_entries,
+ [in,out] uint32 *resume_handle
+ );
}