📄 pmap_rmt.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 + -