evtpoint.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:2k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* evtpoint.c - xdr routine for coding/decoding a WDB_EVTPT_ADD_DESC */
  2. /* Copyright 1994-1998 Wind River Systems, Inc. */
  3. #include "copyright_wrs.h"
  4. /*
  5. modification history
  6. --------------------
  7. 01f,22jan98,c_c  Removed EXT_FUNC references.
  8. 01e,30jan96,elp added windll.h, changed xdr_TGT_ADDR_T in macro.
  9. 01d,10jun95,pad Included rpc/rpc.h
  10. 01c,04apr95,ms  new data types.
  11. 01b,06nov94,tpr added comments
  12. 01a,03oct94,tpr written.
  13. */
  14. /*
  15. DESCRIPTION
  16. This module contains the eXternal Data Representation (XDR) routine
  17. for the WDB_EVTPT_ADD_DESC structure of the WDB protocol.
  18. */
  19. /* includes */
  20. #include <rpc/rpc.h>
  21. #include "wdbP.h"
  22. /******************************************************************************
  23. *
  24. * xdr_WDB_ACTION - decode or free a WDB_ACTION.
  25. */
  26. static BOOL xdr_WDB_ACTION
  27.     (
  28.     XDR *   xdrs, /* xdr handle */
  29.     WDB_ACTION * objp /* pointer to the WDB_EVTPT_ADD_DESC structure */
  30.     )
  31.     {
  32.     if (!xdr_enum (xdrs, (enum_t *)&objp->actionType))
  33. return (FALSE);
  34.     if (!xdr_UINT32 (xdrs, &objp->actionArg))
  35. return (FALSE);
  36.     if (!xdr_TGT_ADDR_T (xdrs, &objp->callRtn))
  37. return (FALSE);
  38.     if (!xdr_TGT_INT_T (xdrs, &objp->callArg))
  39. return (FALSE);
  40.     return (TRUE);
  41.     }
  42. /*******************************************************************************
  43. *
  44. * xdr_WDB_EVTPT_ADD_DESC - code, decode or free a WDB_EVTPT_ADD_DESC structure
  45. *
  46. * RETURNS: TRUE if it succeeds, FALSE otherwise.
  47. */
  48. BOOL xdr_WDB_EVTPT_ADD_DESC
  49.     (
  50.     XDR * xdrs, /* xdr handle */
  51.     WDB_EVTPT_ADD_DESC * objp /* object pointer */
  52.     )
  53.     {
  54.     if (!xdr_enum (xdrs, (enum_t *)&objp->evtType))
  55. return (FALSE);
  56.     if (!xdr_TGT_INT_T (xdrs, &objp->numArgs))
  57. return (FALSE);
  58.     if (!xdr_ARRAY (xdrs, (char **)&objp->args, &objp->numArgs, objp->numArgs,
  59. sizeof (UINT32), xdr_UINT32))
  60. return (FALSE);
  61.     if (!xdr_WDB_CTX (xdrs, &objp->context))
  62. return (FALSE);
  63.     if (!xdr_WDB_ACTION (xdrs, &objp->action))
  64. return (FALSE);
  65.     return (TRUE);
  66.     }
  67. /******************************************************************************
  68. *
  69. * xdr_WDB_EVTPT_DEL_DESC -
  70. */ 
  71. BOOL xdr_WDB_EVTPT_DEL_DESC
  72.     (
  73.     XDR * xdrs, /* xdr handle */
  74.     WDB_EVTPT_DEL_DESC * objp /* object pointer */
  75.     )
  76.     {
  77.     if (!xdr_enum (xdrs, (enum_t *)&objp->evtType))
  78. return (FALSE);
  79.     if (!xdr_TGT_ADDR_T (xdrs, &objp->evtptId))
  80. return (FALSE);
  81.     return (TRUE);
  82.     }