diff options
-rw-r--r-- | source4/librpc/idl/dfs.idl | 28 |
1 files changed, 21 insertions, 7 deletions
diff --git a/source4/librpc/idl/dfs.idl b/source4/librpc/idl/dfs.idl index aa72b550b4..d08bb12363 100644 --- a/source4/librpc/idl/dfs.idl +++ b/source4/librpc/idl/dfs.idl @@ -305,17 +305,31 @@ /* Function 0x0b */ WERROR dfs_RemoveFtRoot(); - /* Function 0x0c */ - WERROR dfs_AddStdRoot(); - - /* Function 0x0d */ - WERROR dfs_RemoveStdRoot(); - + /* Function 0x0c */ + WERROR dfs_AddStdRoot( + [in] [string,charset(UTF16)] uint16 servername[], + [in] [string,charset(UTF16)] uint16 rootshare[], + [in] [string,charset(UTF16)] uint16 comment[], + [in] uint32 flags + ); + + /* Function 0x0d */ + WERROR dfs_RemoveStdRoot( + [in] [string,charset(UTF16)] uint16 servername[], + [in] [string,charset(UTF16)] uint16 rootshare[], + [in] uint32 flags + ); + /* Function 0x0e */ WERROR dfs_ManagerInitialize(); /* Function 0x0f */ - WERROR dfs_AddStdRootForced(); + WERROR dfs_AddStdRootForced( + [in] [string,charset(UTF16)] uint16 servername[], + [in] [string,charset(UTF16)] uint16 rootshare[], + [in] [string,charset(UTF16)] uint16 comment[], + [in] [string,charset(UTF16)] uint16 store[] /* C:\\whatever */ + ); /* Function 0x10 */ WERROR dfs_GetDcAddress(); |