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

VxWorks

开发平台:

C/C++

  1. /* unldLib.h - header for unload library */
  2. /* Copyright 1992 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01g,30oct96,elp  Added syncUnldRtn function pointer + UNLD_SYNC option.
  7. 01f,22aug93,jmm  added option type to supress breakpoint deletion
  8. 01e,16aug93,jmm  added new errno - S_unldLib_TEXT_IN_USE
  9. 01d,30oct92,jmm  added prototype for reld() (spr 1716)
  10. 01c,22sep92,rrr  added support for c++
  11. 01b,18sep92,jcf  added include of moduleLib.h.
  12. 01a,14may92,jmm  written.
  13. */
  14. #ifndef __INCunldLibh
  15. #define __INCunldLibh
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. #include "moduleLib.h"
  20. /* unldLib Status Codes */
  21. #define S_unldLib_MODULE_NOT_FOUND             (M_unldLib | 1)
  22. #define S_unldLib_TEXT_IN_USE                  (M_unldLib | 2)
  23. /* options for unld */
  24. #define UNLD_KEEP_BREAKPOINTS 1 /* don't delete breakpoints from unld() */
  25. #define UNLD_SYNC 2 /* already synchronizing a module */
  26. /* globals */
  27. extern FUNCPTR syncUnldRtn;
  28. /* function declarations */
  29. #if defined(__STDC__) || defined(__cplusplus)
  30. extern STATUS unld (void *name, int options);
  31. extern STATUS unldByNameAndPath (char *name, char *path, int options);
  32. extern STATUS unldByGroup (UINT16 group, int options);
  33. extern STATUS unldByModuleId (MODULE_ID moduleId, int options);
  34. MODULE_ID reld (void * nameOrId, int options);
  35. #else   /* __STDC__ */
  36. extern STATUS unld ();
  37. extern STATUS unldByNameAndPath ();
  38. extern STATUS unldByGroup ();
  39. extern STATUS unldByModuleId ();
  40. MODULE_ID reld ();
  41. #endif  /* __STDC__ */
  42. #ifdef __cplusplus
  43. }
  44. #endif
  45. #endif /* __INCunldLibh */