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

VxWorks

开发平台:

C/C++

  1. /* bspVersion.h - VxWorks board support package version information */
  2. /* Copyright 1984-1996 Wind River Systems, Inc. */
  3. /*
  4. This header file is now historical.  New 1.1 BSPs do not refer to this
  5. file, only older 1.0 BSPs.  This file is carried forward only to maintain
  6. backward compatibility for old 1.0 BSPs.
  7. MAKE NO FURTHER EDITS TO THIS FILE. 23sep96,dat.
  8. */
  9. /*
  10. modification history
  11. --------------------
  12. 01i,23sep96,dat  changed default BSP version back to 1.0. (1.1 BSPs don't
  13.  use this header file).
  14. 01h,26sep95,dat  added decl of sysBspRev 
  15. 01g,21jun95,ms  changed to version "1.1"
  16. 01f,12apr94,caf  changed to version "1.0".
  17. 01e,20nov93,caf  changed to version "1.0-beta".
  18. 01e,02dec93,pme  pushed to Beta for Am29K.
  19. 01d,21jan93,caf  changed to version "1.0".
  20. 01c,16oct92,caf  changed from alpha to beta.
  21. 01b,22sep92,rrr  added support for c++
  22. 01a,08sep92,caf  created.
  23. */
  24. #ifndef __INCbspVersionh
  25. #define __INCbspVersionh
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. /* defines */
  30. #ifndef BSP_VERSION
  31. #   define BSP_VERSION "1.0" /* for printing */
  32. #   define BSP_VER_1_0 1 /* for #if or #ifdef testing */
  33. #endif /*BSP_VERSION*/
  34. /* function declarations */
  35. #ifndef _ASMLANGUAGE
  36. #if defined(__STDC__) || defined(__cplusplus)
  37. extern char * bspVersion (void); /* old 1.0 usage */
  38. extern char * sysBspRev (void); /* new 1.1 usage */
  39. #else /* __STDC__ */
  40. extern char * bspVersion ();
  41. extern char * sysBspRev ();
  42. #endif /* __STDC__ */
  43. #endif /* _ASMLANGUAGE */
  44. #ifdef __cplusplus
  45. }
  46. #endif
  47. #endif /* __INCbspVersionh */