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

VxWorks

开发平台:

C/C++

  1. /* ctx.c - xdr routine for coding/decoding a WDB_CTX */
  2. /* Copyright 1988-1994 Wind River Systems, Inc. */
  3. #include "copyright_wrs.h"
  4. /*
  5. modification history
  6. --------------------
  7. 01d,10jun95,pad Included rpc/rpc.h
  8. 01c,04apr95,ms  new data types.
  9. 01b,06nov94,tpr added comments.
  10. 01a,03oct94,tpr written.
  11. */
  12. /*
  13. DESCRIPTION
  14. This module contains the eXternal Data Representation (XDR) routine
  15. for the WDB_CTX structure of the WDB protocol.
  16. */
  17. /* includes */
  18. #include <rpc/rpc.h>
  19. #include "wdbP.h"
  20. /*******************************************************************************
  21. *
  22. * xdr_WDB_CTX - code, decode or free a WDB_CTX structure.
  23. *
  24. * RETURNS:  TRUE if it succeeds, FALSE otherwise.
  25. */
  26. BOOL xdr_WDB_CTX
  27.     (
  28.     XDR * xdrs, /* xdr handle */
  29.     WDB_CTX * objp /* pointer to the WDB_CTX */
  30.     )
  31.     {
  32.     if (!xdr_enum (xdrs, (enum_t *)&objp->contextType))
  33. return (FALSE);
  34.     if (!xdr_UINT32 (xdrs, &objp->contextId))
  35. return (FALSE);
  36.     return (TRUE);
  37.     }