⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pmap_rmt.h

📁 操作系统SunOS 4.1.3版本的源码
💻 H
字号:
/*	@(#)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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -