samba-cvs.cvs
[Top] [All Lists]

svn commit: samba r18765 - in branches/SAMBA_4_0/source/librpc/idl: .

Subject: svn commit: samba r18765 - in branches/SAMBA_4_0/source/librpc/idl: .
From:
Date: Thu, 21 Sep 2006 03:11:51 +0000 GMT
Author: gd
Date: 2006-09-21 03:11:51 +0000 (Thu, 21 Sep 2006)
New Revision: 18765

WebSVN: 
http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=18765

Log:
Fill in dfs_SetInfo() IDL and align function arguments with the names
found in the documentation.

Guenther

Modified:
   branches/SAMBA_4_0/source/librpc/idl/dfs.idl


Changeset:
Modified: branches/SAMBA_4_0/source/librpc/idl/dfs.idl
===================================================================
--- branches/SAMBA_4_0/source/librpc/idl/dfs.idl        2006-09-21 02:45:02 UTC 
(rev 18764)
+++ branches/SAMBA_4_0/source/librpc/idl/dfs.idl        2006-09-21 03:11:51 UTC 
(rev 18765)
@@ -34,18 +34,14 @@
        /******************/
        /* Function: 0x02 */
        WERROR dfs_Remove (
-               [in]            [string,charset(UTF16)] uint16 *path,
-               [in,unique]     [string,charset(UTF16)] uint16 *server,
-               [in,unique]     [string,charset(UTF16)] uint16 *share
+               [in]            [string,charset(UTF16)] uint16 *dfs_entry_path,
+               [in,unique]     [string,charset(UTF16)] uint16 *servername,
+               [in,unique]     [string,charset(UTF16)] uint16 *sharename
                );
 
        /******************/
        /* Function: 0x03 */
-       WERROR dfs_SetInfo ();
 
-       /******************/
-       /* Function: 0x04 */
-
        typedef struct {
        } dfs_Info0;
 
@@ -224,10 +220,20 @@
                [case(106)] dfs_Info106 *info106;
        } dfs_Info;
 
+       WERROR dfs_SetInfo (
+               [in]            [string,charset(UTF16)] uint16 dfs_entry_path[],
+               [in,unique]     [string,charset(UTF16)] uint16 *servername,
+               [in,unique]     [string,charset(UTF16)] uint16 *sharename,
+               [in]            uint32 level,
+               [in,ref,switch_is(level)] dfs_Info *info
+               );
+
+       /******************/
+       /* Function: 0x04 */
        WERROR dfs_GetInfo (
-               [in]            [string,charset(UTF16)] uint16 path[],
-               [in,unique]     [string,charset(UTF16)] uint16 *server,
-               [in,unique]     [string,charset(UTF16)] uint16 *share,
+               [in]            [string,charset(UTF16)] uint16 dfs_entry_path[],
+               [in,unique]     [string,charset(UTF16)] uint16 *servername,
+               [in,unique]     [string,charset(UTF16)] uint16 *sharename,
                [in]            uint32 level,
                [out,switch_is(level)] dfs_Info *info
                );
@@ -313,7 +319,7 @@
                [in]            uint32 flags
                );
  
-       /* Function 0x0d */
+       /* Function 0x0d */
        WERROR dfs_RemoveStdRoot(
                [in]            [string,charset(UTF16)] uint16 servername[],
                [in]            [string,charset(UTF16)] uint16 rootshare[],

<Prev in Thread] Current Thread [Next in Thread>
  • svn commit: samba r18765 - in branches/SAMBA_4_0/source/librpc/idl: ., gd <=