From c7ace9b8ead0379133b4f2aaaa889f557a83e4b4 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 8 Oct 2005 17:55:28 +0000 Subject: r10839: Add some [ref] (required for ethereal and Samba3 parser generators) (This used to be commit 5556deee30616396bbaf1182eca08bf1213c0860) --- source4/librpc/idl/dfs.idl | 38 ++++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 18 deletions(-) (limited to 'source4/librpc') diff --git a/source4/librpc/idl/dfs.idl b/source4/librpc/idl/dfs.idl index 085bed4f4e..579d855b89 100644 --- a/source4/librpc/idl/dfs.idl +++ b/source4/librpc/idl/dfs.idl @@ -7,33 +7,32 @@ [ uuid("4fc742e0-4a10-11cf-8273-00aa004ae673"), version(3.0), pointer_default(unique), - pointer_default_top(unique), helpstring("Settings for Microsoft Distributed File System") ] interface netdfs { /******************/ /* Function: 0x00 */ void dfs_GetManagerVersion( - [out,ref] uint32 *exist_flag + [out] uint32 *exist_flag ); /******************/ /* Function: 0x01 */ WERROR dfs_Add ( - [in,ref] unistr *path, - [in,ref] unistr *server, - [in] unistr *share, - [in] unistr *comment, - [in] uint32 flags + [in] unistr *path, + [in] unistr *server, + [in,unique] unistr *share, + [in,unique] unistr *comment, + [in] uint32 flags ); /******************/ /* Function: 0x02 */ WERROR dfs_Remove ( - [in,ref] unistr *path, - [in] unistr *server, - [in] unistr *share + [in] unistr *path, + [in,unique] unistr *server, + [in,unique] unistr *share ); /******************/ @@ -43,6 +42,9 @@ /******************/ /* Function: 0x04 */ + typedef struct { + } dfs_Info0; + typedef struct { unistr *path; } dfs_Info1; @@ -100,6 +102,7 @@ } dfs_Info300; typedef union { + [case(0)] dfs_Info0 *info0; [case(1)] dfs_Info1 *info1; [case(2)] dfs_Info2 *info2; [case(3)] dfs_Info3 *info3; @@ -107,15 +110,14 @@ [case(100)] dfs_Info100 *info100; [case(101)] dfs_Info101 *info101; [case(102)] dfs_Info102 *info102; - [default] ; } dfs_Info; WERROR dfs_GetInfo ( - [in,ref] unistr *path, - [in] unistr *server, - [in] unistr *share, + [in] unistr *path, + [in,unique] unistr *server, + [in,unique] unistr *share, [in] uint32 level, - [out,switch_is(level)] dfs_Info info + [out,switch_is(level)] dfs_Info *info ); /******************/ @@ -169,9 +171,9 @@ WERROR dfs_Enum ( [in] uint32 level, [in] uint32 bufsize, - [in,out] dfs_EnumStruct *info, - [in] uint32 *unknown, - [in,out] uint32 *total + [in,out,unique] dfs_EnumStruct *info, + [in,unique] uint32 *unknown, + [in,out,unique] uint32 *total ); /* Function 0x06 */ -- cgit