From 4d2a01a069ab097598c6a7f7137c2679c14185fa Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 25 Sep 2013 05:25:19 +0200 Subject: [PATCH] echo.idl... --- librpc/idl/echo.idl | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/librpc/idl/echo.idl b/librpc/idl/echo.idl index 038a0a0874d7..8d687d7a1499 100644 --- a/librpc/idl/echo.idl +++ b/librpc/idl/echo.idl @@ -126,16 +126,20 @@ interface rpcecho uint16 echo_TestDoublePointer([in] uint16 ***data); typedef pipe uint8 echo_BytePipe; -/* typedef struct { - uint32 *ptr; - uint8 *a; - } echo_Struct; - typedef pipe echo_Struct echo_StructPipe; -*/ - uint32 echo_BytePipeIn( - [in] uint32 value, - // [in,ref] echo_StructPipe *sp, - [in,ref] echo_BytePipe *bp + + uint32 echo_TestBytePipeIn( + [in] uint32 count, + [in,ref] echo_BytePipe *in_pipe + ); + + uint32 echo_TestBytePipeOut( + [in] uint32 count, + [out,ref] echo_BytePipe *out_pipe + ); + + uint32 echo_TestBytePipeInOut( + [in] uint32 count, + [in,out,ref] echo_BytePipe *out_pipe ); } #if 0 -- 2.34.1