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

VxWorks

开发平台:

C/C++

  1. /* busLocal.h - sysBusToLocal/sysLocalToBus header */
  2. /* Copyright 1984-1992 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01b,22sep92,rrr  added support for c++
  7. 01a,16jun92,ccc  created.
  8. */
  9. /*
  10. DESCRIPTION
  11. This file contains header information for the sysBusToLocal() and
  12. sysLocalToBus() routines.
  13. */
  14. #ifndef __INCbusLocalh
  15. #define __INCbusLocalh
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. /* function declarations */
  20. #ifndef _ASMLANGUAGE
  21. #if defined(__STDC__) || defined(__cplusplus)
  22. IMPORT STATUS sysLocalToBusAdrs (int adrsSpace, char *localAdrs,
  23.    char **pBusAdrs);
  24. IMPORT STATUS sysBusToLocalAdrs (int adrsSpace, char *busAdrs,
  25.    char **pLocalAdrs);
  26. #else /* __STDC__ */
  27. IMPORT STATUS sysLocalToBusAdrs ();
  28. IMPORT STATUS sysBusToLocalAdrs ();
  29. #endif /* __STDC__ */
  30. #endif /* _ASMLANGUAGE */
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34. #endif /* __INCbusLocalh */