diff options
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 74f3c645a4..a60529b8a3 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 + ); } |