diff options
author | Günther Deschner <gd@samba.org> | 2010-05-05 16:56:52 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-05-05 17:21:05 +0200 |
commit | e90c874b256e9a0b3f2ae7063b499622dd49f721 (patch) | |
tree | 48a6446f4fc1caac7128326d8ccacbe9be7ce190 /librpc | |
parent | 10469d6606b79894f7f7cf83fb64002698a7c023 (diff) | |
download | samba-e90c874b256e9a0b3f2ae7063b499622dd49f721.tar.gz samba-e90c874b256e9a0b3f2ae7063b499622dd49f721.tar.bz2 samba-e90c874b256e9a0b3f2ae7063b499622dd49f721.zip |
rap: add IDL for rap_NetShareAdd (undocumented in MS-RAP).
Guenther
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/rap.idl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/librpc/idl/rap.idl b/librpc/idl/rap.idl index 5920496e66..604ed64904 100644 --- a/librpc/idl/rap.idl +++ b/librpc/idl/rap.idl @@ -352,6 +352,15 @@ interface rap [out,switch_is(level)] rap_share_info *info ); + /* not documented in MS-RAP */ + [public] void rap_NetShareAdd( + [in] uint16 level, + [in] uint16 bufsize, + [in,switch_is(level)] rap_share_info info, + [out] rap_status status, + [out] uint16 convert + ); + typedef struct { uint8 name[16]; } rap_server_info_0; |