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

VxWorks

开发平台:

C/C++

  1. /* wdbUdpLib.h - header file for remote debug agents UDP library */
  2. /* Copyright 1984-2002 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01c,25apr02,jhw  Added C++ support (SPR 76304).
  7. 01b,05apr95,ms  new data types.
  8. 01a,20dec94,ms  written.
  9. */
  10. #ifndef __INCwdbUdpLibh
  11. #define __INCwdbUdpLibh
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. /* includes */
  16. #include "wdb/wdbCommIfLib.h"
  17. #include "wdb/wdbMbufLib.h"
  18. /* function prototypes */
  19. #if defined(__STDC__)
  20. extern STATUS udpCommIfInit (WDB_COMM_IF *pWdbCommIf, WDB_DRV_IF *pDrvIf);
  21. extern void     udpRcv        (struct mbuf *pMbuf);
  22. #else   /* __STDC__ */
  23. extern STATUS udpCommIfInit ();
  24. extern void     udpRcv        ();
  25. #endif  /* __STDC__ */
  26. #ifdef __cplusplus
  27. }
  28. #endif
  29. #endif  /* __INCwdbUdpLibh */