diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-09-18 19:45:27 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-03-10 15:18:22 +0100 |
commit | 969c7bd77bdda55b9a07fc6381c4c1f562861cbe (patch) | |
tree | c2f0a8def942e15fd539c64b451bebbe48d72407 /librpc | |
parent | d79fb9098bc3ce37daa8ab6d51dc62ad0bc2ad26 (diff) | |
download | samba-969c7bd77bdda55b9a07fc6381c4c1f562861cbe.tar.gz |
frstrans.idl: add idl for RawGetFileDataAsync() and RdcGetFileDataAsync()
metze
Autobuild-User: Stefan Metzmacher <metze@samba.org>
Autobuild-Date: Thu Mar 10 15:18:22 CET 2011 on sn-devel-104
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/frstrans.idl | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/librpc/idl/frstrans.idl b/librpc/idl/frstrans.idl index 74f3c645a4d..a60529b8a3c 100644 --- a/librpc/idl/frstrans.idl +++ b/librpc/idl/frstrans.idl @@ -277,9 +277,17 @@ interface frstrans /*****************/ /* Function 0x0f */ - [todo] void FRSTRANS_RAW_GET_FILE_DATA_ASYNC(); + typedef pipe uint8 frstrans_BytePipe; + + WERROR frstrans_RawGetFileDataAsync( + [in,ref] policy_handle *server_context, + [out,ref] frstrans_BytePipe *byte_pipe + ); /*****************/ /* Function 0x10 */ - [todo] void FRSTRANS_RDC_GET_FILE_DATA_ASYNC(); + WERROR frstrans_RdcGetFileDataAsync( + [in,ref] policy_handle *server_context, + [out,ref] frstrans_BytePipe *byte_pipe + ); } |