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

VxWorks

开发平台:

C/C++

  1. /* ctxstep.c  - xdr rtn for coding/decoding the WDB_CTX_STEP_DESC structure */
  2. /* Copyright 1994-1998 Wind River Systems, Inc. */
  3. #include "copyright_wrs.h"
  4. /*
  5. modification history
  6. --------------------
  7. 01g,22jan98,c_c  Removed EXT_FUNC references.
  8. 01f,30jan96,elp added windll.h, changed xdr_TGT_ADDR_T in macro.
  9. 01e,10jun95,pad Included rpc/rpc.h
  10. 01d,04apr95,ms  new data types.
  11. 01c,06nov94,tpr added comments.
  12. changed xdr function of the context field.
  13. 01b,26oct94,tpr changed all CONTEXT_SOURCE_STEP by WDB_CTX_STEP_DESC.
  14. 01a,03oct94,tpr written.
  15. */
  16. /*
  17. DESCRIPTION
  18. This module contains the eXternal Data Representation (XDR) routine
  19. for the WDB_CTX_STEP_DESC structure of the WDB protocol.
  20. */
  21. /* includes */
  22. #include <rpc/rpc.h>
  23. #include "wdbP.h"
  24. /*******************************************************************************
  25. *
  26. * xdr_WDB_CTX_STEP_DESC - code, decode or free the WDB_CTX_STEP_DESC structure.
  27. *
  28. * This function codes, decodes or frees the WDB_CTX_STEP_DESC structure of
  29. * the protocol WDB.
  30. *
  31. * RETURNS: TRUE if it succeeds, FALSE otherwise.
  32. */
  33. BOOL xdr_WDB_CTX_STEP_DESC
  34.     (
  35.     XDR * xdrs, /* xdr handle */
  36.     WDB_CTX_STEP_DESC * objp /* pointer to WDB_CTX_STEP_DESC */
  37.     )
  38.     {
  39.     if (!xdr_WDB_CTX (xdrs, &objp->context))
  40. return (FALSE);
  41.     if (!xdr_TGT_ADDR_T (xdrs, &objp->startAddr))
  42. return (FALSE);
  43.     if (!xdr_TGT_ADDR_T (xdrs, &objp->endAddr))
  44. return (FALSE);
  45.     return (TRUE);
  46.     }