Guest User

Untitled

a guest
Jul 20th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. error_status_t rpcMyInterfaceGetFile( [in] const GUID fileId, [out] BYTE_PIPE filePipe );
  2.  
  3. /* [fault_status][comm_status] */ error_status_t rpcMyInterfacerGetFile(
  4. /* [in] */ handle_t IDL_handle,
  5. /* [in] */ const GUID fileId,
  6. /* [out] */ BYTE_PIPE filePipe)
  7. {
  8. CLIENT_CALL_RETURN _RetVal;
  9. _RetVal = NdrClientCall2(
  10. ( PMIDL_STUB_DESC )&IMyInterfaceRpc_StubDesc,
  11. (PFORMAT_STRING) &MyInterfaceRpc__MIDL_ProcFormatString.Format[SomeNumberHere],
  12. ( unsigned char * )&IDL_handle);
  13. return ( error_status_t )_RetVal.Simple;
  14. }
Add Comment
Please, Sign In to add comment