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

VxWorks

开发平台:

C/C++

  1. /* bootLoadLib.h - object module boot loader library header */
  2. /* Copyright 1984-1992 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01d,22sep92,rrr  added support for c++
  7. 01c,04jul92,jcf  cleaned up.
  8. 01b,23jun92,ajm  fixed function prototype for bootLoadModule
  9. 01a,01jun92,ajm  written
  10. */
  11. #ifndef __INCbootLoadLibh
  12. #define __INCbootLoadLibh
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. #include "vwModNum.h"
  17. #include "symLib.h"
  18. /* status codes */
  19. #define S_bootLoadLib_ROUTINE_NOT_INSTALLED (M_bootLoadLib | 1)
  20. /* data structures */
  21. extern FUNCPTR bootLoadRoutine;
  22. /* function declarations */
  23. #if defined(__STDC__) || defined(__cplusplus)
  24. extern STATUS  bootLoadModule (int fd, FUNCPTR *pEntry);
  25. #else /* __STDC__ */
  26. extern STATUS  bootLoadModule ();
  27. #endif /* __STDC__ */
  28. #ifdef __cplusplus
  29. }
  30. #endif
  31. #endif /* __INCbootLoadLibh */