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

VxWorks

开发平台:

C/C++

  1. /* wdbEvtptLib.h - header file for remote debug eventpoints */
  2. /* Copyright 1998-2002 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01c,25apr02,jhw  Added C++ support (SPR 76304).
  7. 01b,12feb99,dbt  use wdb/ prefix to include wdb.h header file.
  8. 01a,12feb98,dbt  written.
  9. */
  10. #ifndef __INCwdbEvtptLibh
  11. #define __INCwdbEvtptLibh
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. /* includes */
  16. #include "wdb/dll.h"
  17. #include "wdb/wdb.h"
  18. /* data types */
  19. typedef struct /* hidden */
  20.     {
  21.     dll_t evtptList;
  22.     WDB_EVT_TYPE evtptType;
  23.     UINT32 (*evtptAdd) (WDB_EVTPT_ADD_DESC *pEvtpt, UINT32 *pId);
  24.     UINT32 (*evtptDel) (TGT_ADDR_T *pId);
  25.     } WDB_EVTPT_CLASS;
  26. /* function prototypes */
  27. #if defined(__STDC__)
  28. extern void    wdbEvtptClassConnect (WDB_EVTPT_CLASS * pEvtList);
  29. extern void (*__wdbEvtptDeleteAll) (void);
  30. #else  /* defined(__STDC__) */
  31. extern void    wdbEvtptClassConnect ();
  32. extern void (*__wdbEvtptDeleteAll) ();
  33. #endif /* defined(__STDC__) */
  34. #define wdbEvtptDeleteAll() {if (__wdbEvtptDeleteAll != NULL)
  35.      (*__wdbEvtptDeleteAll)();}
  36. #ifdef __cplusplus
  37. }
  38. #endif
  39. #endif  /* __INCwdbEvtptLibh */