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

VxWorks

开发平台:

C/C++

  1. /* loadAoutLib.h - a.out object module loader library header */
  2. /* Copyright 1984-1992 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01b,22sep92,rrr  added support for c++
  7. 01a,18jun92,ajm  written for object module independant loadLib
  8. */
  9. #ifndef __INCloadAoutLibh
  10. #define __INCloadAoutLibh
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. #include "vwModNum.h"
  15. #include "symLib.h"
  16. /* status codes */
  17. #define S_loadAoutLib_TOO_MANY_SYMBOLS (M_loadAoutLib | 1)
  18. /* function declarations */
  19. #if defined(__STDC__) || defined(__cplusplus)
  20. extern STATUS loadAoutInit ();
  21. extern STATUS bootAoutInit ();
  22. #else /* __STDC__ */
  23. extern STATUS loadAoutInit ();
  24. extern STATUS bootAoutInit ();
  25. #endif /* __STDC__ */
  26. #ifdef __cplusplus
  27. }
  28. #endif
  29. #endif /* __INCloadAoutLibh */