diff options
author | Günther Deschner <gd@samba.org> | 2008-09-04 15:50:49 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-09-05 13:20:57 +0200 |
commit | 723dfffed71426d77635b5bba2bb4845da1c7bbf (patch) | |
tree | d7da2a12c76a489fc43ccf893dc70f5ad5ffca58 /source3/librpc | |
parent | 150911f33e137d017e9f08f953bd96218401e04a (diff) | |
download | samba-723dfffed71426d77635b5bba2bb4845da1c7bbf.tar.gz samba-723dfffed71426d77635b5bba2bb4845da1c7bbf.tar.bz2 samba-723dfffed71426d77635b5bba2bb4845da1c7bbf.zip |
netapi: add IDL for NetShareGetInfo.
Guenther
(This used to be commit 5d669075295a3adb30c013d1a3b617bf4ced8e73)
Diffstat (limited to 'source3/librpc')
-rw-r--r-- | source3/librpc/idl/libnetapi.idl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/source3/librpc/idl/libnetapi.idl b/source3/librpc/idl/libnetapi.idl index b2c79fc1fa..a844563254 100644 --- a/source3/librpc/idl/libnetapi.idl +++ b/source3/librpc/idl/libnetapi.idl @@ -1103,4 +1103,15 @@ interface libnetapi [out] uint32 *total_entries, [in,out] uint32 *resume_handle ); + + /*******************************************/ + /* NetShareGetInfo */ + /*******************************************/ + + [nopush,nopull] NET_API_STATUS NetShareGetInfo( + [in] string server_name, + [in] string net_name, + [in] uint32 level, + [out] uint8 **buffer + ); } |