pmap_rmt.h

来自「操作系统SunOS 4.1.3版本的源码」· C头文件 代码 · 共 31 行

H
31
字号
/*	@(#)pmap_rmt.h 1.1 92/07/30 SMI	*//* * Structures and XDR routines for parameters to and replies from * the portmapper remote-call-service. * * Copyright (C) 1986, Sun Microsystems, Inc. */#ifndef _rpc_pmap_rmt_h#define	_rpc_pmap_rmt_hstruct rmtcallargs {	u_long prog, vers, proc, arglen;	caddr_t args_ptr;	xdrproc_t xdr_args;};bool_t xdr_rmtcall_args();struct rmtcallres {	u_long *port_ptr;	u_long resultslen;	caddr_t results_ptr;	xdrproc_t xdr_results;};bool_t xdr_rmtcallres();#endif /*!_rpc_pmap_rmt_h*/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?