diff options
author | Günther Deschner <gd@samba.org> | 2008-08-29 18:32:25 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-09-05 12:34:10 +0200 |
commit | 6194cbb3c8615d8f96236c7034c0a4e161aaceec (patch) | |
tree | a4104082f4c16f31abc33d0b3274b41fb806f99b /source3 | |
parent | d07f0e345e05fd895caaaf9af71593683dbfc685 (diff) | |
download | samba-6194cbb3c8615d8f96236c7034c0a4e161aaceec.tar.gz samba-6194cbb3c8615d8f96236c7034c0a4e161aaceec.tar.bz2 samba-6194cbb3c8615d8f96236c7034c0a4e161aaceec.zip |
netapi: add NetShareDel to IDL.
Guenther
(This used to be commit f9c3ae1ab8c76b4cfec7677e448f192e47152eeb)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/librpc/idl/libnetapi.idl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/librpc/idl/libnetapi.idl b/source3/librpc/idl/libnetapi.idl index 0b91876832..9ea1cc5db2 100644 --- a/source3/librpc/idl/libnetapi.idl +++ b/source3/librpc/idl/libnetapi.idl @@ -1001,4 +1001,14 @@ interface libnetapi [in] uint8 *buffer, [out] uint32 *parm_err ); + + /*******************************************/ + /* NetShareDel */ + /*******************************************/ + + [nopush,nopull] NET_API_STATUS NetShareDel( + [in] string server_name, + [in] string net_name, + [in] uint32 reserved + ); } |