home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.2 (Developer) / NS_dev_3.2.iso / NextDeveloper / Headers / bsd / rpc / pmap_rmt.h < prev    next >
C/C++ Source or Header  |  1990-04-26  |  502b  |  30 lines

  1. /*    @(#)pmap_rmt.h    1.1 88/03/04 4.0NFSSRC SMI    */
  2.  
  3. /* 
  4.  * Copyright (c) 1988 by Sun Microsystems, Inc.
  5.  *    1.2 88/02/08 SMI    
  6.  */
  7.  
  8.  
  9. /*
  10.  * Structures and XDR routines for parameters to and replies from
  11.  * the portmapper remote-call-service.
  12.  */
  13.  
  14. struct rmtcallargs {
  15.     u_long prog, vers, proc, arglen;
  16.     caddr_t args_ptr;
  17.     xdrproc_t xdr_args;
  18. };
  19.  
  20. bool_t xdr_rmtcall_args();
  21.  
  22. struct rmtcallres {
  23.     u_long *port_ptr;
  24.     u_long resultslen;
  25.     caddr_t results_ptr;
  26.     xdrproc_t xdr_results;
  27. };
  28.  
  29. bool_t xdr_rmtcallres();
  30.