From 298f487fae6413d55eeb766a3fe519ff5c195337 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Thu, 21 Sep 2006 02:10:02 +0000 Subject: r18762: Fillin standalone DFS root functions IDL. Guenther (This used to be commit a8a6d7b649eb8610d7ee6d666e3df91afb50ac01) --- source4/librpc/idl/dfs.idl | 28 +++++++++++++++++++++------- 1 file changed, 21 insertions(+), 7 deletions(-) (limited to 'source4/librpc/idl/dfs.idl') 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(); -- cgit