rpc_prot.h
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* rpc_prot.h - header file for rpc_prot.c */
  2. /* Copyright 1984-1992 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01d,22sep92,rrr  added support for c++
  7. 01c,26may92,rrr  the tree shuffle
  8. 01b,04oct91,rrr  passed through the ansification filter
  9.   -fixed #else and #endif
  10.   -changed copyright notice
  11. 01a,05oct90,shl created.
  12. */
  13. #ifndef __INCrpc_proth
  14. #define __INCrpc_proth
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. /* function declarations */
  19. #if defined(__STDC__) || defined(__cplusplus)
  20. extern   bool_t       xdr_opaque_auth (XDR *xdrs, struct opaque_auth *ap);
  21. extern   bool_t       xdr_deskey (XDR *xdrs, union des_block *blkp);
  22. extern   bool_t       xdr_accepted_reply (XDR *xdrs, struct accepted_reply *ar);
  23. extern   bool_t       xdr_rejected_reply (XDR *xdrs, struct rejected_reply *rr);
  24. extern   void        accepted (enum accept_stat acpt_stat, struct rpc_err *error);
  25. extern   void        rejected (enum reject_stat rjct_stat, struct rpc_err *error);
  26. #else
  27. extern   bool_t       xdr_opaque_auth ();
  28. extern   bool_t       xdr_deskey ();
  29. extern   bool_t       xdr_accepted_reply ();
  30. extern   bool_t       xdr_rejected_reply ();
  31. extern   void        accepted ();
  32. extern   void        rejected ();
  33. #endif /* __STDC__ */
  34. #ifdef __cplusplus
  35. }
  36. #endif
  37. #endif /* __INCrpc_proth */