1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #ifndef _RPC_PMAP_RMT_H
- #define _RPC_PMAP_RMT_H 1
- #include <features.h>
- #include <sys/types.h>
- #include <rpc/types.h>
- #include <rpc/xdr.h>
- __BEGIN_DECLS
- struct rmtcallargs {
- u_long prog, vers, proc, arglen;
- caddr_t args_ptr;
- xdrproc_t xdr_args;
- };
- extern bool_t xdr_rmtcall_args (XDR *__xdrs, struct rmtcallargs *__crp)
- __THROW;
- struct rmtcallres {
- u_long *port_ptr;
- u_long resultslen;
- caddr_t results_ptr;
- xdrproc_t xdr_results;
- };
- extern bool_t xdr_rmtcallres (XDR *__xdrs, struct rmtcallres *__crp) __THROW;
- __END_DECLS
- #endif
|